Struct rusoto_sns::ListSubscriptionsByTopicResponse[][src]

pub struct ListSubscriptionsByTopicResponse {
    pub next_token: Option<String>,
    pub subscriptions: Option<Vec<Subscription>>,
}

Response for ListSubscriptionsByTopic action.

Fields

Token to pass along to the next ListSubscriptionsByTopic request. This element is returned if there are more subscriptions to retrieve.

A list of subscriptions.

Trait Implementations

impl Default for ListSubscriptionsByTopicResponse
[src]

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

impl Debug for ListSubscriptionsByTopicResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListSubscriptionsByTopicResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListSubscriptionsByTopicResponse
[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