Show / Hide Table of Contents

Interface CfnStackSet.IDeploymentTargetsProperty

The AWS OrganizationalUnitIds or Accounts for which to create stack instances in the specified Regions.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public interface IDeploymentTargetsProperty
Syntax (vb)
Public Interface IDeploymentTargetsProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-deploymenttargets.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;
DeploymentTargetsProperty deploymentTargetsProperty = new DeploymentTargetsProperty {
    AccountFilterType = "accountFilterType",
    Accounts = new [] { "accounts" },
    OrganizationalUnitIds = new [] { "organizationalUnitIds" }
};

Synopsis

Properties

AccountFilterType

CfnStackSet.DeploymentTargetsProperty.AccountFilterType.

Accounts

The names of one or more AWS accounts for which you want to deploy stack set updates.

OrganizationalUnitIds

The organization root ID or organizational unit (OU) IDs to which StackSets deploys.

Properties

AccountFilterType

CfnStackSet.DeploymentTargetsProperty.AccountFilterType.

virtual string AccountFilterType { get; }
Property Value

System.String

Remarks

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

Accounts

The names of one or more AWS accounts for which you want to deploy stack set updates.

virtual string[] Accounts { get; }
Property Value

System.String[]

Remarks

Pattern : ^[0-9]{12}$

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

OrganizationalUnitIds

The organization root ID or organizational unit (OU) IDs to which StackSets deploys.

virtual string[] OrganizationalUnitIds { get; }
Property Value

System.String[]

Remarks

Pattern : ^(ou-[a-z0-9]{4,32}-[a-z0-9]{8,32}|r-[a-z0-9]{4,32})$

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

Back to top Generated by DocFX