/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace mgn { namespace Model { /** */ class ArchiveWaveRequest : public MgnRequest { public: AWS_MGN_API ArchiveWaveRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "ArchiveWave"; } AWS_MGN_API Aws::String SerializePayload() const override; /** *

Account ID.

*/ inline const Aws::String& GetAccountID() const{ return m_accountID; } /** *

Account ID.

*/ inline bool AccountIDHasBeenSet() const { return m_accountIDHasBeenSet; } /** *

Account ID.

*/ inline void SetAccountID(const Aws::String& value) { m_accountIDHasBeenSet = true; m_accountID = value; } /** *

Account ID.

*/ inline void SetAccountID(Aws::String&& value) { m_accountIDHasBeenSet = true; m_accountID = std::move(value); } /** *

Account ID.

*/ inline void SetAccountID(const char* value) { m_accountIDHasBeenSet = true; m_accountID.assign(value); } /** *

Account ID.

*/ inline ArchiveWaveRequest& WithAccountID(const Aws::String& value) { SetAccountID(value); return *this;} /** *

Account ID.

*/ inline ArchiveWaveRequest& WithAccountID(Aws::String&& value) { SetAccountID(std::move(value)); return *this;} /** *

Account ID.

*/ inline ArchiveWaveRequest& WithAccountID(const char* value) { SetAccountID(value); return *this;} /** *

Wave ID.

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

Wave ID.

*/ inline bool WaveIDHasBeenSet() const { return m_waveIDHasBeenSet; } /** *

Wave ID.

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

Wave ID.

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

Wave ID.

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

Wave ID.

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

Wave ID.

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

Wave ID.

*/ inline ArchiveWaveRequest& WithWaveID(const char* value) { SetWaveID(value); return *this;} private: Aws::String m_accountID; bool m_accountIDHasBeenSet = false; Aws::String m_waveID; bool m_waveIDHasBeenSet = false; }; } // namespace Model } // namespace mgn } // namespace Aws