View source: R/cloudformation_operations.R
cloudformation_create_stack_set | R Documentation |
Creates a stack set.
See https://www.paws-r-sdk.com/docs/cloudformation_create_stack_set/ for full documentation.
cloudformation_create_stack_set(
StackSetName,
Description = NULL,
TemplateBody = NULL,
TemplateURL = NULL,
StackId = NULL,
Parameters = NULL,
Capabilities = NULL,
Tags = NULL,
AdministrationRoleARN = NULL,
ExecutionRoleName = NULL,
PermissionModel = NULL,
AutoDeployment = NULL,
CallAs = NULL,
ClientRequestToken = NULL,
ManagedExecution = NULL
)
StackSetName |
[required] The name to associate with the stack set. The name must be unique in the Region where you create your stack set. A stack name can contain only alphanumeric characters (case-sensitive) and hyphens. It must start with an alphabetic character and can't be longer than 128 characters. |
Description |
A description of the stack set. You can use the description to identify the stack set's purpose or other important information. |
TemplateBody |
The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200 bytes. For more information, see Template Anatomy in the CloudFormation User Guide. Conditional: You must specify either the TemplateBody or the TemplateURL parameter, but not both. |
TemplateURL |
The location of the file that contains the template body. The URL must point to a template (maximum size: 460,800 bytes) that's located in an Amazon S3 bucket or a Systems Manager document. For more information, see Template Anatomy in the CloudFormation User Guide. Conditional: You must specify either the TemplateBody or the TemplateURL parameter, but not both. |
StackId |
The stack ID you are importing into a new stack set. Specify the Amazon Resource Name (ARN) of the stack. |
Parameters |
The input parameters for the stack set template. |
Capabilities |
In some cases, you must explicitly acknowledge that your stack set template contains certain capabilities in order for CloudFormation to create the stack set and related stack instances.
|
Tags |
The key-value pairs to associate with this stack set and the stacks created from it. CloudFormation also propagates these tags to supported resources that are created in the stacks. A maximum number of 50 tags can be specified. If you specify tags as part of a
|
AdministrationRoleARN |
The Amazon Resource Name (ARN) of the IAM role to use to create this stack set. Specify an IAM role only if you are using 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. |
ExecutionRoleName |
The name of the IAM execution role to use to create the stack set. If
you do not specify an execution role, CloudFormation uses the
Specify an IAM role only if you are using customized execution roles to control which stack resources users and groups can include in their stack sets. |
PermissionModel |
Describes how the IAM roles required for stack set operations are
created. By default,
|
AutoDeployment |
Describes whether StackSets automatically deploys to Organizations
accounts that are added to the target organization or organizational
unit (OU). Specify only if |
CallAs |
[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account. By default,
Stack sets with service-managed permissions are created in the management account, including stack sets that are created by delegated administrators. |
ClientRequestToken |
A unique identifier for this
If you don't specify an operation ID, the SDK generates one automatically. |
ManagedExecution |
Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.