Struct rusoto_sns::Subscription[][src]

pub struct Subscription {
    pub endpoint: Option<String>,
    pub owner: Option<String>,
    pub protocol: Option<String>,
    pub subscription_arn: Option<String>,
    pub topic_arn: Option<String>,
}

A wrapper type for the attributes of an Amazon SNS subscription.

Fields

The subscription's endpoint (format depends on the protocol).

The subscription's owner.

The subscription's protocol.

The subscription's ARN.

The ARN of the subscription's topic.

Trait Implementations

impl Default for Subscription
[src]

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

impl Debug for Subscription
[src]

Formats the value using the given formatter. Read more

impl Clone for Subscription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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