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

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

Introduction

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

Prototype


public String getAttributeValue() 

Source Link

Document

The new value for the attribute.

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