[][src]Struct rusoto_events::PartnerEventSourceAccount

pub struct PartnerEventSourceAccount {
    pub account: Option<String>,
    pub creation_time: Option<f64>,
    pub expiration_time: Option<f64>,
    pub state: Option<String>,
}

The AWS account that a partner event source has been offered to.

Fields

account: Option<String>

The AWS account ID that the partner event source was offered to.

creation_time: Option<f64>

The date and time the event source was created.

expiration_time: Option<f64>

The date and time that the event source will expire, if the AWS account doesn't create a matching event bus for it.

state: Option<String>

The state of the event source. If it is ACTIVE, you have already created a matching event bus for this event source, and that event bus is active. If it is PENDING, either you haven't yet created a matching event bus, or that event bus is deactivated. If it is DELETED, you have created a matching event bus, but the event source has since been deleted.

Trait Implementations

impl Clone for PartnerEventSourceAccount[src]

impl Debug for PartnerEventSourceAccount[src]

impl Default for PartnerEventSourceAccount[src]

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

impl PartialEq<PartnerEventSourceAccount> for PartnerEventSourceAccount[src]

impl StructuralPartialEq for PartnerEventSourceAccount[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.