Struct aws_sdk_eventbridge::operation::create_event_bus::builders::CreateEventBusFluentBuilder
source · pub struct CreateEventBusFluentBuilder { /* 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§
source§impl CreateEventBusFluentBuilder
impl CreateEventBusFluentBuilder
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.
Custom event bus names can't contain the /
character, but you can use the /
character in partner event bus names. In addition, for partner event buses, the name must exactly match the name of the partner event source that this event bus is matched to.
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.
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.
Custom event bus names can't contain the /
character, but you can use the /
character in partner event bus names. In addition, for partner event buses, the name must exactly match the name of the partner event source that this event bus is matched to.
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.
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§
source§impl Clone for CreateEventBusFluentBuilder
impl Clone for CreateEventBusFluentBuilder
source§fn clone(&self) -> CreateEventBusFluentBuilder
fn clone(&self) -> CreateEventBusFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more