Struct aws_sdk_eventbridge::client::fluent_builders::CreateEndpoint
source · [−]pub struct CreateEndpoint { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateEndpoint
.
Creates a global endpoint. Global endpoints improve your application's availability by making it regional-fault tolerant. To do this, you define a primary and secondary Region with event buses in each Region. You also create a Amazon Route 53 health check that will tell EventBridge to route events to the secondary Region when an "unhealthy" state is encountered and events will be routed back to the primary Region when the health check reports a "healthy" state.
Implementations
sourceimpl CreateEndpoint
impl CreateEndpoint
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateEndpoint, AwsResponseRetryClassifier>, SdkError<CreateEndpointError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateEndpoint, AwsResponseRetryClassifier>, SdkError<CreateEndpointError>>
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<CreateEndpointOutput, SdkError<CreateEndpointError>>
pub async fn send(
self
) -> Result<CreateEndpointOutput, SdkError<CreateEndpointError>>
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 global endpoint. For example, "Name":"us-east-2-custom_bus_A-endpoint"
.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the global endpoint. For example, "Name":"us-east-2-custom_bus_A-endpoint"
.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the global endpoint.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the global endpoint.
sourcepub fn routing_config(self, input: RoutingConfig) -> Self
pub fn routing_config(self, input: RoutingConfig) -> Self
Configure the routing policy, including the health check and secondary Region..
sourcepub fn set_routing_config(self, input: Option<RoutingConfig>) -> Self
pub fn set_routing_config(self, input: Option<RoutingConfig>) -> Self
Configure the routing policy, including the health check and secondary Region..
sourcepub fn replication_config(self, input: ReplicationConfig) -> Self
pub fn replication_config(self, input: ReplicationConfig) -> Self
Enable or disable event replication.
sourcepub fn set_replication_config(self, input: Option<ReplicationConfig>) -> Self
pub fn set_replication_config(self, input: Option<ReplicationConfig>) -> Self
Enable or disable event replication.
sourcepub fn event_buses(self, input: EndpointEventBus) -> Self
pub fn event_buses(self, input: EndpointEventBus) -> Self
Appends an item to EventBuses
.
To override the contents of this collection use set_event_buses
.
Define the event buses used.
The names of the event buses must be identical in each Region.
sourcepub fn set_event_buses(self, input: Option<Vec<EndpointEventBus>>) -> Self
pub fn set_event_buses(self, input: Option<Vec<EndpointEventBus>>) -> Self
Define the event buses used.
The names of the event buses must be identical in each Region.
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The ARN of the role used for replication.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The ARN of the role used for replication.
Trait Implementations
sourceimpl Clone for CreateEndpoint
impl Clone for CreateEndpoint
sourcefn clone(&self) -> CreateEndpoint
fn clone(&self) -> CreateEndpoint
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more