/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ServiceCatalog { namespace Model { /** *

The ID for the provisioned product resources that are part of a resource * group.

See Also:

AWS * API Reference

*/ class EngineWorkflowResourceIdentifier { public: AWS_SERVICECATALOG_API EngineWorkflowResourceIdentifier(); AWS_SERVICECATALOG_API EngineWorkflowResourceIdentifier(Aws::Utils::Json::JsonView jsonValue); AWS_SERVICECATALOG_API EngineWorkflowResourceIdentifier& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SERVICECATALOG_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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