/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #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 ModifySnapshotTierResponse { public: AWS_EC2_API ModifySnapshotTierResponse(); AWS_EC2_API ModifySnapshotTierResponse(const Aws::AmazonWebServiceResult& result); AWS_EC2_API ModifySnapshotTierResponse& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the snapshot.

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

The ID of the snapshot.

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

The ID of the snapshot.

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

The ID of the snapshot.

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

The ID of the snapshot.

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

The ID of the snapshot.

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

The ID of the snapshot.

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

The date and time when the archive process was started.

*/ inline const Aws::Utils::DateTime& GetTieringStartTime() const{ return m_tieringStartTime; } /** *

The date and time when the archive process was started.

*/ inline void SetTieringStartTime(const Aws::Utils::DateTime& value) { m_tieringStartTime = value; } /** *

The date and time when the archive process was started.

*/ inline void SetTieringStartTime(Aws::Utils::DateTime&& value) { m_tieringStartTime = std::move(value); } /** *

The date and time when the archive process was started.

*/ inline ModifySnapshotTierResponse& WithTieringStartTime(const Aws::Utils::DateTime& value) { SetTieringStartTime(value); return *this;} /** *

The date and time when the archive process was started.

*/ inline ModifySnapshotTierResponse& WithTieringStartTime(Aws::Utils::DateTime&& value) { SetTieringStartTime(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 ModifySnapshotTierResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline ModifySnapshotTierResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_snapshotId; Aws::Utils::DateTime m_tieringStartTime; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws