/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace IAM { namespace Model { /** *

Contains the response to a successful UploadSigningCertificate * request.

See Also:

AWS * API Reference

*/ class UploadSigningCertificateResult { public: AWS_IAM_API UploadSigningCertificateResult(); AWS_IAM_API UploadSigningCertificateResult(const Aws::AmazonWebServiceResult& result); AWS_IAM_API UploadSigningCertificateResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the certificate.

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

Information about the certificate.

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

Information about the certificate.

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

Information about the certificate.

*/ inline UploadSigningCertificateResult& WithCertificate(const SigningCertificate& value) { SetCertificate(value); return *this;} /** *

Information about the certificate.

*/ inline UploadSigningCertificateResult& WithCertificate(SigningCertificate&& value) { SetCertificate(std::move(value)); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline UploadSigningCertificateResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline UploadSigningCertificateResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: SigningCertificate m_certificate; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace IAM } // namespace Aws