pub struct PartnerEventSource {
pub arn: Option<String>,
pub name: Option<String>,
}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 AWS account can receive events from the partner's applications or services.
Fields§
§arn: Option<String>The ARN of the partner event source.
name: Option<String>The name of the partner event source.
Trait Implementations§
Source§impl Clone for PartnerEventSource
impl Clone for PartnerEventSource
Source§fn clone(&self) -> PartnerEventSource
fn clone(&self) -> PartnerEventSource
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PartnerEventSource
impl Debug for PartnerEventSource
Source§impl Default for PartnerEventSource
impl Default for PartnerEventSource
Source§fn default() -> PartnerEventSource
fn default() -> PartnerEventSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PartnerEventSource
impl<'de> Deserialize<'de> for PartnerEventSource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PartnerEventSource
impl PartialEq for PartnerEventSource
impl StructuralPartialEq for PartnerEventSource
Auto Trait Implementations§
impl Freeze for PartnerEventSource
impl RefUnwindSafe for PartnerEventSource
impl Send for PartnerEventSource
impl Sync for PartnerEventSource
impl Unpin for PartnerEventSource
impl UnwindSafe for PartnerEventSource
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
Mutably borrows from an owned value. Read more