/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A list of information about the configuration.See Also:
AWS
* API Reference
Required. The unique ID that Amazon MQ generates for the configuration.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *Required. The unique ID that Amazon MQ generates for the configuration.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *Required. The unique ID that Amazon MQ generates for the configuration.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *Required. The unique ID that Amazon MQ generates for the configuration.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *Required. The unique ID that Amazon MQ generates for the configuration.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *Required. The unique ID that Amazon MQ generates for the configuration.
*/ inline ConfigurationId& WithId(const Aws::String& value) { SetId(value); return *this;} /** *Required. The unique ID that Amazon MQ generates for the configuration.
*/ inline ConfigurationId& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *Required. The unique ID that Amazon MQ generates for the configuration.
*/ inline ConfigurationId& WithId(const char* value) { SetId(value); return *this;} /** *The revision number of the configuration.
*/ inline int GetRevision() const{ return m_revision; } /** *The revision number of the configuration.
*/ inline bool RevisionHasBeenSet() const { return m_revisionHasBeenSet; } /** *The revision number of the configuration.
*/ inline void SetRevision(int value) { m_revisionHasBeenSet = true; m_revision = value; } /** *The revision number of the configuration.
*/ inline ConfigurationId& WithRevision(int value) { SetRevision(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; int m_revision; bool m_revisionHasBeenSet = false; }; } // namespace Model } // namespace MQ } // namespace Aws