/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The dynamic value of the resource.See Also:
AWS
* API Reference
The value is a resource ID.
*/ inline const ResourceValueType& GetValue() const{ return m_value; } /** *The value is a resource ID.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *The value is a resource ID.
*/ inline void SetValue(const ResourceValueType& value) { m_valueHasBeenSet = true; m_value = value; } /** *The value is a resource ID.
*/ inline void SetValue(ResourceValueType&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *The value is a resource ID.
*/ inline ResourceValue& WithValue(const ResourceValueType& value) { SetValue(value); return *this;} /** *The value is a resource ID.
*/ inline ResourceValue& WithValue(ResourceValueType&& value) { SetValue(std::move(value)); return *this;} private: ResourceValueType m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws