Class CfnStackSet.StackInstancesProperty
Stack instances in some specific accounts and Regions.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.CloudFormation
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class StackInstancesProperty : Object, CfnStackSet.IStackInstancesProperty
Syntax (vb)
Public Class StackInstancesProperty
Inherits Object
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() |
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()
public StackInstancesProperty()
Properties
DeploymentTargets
The AWS OrganizationalUnitIds
or Accounts
for which to create stack instances in the specified Regions.
public object DeploymentTargets { get; set; }
Property Value
System.Object
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
System.Object
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
System.String[]