interface StackInstancesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation.CfnStackSetPropsMixin.StackInstancesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudformation#CfnStackSetPropsMixin_StackInstancesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudformation.CfnStackSetPropsMixin.StackInstancesProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudformation.CfnStackSetPropsMixin.StackInstancesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudformation » CfnStackSetPropsMixin » StackInstancesProperty |
Stack instances in some specific accounts and Regions.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudformation as cloudformation } from '@aws-cdk/cfn-property-mixins';
const stackInstancesProperty: cloudformation.CfnStackSetPropsMixin.StackInstancesProperty = {
deploymentTargets: {
accountFilterType: 'accountFilterType',
accounts: ['accounts'],
accountsUrl: 'accountsUrl',
organizationalUnitIds: ['organizationalUnitIds'],
},
parameterOverrides: [{
parameterKey: 'parameterKey',
parameterValue: 'parameterValue',
}],
regions: ['regions'],
};
Properties
| Name | Type | Description |
|---|---|---|
| deployment | IResolvable | Deployment | The AWS Organizations accounts or AWS accounts to deploy stacks to in the specified Regions. |
| parameter | IResolvable | (IResolvable | Parameter)[] | A list of StackSet parameters whose values you want to override in the selected stack instances. |
| regions? | string[] | The names of one or more Regions where you want to create stack instances using the specified AWS accounts . |
deploymentTargets?
Type:
IResolvable | Deployment
(optional)
The AWS Organizations accounts or AWS accounts to deploy stacks to in the specified Regions.
parameterOverrides?
Type:
IResolvable | (IResolvable | Parameter)[]
(optional)
A list of StackSet parameters whose values you want to override in the selected stack instances.
regions?
Type:
string[]
(optional)
The names of one or more Regions where you want to create stack instances using the specified AWS accounts .

.NET
Go
Java
Python
TypeScript