Example usage for com.amazonaws.services.sns.model SetTopicAttributesRequest getTopicArn

List of usage examples for com.amazonaws.services.sns.model SetTopicAttributesRequest getTopicArn

Introduction

In this page you can find the example usage for com.amazonaws.services.sns.model SetTopicAttributesRequest getTopicArn.

Prototype


public String getTopicArn() 

Source Link

Document

The ARN of the topic to modify.

Usage

From source file:org.apache.camel.component.aws.sns.AmazonSNSClientMock.java

License:Apache License

@Override
public void setTopicAttributes(SetTopicAttributesRequest setTopicAttributesRequest)
        throws AmazonServiceException, AmazonClientException {
    Assert.assertEquals(DEFAULT_TOPIC_ARN, setTopicAttributesRequest.getTopicArn());
    Assert.assertEquals("Policy", setTopicAttributesRequest.getAttributeName());
    Assert.assertEquals("XXX", setTopicAttributesRequest.getAttributeValue());
}