Interface CfnStackSet.IStackInstancesProperty
Stack instances in some specific accounts and Regions.
public interface CfnStackSet.IStackInstancesProperty
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
var stackInstancesProperty = new StackInstancesProperty {
DeploymentTargets = new DeploymentTargetsProperty {
AccountFilterType = "accountFilterType",
Accounts = new [] { "accounts" },
OrganizationalUnitIds = new [] { "organizationalUnitIds" }
},
Regions = new [] { "regions" },
// the properties below are optional
ParameterOverrides = new [] { new ParameterProperty {
ParameterKey = "parameterKey",
ParameterValue = "parameterValue"
} }
};
Remarks
ExampleMetadata: fixture=_generated
Properties
DeploymentTargets
The AWS OrganizationalUnitIds
or Accounts
for which to create stack instances in the specified Regions.
object DeploymentTargets { get; }
Property Value
Remarks
ParameterOverrides
A list of stack set parameters whose values you want to override in the selected stack instances.
object? ParameterOverrides { get; }
Property Value
Remarks
Regions
The names of one or more Regions where you want to create stack instances using the specified AWS accounts .
string[] Regions { get; }
Property Value
- string[]