Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set aws_cloudformation_stack_set}.
using HashiCorp.Cdktf.Providers.Aws;
new CloudformationStackSet(Construct Scope, string Id, CloudformationStackSetConfig Config);
Name | Type | Description |
---|---|---|
Scope |
Constructs.Construct |
The scope in which to define this construct. |
Id |
string |
The scoped construct ID. |
Config |
CloudformationStackSetConfig |
No description. |
- Type: Constructs.Construct
The scope in which to define this construct.
- Type: string
The scoped construct ID.
Must be unique amongst siblings in the same scope
Name | Description |
---|---|
ToString |
Returns a string representation of this construct. |
AddOverride |
No description. |
OverrideLogicalId |
Overrides the auto-generated logical ID with a specific ID. |
ResetOverrideLogicalId |
Resets a previously passed logical Id to use the auto-generated logical id again. |
ToHclTerraform |
No description. |
ToMetadata |
No description. |
ToTerraform |
Adds this resource to the terraform JSON output. |
AddMoveTarget |
Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
GetAnyMapAttribute |
No description. |
GetBooleanAttribute |
No description. |
GetBooleanMapAttribute |
No description. |
GetListAttribute |
No description. |
GetNumberAttribute |
No description. |
GetNumberListAttribute |
No description. |
GetNumberMapAttribute |
No description. |
GetStringAttribute |
No description. |
GetStringMapAttribute |
No description. |
HasResourceMove |
No description. |
ImportFrom |
No description. |
InterpolationForAttribute |
No description. |
MoveFromId |
Move the resource corresponding to "id" to this resource. |
MoveTo |
Moves this resource to the target resource given by moveTarget. |
MoveToId |
Moves this resource to the resource corresponding to "id". |
PutAutoDeployment |
No description. |
PutManagedExecution |
No description. |
PutOperationPreferences |
No description. |
PutTimeouts |
No description. |
ResetAdministrationRoleArn |
No description. |
ResetAutoDeployment |
No description. |
ResetCallAs |
No description. |
ResetCapabilities |
No description. |
ResetDescription |
No description. |
ResetExecutionRoleName |
No description. |
ResetId |
No description. |
ResetManagedExecution |
No description. |
ResetOperationPreferences |
No description. |
ResetParameters |
No description. |
ResetPermissionModel |
No description. |
ResetTags |
No description. |
ResetTagsAll |
No description. |
ResetTemplateBody |
No description. |
ResetTemplateUrl |
No description. |
ResetTimeouts |
No description. |
private string ToString()
Returns a string representation of this construct.
private void AddOverride(string Path, object Value)
- Type: string
- Type: object
private void OverrideLogicalId(string NewLogicalId)
Overrides the auto-generated logical ID with a specific ID.
- Type: string
The new logical ID to use for this stack element.
private void ResetOverrideLogicalId()
Resets a previously passed logical Id to use the auto-generated logical id again.
private object ToHclTerraform()
private object ToMetadata()
private object ToTerraform()
Adds this resource to the terraform JSON output.
private void AddMoveTarget(string MoveTarget)
Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
- Type: string
The string move target that will correspond to this resource.
private System.Collections.Generic.IDictionary<string, object> GetAnyMapAttribute(string TerraformAttribute)
- Type: string
private IResolvable GetBooleanAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, bool> GetBooleanMapAttribute(string TerraformAttribute)
- Type: string
private string[] GetListAttribute(string TerraformAttribute)
- Type: string
private double GetNumberAttribute(string TerraformAttribute)
- Type: string
private double[] GetNumberListAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, double> GetNumberMapAttribute(string TerraformAttribute)
- Type: string
private string GetStringAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, string> GetStringMapAttribute(string TerraformAttribute)
- Type: string
private object HasResourceMove()
private void ImportFrom(string Id, TerraformProvider Provider = null)
- Type: string
- Type: HashiCorp.Cdktf.TerraformProvider
private IResolvable InterpolationForAttribute(string TerraformAttribute)
- Type: string
private void MoveFromId(string Id)
Move the resource corresponding to "id" to this resource.
Note that the resource being moved from must be marked as moved using it's instance function.
- Type: string
Full id of resource being moved from, e.g. "aws_s3_bucket.example".
private void MoveTo(string MoveTarget, object Index = null)
Moves this resource to the target resource given by moveTarget.
- Type: string
The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
- Type: object
Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
private void MoveToId(string Id)
Moves this resource to the resource corresponding to "id".
- Type: string
Full id of resource to move to, e.g. "aws_s3_bucket.example".
private void PutAutoDeployment(CloudformationStackSetAutoDeployment Value)
private void PutManagedExecution(CloudformationStackSetManagedExecution Value)
private void PutOperationPreferences(CloudformationStackSetOperationPreferences Value)
private void PutTimeouts(CloudformationStackSetTimeouts Value)
private void ResetAdministrationRoleArn()
private void ResetAutoDeployment()
private void ResetCallAs()
private void ResetCapabilities()
private void ResetDescription()
private void ResetExecutionRoleName()
private void ResetId()
private void ResetManagedExecution()
private void ResetOperationPreferences()
private void ResetParameters()
private void ResetPermissionModel()
private void ResetTags()
private void ResetTagsAll()
private void ResetTemplateBody()
private void ResetTemplateUrl()
private void ResetTimeouts()
Name | Description |
---|---|
IsConstruct |
Checks if x is a construct. |
IsTerraformElement |
No description. |
IsTerraformResource |
No description. |
GenerateConfigForImport |
Generates CDKTF code for importing a CloudformationStackSet resource upon running "cdktf plan ". |
using HashiCorp.Cdktf.Providers.Aws;
CloudformationStackSet.IsConstruct(object X);
Checks if x
is a construct.
Use this method instead of instanceof
to properly detect Construct
instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the constructs
library on
disk are seen as independent, completely different libraries. As a
consequence, the class Construct
in each copy of the constructs
library
is seen as a different class, and an instance of one class will not test as
instanceof
the other class. npm install
will not create installations
like this, but users may manually symlink construct libraries together or
use a monorepo tool: in those cases, multiple copies of the constructs
library can be accidentally installed, and instanceof
will behave
unpredictably. It is safest to avoid using instanceof
, and using
this type-testing method instead.
- Type: object
Any object.
using HashiCorp.Cdktf.Providers.Aws;
CloudformationStackSet.IsTerraformElement(object X);
- Type: object
using HashiCorp.Cdktf.Providers.Aws;
CloudformationStackSet.IsTerraformResource(object X);
- Type: object
using HashiCorp.Cdktf.Providers.Aws;
CloudformationStackSet.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);
Generates CDKTF code for importing a CloudformationStackSet resource upon running "cdktf plan ".
- Type: Constructs.Construct
The scope in which to define this construct.
- Type: string
The construct id used in the generated config for the CloudformationStackSet to import.
- Type: string
The id of the existing CloudformationStackSet that should be imported.
Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#import import section} in the documentation of this resource for the id to use
- Type: HashiCorp.Cdktf.TerraformProvider
? Optional instance of the provider where the CloudformationStackSet to import is found.
Name | Type | Description |
---|---|---|
Node |
Constructs.Node |
The tree node. |
CdktfStack |
HashiCorp.Cdktf.TerraformStack |
No description. |
Fqn |
string |
No description. |
FriendlyUniqueId |
string |
No description. |
TerraformMetaArguments |
System.Collections.Generic.IDictionary<string, object> |
No description. |
TerraformResourceType |
string |
No description. |
TerraformGeneratorMetadata |
HashiCorp.Cdktf.TerraformProviderGeneratorMetadata |
No description. |
Connection |
object |
No description. |
Count |
object |
No description. |
DependsOn |
string[] |
No description. |
ForEach |
HashiCorp.Cdktf.ITerraformIterator |
No description. |
Lifecycle |
HashiCorp.Cdktf.TerraformResourceLifecycle |
No description. |
Provider |
HashiCorp.Cdktf.TerraformProvider |
No description. |
Provisioners |
object[] |
No description. |
Arn |
string |
No description. |
AutoDeployment |
CloudformationStackSetAutoDeploymentOutputReference |
No description. |
ManagedExecution |
CloudformationStackSetManagedExecutionOutputReference |
No description. |
OperationPreferences |
CloudformationStackSetOperationPreferencesOutputReference |
No description. |
StackSetId |
string |
No description. |
Timeouts |
CloudformationStackSetTimeoutsOutputReference |
No description. |
AdministrationRoleArnInput |
string |
No description. |
AutoDeploymentInput |
CloudformationStackSetAutoDeployment |
No description. |
CallAsInput |
string |
No description. |
CapabilitiesInput |
string[] |
No description. |
DescriptionInput |
string |
No description. |
ExecutionRoleNameInput |
string |
No description. |
IdInput |
string |
No description. |
ManagedExecutionInput |
CloudformationStackSetManagedExecution |
No description. |
NameInput |
string |
No description. |
OperationPreferencesInput |
CloudformationStackSetOperationPreferences |
No description. |
ParametersInput |
System.Collections.Generic.IDictionary<string, string> |
No description. |
PermissionModelInput |
string |
No description. |
TagsAllInput |
System.Collections.Generic.IDictionary<string, string> |
No description. |
TagsInput |
System.Collections.Generic.IDictionary<string, string> |
No description. |
TemplateBodyInput |
string |
No description. |
TemplateUrlInput |
string |
No description. |
TimeoutsInput |
object |
No description. |
AdministrationRoleArn |
string |
No description. |
CallAs |
string |
No description. |
Capabilities |
string[] |
No description. |
Description |
string |
No description. |
ExecutionRoleName |
string |
No description. |
Id |
string |
No description. |
Name |
string |
No description. |
Parameters |
System.Collections.Generic.IDictionary<string, string> |
No description. |
PermissionModel |
string |
No description. |
Tags |
System.Collections.Generic.IDictionary<string, string> |
No description. |
TagsAll |
System.Collections.Generic.IDictionary<string, string> |
No description. |
TemplateBody |
string |
No description. |
TemplateUrl |
string |
No description. |
public Node Node { get; }
- Type: Constructs.Node
The tree node.
public TerraformStack CdktfStack { get; }
- Type: HashiCorp.Cdktf.TerraformStack
public string Fqn { get; }
- Type: string
public string FriendlyUniqueId { get; }
- Type: string
public System.Collections.Generic.IDictionary<string, object> TerraformMetaArguments { get; }
- Type: System.Collections.Generic.IDictionary<string, object>
public string TerraformResourceType { get; }
- Type: string
public TerraformProviderGeneratorMetadata TerraformGeneratorMetadata { get; }
- Type: HashiCorp.Cdktf.TerraformProviderGeneratorMetadata
public object Connection { get; }
- Type: object
public object Count { get; }
- Type: object
public string[] DependsOn { get; }
- Type: string[]
public ITerraformIterator ForEach { get; }
- Type: HashiCorp.Cdktf.ITerraformIterator
public TerraformResourceLifecycle Lifecycle { get; }
- Type: HashiCorp.Cdktf.TerraformResourceLifecycle
public TerraformProvider Provider { get; }
- Type: HashiCorp.Cdktf.TerraformProvider
public object[] Provisioners { get; }
- Type: object[]
public string Arn { get; }
- Type: string
public CloudformationStackSetAutoDeploymentOutputReference AutoDeployment { get; }
public CloudformationStackSetManagedExecutionOutputReference ManagedExecution { get; }
public CloudformationStackSetOperationPreferencesOutputReference OperationPreferences { get; }
public string StackSetId { get; }
- Type: string
public CloudformationStackSetTimeoutsOutputReference Timeouts { get; }
public string AdministrationRoleArnInput { get; }
- Type: string
public CloudformationStackSetAutoDeployment AutoDeploymentInput { get; }
public string CallAsInput { get; }
- Type: string
public string[] CapabilitiesInput { get; }
- Type: string[]
public string DescriptionInput { get; }
- Type: string
public string ExecutionRoleNameInput { get; }
- Type: string
public string IdInput { get; }
- Type: string
public CloudformationStackSetManagedExecution ManagedExecutionInput { get; }
public string NameInput { get; }
- Type: string
public CloudformationStackSetOperationPreferences OperationPreferencesInput { get; }
public System.Collections.Generic.IDictionary<string, string> ParametersInput { get; }
- Type: System.Collections.Generic.IDictionary<string, string>
public string PermissionModelInput { get; }
- Type: string
public System.Collections.Generic.IDictionary<string, string> TagsAllInput { get; }
- Type: System.Collections.Generic.IDictionary<string, string>
public System.Collections.Generic.IDictionary<string, string> TagsInput { get; }
- Type: System.Collections.Generic.IDictionary<string, string>
public string TemplateBodyInput { get; }
- Type: string
public string TemplateUrlInput { get; }
- Type: string
public object TimeoutsInput { get; }
- Type: object
public string AdministrationRoleArn { get; }
- Type: string
public string CallAs { get; }
- Type: string
public string[] Capabilities { get; }
- Type: string[]
public string Description { get; }
- Type: string
public string ExecutionRoleName { get; }
- Type: string
public string Id { get; }
- Type: string
public string Name { get; }
- Type: string
public System.Collections.Generic.IDictionary<string, string> Parameters { get; }
- Type: System.Collections.Generic.IDictionary<string, string>
public string PermissionModel { get; }
- Type: string
public System.Collections.Generic.IDictionary<string, string> Tags { get; }
- Type: System.Collections.Generic.IDictionary<string, string>
public System.Collections.Generic.IDictionary<string, string> TagsAll { get; }
- Type: System.Collections.Generic.IDictionary<string, string>
public string TemplateBody { get; }
- Type: string
public string TemplateUrl { get; }
- Type: string
Name | Type | Description |
---|---|---|
TfResourceType |
string |
No description. |
public string TfResourceType { get; }
- Type: string
using HashiCorp.Cdktf.Providers.Aws;
new CloudformationStackSetAutoDeployment {
object Enabled = null,
object RetainStacksOnAccountRemoval = null
};
Name | Type | Description |
---|---|---|
Enabled |
object |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#enabled CloudformationStackSet#enabled}. |
RetainStacksOnAccountRemoval |
object |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#retain_stacks_on_account_removal CloudformationStackSet#retain_stacks_on_account_removal}. |
public object Enabled { get; set; }
- Type: object
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#enabled CloudformationStackSet#enabled}.
public object RetainStacksOnAccountRemoval { get; set; }
- Type: object
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#retain_stacks_on_account_removal CloudformationStackSet#retain_stacks_on_account_removal}.
using HashiCorp.Cdktf.Providers.Aws;
new CloudformationStackSetConfig {
object Connection = null,
object Count = null,
ITerraformDependable[] DependsOn = null,
ITerraformIterator ForEach = null,
TerraformResourceLifecycle Lifecycle = null,
TerraformProvider Provider = null,
object[] Provisioners = null,
string Name,
string AdministrationRoleArn = null,
CloudformationStackSetAutoDeployment AutoDeployment = null,
string CallAs = null,
string[] Capabilities = null,
string Description = null,
string ExecutionRoleName = null,
string Id = null,
CloudformationStackSetManagedExecution ManagedExecution = null,
CloudformationStackSetOperationPreferences OperationPreferences = null,
System.Collections.Generic.IDictionary<string, string> Parameters = null,
string PermissionModel = null,
System.Collections.Generic.IDictionary<string, string> Tags = null,
System.Collections.Generic.IDictionary<string, string> TagsAll = null,
string TemplateBody = null,
string TemplateUrl = null,
CloudformationStackSetTimeouts Timeouts = null
};
public object Connection { get; set; }
- Type: object
public object Count { get; set; }
- Type: object
public ITerraformDependable[] DependsOn { get; set; }
- Type: HashiCorp.Cdktf.ITerraformDependable[]
public ITerraformIterator ForEach { get; set; }
- Type: HashiCorp.Cdktf.ITerraformIterator
public TerraformResourceLifecycle Lifecycle { get; set; }
- Type: HashiCorp.Cdktf.TerraformResourceLifecycle
public TerraformProvider Provider { get; set; }
- Type: HashiCorp.Cdktf.TerraformProvider
public object[] Provisioners { get; set; }
- Type: object[]
public string Name { get; set; }
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#name CloudformationStackSet#name}.
public string AdministrationRoleArn { get; set; }
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#administration_role_arn CloudformationStackSet#administration_role_arn}.
public CloudformationStackSetAutoDeployment AutoDeployment { get; set; }
auto_deployment block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#auto_deployment CloudformationStackSet#auto_deployment}
public string CallAs { get; set; }
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#call_as CloudformationStackSet#call_as}.
public string[] Capabilities { get; set; }
- Type: string[]
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#capabilities CloudformationStackSet#capabilities}.
public string Description { get; set; }
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#description CloudformationStackSet#description}.
public string ExecutionRoleName { get; set; }
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#execution_role_name CloudformationStackSet#execution_role_name}.
public string Id { get; set; }
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#id CloudformationStackSet#id}.
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
public CloudformationStackSetManagedExecution ManagedExecution { get; set; }
managed_execution block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#managed_execution CloudformationStackSet#managed_execution}
public CloudformationStackSetOperationPreferences OperationPreferences { get; set; }
operation_preferences block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#operation_preferences CloudformationStackSet#operation_preferences}
public System.Collections.Generic.IDictionary<string, string> Parameters { get; set; }
- Type: System.Collections.Generic.IDictionary<string, string>
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#parameters CloudformationStackSet#parameters}.
public string PermissionModel { get; set; }
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#permission_model CloudformationStackSet#permission_model}.
public System.Collections.Generic.IDictionary<string, string> Tags { get; set; }
- Type: System.Collections.Generic.IDictionary<string, string>
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#tags CloudformationStackSet#tags}.
public System.Collections.Generic.IDictionary<string, string> TagsAll { get; set; }
- Type: System.Collections.Generic.IDictionary<string, string>
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#tags_all CloudformationStackSet#tags_all}.
public string TemplateBody { get; set; }
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#template_body CloudformationStackSet#template_body}.
public string TemplateUrl { get; set; }
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#template_url CloudformationStackSet#template_url}.
public CloudformationStackSetTimeouts Timeouts { get; set; }
timeouts block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#timeouts CloudformationStackSet#timeouts}
using HashiCorp.Cdktf.Providers.Aws;
new CloudformationStackSetManagedExecution {
object Active = null
};
Name | Type | Description |
---|---|---|
Active |
object |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#active CloudformationStackSet#active}. |
public object Active { get; set; }
- Type: object
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#active CloudformationStackSet#active}.
using HashiCorp.Cdktf.Providers.Aws;
new CloudformationStackSetOperationPreferences {
double FailureToleranceCount = null,
double FailureTolerancePercentage = null,
double MaxConcurrentCount = null,
double MaxConcurrentPercentage = null,
string RegionConcurrencyType = null,
string[] RegionOrder = null
};
public double FailureToleranceCount { get; set; }
- Type: double
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#failure_tolerance_count CloudformationStackSet#failure_tolerance_count}.
public double FailureTolerancePercentage { get; set; }
- Type: double
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#failure_tolerance_percentage CloudformationStackSet#failure_tolerance_percentage}.
public double MaxConcurrentCount { get; set; }
- Type: double
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#max_concurrent_count CloudformationStackSet#max_concurrent_count}.
public double MaxConcurrentPercentage { get; set; }
- Type: double
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#max_concurrent_percentage CloudformationStackSet#max_concurrent_percentage}.
public string RegionConcurrencyType { get; set; }
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#region_concurrency_type CloudformationStackSet#region_concurrency_type}.
public string[] RegionOrder { get; set; }
- Type: string[]
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#region_order CloudformationStackSet#region_order}.
using HashiCorp.Cdktf.Providers.Aws;
new CloudformationStackSetTimeouts {
string Update = null
};
Name | Type | Description |
---|---|---|
Update |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#update CloudformationStackSet#update}. |
public string Update { get; set; }
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.83.0/docs/resources/cloudformation_stack_set#update CloudformationStackSet#update}.
using HashiCorp.Cdktf.Providers.Aws;
new CloudformationStackSetAutoDeploymentOutputReference(IInterpolatingParent TerraformResource, string TerraformAttribute);
Name | Type | Description |
---|---|---|
TerraformResource |
HashiCorp.Cdktf.IInterpolatingParent |
The parent resource. |
TerraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: HashiCorp.Cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
ComputeFqn |
No description. |
GetAnyMapAttribute |
No description. |
GetBooleanAttribute |
No description. |
GetBooleanMapAttribute |
No description. |
GetListAttribute |
No description. |
GetNumberAttribute |
No description. |
GetNumberListAttribute |
No description. |
GetNumberMapAttribute |
No description. |
GetStringAttribute |
No description. |
GetStringMapAttribute |
No description. |
InterpolationForAttribute |
No description. |
Resolve |
Produce the Token's value at resolution time. |
ToString |
Return a string representation of this resolvable object. |
ResetEnabled |
No description. |
ResetRetainStacksOnAccountRemoval |
No description. |
private string ComputeFqn()
private System.Collections.Generic.IDictionary<string, object> GetAnyMapAttribute(string TerraformAttribute)
- Type: string
private IResolvable GetBooleanAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, bool> GetBooleanMapAttribute(string TerraformAttribute)
- Type: string
private string[] GetListAttribute(string TerraformAttribute)
- Type: string
private double GetNumberAttribute(string TerraformAttribute)
- Type: string
private double[] GetNumberListAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, double> GetNumberMapAttribute(string TerraformAttribute)
- Type: string
private string GetStringAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, string> GetStringMapAttribute(string TerraformAttribute)
- Type: string
private IResolvable InterpolationForAttribute(string Property)
- Type: string
private object Resolve(IResolveContext Context)
Produce the Token's value at resolution time.
- Type: HashiCorp.Cdktf.IResolveContext
private string ToString()
Return a string representation of this resolvable object.
Returns a reversible string representation.
private void ResetEnabled()
private void ResetRetainStacksOnAccountRemoval()
Name | Type | Description |
---|---|---|
CreationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
Fqn |
string |
No description. |
EnabledInput |
object |
No description. |
RetainStacksOnAccountRemovalInput |
object |
No description. |
Enabled |
object |
No description. |
RetainStacksOnAccountRemoval |
object |
No description. |
InternalValue |
CloudformationStackSetAutoDeployment |
No description. |
public string[] CreationStack { get; }
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public string Fqn { get; }
- Type: string
public object EnabledInput { get; }
- Type: object
public object RetainStacksOnAccountRemovalInput { get; }
- Type: object
public object Enabled { get; }
- Type: object
public object RetainStacksOnAccountRemoval { get; }
- Type: object
public CloudformationStackSetAutoDeployment InternalValue { get; }
using HashiCorp.Cdktf.Providers.Aws;
new CloudformationStackSetManagedExecutionOutputReference(IInterpolatingParent TerraformResource, string TerraformAttribute);
Name | Type | Description |
---|---|---|
TerraformResource |
HashiCorp.Cdktf.IInterpolatingParent |
The parent resource. |
TerraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: HashiCorp.Cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
ComputeFqn |
No description. |
GetAnyMapAttribute |
No description. |
GetBooleanAttribute |
No description. |
GetBooleanMapAttribute |
No description. |
GetListAttribute |
No description. |
GetNumberAttribute |
No description. |
GetNumberListAttribute |
No description. |
GetNumberMapAttribute |
No description. |
GetStringAttribute |
No description. |
GetStringMapAttribute |
No description. |
InterpolationForAttribute |
No description. |
Resolve |
Produce the Token's value at resolution time. |
ToString |
Return a string representation of this resolvable object. |
ResetActive |
No description. |
private string ComputeFqn()
private System.Collections.Generic.IDictionary<string, object> GetAnyMapAttribute(string TerraformAttribute)
- Type: string
private IResolvable GetBooleanAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, bool> GetBooleanMapAttribute(string TerraformAttribute)
- Type: string
private string[] GetListAttribute(string TerraformAttribute)
- Type: string
private double GetNumberAttribute(string TerraformAttribute)
- Type: string
private double[] GetNumberListAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, double> GetNumberMapAttribute(string TerraformAttribute)
- Type: string
private string GetStringAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, string> GetStringMapAttribute(string TerraformAttribute)
- Type: string
private IResolvable InterpolationForAttribute(string Property)
- Type: string
private object Resolve(IResolveContext Context)
Produce the Token's value at resolution time.
- Type: HashiCorp.Cdktf.IResolveContext
private string ToString()
Return a string representation of this resolvable object.
Returns a reversible string representation.
private void ResetActive()
Name | Type | Description |
---|---|---|
CreationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
Fqn |
string |
No description. |
ActiveInput |
object |
No description. |
Active |
object |
No description. |
InternalValue |
CloudformationStackSetManagedExecution |
No description. |
public string[] CreationStack { get; }
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public string Fqn { get; }
- Type: string
public object ActiveInput { get; }
- Type: object
public object Active { get; }
- Type: object
public CloudformationStackSetManagedExecution InternalValue { get; }
using HashiCorp.Cdktf.Providers.Aws;
new CloudformationStackSetOperationPreferencesOutputReference(IInterpolatingParent TerraformResource, string TerraformAttribute);
Name | Type | Description |
---|---|---|
TerraformResource |
HashiCorp.Cdktf.IInterpolatingParent |
The parent resource. |
TerraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: HashiCorp.Cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
ComputeFqn |
No description. |
GetAnyMapAttribute |
No description. |
GetBooleanAttribute |
No description. |
GetBooleanMapAttribute |
No description. |
GetListAttribute |
No description. |
GetNumberAttribute |
No description. |
GetNumberListAttribute |
No description. |
GetNumberMapAttribute |
No description. |
GetStringAttribute |
No description. |
GetStringMapAttribute |
No description. |
InterpolationForAttribute |
No description. |
Resolve |
Produce the Token's value at resolution time. |
ToString |
Return a string representation of this resolvable object. |
ResetFailureToleranceCount |
No description. |
ResetFailureTolerancePercentage |
No description. |
ResetMaxConcurrentCount |
No description. |
ResetMaxConcurrentPercentage |
No description. |
ResetRegionConcurrencyType |
No description. |
ResetRegionOrder |
No description. |
private string ComputeFqn()
private System.Collections.Generic.IDictionary<string, object> GetAnyMapAttribute(string TerraformAttribute)
- Type: string
private IResolvable GetBooleanAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, bool> GetBooleanMapAttribute(string TerraformAttribute)
- Type: string
private string[] GetListAttribute(string TerraformAttribute)
- Type: string
private double GetNumberAttribute(string TerraformAttribute)
- Type: string
private double[] GetNumberListAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, double> GetNumberMapAttribute(string TerraformAttribute)
- Type: string
private string GetStringAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, string> GetStringMapAttribute(string TerraformAttribute)
- Type: string
private IResolvable InterpolationForAttribute(string Property)
- Type: string
private object Resolve(IResolveContext Context)
Produce the Token's value at resolution time.
- Type: HashiCorp.Cdktf.IResolveContext
private string ToString()
Return a string representation of this resolvable object.
Returns a reversible string representation.
private void ResetFailureToleranceCount()
private void ResetFailureTolerancePercentage()
private void ResetMaxConcurrentCount()
private void ResetMaxConcurrentPercentage()
private void ResetRegionConcurrencyType()
private void ResetRegionOrder()
Name | Type | Description |
---|---|---|
CreationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
Fqn |
string |
No description. |
FailureToleranceCountInput |
double |
No description. |
FailureTolerancePercentageInput |
double |
No description. |
MaxConcurrentCountInput |
double |
No description. |
MaxConcurrentPercentageInput |
double |
No description. |
RegionConcurrencyTypeInput |
string |
No description. |
RegionOrderInput |
string[] |
No description. |
FailureToleranceCount |
double |
No description. |
FailureTolerancePercentage |
double |
No description. |
MaxConcurrentCount |
double |
No description. |
MaxConcurrentPercentage |
double |
No description. |
RegionConcurrencyType |
string |
No description. |
RegionOrder |
string[] |
No description. |
InternalValue |
CloudformationStackSetOperationPreferences |
No description. |
public string[] CreationStack { get; }
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public string Fqn { get; }
- Type: string
public double FailureToleranceCountInput { get; }
- Type: double
public double FailureTolerancePercentageInput { get; }
- Type: double
public double MaxConcurrentCountInput { get; }
- Type: double
public double MaxConcurrentPercentageInput { get; }
- Type: double
public string RegionConcurrencyTypeInput { get; }
- Type: string
public string[] RegionOrderInput { get; }
- Type: string[]
public double FailureToleranceCount { get; }
- Type: double
public double FailureTolerancePercentage { get; }
- Type: double
public double MaxConcurrentCount { get; }
- Type: double
public double MaxConcurrentPercentage { get; }
- Type: double
public string RegionConcurrencyType { get; }
- Type: string
public string[] RegionOrder { get; }
- Type: string[]
public CloudformationStackSetOperationPreferences InternalValue { get; }
using HashiCorp.Cdktf.Providers.Aws;
new CloudformationStackSetTimeoutsOutputReference(IInterpolatingParent TerraformResource, string TerraformAttribute);
Name | Type | Description |
---|---|---|
TerraformResource |
HashiCorp.Cdktf.IInterpolatingParent |
The parent resource. |
TerraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: HashiCorp.Cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
ComputeFqn |
No description. |
GetAnyMapAttribute |
No description. |
GetBooleanAttribute |
No description. |
GetBooleanMapAttribute |
No description. |
GetListAttribute |
No description. |
GetNumberAttribute |
No description. |
GetNumberListAttribute |
No description. |
GetNumberMapAttribute |
No description. |
GetStringAttribute |
No description. |
GetStringMapAttribute |
No description. |
InterpolationForAttribute |
No description. |
Resolve |
Produce the Token's value at resolution time. |
ToString |
Return a string representation of this resolvable object. |
ResetUpdate |
No description. |
private string ComputeFqn()
private System.Collections.Generic.IDictionary<string, object> GetAnyMapAttribute(string TerraformAttribute)
- Type: string
private IResolvable GetBooleanAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, bool> GetBooleanMapAttribute(string TerraformAttribute)
- Type: string
private string[] GetListAttribute(string TerraformAttribute)
- Type: string
private double GetNumberAttribute(string TerraformAttribute)
- Type: string
private double[] GetNumberListAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, double> GetNumberMapAttribute(string TerraformAttribute)
- Type: string
private string GetStringAttribute(string TerraformAttribute)
- Type: string
private System.Collections.Generic.IDictionary<string, string> GetStringMapAttribute(string TerraformAttribute)
- Type: string
private IResolvable InterpolationForAttribute(string Property)
- Type: string
private object Resolve(IResolveContext Context)
Produce the Token's value at resolution time.
- Type: HashiCorp.Cdktf.IResolveContext
private string ToString()
Return a string representation of this resolvable object.
Returns a reversible string representation.
private void ResetUpdate()
Name | Type | Description |
---|---|---|
CreationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
Fqn |
string |
No description. |
UpdateInput |
string |
No description. |
Update |
string |
No description. |
InternalValue |
object |
No description. |
public string[] CreationStack { get; }
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public string Fqn { get; }
- Type: string
public string UpdateInput { get; }
- Type: string
public string Update { get; }
- Type: string
public object InternalValue { get; }
- Type: object