C# Class Amazon.CloudFormation.Util.AmazonCloudFormationUtil

Datei anzeigen Open project: scopely/aws-sdk-net

Public Methods

Method Description
SignalWaitCondition ( string presignedURL, string status, string reason, string uniqueId, string data ) : void

This method will signal to the CloudFormation the status of a wait condition.

Method Details

SignalWaitCondition() public static method

This method will signal to the CloudFormation the status of a wait condition.
public static SignalWaitCondition ( string presignedURL, string status, string reason, string uniqueId, string data ) : void
presignedURL string The URL returned from the creation of a WaitHandle in a CloudFormation Stack
status string SUCCESS or FAILURE for the status of a stack
reason string The reason for the status
uniqueId string A unique identifier for the signal. Using Guid.NewGuid().ToString()can be used for this.
data string Data to be passed back for later use in the template.
return void