#[non_exhaustive]pub struct PartnerEventSourceAccount {
pub account: Option<String>,
pub creation_time: Option<DateTime>,
pub expiration_time: Option<DateTime>,
pub state: Option<EventSourceState>,
}
Expand description
The Amazon Web Services account that a partner event source has been offered to.
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.account: Option<String>
The Amazon Web Services account ID that the partner event source was offered to.
creation_time: Option<DateTime>
The date and time the event source was created.
expiration_time: Option<DateTime>
The date and time that the event source will expire, if the Amazon Web Services account doesn't create a matching event bus for it.
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 PartnerEventSourceAccount
impl PartnerEventSourceAccount
sourcepub fn account(&self) -> Option<&str>
pub fn account(&self) -> Option<&str>
The Amazon Web Services account ID that the partner event source was offered to.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The date and time 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 the Amazon Web Services account doesn't create a matching event bus for it.
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 PartnerEventSourceAccount
impl PartnerEventSourceAccount
sourcepub fn builder() -> PartnerEventSourceAccountBuilder
pub fn builder() -> PartnerEventSourceAccountBuilder
Creates a new builder-style object to manufacture PartnerEventSourceAccount
.
Trait Implementations§
source§impl Clone for PartnerEventSourceAccount
impl Clone for PartnerEventSourceAccount
source§fn clone(&self) -> PartnerEventSourceAccount
fn clone(&self) -> PartnerEventSourceAccount
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PartnerEventSourceAccount
impl Debug for PartnerEventSourceAccount
source§impl PartialEq for PartnerEventSourceAccount
impl PartialEq for PartnerEventSourceAccount
source§fn eq(&self, other: &PartnerEventSourceAccount) -> bool
fn eq(&self, other: &PartnerEventSourceAccount) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PartnerEventSourceAccount
Auto Trait Implementations§
impl Freeze for PartnerEventSourceAccount
impl RefUnwindSafe for PartnerEventSourceAccount
impl Send for PartnerEventSourceAccount
impl Sync for PartnerEventSourceAccount
impl Unpin for PartnerEventSourceAccount
impl UnwindSafe for PartnerEventSourceAccount
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