[][src]Struct rusoto_events::DescribeEventSourceResponse

pub struct DescribeEventSourceResponse {
    pub arn: Option<String>,
    pub created_by: Option<String>,
    pub creation_time: Option<f64>,
    pub expiration_time: Option<f64>,
    pub name: Option<String>,
    pub state: Option<String>,
}

Fields

arn: Option<String>

The ARN of the partner event source.

created_by: Option<String>

The name of the SaaS partner that created the event source.

creation_time: Option<f64>

The date and time that the event source was created.

expiration_time: Option<f64>

The date and time that the event source will expire if you do not create a matching event bus.

name: Option<String>

The name of the partner event source.

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 DescribeEventSourceResponse[src]

impl Debug for DescribeEventSourceResponse[src]

impl Default for DescribeEventSourceResponse[src]

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

impl PartialEq<DescribeEventSourceResponse> for DescribeEventSourceResponse[src]

impl StructuralPartialEq for DescribeEventSourceResponse[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.