#[non_exhaustive]pub struct PartnerEventSourceAccount { /* private fields */ }
Expand description
The Amazon Web Services account that a partner event source has been offered to.
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<PartnerEventSourceAccount> for PartnerEventSourceAccount
impl PartialEq<PartnerEventSourceAccount> 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 ==
.