/**
* 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 UploadServerCertificate request.
* See Also:
AWS
* API Reference
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::VectorA 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::VectorA 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::VectorA 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::VectorA 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::VectorA 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