/** * 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 EC2 { namespace Model { class CopySnapshotResponse { public: AWS_EC2_API CopySnapshotResponse(); AWS_EC2_API CopySnapshotResponse(const Aws::AmazonWebServiceResult& result); AWS_EC2_API CopySnapshotResponse& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the new snapshot.

*/ inline const Aws::String& GetSnapshotId() const{ return m_snapshotId; } /** *

The ID of the new snapshot.

*/ inline void SetSnapshotId(const Aws::String& value) { m_snapshotId = value; } /** *

The ID of the new snapshot.

*/ inline void SetSnapshotId(Aws::String&& value) { m_snapshotId = std::move(value); } /** *

The ID of the new snapshot.

*/ inline void SetSnapshotId(const char* value) { m_snapshotId.assign(value); } /** *

The ID of the new snapshot.

*/ inline CopySnapshotResponse& WithSnapshotId(const Aws::String& value) { SetSnapshotId(value); return *this;} /** *

The ID of the new snapshot.

*/ inline CopySnapshotResponse& WithSnapshotId(Aws::String&& value) { SetSnapshotId(std::move(value)); return *this;} /** *

The ID of the new snapshot.

*/ inline CopySnapshotResponse& WithSnapshotId(const char* value) { SetSnapshotId(value); return *this;} /** *

Any tags applied to the new snapshot.

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

Any tags applied to the new snapshot.

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

Any tags applied to the new snapshot.

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

Any tags applied to the new snapshot.

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

Any tags applied to the new snapshot.

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

Any tags applied to the new snapshot.

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

Any tags applied to the new snapshot.

*/ inline CopySnapshotResponse& 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 CopySnapshotResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline CopySnapshotResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_snapshotId; Aws::Vector m_tags; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws