#[non_exhaustive]pub struct DescribeEventSourceOutput {
pub arn: Option<String>,
pub created_by: Option<String>,
pub creation_time: Option<DateTime>,
pub expiration_time: Option<DateTime>,
pub name: Option<String>,
pub state: Option<EventSourceState>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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<DateTime>
The date and time that the event source was created.
expiration_time: Option<DateTime>
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<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.
Implementations§
source§impl 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.
source§impl DescribeEventSourceOutput
impl DescribeEventSourceOutput
sourcepub fn builder() -> DescribeEventSourceOutputBuilder
pub fn builder() -> DescribeEventSourceOutputBuilder
Creates a new builder-style object to manufacture DescribeEventSourceOutput
.
Trait Implementations§
source§impl Clone for DescribeEventSourceOutput
impl Clone for DescribeEventSourceOutput
source§fn clone(&self) -> DescribeEventSourceOutput
fn clone(&self) -> DescribeEventSourceOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeEventSourceOutput
impl Debug for DescribeEventSourceOutput
source§impl PartialEq for DescribeEventSourceOutput
impl PartialEq for DescribeEventSourceOutput
source§fn eq(&self, other: &DescribeEventSourceOutput) -> bool
fn eq(&self, other: &DescribeEventSourceOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeEventSourceOutput
impl RequestId for DescribeEventSourceOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeEventSourceOutput
Auto Trait Implementations§
impl Freeze for DescribeEventSourceOutput
impl RefUnwindSafe for DescribeEventSourceOutput
impl Send for DescribeEventSourceOutput
impl Sync for DescribeEventSourceOutput
impl Unpin for DescribeEventSourceOutput
impl UnwindSafe for DescribeEventSourceOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more