Initialize connection to CloudFormation
options parameter must include values for :aws_access_key_id and :aws_secret_access_key in order to create a connection
cf = CloudFormation.new( :aws_access_key_id => your_aws_access_key_id, :aws_secret_access_key => your_aws_secret_access_key )
Create a stack
or (one of the two Template parameters is required)
docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_CreateStack.html
Delete a stack
docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_DeleteStack.html
Describe stack events
docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_DescribeStackEvents.html
Describe stack resources
or (one of PhysicalResourceId and StackName is required)
docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_DescribeStackResources.html
Describe stacks
docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_DescribeStacks.html
Describe stacks
docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_GetTemplate.html
Update a stack
or (one of the two Template parameters is required)
docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_UpdateStack.html
Describe stacks
docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_ValidateTemplate.html