/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The ID for the provisioned product resources that are part of a resource
* group. See Also:
AWS
* API Reference
The unique key-value pair for a tag that identifies provisioned product * resources.
*/ inline const UniqueTagResourceIdentifier& GetUniqueTag() const{ return m_uniqueTag; } /** *The unique key-value pair for a tag that identifies provisioned product * resources.
*/ inline bool UniqueTagHasBeenSet() const { return m_uniqueTagHasBeenSet; } /** *The unique key-value pair for a tag that identifies provisioned product * resources.
*/ inline void SetUniqueTag(const UniqueTagResourceIdentifier& value) { m_uniqueTagHasBeenSet = true; m_uniqueTag = value; } /** *The unique key-value pair for a tag that identifies provisioned product * resources.
*/ inline void SetUniqueTag(UniqueTagResourceIdentifier&& value) { m_uniqueTagHasBeenSet = true; m_uniqueTag = std::move(value); } /** *The unique key-value pair for a tag that identifies provisioned product * resources.
*/ inline EngineWorkflowResourceIdentifier& WithUniqueTag(const UniqueTagResourceIdentifier& value) { SetUniqueTag(value); return *this;} /** *The unique key-value pair for a tag that identifies provisioned product * resources.
*/ inline EngineWorkflowResourceIdentifier& WithUniqueTag(UniqueTagResourceIdentifier&& value) { SetUniqueTag(std::move(value)); return *this;} private: UniqueTagResourceIdentifier m_uniqueTag; bool m_uniqueTagHasBeenSet = false; }; } // namespace Model } // namespace ServiceCatalog } // namespace Aws