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 customize(
self
) -> Result<CustomizableOperation<CreateEventBus, AwsResponseRetryClassifier>, SdkError<CreateEventBusError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateEventBus, AwsResponseRetryClassifier>, SdkError<CreateEventBusError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
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
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more