/** * 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 Json { class JsonValue; } // namespace Json } // namespace Utils namespace mgn { namespace Model { class CreateWaveResult { public: AWS_MGN_API CreateWaveResult(); AWS_MGN_API CreateWaveResult(const Aws::AmazonWebServiceResult& result); AWS_MGN_API CreateWaveResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Wave ARN.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

Wave ARN.

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

Wave ARN.

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

Wave ARN.

*/ inline void SetArn(const char* value) { m_arn.assign(value); } /** *

Wave ARN.

*/ inline CreateWaveResult& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

Wave ARN.

*/ inline CreateWaveResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

Wave ARN.

*/ inline CreateWaveResult& WithArn(const char* value) { SetArn(value); return *this;} /** *

Wave creation dateTime.

*/ inline const Aws::String& GetCreationDateTime() const{ return m_creationDateTime; } /** *

Wave creation dateTime.

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

Wave creation dateTime.

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

Wave creation dateTime.

*/ inline void SetCreationDateTime(const char* value) { m_creationDateTime.assign(value); } /** *

Wave creation dateTime.

*/ inline CreateWaveResult& WithCreationDateTime(const Aws::String& value) { SetCreationDateTime(value); return *this;} /** *

Wave creation dateTime.

*/ inline CreateWaveResult& WithCreationDateTime(Aws::String&& value) { SetCreationDateTime(std::move(value)); return *this;} /** *

Wave creation dateTime.

*/ inline CreateWaveResult& WithCreationDateTime(const char* value) { SetCreationDateTime(value); return *this;} /** *

Wave description.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

Wave description.

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

Wave description.

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

Wave description.

*/ inline void SetDescription(const char* value) { m_description.assign(value); } /** *

Wave description.

*/ inline CreateWaveResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

Wave description.

*/ inline CreateWaveResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

Wave description.

*/ inline CreateWaveResult& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

Wave archival status.

*/ inline bool GetIsArchived() const{ return m_isArchived; } /** *

Wave archival status.

*/ inline void SetIsArchived(bool value) { m_isArchived = value; } /** *

Wave archival status.

*/ inline CreateWaveResult& WithIsArchived(bool value) { SetIsArchived(value); return *this;} /** *

Wave last modified dateTime.

*/ inline const Aws::String& GetLastModifiedDateTime() const{ return m_lastModifiedDateTime; } /** *

Wave last modified dateTime.

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

Wave last modified dateTime.

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

Wave last modified dateTime.

*/ inline void SetLastModifiedDateTime(const char* value) { m_lastModifiedDateTime.assign(value); } /** *

Wave last modified dateTime.

*/ inline CreateWaveResult& WithLastModifiedDateTime(const Aws::String& value) { SetLastModifiedDateTime(value); return *this;} /** *

Wave last modified dateTime.

*/ inline CreateWaveResult& WithLastModifiedDateTime(Aws::String&& value) { SetLastModifiedDateTime(std::move(value)); return *this;} /** *

Wave last modified dateTime.

*/ inline CreateWaveResult& WithLastModifiedDateTime(const char* value) { SetLastModifiedDateTime(value); return *this;} /** *

Wave name.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

Wave name.

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

Wave name.

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

Wave name.

*/ inline void SetName(const char* value) { m_name.assign(value); } /** *

Wave name.

*/ inline CreateWaveResult& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

Wave name.

*/ inline CreateWaveResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

Wave name.

*/ inline CreateWaveResult& WithName(const char* value) { SetName(value); return *this;} /** *

Wave tags.

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

Wave tags.

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

Wave tags.

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

Wave tags.

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

Wave tags.

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

Wave tags.

*/ inline CreateWaveResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; } /** *

Wave tags.

*/ inline CreateWaveResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; } /** *

Wave tags.

*/ inline CreateWaveResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *

Wave tags.

*/ inline CreateWaveResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

Wave tags.

*/ inline CreateWaveResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *

Wave tags.

*/ inline CreateWaveResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; } /** *

Wave tags.

*/ inline CreateWaveResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; } /** *

Wave aggregated status.

*/ inline const WaveAggregatedStatus& GetWaveAggregatedStatus() const{ return m_waveAggregatedStatus; } /** *

Wave aggregated status.

*/ inline void SetWaveAggregatedStatus(const WaveAggregatedStatus& value) { m_waveAggregatedStatus = value; } /** *

Wave aggregated status.

*/ inline void SetWaveAggregatedStatus(WaveAggregatedStatus&& value) { m_waveAggregatedStatus = std::move(value); } /** *

Wave aggregated status.

*/ inline CreateWaveResult& WithWaveAggregatedStatus(const WaveAggregatedStatus& value) { SetWaveAggregatedStatus(value); return *this;} /** *

Wave aggregated status.

*/ inline CreateWaveResult& WithWaveAggregatedStatus(WaveAggregatedStatus&& value) { SetWaveAggregatedStatus(std::move(value)); return *this;} /** *

Wave ID.

*/ inline const Aws::String& GetWaveID() const{ return m_waveID; } /** *

Wave ID.

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

Wave ID.

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

Wave ID.

*/ inline void SetWaveID(const char* value) { m_waveID.assign(value); } /** *

Wave ID.

*/ inline CreateWaveResult& WithWaveID(const Aws::String& value) { SetWaveID(value); return *this;} /** *

Wave ID.

*/ inline CreateWaveResult& WithWaveID(Aws::String&& value) { SetWaveID(std::move(value)); return *this;} /** *

Wave ID.

*/ inline CreateWaveResult& WithWaveID(const char* value) { SetWaveID(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CreateWaveResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateWaveResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateWaveResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_arn; Aws::String m_creationDateTime; Aws::String m_description; bool m_isArchived; Aws::String m_lastModifiedDateTime; Aws::String m_name; Aws::Map m_tags; WaveAggregatedStatus m_waveAggregatedStatus; Aws::String m_waveID; Aws::String m_requestId; }; } // namespace Model } // namespace mgn } // namespace Aws