Class CfnStackSet.StackInstancesProperty
Stack instances in some specific accounts and Regions.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CloudFormation
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnStackSet.StackInstancesProperty : CfnStackSet.IStackInstancesProperty
Syntax (vb)
Public Class CfnStackSet.StackInstancesProperty Implements CfnStackSet.IStackInstancesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CloudFormation;
var stackInstancesProperty = new StackInstancesProperty {
DeploymentTargets = new DeploymentTargetsProperty {
AccountFilterType = "accountFilterType",
Accounts = new [] { "accounts" },
AccountsUrl = "accountsUrl",
OrganizationalUnitIds = new [] { "organizationalUnitIds" }
},
Regions = new [] { "regions" },
// the properties below are optional
ParameterOverrides = new [] { new ParameterProperty {
ParameterKey = "parameterKey",
ParameterValue = "parameterValue"
} }
};
Synopsis
Constructors
StackInstancesProperty() | Stack instances in some specific accounts and Regions. |
Properties
DeploymentTargets | The AWS |
ParameterOverrides | A list of stack set parameters whose values you want to override in the selected stack instances. |
Regions | The names of one or more Regions where you want to create stack instances using the specified AWS accounts . |
Constructors
StackInstancesProperty()
Stack instances in some specific accounts and Regions.
public StackInstancesProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CloudFormation;
var stackInstancesProperty = new StackInstancesProperty {
DeploymentTargets = new DeploymentTargetsProperty {
AccountFilterType = "accountFilterType",
Accounts = new [] { "accounts" },
AccountsUrl = "accountsUrl",
OrganizationalUnitIds = new [] { "organizationalUnitIds" }
},
Regions = new [] { "regions" },
// the properties below are optional
ParameterOverrides = new [] { new ParameterProperty {
ParameterKey = "parameterKey",
ParameterValue = "parameterValue"
} }
};
Properties
DeploymentTargets
The AWS OrganizationalUnitIds
or Accounts
for which to create stack instances in the specified Regions.
public object DeploymentTargets { get; set; }
Property Value
Remarks
ParameterOverrides
A list of stack set parameters whose values you want to override in the selected stack instances.
public object? ParameterOverrides { get; set; }
Property Value
Remarks
Regions
The names of one or more Regions where you want to create stack instances using the specified AWS accounts .
public string[] Regions { get; set; }
Property Value
string[]