/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents information about a provisioned resource.See Also:
* AWS
* API Reference
The primary identifier for the resource.
For more information, see Identifying * resources in the Amazon Web Services Cloud Control API User * Guide.
*/ inline const Aws::String& GetIdentifier() const{ return m_identifier; } /** *The primary identifier for the resource.
For more information, see Identifying * resources in the Amazon Web Services Cloud Control API User * Guide.
*/ inline bool IdentifierHasBeenSet() const { return m_identifierHasBeenSet; } /** *The primary identifier for the resource.
For more information, see Identifying * resources in the Amazon Web Services Cloud Control API User * Guide.
*/ inline void SetIdentifier(const Aws::String& value) { m_identifierHasBeenSet = true; m_identifier = value; } /** *The primary identifier for the resource.
For more information, see Identifying * resources in the Amazon Web Services Cloud Control API User * Guide.
*/ inline void SetIdentifier(Aws::String&& value) { m_identifierHasBeenSet = true; m_identifier = std::move(value); } /** *The primary identifier for the resource.
For more information, see Identifying * resources in the Amazon Web Services Cloud Control API User * Guide.
*/ inline void SetIdentifier(const char* value) { m_identifierHasBeenSet = true; m_identifier.assign(value); } /** *The primary identifier for the resource.
For more information, see Identifying * resources in the Amazon Web Services Cloud Control API User * Guide.
*/ inline ResourceDescription& WithIdentifier(const Aws::String& value) { SetIdentifier(value); return *this;} /** *The primary identifier for the resource.
For more information, see Identifying * resources in the Amazon Web Services Cloud Control API User * Guide.
*/ inline ResourceDescription& WithIdentifier(Aws::String&& value) { SetIdentifier(std::move(value)); return *this;} /** *The primary identifier for the resource.
For more information, see Identifying * resources in the Amazon Web Services Cloud Control API User * Guide.
*/ inline ResourceDescription& WithIdentifier(const char* value) { SetIdentifier(value); return *this;} /** *A list of the resource properties and their current values.
*/ inline const Aws::String& GetProperties() const{ return m_properties; } /** *A list of the resource properties and their current values.
*/ inline bool PropertiesHasBeenSet() const { return m_propertiesHasBeenSet; } /** *A list of the resource properties and their current values.
*/ inline void SetProperties(const Aws::String& value) { m_propertiesHasBeenSet = true; m_properties = value; } /** *A list of the resource properties and their current values.
*/ inline void SetProperties(Aws::String&& value) { m_propertiesHasBeenSet = true; m_properties = std::move(value); } /** *A list of the resource properties and their current values.
*/ inline void SetProperties(const char* value) { m_propertiesHasBeenSet = true; m_properties.assign(value); } /** *A list of the resource properties and their current values.
*/ inline ResourceDescription& WithProperties(const Aws::String& value) { SetProperties(value); return *this;} /** *A list of the resource properties and their current values.
*/ inline ResourceDescription& WithProperties(Aws::String&& value) { SetProperties(std::move(value)); return *this;} /** *A list of the resource properties and their current values.
*/ inline ResourceDescription& WithProperties(const char* value) { SetProperties(value); return *this;} private: Aws::String m_identifier; bool m_identifierHasBeenSet = false; Aws::String m_properties; bool m_propertiesHasBeenSet = false; }; } // namespace Model } // namespace CloudControlApi } // namespace Aws