[][src]Struct rusoto_lambda::SelfManagedEventSource

pub struct SelfManagedEventSource {
    pub endpoints: Option<HashMap<String, Vec<String>>>,
}

The Self-Managed Apache Kafka cluster for your event source.

Fields

endpoints: Option<HashMap<String, Vec<String>>>

The list of bootstrap servers for your Kafka brokers in the following format: "KAFKA_BOOTSTRAP_SERVERS": ["abc.xyz.com:xxxx","abc2.xyz.com:xxxx"].

Trait Implementations

impl Clone for SelfManagedEventSource[src]

impl Debug for SelfManagedEventSource[src]

impl Default for SelfManagedEventSource[src]

impl<'de> Deserialize<'de> for SelfManagedEventSource[src]

impl PartialEq<SelfManagedEventSource> for SelfManagedEventSource[src]

impl Serialize for SelfManagedEventSource[src]

impl StructuralPartialEq for SelfManagedEventSource[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.