Example usage for com.amazonaws.services.cloudformation.model DescribeChangeSetResult getStatusReason

List of usage examples for com.amazonaws.services.cloudformation.model DescribeChangeSetResult getStatusReason

Introduction

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

Prototype


public String getStatusReason() 

Source Link

Document

A description of the change set's status.

Usage

From source file:com.github.kaklakariada.aws.sam.service.poll.ChangeSetCreateCompleteWaitCondition.java

License:Open Source License

@Override
public String getFailureMessage() {
    final DescribeChangeSetResult changeSetStatus = getChangeSetStatus();
    return changeSetStatus.getStatusReason() + " " + changeSetStatus.toString();
}