interface StackInstancesProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.CfnStackSet.StackInstancesProperty |
![]() | software.amazon.awscdk.core.CfnStackSet.StackInstancesProperty |
![]() | aws_cdk.core.CfnStackSet.StackInstancesProperty |
![]() | @aws-cdk/core » CfnStackSet » 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 * as cdk from '@aws-cdk/core';
const stackInstancesProperty: cdk.CfnStackSet.StackInstancesProperty = {
deploymentTargets: {
accountFilterType: 'accountFilterType',
accounts: ['accounts'],
organizationalUnitIds: ['organizationalUnitIds'],
},
regions: ['regions'],
// the properties below are optional
parameterOverrides: [{
parameterKey: 'parameterKey',
parameterValue: 'parameterValue',
}],
};
Properties
Name | Type | Description |
---|---|---|
deployment | IResolvable | Deployment | The AWS OrganizationalUnitIds or Accounts for which to create stack instances in the specified Regions. |
regions | string[] | The names of one or more Regions where you want to create stack instances using the specified AWS accounts . |
parameter | IResolvable | IResolvable | Parameter [] | A list of stack set parameters whose values you want to override in the selected stack instances. |
deploymentTargets
Type:
IResolvable
|
Deployment
The AWS OrganizationalUnitIds
or Accounts
for which to create stack instances in the specified Regions.
regions
Type:
string[]
The names of one or more Regions where you want to create stack instances using the specified AWS accounts .
parameterOverrides?
Type:
IResolvable
|
IResolvable
|
Parameter
[]
(optional)
A list of stack set parameters whose values you want to override in the selected stack instances.