/** * 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 { /** *

Provisioning artifact output.

See Also:

AWS * API Reference

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

The provisioning artifact output key.

*/ inline const Aws::String& GetKey() const{ return m_key; } /** *

The provisioning artifact output key.

*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *

The provisioning artifact output key.

*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *

The provisioning artifact output key.

*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *

The provisioning artifact output key.

*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *

The provisioning artifact output key.

*/ inline ProvisioningArtifactOutput& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *

The provisioning artifact output key.

*/ inline ProvisioningArtifactOutput& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *

The provisioning artifact output key.

*/ inline ProvisioningArtifactOutput& WithKey(const char* value) { SetKey(value); return *this;} /** *

Description of the provisioning artifact output key.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

Description of the provisioning artifact output key.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

Description of the provisioning artifact output key.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

Description of the provisioning artifact output key.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

Description of the provisioning artifact output key.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

Description of the provisioning artifact output key.

*/ inline ProvisioningArtifactOutput& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

Description of the provisioning artifact output key.

*/ inline ProvisioningArtifactOutput& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

Description of the provisioning artifact output key.

*/ inline ProvisioningArtifactOutput& WithDescription(const char* value) { SetDescription(value); return *this;} private: Aws::String m_key; bool m_keyHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; }; } // namespace Model } // namespace ServiceCatalog } // namespace Aws