Example usage for com.amazonaws.services.cloudformation.model Stack Stack

List of usage examples for com.amazonaws.services.cloudformation.model Stack Stack

Introduction

In this page you can find the example usage for com.amazonaws.services.cloudformation.model Stack Stack.

Prototype

Stack

Source Link

Usage

From source file:com.carrotgarden.maven.aws.cfn.CarrotCloudForm.java

License:BSD License

private Stack newStackWithStatus(final StackStatus status, final String reason) {

    final Stack stack = new Stack();

    stack.setStackName(name);// www  .  ja  v a  2 s .co m
    stack.setStackStatus(status);
    stack.setStackStatusReason(reason);

    return stack;

}