Show / Hide Table of Contents

Class CfnStackSet.StackInstancesProperty

Stack instances in some specific accounts and Regions.

Inheritance
object
CfnStackSet.StackInstancesProperty
Implements
CfnStackSet.IStackInstancesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-stackinstances.html

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 OrganizationalUnitIds or Accounts for which to create stack instances in the specified Regions.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-stackinstances.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-stackinstances.html#cfn-cloudformation-stackset-stackinstances-deploymenttargets

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-stackinstances.html#cfn-cloudformation-stackset-stackinstances-parameteroverrides

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[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-stackinstances.html#cfn-cloudformation-stackset-stackinstances-regions

Implements

CfnStackSet.IStackInstancesProperty
Back to top Generated by DocFX