Struct rusoto_sns::GetSubscriptionAttributesResponse[][src]

pub struct GetSubscriptionAttributesResponse {
    pub attributes: Option<HashMap<String, String>>,
}

Response for GetSubscriptionAttributes action.

Fields

A map of the subscription's attributes. Attributes in this map include the following:

  • SubscriptionArn -- the subscription's ARN

  • TopicArn -- the topic ARN that the subscription is associated with

  • Owner -- the AWS account ID of the subscription's owner

  • ConfirmationWasAuthenticated -- true if the subscription confirmation request was authenticated

  • DeliveryPolicy -- the JSON serialization of the subscription's delivery policy

  • EffectiveDeliveryPolicy -- the JSON serialization of the effective delivery policy that takes into account the topic delivery policy and account system defaults

Trait Implementations

impl Default for GetSubscriptionAttributesResponse
[src]

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

impl Debug for GetSubscriptionAttributesResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetSubscriptionAttributesResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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