use of com.amazonaws.services.sns.model.CreateTopicResult in project tutorials by eugenp.
the class SpringCloudSNSIntegrationTest method setupAwsResources.
@BeforeClass
public static void setupAwsResources() {
topicName = UUID.randomUUID().toString();
AmazonSNS amazonSNS = SpringCloudAwsTestUtil.amazonSNS();
CreateTopicResult result = amazonSNS.createTopic(topicName);
topicArn = result.getTopicArn();
}
Aggregations