# Functions
DescribeStack takes a stackName as input and returns the Stack information along with any errors.
GetCFNTemplateBody takes a cfnTemplate and a corresponding struct as input and return the rendered template.
IsComplete tests if the specified string is considered a completed cloudformation stack state.
IsFailed tests if the specified string is considered a failed cloudformation stack state.
IsPending tests if the specified string is considered a pending cloudformation stack state.
IsStackDoesNotExist Checks if the error recieved for DescribeStacks denotes if the stack is non exsistent.
# Variables
CompleteStatuses contains all CloudFormation status strings considered complete.
FailedStatuses contains all CloudFormation status strings considered failed.
PendingStatuses contains all CloudFormation status strings consideredpending.
# Structs
MockCloudformationAPI provides mocked interface to AWS Cloudformation service.