Show / Hide Table of Contents

Interface CfnStackSetPropsMixin.IManagedExecutionProperty

Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.

Namespace: Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnStackSetPropsMixin.IManagedExecutionProperty
Syntax (vb)
Public Interface CfnStackSetPropsMixin.IManagedExecutionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-managedexecution.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.Mixins.Preview.AWS.CloudFormation.Mixins;

             var managedExecutionProperty = new ManagedExecutionProperty {
                 Active = false
             };

Synopsis

Properties

Active

When true , CloudFormation performs non-conflicting operations concurrently and queues conflicting operations.

Properties

Active

When true , CloudFormation performs non-conflicting operations concurrently and queues conflicting operations.

object? Active { get; }
Property Value

object

Remarks

After conflicting operations finish, CloudFormation starts queued operations in request order.

If there are already running or queued operations, CloudFormation queues all incoming operations even if they are non-conflicting.

You can't modify your StackSet's execution configuration while there are running or queued operations for that StackSet.

When false (default), StackSets performs one operation at a time in request order.

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

Type union: either bool or IResolvable

Back to top Generated by DocFX