/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the response to a successful UploadSigningCertificate
* request. See Also:
AWS
* API Reference
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