[][src]Struct rusoto_events::CreateEventBusRequest

pub struct CreateEventBusRequest {
    pub event_source_name: Option<String>,
    pub name: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

event_source_name: Option<String>

If you are creating a partner event bus, this specifies the partner event source that the new event bus will be matched with.

name: String

The name of the new event bus.

Event bus names cannot contain the / character. You can't use the name default for a custom event bus, as this name is already used for your account's default event bus.

If this is a partner event bus, the name must exactly match the name of the partner event source that this event bus is matched to.

tags: Option<Vec<Tag>>

Tags to associate with the event bus.

Trait Implementations

impl Clone for CreateEventBusRequest[src]

impl Debug for CreateEventBusRequest[src]

impl Default for CreateEventBusRequest[src]

impl PartialEq<CreateEventBusRequest> for CreateEventBusRequest[src]

impl Serialize for CreateEventBusRequest[src]

impl StructuralPartialEq for CreateEventBusRequest[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> From<T> for T[src]

impl<T> Instrument 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.