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

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

Introduction

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

Prototype

DescribeStackResourceRequest

Source Link

Usage

From source file:com.clicktravel.infrastructure.provisioning.aws.cloudformation.Stack.java

License:Apache License

public StackResourceDetail describeResource(final String logicalResourceId) {
    final DescribeStackResourceRequest request = new DescribeStackResourceRequest()
            .withLogicalResourceId(logicalResourceId).withStackName(name);
    final DescribeStackResourceResult result = cloudFormationClient.describeStackResource(request);
    return result.getStackResourceDetail();
}