/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace DatabaseMigrationService { namespace Model { class AWS_DATABASEMIGRATIONSERVICE_API DeleteCertificateResult { public: DeleteCertificateResult(); DeleteCertificateResult(const Aws::AmazonWebServiceResult& result); DeleteCertificateResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Secure Sockets Layer (SSL) certificate.

*/ inline const Certificate& GetCertificate() const{ return m_certificate; } /** *

The Secure Sockets Layer (SSL) certificate.

*/ inline void SetCertificate(const Certificate& value) { m_certificate = value; } /** *

The Secure Sockets Layer (SSL) certificate.

*/ inline void SetCertificate(Certificate&& value) { m_certificate = std::move(value); } /** *

The Secure Sockets Layer (SSL) certificate.

*/ inline DeleteCertificateResult& WithCertificate(const Certificate& value) { SetCertificate(value); return *this;} /** *

The Secure Sockets Layer (SSL) certificate.

*/ inline DeleteCertificateResult& WithCertificate(Certificate&& value) { SetCertificate(std::move(value)); return *this;} private: Certificate m_certificate; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws