Interface SelfManagedDeploymentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SelfManagedDeploymentProps.Jsii$Proxy
Example:
IRole existingAdminRole = Role.fromRoleName(this, "AdminRole", "AWSCloudFormationStackSetAdministrationRole"); StackSetDeploymentModel deploymentModel = StackSetDeploymentModel.selfManaged(SelfManagedDeploymentProps.builder() // Use an existing Role. Leave this out to create a new Role. .administrationRole(existingAdminRole) .build());
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forSelfManagedDeploymentProps
static final class
An implementation forSelfManagedDeploymentProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdministrationRole
The IAM role in the administrator account used to assume execution roles in the target accounts.You must create this role before using the StackSet action.
The role needs to be assumable by CloudFormation, and it needs to be able to
sts:AssumeRole
each of the execution roles (whose names are specified in theexecutionRoleName
parameter) in each of the target accounts.If you do not specify the role, we assume you have created a role named
AWSCloudFormationStackSetAdministrationRole
.Default: - Assume an existing role named `AWSCloudFormationStackSetAdministrationRole` in the same account as the pipeline.
-
getExecutionRoleName
The name of the IAM role in the target accounts used to perform stack set operations.You must create these roles in each of the target accounts before using the StackSet action.
The roles need to be assumable by by the
administrationRole
, and need to have the permissions necessary to successfully create and modify the resources that the subsequent CloudFormation deployments need. Administrator permissions would be commonly granted to these, but if you can scope the permissions down frome there you would be safer.Default: AWSCloudFormationStackSetExecutionRole
-
builder
- Returns:
- a
SelfManagedDeploymentProps.Builder
ofSelfManagedDeploymentProps
-