/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace CloudFormation { namespace Model { /** *

The input for a GetTemplate action.

See Also:

AWS * API Reference

*/ class GetTemplateRequest : public CloudFormationRequest { public: AWS_CLOUDFORMATION_API GetTemplateRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetTemplate"; } AWS_CLOUDFORMATION_API Aws::String SerializePayload() const override; protected: AWS_CLOUDFORMATION_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:

  • Running stacks: You can specify * either the stack's name or its unique stack ID.

  • Deleted * stacks: You must specify the unique stack ID.

Default: There * is no default value.

*/ inline const Aws::String& GetStackName() const{ return m_stackName; } /** *

The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:

  • Running stacks: You can specify * either the stack's name or its unique stack ID.

  • Deleted * stacks: You must specify the unique stack ID.

Default: There * is no default value.

*/ inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; } /** *

The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:

  • Running stacks: You can specify * either the stack's name or its unique stack ID.

  • Deleted * stacks: You must specify the unique stack ID.

Default: There * is no default value.

*/ inline void SetStackName(const Aws::String& value) { m_stackNameHasBeenSet = true; m_stackName = value; } /** *

The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:

  • Running stacks: You can specify * either the stack's name or its unique stack ID.

  • Deleted * stacks: You must specify the unique stack ID.

Default: There * is no default value.

*/ inline void SetStackName(Aws::String&& value) { m_stackNameHasBeenSet = true; m_stackName = std::move(value); } /** *

The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:

  • Running stacks: You can specify * either the stack's name or its unique stack ID.

  • Deleted * stacks: You must specify the unique stack ID.

Default: There * is no default value.

*/ inline void SetStackName(const char* value) { m_stackNameHasBeenSet = true; m_stackName.assign(value); } /** *

The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:

  • Running stacks: You can specify * either the stack's name or its unique stack ID.

  • Deleted * stacks: You must specify the unique stack ID.

Default: There * is no default value.

*/ inline GetTemplateRequest& WithStackName(const Aws::String& value) { SetStackName(value); return *this;} /** *

The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:

  • Running stacks: You can specify * either the stack's name or its unique stack ID.

  • Deleted * stacks: You must specify the unique stack ID.

Default: There * is no default value.

*/ inline GetTemplateRequest& WithStackName(Aws::String&& value) { SetStackName(std::move(value)); return *this;} /** *

The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:

  • Running stacks: You can specify * either the stack's name or its unique stack ID.

  • Deleted * stacks: You must specify the unique stack ID.

Default: There * is no default value.

*/ inline GetTemplateRequest& WithStackName(const char* value) { SetStackName(value); return *this;} /** *

The name or Amazon Resource Name (ARN) of a change set for which * CloudFormation returns the associated template. If you specify a name, you must * also specify the StackName.

*/ inline const Aws::String& GetChangeSetName() const{ return m_changeSetName; } /** *

The name or Amazon Resource Name (ARN) of a change set for which * CloudFormation returns the associated template. If you specify a name, you must * also specify the StackName.

*/ inline bool ChangeSetNameHasBeenSet() const { return m_changeSetNameHasBeenSet; } /** *

The name or Amazon Resource Name (ARN) of a change set for which * CloudFormation returns the associated template. If you specify a name, you must * also specify the StackName.

*/ inline void SetChangeSetName(const Aws::String& value) { m_changeSetNameHasBeenSet = true; m_changeSetName = value; } /** *

The name or Amazon Resource Name (ARN) of a change set for which * CloudFormation returns the associated template. If you specify a name, you must * also specify the StackName.

*/ inline void SetChangeSetName(Aws::String&& value) { m_changeSetNameHasBeenSet = true; m_changeSetName = std::move(value); } /** *

The name or Amazon Resource Name (ARN) of a change set for which * CloudFormation returns the associated template. If you specify a name, you must * also specify the StackName.

*/ inline void SetChangeSetName(const char* value) { m_changeSetNameHasBeenSet = true; m_changeSetName.assign(value); } /** *

The name or Amazon Resource Name (ARN) of a change set for which * CloudFormation returns the associated template. If you specify a name, you must * also specify the StackName.

*/ inline GetTemplateRequest& WithChangeSetName(const Aws::String& value) { SetChangeSetName(value); return *this;} /** *

The name or Amazon Resource Name (ARN) of a change set for which * CloudFormation returns the associated template. If you specify a name, you must * also specify the StackName.

*/ inline GetTemplateRequest& WithChangeSetName(Aws::String&& value) { SetChangeSetName(std::move(value)); return *this;} /** *

The name or Amazon Resource Name (ARN) of a change set for which * CloudFormation returns the associated template. If you specify a name, you must * also specify the StackName.

*/ inline GetTemplateRequest& WithChangeSetName(const char* value) { SetChangeSetName(value); return *this;} /** *

For templates that include transforms, the stage of the template that * CloudFormation returns. To get the user-submitted template, specify * Original. To get the template after CloudFormation has processed * all transforms, specify Processed.

If the template doesn't * include transforms, Original and Processed return the * same template. By default, CloudFormation specifies Processed.

*/ inline const TemplateStage& GetTemplateStage() const{ return m_templateStage; } /** *

For templates that include transforms, the stage of the template that * CloudFormation returns. To get the user-submitted template, specify * Original. To get the template after CloudFormation has processed * all transforms, specify Processed.

If the template doesn't * include transforms, Original and Processed return the * same template. By default, CloudFormation specifies Processed.

*/ inline bool TemplateStageHasBeenSet() const { return m_templateStageHasBeenSet; } /** *

For templates that include transforms, the stage of the template that * CloudFormation returns. To get the user-submitted template, specify * Original. To get the template after CloudFormation has processed * all transforms, specify Processed.

If the template doesn't * include transforms, Original and Processed return the * same template. By default, CloudFormation specifies Processed.

*/ inline void SetTemplateStage(const TemplateStage& value) { m_templateStageHasBeenSet = true; m_templateStage = value; } /** *

For templates that include transforms, the stage of the template that * CloudFormation returns. To get the user-submitted template, specify * Original. To get the template after CloudFormation has processed * all transforms, specify Processed.

If the template doesn't * include transforms, Original and Processed return the * same template. By default, CloudFormation specifies Processed.

*/ inline void SetTemplateStage(TemplateStage&& value) { m_templateStageHasBeenSet = true; m_templateStage = std::move(value); } /** *

For templates that include transforms, the stage of the template that * CloudFormation returns. To get the user-submitted template, specify * Original. To get the template after CloudFormation has processed * all transforms, specify Processed.

If the template doesn't * include transforms, Original and Processed return the * same template. By default, CloudFormation specifies Processed.

*/ inline GetTemplateRequest& WithTemplateStage(const TemplateStage& value) { SetTemplateStage(value); return *this;} /** *

For templates that include transforms, the stage of the template that * CloudFormation returns. To get the user-submitted template, specify * Original. To get the template after CloudFormation has processed * all transforms, specify Processed.

If the template doesn't * include transforms, Original and Processed return the * same template. By default, CloudFormation specifies Processed.

*/ inline GetTemplateRequest& WithTemplateStage(TemplateStage&& value) { SetTemplateStage(std::move(value)); return *this;} private: Aws::String m_stackName; bool m_stackNameHasBeenSet = false; Aws::String m_changeSetName; bool m_changeSetNameHasBeenSet = false; TemplateStage m_templateStage; bool m_templateStageHasBeenSet = false; }; } // namespace Model } // namespace CloudFormation } // namespace Aws