Created
February 3, 2016 17:19
-
-
Save Thunderbird7/a6c878daf681a97c73e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// AWS SNS Config | |
// Credential | |
AWSStaticCredentialsProvider *credential = [[AWSStaticCredentialsProvider alloc] initWithAccessKey:@"YOUR_AMAZON_ACCESSKEY" | |
secretKey:@"YOUR_AMAZON_SECERT"]; | |
// Config region | |
AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionAPSoutheast1 | |
credentialsProvider:credential]; | |
[AWSServiceManager defaultServiceManager].defaultServiceConfiguration = configuration; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment