/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #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 UploadServerCertificate request. *

See Also:

AWS * API Reference

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

The meta information of the uploaded server certificate without its * certificate body, certificate chain, and private key.

*/ inline const ServerCertificateMetadata& GetServerCertificateMetadata() const{ return m_serverCertificateMetadata; } /** *

The meta information of the uploaded server certificate without its * certificate body, certificate chain, and private key.

*/ inline void SetServerCertificateMetadata(const ServerCertificateMetadata& value) { m_serverCertificateMetadata = value; } /** *

The meta information of the uploaded server certificate without its * certificate body, certificate chain, and private key.

*/ inline void SetServerCertificateMetadata(ServerCertificateMetadata&& value) { m_serverCertificateMetadata = std::move(value); } /** *

The meta information of the uploaded server certificate without its * certificate body, certificate chain, and private key.

*/ inline UploadServerCertificateResult& WithServerCertificateMetadata(const ServerCertificateMetadata& value) { SetServerCertificateMetadata(value); return *this;} /** *

The meta information of the uploaded server certificate without its * certificate body, certificate chain, and private key.

*/ inline UploadServerCertificateResult& WithServerCertificateMetadata(ServerCertificateMetadata&& value) { SetServerCertificateMetadata(std::move(value)); return *this;} /** *

A list of tags that are attached to the new IAM server certificate. The * returned list of tags is sorted by tag key. For more information about tagging, * see Tagging IAM * resources in the IAM User Guide.

*/ inline const Aws::Vector& GetTags() const{ return m_tags; } /** *

A list of tags that are attached to the new IAM server certificate. The * returned list of tags is sorted by tag key. For more information about tagging, * see Tagging IAM * resources in the IAM User Guide.

*/ inline void SetTags(const Aws::Vector& value) { m_tags = value; } /** *

A list of tags that are attached to the new IAM server certificate. The * returned list of tags is sorted by tag key. For more information about tagging, * see Tagging IAM * resources in the IAM User Guide.

*/ inline void SetTags(Aws::Vector&& value) { m_tags = std::move(value); } /** *

A list of tags that are attached to the new IAM server certificate. The * returned list of tags is sorted by tag key. For more information about tagging, * see Tagging IAM * resources in the IAM User Guide.

*/ inline UploadServerCertificateResult& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

A list of tags that are attached to the new IAM server certificate. The * returned list of tags is sorted by tag key. For more information about tagging, * see Tagging IAM * resources in the IAM User Guide.

*/ inline UploadServerCertificateResult& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

A list of tags that are attached to the new IAM server certificate. The * returned list of tags is sorted by tag key. For more information about tagging, * see Tagging IAM * resources in the IAM User Guide.

*/ inline UploadServerCertificateResult& AddTags(const Tag& value) { m_tags.push_back(value); return *this; } /** *

A list of tags that are attached to the new IAM server certificate. The * returned list of tags is sorted by tag key. For more information about tagging, * see Tagging IAM * resources in the IAM User Guide.

*/ inline UploadServerCertificateResult& AddTags(Tag&& value) { m_tags.push_back(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 UploadServerCertificateResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline UploadServerCertificateResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: ServerCertificateMetadata m_serverCertificateMetadata; Aws::Vector m_tags; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace IAM } // namespace Aws