Struct aws_sdk_eventbridge::types::EventSource
source · #[non_exhaustive]pub struct EventSource { /* private fields */ }
Expand description
A partner event source is created by an SaaS partner. If a customer creates a partner event bus that matches this event source, that Amazon Web Services account can receive events from the partner's applications or services.
Implementations§
source§impl EventSource
impl EventSource
sourcepub fn created_by(&self) -> Option<&str>
pub fn created_by(&self) -> Option<&str>
The name of the partner that created the event source.
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 EventSource
impl EventSource
sourcepub fn builder() -> EventSourceBuilder
pub fn builder() -> EventSourceBuilder
Creates a new builder-style object to manufacture EventSource
.
Trait Implementations§
source§impl Clone for EventSource
impl Clone for EventSource
source§fn clone(&self) -> EventSource
fn clone(&self) -> EventSource
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EventSource
impl Debug for EventSource
source§impl PartialEq<EventSource> for EventSource
impl PartialEq<EventSource> for EventSource
source§fn eq(&self, other: &EventSource) -> bool
fn eq(&self, other: &EventSource) -> bool
self
and other
values to be equal, and is used
by ==
.