[][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 SNS 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

address: String

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

subscription_type: String

The type of notification that AWS sends to a subscriber.

Trait Implementations

impl Clone for Subscriber[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Subscriber> for Subscriber[src]

impl Default for Subscriber[src]

impl Debug for Subscriber[src]

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

impl Serialize 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]

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self