interface StackInstancesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins.CfnStackSetPropsMixin.StackInstancesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/mixins#CfnStackSetPropsMixin_StackInstancesProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.mixins.CfnStackSetPropsMixin.StackInstancesProperty |
Python | aws_cdk.mixins_preview.aws_cloudformation.mixins.CfnStackSetPropsMixin.StackInstancesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudformation » mixins » 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 { mixins as cloudformation_mixins } from '@aws-cdk/mixins-preview/aws-cloudformation';
const stackInstancesProperty: cloudformation_mixins.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