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

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

Introduction

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

Prototype

@Override
public String toString() 

Source Link

Document

Returns a string representation of this object.

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();
}