Struct aws_sdk_eventbridge::client::fluent_builders::CreateEventBus
source · [−]pub struct CreateEventBus { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateEventBus
.
Creates a new event bus within your account. This can be a custom event bus which you can use to receive events from your custom applications and services, or it can be a partner event bus which can be matched to a partner event source.
Implementations
sourceimpl CreateEventBus
impl CreateEventBus
sourcepub async fn send(
self
) -> Result<CreateEventBusOutput, SdkError<CreateEventBusError>>
pub async fn send(
self
) -> Result<CreateEventBusOutput, SdkError<CreateEventBusError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
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.
sourcepub fn event_source_name(self, input: impl Into<String>) -> Self
pub fn event_source_name(self, input: impl Into<String>) -> Self
If you are creating a partner event bus, this specifies the partner event source that the new event bus will be matched with.
sourcepub fn set_event_source_name(self, input: Option<String>) -> Self
pub fn set_event_source_name(self, input: Option<String>) -> Self
If you are creating a partner event bus, this specifies the partner event source that the new event bus will be matched with.
Appends an item to Tags
.
To override the contents of this collection use set_tags
.
Tags to associate with the event bus.
Tags to associate with the event bus.
Trait Implementations
sourceimpl Clone for CreateEventBus
impl Clone for CreateEventBus
sourcefn clone(&self) -> CreateEventBus
fn clone(&self) -> CreateEventBus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl !RefUnwindSafe for CreateEventBus
impl Send for CreateEventBus
impl Sync for CreateEventBus
impl Unpin for CreateEventBus
impl !UnwindSafe for CreateEventBus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more