[][src]Struct rusoto_budgets::Subscriber

pub struct Subscriber {
    pub address: String,
    pub subscription_type: String,
}

The subscriber to a budget notification. The subscriber consists of a subscription type and either an Amazon Simple Notification Service topic or an email address.

For example, an email subscriber would have the following parameters:

  • A subscriptionType of EMAIL

  • An address of example@example.com

Fields

The address that AWS sends budget notifications to, either an SNS topic or an email.

The type of notification that AWS sends to a subscriber.

Trait Implementations

impl Clone for Subscriber
[src]

Performs copy-assignment from source. Read more

impl Default for Subscriber
[src]

impl PartialEq<Subscriber> for Subscriber
[src]

impl Debug for Subscriber
[src]

impl Serialize for Subscriber
[src]

impl<'de> Deserialize<'de> for Subscriber
[src]

Auto Trait Implementations

impl Send for Subscriber

impl Sync for Subscriber

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T