#[non_exhaustive]pub struct DescribeEventSourceOutput { /* private fields */ }
Implementations
sourceimpl DescribeEventSourceOutput
impl DescribeEventSourceOutput
sourcepub fn created_by(&self) -> Option<&str>
pub fn created_by(&self) -> Option<&str>
The name of the SaaS partner that created the event source.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The date and time that the event source was created.
sourcepub fn expiration_time(&self) -> Option<&DateTime>
pub fn expiration_time(&self) -> Option<&DateTime>
The date and time that the event source will expire if you do not create a matching event bus.
sourcepub fn state(&self) -> Option<&EventSourceState>
pub fn state(&self) -> Option<&EventSourceState>
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.
sourceimpl DescribeEventSourceOutput
impl DescribeEventSourceOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeEventSourceOutput
.
Trait Implementations
sourceimpl Clone for DescribeEventSourceOutput
impl Clone for DescribeEventSourceOutput
sourcefn clone(&self) -> DescribeEventSourceOutput
fn clone(&self) -> DescribeEventSourceOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DescribeEventSourceOutput
impl Debug for DescribeEventSourceOutput
sourceimpl PartialEq<DescribeEventSourceOutput> for DescribeEventSourceOutput
impl PartialEq<DescribeEventSourceOutput> for DescribeEventSourceOutput
sourcefn eq(&self, other: &DescribeEventSourceOutput) -> bool
fn eq(&self, other: &DescribeEventSourceOutput) -> bool
impl StructuralPartialEq for DescribeEventSourceOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeEventSourceOutput
impl Send for DescribeEventSourceOutput
impl Sync for DescribeEventSourceOutput
impl Unpin for DescribeEventSourceOutput
impl UnwindSafe for DescribeEventSourceOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more