/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace MQ { namespace Model { class AWS_MQ_API DeleteBrokerResult { public: DeleteBrokerResult(); DeleteBrokerResult(const Aws::AmazonWebServiceResult& result); DeleteBrokerResult& operator=(const Aws::AmazonWebServiceResult& result); /** * The unique ID that Amazon MQ generates for the broker. */ inline const Aws::String& GetBrokerId() const{ return m_brokerId; } /** * The unique ID that Amazon MQ generates for the broker. */ inline void SetBrokerId(const Aws::String& value) { m_brokerId = value; } /** * The unique ID that Amazon MQ generates for the broker. */ inline void SetBrokerId(Aws::String&& value) { m_brokerId = std::move(value); } /** * The unique ID that Amazon MQ generates for the broker. */ inline void SetBrokerId(const char* value) { m_brokerId.assign(value); } /** * The unique ID that Amazon MQ generates for the broker. */ inline DeleteBrokerResult& WithBrokerId(const Aws::String& value) { SetBrokerId(value); return *this;} /** * The unique ID that Amazon MQ generates for the broker. */ inline DeleteBrokerResult& WithBrokerId(Aws::String&& value) { SetBrokerId(std::move(value)); return *this;} /** * The unique ID that Amazon MQ generates for the broker. */ inline DeleteBrokerResult& WithBrokerId(const char* value) { SetBrokerId(value); return *this;} private: Aws::String m_brokerId; }; } // namespace Model } // namespace MQ } // namespace Aws