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

A structure that contains information about a stack set. A stack set enables * you to provision stacks into Amazon Web Services accounts and across Regions by * using a single CloudFormation template. In the stack set, you specify the * template to use, in addition to any parameters and capabilities that the * template requires.

See Also:

AWS * API Reference

*/ class StackSet { public: AWS_CLOUDFORMATION_API StackSet(); AWS_CLOUDFORMATION_API StackSet(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_CLOUDFORMATION_API StackSet& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

The name that's associated with the stack set.

*/ inline const Aws::String& GetStackSetName() const{ return m_stackSetName; } /** *

The name that's associated with the stack set.

*/ inline bool StackSetNameHasBeenSet() const { return m_stackSetNameHasBeenSet; } /** *

The name that's associated with the stack set.

*/ inline void SetStackSetName(const Aws::String& value) { m_stackSetNameHasBeenSet = true; m_stackSetName = value; } /** *

The name that's associated with the stack set.

*/ inline void SetStackSetName(Aws::String&& value) { m_stackSetNameHasBeenSet = true; m_stackSetName = std::move(value); } /** *

The name that's associated with the stack set.

*/ inline void SetStackSetName(const char* value) { m_stackSetNameHasBeenSet = true; m_stackSetName.assign(value); } /** *

The name that's associated with the stack set.

*/ inline StackSet& WithStackSetName(const Aws::String& value) { SetStackSetName(value); return *this;} /** *

The name that's associated with the stack set.

*/ inline StackSet& WithStackSetName(Aws::String&& value) { SetStackSetName(std::move(value)); return *this;} /** *

The name that's associated with the stack set.

*/ inline StackSet& WithStackSetName(const char* value) { SetStackSetName(value); return *this;} /** *

The ID of the stack set.

*/ inline const Aws::String& GetStackSetId() const{ return m_stackSetId; } /** *

The ID of the stack set.

*/ inline bool StackSetIdHasBeenSet() const { return m_stackSetIdHasBeenSet; } /** *

The ID of the stack set.

*/ inline void SetStackSetId(const Aws::String& value) { m_stackSetIdHasBeenSet = true; m_stackSetId = value; } /** *

The ID of the stack set.

*/ inline void SetStackSetId(Aws::String&& value) { m_stackSetIdHasBeenSet = true; m_stackSetId = std::move(value); } /** *

The ID of the stack set.

*/ inline void SetStackSetId(const char* value) { m_stackSetIdHasBeenSet = true; m_stackSetId.assign(value); } /** *

The ID of the stack set.

*/ inline StackSet& WithStackSetId(const Aws::String& value) { SetStackSetId(value); return *this;} /** *

The ID of the stack set.

*/ inline StackSet& WithStackSetId(Aws::String&& value) { SetStackSetId(std::move(value)); return *this;} /** *

The ID of the stack set.

*/ inline StackSet& WithStackSetId(const char* value) { SetStackSetId(value); return *this;} /** *

A description of the stack set that you specify when the stack set is created * or updated.

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

A description of the stack set that you specify when the stack set is created * or updated.

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

A description of the stack set that you specify when the stack set is created * or updated.

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

A description of the stack set that you specify when the stack set is created * or updated.

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

A description of the stack set that you specify when the stack set is created * or updated.

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

A description of the stack set that you specify when the stack set is created * or updated.

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

A description of the stack set that you specify when the stack set is created * or updated.

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

A description of the stack set that you specify when the stack set is created * or updated.

*/ inline StackSet& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The status of the stack set.

*/ inline const StackSetStatus& GetStatus() const{ return m_status; } /** *

The status of the stack set.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The status of the stack set.

*/ inline void SetStatus(const StackSetStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

The status of the stack set.

*/ inline void SetStatus(StackSetStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

The status of the stack set.

*/ inline StackSet& WithStatus(const StackSetStatus& value) { SetStatus(value); return *this;} /** *

The status of the stack set.

*/ inline StackSet& WithStatus(StackSetStatus&& value) { SetStatus(std::move(value)); return *this;} /** *

The structure that contains the body of the template that was used to create * or update the stack set.

*/ inline const Aws::String& GetTemplateBody() const{ return m_templateBody; } /** *

The structure that contains the body of the template that was used to create * or update the stack set.

*/ inline bool TemplateBodyHasBeenSet() const { return m_templateBodyHasBeenSet; } /** *

The structure that contains the body of the template that was used to create * or update the stack set.

*/ inline void SetTemplateBody(const Aws::String& value) { m_templateBodyHasBeenSet = true; m_templateBody = value; } /** *

The structure that contains the body of the template that was used to create * or update the stack set.

*/ inline void SetTemplateBody(Aws::String&& value) { m_templateBodyHasBeenSet = true; m_templateBody = std::move(value); } /** *

The structure that contains the body of the template that was used to create * or update the stack set.

*/ inline void SetTemplateBody(const char* value) { m_templateBodyHasBeenSet = true; m_templateBody.assign(value); } /** *

The structure that contains the body of the template that was used to create * or update the stack set.

*/ inline StackSet& WithTemplateBody(const Aws::String& value) { SetTemplateBody(value); return *this;} /** *

The structure that contains the body of the template that was used to create * or update the stack set.

*/ inline StackSet& WithTemplateBody(Aws::String&& value) { SetTemplateBody(std::move(value)); return *this;} /** *

The structure that contains the body of the template that was used to create * or update the stack set.

*/ inline StackSet& WithTemplateBody(const char* value) { SetTemplateBody(value); return *this;} /** *

A list of input parameters for a stack set.

*/ inline const Aws::Vector& GetParameters() const{ return m_parameters; } /** *

A list of input parameters for a stack set.

*/ inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; } /** *

A list of input parameters for a stack set.

*/ inline void SetParameters(const Aws::Vector& value) { m_parametersHasBeenSet = true; m_parameters = value; } /** *

A list of input parameters for a stack set.

*/ inline void SetParameters(Aws::Vector&& value) { m_parametersHasBeenSet = true; m_parameters = std::move(value); } /** *

A list of input parameters for a stack set.

*/ inline StackSet& WithParameters(const Aws::Vector& value) { SetParameters(value); return *this;} /** *

A list of input parameters for a stack set.

*/ inline StackSet& WithParameters(Aws::Vector&& value) { SetParameters(std::move(value)); return *this;} /** *

A list of input parameters for a stack set.

*/ inline StackSet& AddParameters(const Parameter& value) { m_parametersHasBeenSet = true; m_parameters.push_back(value); return *this; } /** *

A list of input parameters for a stack set.

*/ inline StackSet& AddParameters(Parameter&& value) { m_parametersHasBeenSet = true; m_parameters.push_back(std::move(value)); return *this; } /** *

The capabilities that are allowed in the stack set. Some stack set templates * might include resources that can affect permissions in your Amazon Web Services * account—for example, by creating new Identity and Access Management (IAM) users. * For more information, see Acknowledging * IAM Resources in CloudFormation Templates.

*/ inline const Aws::Vector& GetCapabilities() const{ return m_capabilities; } /** *

The capabilities that are allowed in the stack set. Some stack set templates * might include resources that can affect permissions in your Amazon Web Services * account—for example, by creating new Identity and Access Management (IAM) users. * For more information, see Acknowledging * IAM Resources in CloudFormation Templates.

*/ inline bool CapabilitiesHasBeenSet() const { return m_capabilitiesHasBeenSet; } /** *

The capabilities that are allowed in the stack set. Some stack set templates * might include resources that can affect permissions in your Amazon Web Services * account—for example, by creating new Identity and Access Management (IAM) users. * For more information, see Acknowledging * IAM Resources in CloudFormation Templates.

*/ inline void SetCapabilities(const Aws::Vector& value) { m_capabilitiesHasBeenSet = true; m_capabilities = value; } /** *

The capabilities that are allowed in the stack set. Some stack set templates * might include resources that can affect permissions in your Amazon Web Services * account—for example, by creating new Identity and Access Management (IAM) users. * For more information, see Acknowledging * IAM Resources in CloudFormation Templates.

*/ inline void SetCapabilities(Aws::Vector&& value) { m_capabilitiesHasBeenSet = true; m_capabilities = std::move(value); } /** *

The capabilities that are allowed in the stack set. Some stack set templates * might include resources that can affect permissions in your Amazon Web Services * account—for example, by creating new Identity and Access Management (IAM) users. * For more information, see Acknowledging * IAM Resources in CloudFormation Templates.

*/ inline StackSet& WithCapabilities(const Aws::Vector& value) { SetCapabilities(value); return *this;} /** *

The capabilities that are allowed in the stack set. Some stack set templates * might include resources that can affect permissions in your Amazon Web Services * account—for example, by creating new Identity and Access Management (IAM) users. * For more information, see Acknowledging * IAM Resources in CloudFormation Templates.

*/ inline StackSet& WithCapabilities(Aws::Vector&& value) { SetCapabilities(std::move(value)); return *this;} /** *

The capabilities that are allowed in the stack set. Some stack set templates * might include resources that can affect permissions in your Amazon Web Services * account—for example, by creating new Identity and Access Management (IAM) users. * For more information, see Acknowledging * IAM Resources in CloudFormation Templates.

*/ inline StackSet& AddCapabilities(const Capability& value) { m_capabilitiesHasBeenSet = true; m_capabilities.push_back(value); return *this; } /** *

The capabilities that are allowed in the stack set. Some stack set templates * might include resources that can affect permissions in your Amazon Web Services * account—for example, by creating new Identity and Access Management (IAM) users. * For more information, see Acknowledging * IAM Resources in CloudFormation Templates.

*/ inline StackSet& AddCapabilities(Capability&& value) { m_capabilitiesHasBeenSet = true; m_capabilities.push_back(std::move(value)); return *this; } /** *

A list of tags that specify information about the stack set. A maximum number * of 50 tags can be specified.

*/ inline const Aws::Vector& GetTags() const{ return m_tags; } /** *

A list of tags that specify information about the stack set. A maximum number * of 50 tags can be specified.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

A list of tags that specify information about the stack set. A maximum number * of 50 tags can be specified.

*/ inline void SetTags(const Aws::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

A list of tags that specify information about the stack set. A maximum number * of 50 tags can be specified.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

A list of tags that specify information about the stack set. A maximum number * of 50 tags can be specified.

*/ inline StackSet& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

A list of tags that specify information about the stack set. A maximum number * of 50 tags can be specified.

*/ inline StackSet& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

A list of tags that specify information about the stack set. A maximum number * of 50 tags can be specified.

*/ inline StackSet& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *

A list of tags that specify information about the stack set. A maximum number * of 50 tags can be specified.

*/ inline StackSet& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } /** *

The Amazon Resource Name (ARN) of the stack set.

*/ inline const Aws::String& GetStackSetARN() const{ return m_stackSetARN; } /** *

The Amazon Resource Name (ARN) of the stack set.

*/ inline bool StackSetARNHasBeenSet() const { return m_stackSetARNHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the stack set.

*/ inline void SetStackSetARN(const Aws::String& value) { m_stackSetARNHasBeenSet = true; m_stackSetARN = value; } /** *

The Amazon Resource Name (ARN) of the stack set.

*/ inline void SetStackSetARN(Aws::String&& value) { m_stackSetARNHasBeenSet = true; m_stackSetARN = std::move(value); } /** *

The Amazon Resource Name (ARN) of the stack set.

*/ inline void SetStackSetARN(const char* value) { m_stackSetARNHasBeenSet = true; m_stackSetARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the stack set.

*/ inline StackSet& WithStackSetARN(const Aws::String& value) { SetStackSetARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the stack set.

*/ inline StackSet& WithStackSetARN(Aws::String&& value) { SetStackSetARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the stack set.

*/ inline StackSet& WithStackSetARN(const char* value) { SetStackSetARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the IAM role used to create or update the * stack set.

Use customized administrator roles to control which users or * groups can manage specific stack sets within the same administrator account. For * more information, see Prerequisites: * Granting Permissions for Stack Set Operations in the CloudFormation User * Guide.

*/ inline const Aws::String& GetAdministrationRoleARN() const{ return m_administrationRoleARN; } /** *

The Amazon Resource Name (ARN) of the IAM role used to create or update the * stack set.

Use customized administrator roles to control which users or * groups can manage specific stack sets within the same administrator account. For * more information, see Prerequisites: * Granting Permissions for Stack Set Operations in the CloudFormation User * Guide.

*/ inline bool AdministrationRoleARNHasBeenSet() const { return m_administrationRoleARNHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the IAM role used to create or update the * stack set.

Use customized administrator roles to control which users or * groups can manage specific stack sets within the same administrator account. For * more information, see Prerequisites: * Granting Permissions for Stack Set Operations in the CloudFormation User * Guide.

*/ inline void SetAdministrationRoleARN(const Aws::String& value) { m_administrationRoleARNHasBeenSet = true; m_administrationRoleARN = value; } /** *

The Amazon Resource Name (ARN) of the IAM role used to create or update the * stack set.

Use customized administrator roles to control which users or * groups can manage specific stack sets within the same administrator account. For * more information, see Prerequisites: * Granting Permissions for Stack Set Operations in the CloudFormation User * Guide.

*/ inline void SetAdministrationRoleARN(Aws::String&& value) { m_administrationRoleARNHasBeenSet = true; m_administrationRoleARN = std::move(value); } /** *

The Amazon Resource Name (ARN) of the IAM role used to create or update the * stack set.

Use customized administrator roles to control which users or * groups can manage specific stack sets within the same administrator account. For * more information, see Prerequisites: * Granting Permissions for Stack Set Operations in the CloudFormation User * Guide.

*/ inline void SetAdministrationRoleARN(const char* value) { m_administrationRoleARNHasBeenSet = true; m_administrationRoleARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the IAM role used to create or update the * stack set.

Use customized administrator roles to control which users or * groups can manage specific stack sets within the same administrator account. For * more information, see Prerequisites: * Granting Permissions for Stack Set Operations in the CloudFormation User * Guide.

*/ inline StackSet& WithAdministrationRoleARN(const Aws::String& value) { SetAdministrationRoleARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the IAM role used to create or update the * stack set.

Use customized administrator roles to control which users or * groups can manage specific stack sets within the same administrator account. For * more information, see Prerequisites: * Granting Permissions for Stack Set Operations in the CloudFormation User * Guide.

*/ inline StackSet& WithAdministrationRoleARN(Aws::String&& value) { SetAdministrationRoleARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the IAM role used to create or update the * stack set.

Use customized administrator roles to control which users or * groups can manage specific stack sets within the same administrator account. For * more information, see Prerequisites: * Granting Permissions for Stack Set Operations in the CloudFormation User * Guide.

*/ inline StackSet& WithAdministrationRoleARN(const char* value) { SetAdministrationRoleARN(value); return *this;} /** *

The name of the IAM execution role used to create or update the stack * set.

Use customized execution roles to control which stack resources * users and groups can include in their stack sets.

*/ inline const Aws::String& GetExecutionRoleName() const{ return m_executionRoleName; } /** *

The name of the IAM execution role used to create or update the stack * set.

Use customized execution roles to control which stack resources * users and groups can include in their stack sets.

*/ inline bool ExecutionRoleNameHasBeenSet() const { return m_executionRoleNameHasBeenSet; } /** *

The name of the IAM execution role used to create or update the stack * set.

Use customized execution roles to control which stack resources * users and groups can include in their stack sets.

*/ inline void SetExecutionRoleName(const Aws::String& value) { m_executionRoleNameHasBeenSet = true; m_executionRoleName = value; } /** *

The name of the IAM execution role used to create or update the stack * set.

Use customized execution roles to control which stack resources * users and groups can include in their stack sets.

*/ inline void SetExecutionRoleName(Aws::String&& value) { m_executionRoleNameHasBeenSet = true; m_executionRoleName = std::move(value); } /** *

The name of the IAM execution role used to create or update the stack * set.

Use customized execution roles to control which stack resources * users and groups can include in their stack sets.

*/ inline void SetExecutionRoleName(const char* value) { m_executionRoleNameHasBeenSet = true; m_executionRoleName.assign(value); } /** *

The name of the IAM execution role used to create or update the stack * set.

Use customized execution roles to control which stack resources * users and groups can include in their stack sets.

*/ inline StackSet& WithExecutionRoleName(const Aws::String& value) { SetExecutionRoleName(value); return *this;} /** *

The name of the IAM execution role used to create or update the stack * set.

Use customized execution roles to control which stack resources * users and groups can include in their stack sets.

*/ inline StackSet& WithExecutionRoleName(Aws::String&& value) { SetExecutionRoleName(std::move(value)); return *this;} /** *

The name of the IAM execution role used to create or update the stack * set.

Use customized execution roles to control which stack resources * users and groups can include in their stack sets.

*/ inline StackSet& WithExecutionRoleName(const char* value) { SetExecutionRoleName(value); return *this;} /** *

Detailed information about the drift status of the stack set.

For * stack sets, contains information about the last completed drift operation * performed on the stack set. Information about drift operations currently in * progress isn't included.

*/ inline const StackSetDriftDetectionDetails& GetStackSetDriftDetectionDetails() const{ return m_stackSetDriftDetectionDetails; } /** *

Detailed information about the drift status of the stack set.

For * stack sets, contains information about the last completed drift operation * performed on the stack set. Information about drift operations currently in * progress isn't included.

*/ inline bool StackSetDriftDetectionDetailsHasBeenSet() const { return m_stackSetDriftDetectionDetailsHasBeenSet; } /** *

Detailed information about the drift status of the stack set.

For * stack sets, contains information about the last completed drift operation * performed on the stack set. Information about drift operations currently in * progress isn't included.

*/ inline void SetStackSetDriftDetectionDetails(const StackSetDriftDetectionDetails& value) { m_stackSetDriftDetectionDetailsHasBeenSet = true; m_stackSetDriftDetectionDetails = value; } /** *

Detailed information about the drift status of the stack set.

For * stack sets, contains information about the last completed drift operation * performed on the stack set. Information about drift operations currently in * progress isn't included.

*/ inline void SetStackSetDriftDetectionDetails(StackSetDriftDetectionDetails&& value) { m_stackSetDriftDetectionDetailsHasBeenSet = true; m_stackSetDriftDetectionDetails = std::move(value); } /** *

Detailed information about the drift status of the stack set.

For * stack sets, contains information about the last completed drift operation * performed on the stack set. Information about drift operations currently in * progress isn't included.

*/ inline StackSet& WithStackSetDriftDetectionDetails(const StackSetDriftDetectionDetails& value) { SetStackSetDriftDetectionDetails(value); return *this;} /** *

Detailed information about the drift status of the stack set.

For * stack sets, contains information about the last completed drift operation * performed on the stack set. Information about drift operations currently in * progress isn't included.

*/ inline StackSet& WithStackSetDriftDetectionDetails(StackSetDriftDetectionDetails&& value) { SetStackSetDriftDetectionDetails(std::move(value)); return *this;} /** *

[Service-managed permissions] Describes whether StackSets automatically * deploys to Organizations accounts that are added to a target organization or * organizational unit (OU).

*/ inline const AutoDeployment& GetAutoDeployment() const{ return m_autoDeployment; } /** *

[Service-managed permissions] Describes whether StackSets automatically * deploys to Organizations accounts that are added to a target organization or * organizational unit (OU).

*/ inline bool AutoDeploymentHasBeenSet() const { return m_autoDeploymentHasBeenSet; } /** *

[Service-managed permissions] Describes whether StackSets automatically * deploys to Organizations accounts that are added to a target organization or * organizational unit (OU).

*/ inline void SetAutoDeployment(const AutoDeployment& value) { m_autoDeploymentHasBeenSet = true; m_autoDeployment = value; } /** *

[Service-managed permissions] Describes whether StackSets automatically * deploys to Organizations accounts that are added to a target organization or * organizational unit (OU).

*/ inline void SetAutoDeployment(AutoDeployment&& value) { m_autoDeploymentHasBeenSet = true; m_autoDeployment = std::move(value); } /** *

[Service-managed permissions] Describes whether StackSets automatically * deploys to Organizations accounts that are added to a target organization or * organizational unit (OU).

*/ inline StackSet& WithAutoDeployment(const AutoDeployment& value) { SetAutoDeployment(value); return *this;} /** *

[Service-managed permissions] Describes whether StackSets automatically * deploys to Organizations accounts that are added to a target organization or * organizational unit (OU).

*/ inline StackSet& WithAutoDeployment(AutoDeployment&& value) { SetAutoDeployment(std::move(value)); return *this;} /** *

Describes how the IAM roles required for stack set operations are * created.

*/ inline const PermissionModels& GetPermissionModel() const{ return m_permissionModel; } /** *

Describes how the IAM roles required for stack set operations are * created.

*/ inline bool PermissionModelHasBeenSet() const { return m_permissionModelHasBeenSet; } /** *

Describes how the IAM roles required for stack set operations are * created.

*/ inline void SetPermissionModel(const PermissionModels& value) { m_permissionModelHasBeenSet = true; m_permissionModel = value; } /** *

Describes how the IAM roles required for stack set operations are * created.

*/ inline void SetPermissionModel(PermissionModels&& value) { m_permissionModelHasBeenSet = true; m_permissionModel = std::move(value); } /** *

Describes how the IAM roles required for stack set operations are * created.

*/ inline StackSet& WithPermissionModel(const PermissionModels& value) { SetPermissionModel(value); return *this;} /** *

Describes how the IAM roles required for stack set operations are * created.

*/ inline StackSet& WithPermissionModel(PermissionModels&& value) { SetPermissionModel(std::move(value)); return *this;} /** *

[Service-managed permissions] The organization root ID or organizational unit * (OU) IDs that you specified for DeploymentTargets.

*/ inline const Aws::Vector& GetOrganizationalUnitIds() const{ return m_organizationalUnitIds; } /** *

[Service-managed permissions] The organization root ID or organizational unit * (OU) IDs that you specified for DeploymentTargets.

*/ inline bool OrganizationalUnitIdsHasBeenSet() const { return m_organizationalUnitIdsHasBeenSet; } /** *

[Service-managed permissions] The organization root ID or organizational unit * (OU) IDs that you specified for DeploymentTargets.

*/ inline void SetOrganizationalUnitIds(const Aws::Vector& value) { m_organizationalUnitIdsHasBeenSet = true; m_organizationalUnitIds = value; } /** *

[Service-managed permissions] The organization root ID or organizational unit * (OU) IDs that you specified for DeploymentTargets.

*/ inline void SetOrganizationalUnitIds(Aws::Vector&& value) { m_organizationalUnitIdsHasBeenSet = true; m_organizationalUnitIds = std::move(value); } /** *

[Service-managed permissions] The organization root ID or organizational unit * (OU) IDs that you specified for DeploymentTargets.

*/ inline StackSet& WithOrganizationalUnitIds(const Aws::Vector& value) { SetOrganizationalUnitIds(value); return *this;} /** *

[Service-managed permissions] The organization root ID or organizational unit * (OU) IDs that you specified for DeploymentTargets.

*/ inline StackSet& WithOrganizationalUnitIds(Aws::Vector&& value) { SetOrganizationalUnitIds(std::move(value)); return *this;} /** *

[Service-managed permissions] The organization root ID or organizational unit * (OU) IDs that you specified for DeploymentTargets.

*/ inline StackSet& AddOrganizationalUnitIds(const Aws::String& value) { m_organizationalUnitIdsHasBeenSet = true; m_organizationalUnitIds.push_back(value); return *this; } /** *

[Service-managed permissions] The organization root ID or organizational unit * (OU) IDs that you specified for DeploymentTargets.

*/ inline StackSet& AddOrganizationalUnitIds(Aws::String&& value) { m_organizationalUnitIdsHasBeenSet = true; m_organizationalUnitIds.push_back(std::move(value)); return *this; } /** *

[Service-managed permissions] The organization root ID or organizational unit * (OU) IDs that you specified for DeploymentTargets.

*/ inline StackSet& AddOrganizationalUnitIds(const char* value) { m_organizationalUnitIdsHasBeenSet = true; m_organizationalUnitIds.push_back(value); return *this; } /** *

Describes whether StackSets performs non-conflicting operations concurrently * and queues conflicting operations.

*/ inline const ManagedExecution& GetManagedExecution() const{ return m_managedExecution; } /** *

Describes whether StackSets performs non-conflicting operations concurrently * and queues conflicting operations.

*/ inline bool ManagedExecutionHasBeenSet() const { return m_managedExecutionHasBeenSet; } /** *

Describes whether StackSets performs non-conflicting operations concurrently * and queues conflicting operations.

*/ inline void SetManagedExecution(const ManagedExecution& value) { m_managedExecutionHasBeenSet = true; m_managedExecution = value; } /** *

Describes whether StackSets performs non-conflicting operations concurrently * and queues conflicting operations.

*/ inline void SetManagedExecution(ManagedExecution&& value) { m_managedExecutionHasBeenSet = true; m_managedExecution = std::move(value); } /** *

Describes whether StackSets performs non-conflicting operations concurrently * and queues conflicting operations.

*/ inline StackSet& WithManagedExecution(const ManagedExecution& value) { SetManagedExecution(value); return *this;} /** *

Describes whether StackSets performs non-conflicting operations concurrently * and queues conflicting operations.

*/ inline StackSet& WithManagedExecution(ManagedExecution&& value) { SetManagedExecution(std::move(value)); return *this;} /** *

Returns a list of all Amazon Web Services Regions the given StackSet has * stack instances deployed in. The Amazon Web Services Regions list output is in * no particular order.

*/ inline const Aws::Vector& GetRegions() const{ return m_regions; } /** *

Returns a list of all Amazon Web Services Regions the given StackSet has * stack instances deployed in. The Amazon Web Services Regions list output is in * no particular order.

*/ inline bool RegionsHasBeenSet() const { return m_regionsHasBeenSet; } /** *

Returns a list of all Amazon Web Services Regions the given StackSet has * stack instances deployed in. The Amazon Web Services Regions list output is in * no particular order.

*/ inline void SetRegions(const Aws::Vector& value) { m_regionsHasBeenSet = true; m_regions = value; } /** *

Returns a list of all Amazon Web Services Regions the given StackSet has * stack instances deployed in. The Amazon Web Services Regions list output is in * no particular order.

*/ inline void SetRegions(Aws::Vector&& value) { m_regionsHasBeenSet = true; m_regions = std::move(value); } /** *

Returns a list of all Amazon Web Services Regions the given StackSet has * stack instances deployed in. The Amazon Web Services Regions list output is in * no particular order.

*/ inline StackSet& WithRegions(const Aws::Vector& value) { SetRegions(value); return *this;} /** *

Returns a list of all Amazon Web Services Regions the given StackSet has * stack instances deployed in. The Amazon Web Services Regions list output is in * no particular order.

*/ inline StackSet& WithRegions(Aws::Vector&& value) { SetRegions(std::move(value)); return *this;} /** *

Returns a list of all Amazon Web Services Regions the given StackSet has * stack instances deployed in. The Amazon Web Services Regions list output is in * no particular order.

*/ inline StackSet& AddRegions(const Aws::String& value) { m_regionsHasBeenSet = true; m_regions.push_back(value); return *this; } /** *

Returns a list of all Amazon Web Services Regions the given StackSet has * stack instances deployed in. The Amazon Web Services Regions list output is in * no particular order.

*/ inline StackSet& AddRegions(Aws::String&& value) { m_regionsHasBeenSet = true; m_regions.push_back(std::move(value)); return *this; } /** *

Returns a list of all Amazon Web Services Regions the given StackSet has * stack instances deployed in. The Amazon Web Services Regions list output is in * no particular order.

*/ inline StackSet& AddRegions(const char* value) { m_regionsHasBeenSet = true; m_regions.push_back(value); return *this; } private: Aws::String m_stackSetName; bool m_stackSetNameHasBeenSet = false; Aws::String m_stackSetId; bool m_stackSetIdHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; StackSetStatus m_status; bool m_statusHasBeenSet = false; Aws::String m_templateBody; bool m_templateBodyHasBeenSet = false; Aws::Vector m_parameters; bool m_parametersHasBeenSet = false; Aws::Vector m_capabilities; bool m_capabilitiesHasBeenSet = false; Aws::Vector m_tags; bool m_tagsHasBeenSet = false; Aws::String m_stackSetARN; bool m_stackSetARNHasBeenSet = false; Aws::String m_administrationRoleARN; bool m_administrationRoleARNHasBeenSet = false; Aws::String m_executionRoleName; bool m_executionRoleNameHasBeenSet = false; StackSetDriftDetectionDetails m_stackSetDriftDetectionDetails; bool m_stackSetDriftDetectionDetailsHasBeenSet = false; AutoDeployment m_autoDeployment; bool m_autoDeploymentHasBeenSet = false; PermissionModels m_permissionModel; bool m_permissionModelHasBeenSet = false; Aws::Vector m_organizationalUnitIds; bool m_organizationalUnitIdsHasBeenSet = false; ManagedExecution m_managedExecution; bool m_managedExecutionHasBeenSet = false; Aws::Vector m_regions; bool m_regionsHasBeenSet = false; }; } // namespace Model } // namespace CloudFormation } // namespace Aws