Class CfnResourceSignal
When AWS CloudFormation creates the associated resource, configures the number of required success signals and the length of time that AWS CloudFormation waits for those signals.
Inheritance
Implements
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnResourceSignal : Object, ICfnResourceSignal
Syntax (vb)
Public Class CfnResourceSignal
Inherits Object
Implements ICfnResourceSignal
Remarks
ExampleMetadata: infused
Examples
CfnResource resource;
resource.CfnOptions.CreationPolicy = new CfnCreationPolicy {
ResourceSignal = new CfnResourceSignal {
Count = 3,
Timeout = "PR15M"
}
};
Synopsis
Constructors
CfnResourceSignal() |
Properties
Count | The number of success signals AWS CloudFormation must receive before it sets the resource status as CREATE_COMPLETE. |
Timeout | The length of time that AWS CloudFormation waits for the number of signals that was specified in the Count property. |
Constructors
CfnResourceSignal()
public CfnResourceSignal()
Properties
Count
The number of success signals AWS CloudFormation must receive before it sets the resource status as CREATE_COMPLETE.
public Nullable<double> Count { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
If the resource receives a failure signal or doesn't receive the specified number of signals before the timeout period expires, the resource creation fails and AWS CloudFormation rolls the stack back.
Timeout
The length of time that AWS CloudFormation waits for the number of signals that was specified in the Count property.
public string Timeout { get; set; }
Property Value
System.String
Remarks
The timeout period starts after AWS CloudFormation starts creating the resource, and the timeout expires no sooner than the time you specify but can occur shortly thereafter. The maximum time that you can specify is 12 hours.