mirror of
https://github.com/rclone/rclone.git
synced 2025-12-21 10:43:37 +00:00
Switch to using the dep tool and update all the dependencies
This commit is contained in:
704
vendor/github.com/aws/aws-sdk-go/service/sns/examples_test.go
generated
vendored
Normal file
704
vendor/github.com/aws/aws-sdk-go/service/sns/examples_test.go
generated
vendored
Normal file
@@ -0,0 +1,704 @@
|
||||
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
|
||||
|
||||
package sns_test
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/aws/aws-sdk-go/aws"
|
||||
"github.com/aws/aws-sdk-go/aws/session"
|
||||
"github.com/aws/aws-sdk-go/service/sns"
|
||||
)
|
||||
|
||||
var _ time.Duration
|
||||
var _ bytes.Buffer
|
||||
|
||||
func ExampleSNS_AddPermission() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.AddPermissionInput{
|
||||
AWSAccountId: []*string{ // Required
|
||||
aws.String("delegate"), // Required
|
||||
// More values...
|
||||
},
|
||||
ActionName: []*string{ // Required
|
||||
aws.String("action"), // Required
|
||||
// More values...
|
||||
},
|
||||
Label: aws.String("label"), // Required
|
||||
TopicArn: aws.String("topicARN"), // Required
|
||||
}
|
||||
resp, err := svc.AddPermission(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_CheckIfPhoneNumberIsOptedOut() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.CheckIfPhoneNumberIsOptedOutInput{
|
||||
PhoneNumber: aws.String("PhoneNumber"), // Required
|
||||
}
|
||||
resp, err := svc.CheckIfPhoneNumberIsOptedOut(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_ConfirmSubscription() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.ConfirmSubscriptionInput{
|
||||
Token: aws.String("token"), // Required
|
||||
TopicArn: aws.String("topicARN"), // Required
|
||||
AuthenticateOnUnsubscribe: aws.String("authenticateOnUnsubscribe"),
|
||||
}
|
||||
resp, err := svc.ConfirmSubscription(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_CreatePlatformApplication() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.CreatePlatformApplicationInput{
|
||||
Attributes: map[string]*string{ // Required
|
||||
"Key": aws.String("String"), // Required
|
||||
// More values...
|
||||
},
|
||||
Name: aws.String("String"), // Required
|
||||
Platform: aws.String("String"), // Required
|
||||
}
|
||||
resp, err := svc.CreatePlatformApplication(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_CreatePlatformEndpoint() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.CreatePlatformEndpointInput{
|
||||
PlatformApplicationArn: aws.String("String"), // Required
|
||||
Token: aws.String("String"), // Required
|
||||
Attributes: map[string]*string{
|
||||
"Key": aws.String("String"), // Required
|
||||
// More values...
|
||||
},
|
||||
CustomUserData: aws.String("String"),
|
||||
}
|
||||
resp, err := svc.CreatePlatformEndpoint(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_CreateTopic() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.CreateTopicInput{
|
||||
Name: aws.String("topicName"), // Required
|
||||
}
|
||||
resp, err := svc.CreateTopic(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_DeleteEndpoint() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.DeleteEndpointInput{
|
||||
EndpointArn: aws.String("String"), // Required
|
||||
}
|
||||
resp, err := svc.DeleteEndpoint(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_DeletePlatformApplication() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.DeletePlatformApplicationInput{
|
||||
PlatformApplicationArn: aws.String("String"), // Required
|
||||
}
|
||||
resp, err := svc.DeletePlatformApplication(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_DeleteTopic() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.DeleteTopicInput{
|
||||
TopicArn: aws.String("topicARN"), // Required
|
||||
}
|
||||
resp, err := svc.DeleteTopic(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_GetEndpointAttributes() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.GetEndpointAttributesInput{
|
||||
EndpointArn: aws.String("String"), // Required
|
||||
}
|
||||
resp, err := svc.GetEndpointAttributes(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_GetPlatformApplicationAttributes() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.GetPlatformApplicationAttributesInput{
|
||||
PlatformApplicationArn: aws.String("String"), // Required
|
||||
}
|
||||
resp, err := svc.GetPlatformApplicationAttributes(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_GetSMSAttributes() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.GetSMSAttributesInput{
|
||||
Attributes: []*string{
|
||||
aws.String("String"), // Required
|
||||
// More values...
|
||||
},
|
||||
}
|
||||
resp, err := svc.GetSMSAttributes(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_GetSubscriptionAttributes() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.GetSubscriptionAttributesInput{
|
||||
SubscriptionArn: aws.String("subscriptionARN"), // Required
|
||||
}
|
||||
resp, err := svc.GetSubscriptionAttributes(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_GetTopicAttributes() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.GetTopicAttributesInput{
|
||||
TopicArn: aws.String("topicARN"), // Required
|
||||
}
|
||||
resp, err := svc.GetTopicAttributes(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_ListEndpointsByPlatformApplication() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.ListEndpointsByPlatformApplicationInput{
|
||||
PlatformApplicationArn: aws.String("String"), // Required
|
||||
NextToken: aws.String("String"),
|
||||
}
|
||||
resp, err := svc.ListEndpointsByPlatformApplication(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_ListPhoneNumbersOptedOut() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.ListPhoneNumbersOptedOutInput{
|
||||
NextToken: aws.String("string"),
|
||||
}
|
||||
resp, err := svc.ListPhoneNumbersOptedOut(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_ListPlatformApplications() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.ListPlatformApplicationsInput{
|
||||
NextToken: aws.String("String"),
|
||||
}
|
||||
resp, err := svc.ListPlatformApplications(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_ListSubscriptions() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.ListSubscriptionsInput{
|
||||
NextToken: aws.String("nextToken"),
|
||||
}
|
||||
resp, err := svc.ListSubscriptions(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_ListSubscriptionsByTopic() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.ListSubscriptionsByTopicInput{
|
||||
TopicArn: aws.String("topicARN"), // Required
|
||||
NextToken: aws.String("nextToken"),
|
||||
}
|
||||
resp, err := svc.ListSubscriptionsByTopic(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_ListTopics() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.ListTopicsInput{
|
||||
NextToken: aws.String("nextToken"),
|
||||
}
|
||||
resp, err := svc.ListTopics(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_OptInPhoneNumber() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.OptInPhoneNumberInput{
|
||||
PhoneNumber: aws.String("PhoneNumber"), // Required
|
||||
}
|
||||
resp, err := svc.OptInPhoneNumber(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_Publish() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.PublishInput{
|
||||
Message: aws.String("message"), // Required
|
||||
MessageAttributes: map[string]*sns.MessageAttributeValue{
|
||||
"Key": { // Required
|
||||
DataType: aws.String("String"), // Required
|
||||
BinaryValue: []byte("PAYLOAD"),
|
||||
StringValue: aws.String("String"),
|
||||
},
|
||||
// More values...
|
||||
},
|
||||
MessageStructure: aws.String("messageStructure"),
|
||||
PhoneNumber: aws.String("String"),
|
||||
Subject: aws.String("subject"),
|
||||
TargetArn: aws.String("String"),
|
||||
TopicArn: aws.String("topicARN"),
|
||||
}
|
||||
resp, err := svc.Publish(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_RemovePermission() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.RemovePermissionInput{
|
||||
Label: aws.String("label"), // Required
|
||||
TopicArn: aws.String("topicARN"), // Required
|
||||
}
|
||||
resp, err := svc.RemovePermission(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_SetEndpointAttributes() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.SetEndpointAttributesInput{
|
||||
Attributes: map[string]*string{ // Required
|
||||
"Key": aws.String("String"), // Required
|
||||
// More values...
|
||||
},
|
||||
EndpointArn: aws.String("String"), // Required
|
||||
}
|
||||
resp, err := svc.SetEndpointAttributes(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_SetPlatformApplicationAttributes() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.SetPlatformApplicationAttributesInput{
|
||||
Attributes: map[string]*string{ // Required
|
||||
"Key": aws.String("String"), // Required
|
||||
// More values...
|
||||
},
|
||||
PlatformApplicationArn: aws.String("String"), // Required
|
||||
}
|
||||
resp, err := svc.SetPlatformApplicationAttributes(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_SetSMSAttributes() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.SetSMSAttributesInput{
|
||||
Attributes: map[string]*string{ // Required
|
||||
"Key": aws.String("String"), // Required
|
||||
// More values...
|
||||
},
|
||||
}
|
||||
resp, err := svc.SetSMSAttributes(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_SetSubscriptionAttributes() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.SetSubscriptionAttributesInput{
|
||||
AttributeName: aws.String("attributeName"), // Required
|
||||
SubscriptionArn: aws.String("subscriptionARN"), // Required
|
||||
AttributeValue: aws.String("attributeValue"),
|
||||
}
|
||||
resp, err := svc.SetSubscriptionAttributes(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_SetTopicAttributes() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.SetTopicAttributesInput{
|
||||
AttributeName: aws.String("attributeName"), // Required
|
||||
TopicArn: aws.String("topicARN"), // Required
|
||||
AttributeValue: aws.String("attributeValue"),
|
||||
}
|
||||
resp, err := svc.SetTopicAttributes(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_Subscribe() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.SubscribeInput{
|
||||
Protocol: aws.String("protocol"), // Required
|
||||
TopicArn: aws.String("topicARN"), // Required
|
||||
Endpoint: aws.String("endpoint"),
|
||||
}
|
||||
resp, err := svc.Subscribe(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleSNS_Unsubscribe() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := sns.New(sess)
|
||||
|
||||
params := &sns.UnsubscribeInput{
|
||||
SubscriptionArn: aws.String("subscriptionARN"), // Required
|
||||
}
|
||||
resp, err := svc.Unsubscribe(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
Reference in New Issue
Block a user