Struct aws_sdk_globalaccelerator::operation::add_custom_routing_endpoints::builders::AddCustomRoutingEndpointsFluentBuilder
source · pub struct AddCustomRoutingEndpointsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to AddCustomRoutingEndpoints
.
Associate a virtual private cloud (VPC) subnet endpoint with your custom routing accelerator.
The listener port range must be large enough to support the number of IP addresses that can be specified in your subnet. The number of ports required is: subnet size times the number of ports per destination EC2 instances. For example, a subnet defined as /24 requires a listener port range of at least 255 ports.
Note: You must have enough remaining listener ports available to map to the subnet ports, or the call will fail with a LimitExceededException.
By default, all destinations in a subnet in a custom routing accelerator cannot receive traffic. To enable all destinations to receive traffic, or to specify individual port mappings that can receive traffic, see the AllowCustomRoutingTraffic operation.
Implementations§
source§impl AddCustomRoutingEndpointsFluentBuilder
impl AddCustomRoutingEndpointsFluentBuilder
sourcepub fn as_input(&self) -> &AddCustomRoutingEndpointsInputBuilder
pub fn as_input(&self) -> &AddCustomRoutingEndpointsInputBuilder
Access the AddCustomRoutingEndpoints as a reference.
sourcepub async fn send(
self
) -> Result<AddCustomRoutingEndpointsOutput, SdkError<AddCustomRoutingEndpointsError, HttpResponse>>
pub async fn send( self ) -> Result<AddCustomRoutingEndpointsOutput, SdkError<AddCustomRoutingEndpointsError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<AddCustomRoutingEndpointsOutput, AddCustomRoutingEndpointsError, Self>
pub fn customize( self ) -> CustomizableOperation<AddCustomRoutingEndpointsOutput, AddCustomRoutingEndpointsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn endpoint_configurations(
self,
input: CustomRoutingEndpointConfiguration
) -> Self
pub fn endpoint_configurations( self, input: CustomRoutingEndpointConfiguration ) -> Self
Appends an item to EndpointConfigurations
.
To override the contents of this collection use set_endpoint_configurations
.
The list of endpoint objects to add to a custom routing accelerator.
sourcepub fn set_endpoint_configurations(
self,
input: Option<Vec<CustomRoutingEndpointConfiguration>>
) -> Self
pub fn set_endpoint_configurations( self, input: Option<Vec<CustomRoutingEndpointConfiguration>> ) -> Self
The list of endpoint objects to add to a custom routing accelerator.
sourcepub fn get_endpoint_configurations(
&self
) -> &Option<Vec<CustomRoutingEndpointConfiguration>>
pub fn get_endpoint_configurations( &self ) -> &Option<Vec<CustomRoutingEndpointConfiguration>>
The list of endpoint objects to add to a custom routing accelerator.
sourcepub fn endpoint_group_arn(self, input: impl Into<String>) -> Self
pub fn endpoint_group_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the endpoint group for the custom routing endpoint.
sourcepub fn set_endpoint_group_arn(self, input: Option<String>) -> Self
pub fn set_endpoint_group_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the endpoint group for the custom routing endpoint.
sourcepub fn get_endpoint_group_arn(&self) -> &Option<String>
pub fn get_endpoint_group_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the endpoint group for the custom routing endpoint.
Trait Implementations§
source§impl Clone for AddCustomRoutingEndpointsFluentBuilder
impl Clone for AddCustomRoutingEndpointsFluentBuilder
source§fn clone(&self) -> AddCustomRoutingEndpointsFluentBuilder
fn clone(&self) -> AddCustomRoutingEndpointsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more