#[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
sourceimpl 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.
sourceimpl PartnerEventSourceAccount
impl PartnerEventSourceAccount
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PartnerEventSourceAccount
Trait Implementations
sourceimpl Clone for PartnerEventSourceAccount
impl Clone for PartnerEventSourceAccount
sourcefn clone(&self) -> PartnerEventSourceAccount
fn clone(&self) -> PartnerEventSourceAccount
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 more
sourceimpl Debug for PartnerEventSourceAccount
impl Debug for PartnerEventSourceAccount
sourceimpl PartialEq<PartnerEventSourceAccount> for PartnerEventSourceAccount
impl PartialEq<PartnerEventSourceAccount> for PartnerEventSourceAccount
sourcefn eq(&self, other: &PartnerEventSourceAccount) -> bool
fn eq(&self, other: &PartnerEventSourceAccount) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &PartnerEventSourceAccount) -> bool
fn ne(&self, other: &PartnerEventSourceAccount) -> bool
This method tests for !=.
impl StructuralPartialEq for PartnerEventSourceAccount
Auto Trait Implementations
impl RefUnwindSafe for PartnerEventSourceAccount
impl Send for PartnerEventSourceAccount
impl Sync for PartnerEventSourceAccount
impl Unpin for PartnerEventSourceAccount
impl UnwindSafe for PartnerEventSourceAccount
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more