Struct rusoto_sns::ConfirmSubscriptionInput[][src]

pub struct ConfirmSubscriptionInput {
    pub authenticate_on_unsubscribe: Option<String>,
    pub token: String,
    pub topic_arn: String,
}

Input for ConfirmSubscription action.

Fields

Disallows unauthenticated unsubscribes of the subscription. If the value of this parameter is true and the request has an AWS signature, then only the topic owner and the subscription owner can unsubscribe the endpoint. The unsubscribe action requires AWS authentication.

Short-lived token sent to an endpoint during the Subscribe action.

The ARN of the topic for which you wish to confirm a subscription.

Trait Implementations

impl Default for ConfirmSubscriptionInput
[src]

Returns the "default value" for a type. Read more

impl Debug for ConfirmSubscriptionInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ConfirmSubscriptionInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ConfirmSubscriptionInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations