AWSSNSConfirmSubscriptionInput
Objective-C
@interface AWSSNSConfirmSubscriptionInput
Swift
class AWSSNSConfirmSubscriptionInput
Input for ConfirmSubscription action.
Required parameters: [TopicArn, Token]
-
Disallows unauthenticated unsubscribes of the subscription. If the value of this parameter is
true
and the request has an Amazon Web Services signature, then only the topic owner and the subscription owner can unsubscribe the endpoint. The unsubscribe action requires Amazon Web Services authentication.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable authenticateOnUnsubscribe;
Swift
var authenticateOnUnsubscribe: String? { get set }
-
Short-lived token sent to an endpoint during the
Subscribe
action.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable token;
Swift
var token: String? { get set }
-
The ARN of the topic for which you wish to confirm a subscription.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable topicArn;
Swift
var topicArn: String? { get set }