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

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

Introduction

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

Prototype


public String getAttributeName() 

Source Link

Document

A map of attributes with their corresponding values.

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