[][src]Struct rusoto_sns::SetEndpointAttributesInput

pub struct SetEndpointAttributesInput {
    pub attributes: HashMap<String, String>,
    pub endpoint_arn: String,
}

Input for SetEndpointAttributes action.

Fields

A map of the endpoint attributes. Attributes in this map include the following:

  • CustomUserData -- arbitrary user data to associate with the endpoint. Amazon SNS does not use this data. The data must be in UTF-8 format and less than 2KB.

  • Enabled -- flag that enables/disables delivery to the endpoint. Amazon SNS will set this to false when a notification service indicates to Amazon SNS that the endpoint is invalid. Users can set it back to true, typically after updating Token.

  • Token -- device token, also referred to as a registration id, for an app and mobile device. This is returned from the notification service when an app and mobile device are registered with the notification service.

EndpointArn used for SetEndpointAttributes action.

Trait Implementations

impl Clone for SetEndpointAttributesInput
[src]

Performs copy-assignment from source. Read more

impl Default for SetEndpointAttributesInput
[src]

impl PartialEq<SetEndpointAttributesInput> for SetEndpointAttributesInput
[src]

impl Debug for SetEndpointAttributesInput
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T