aws_sdk_globalaccelerator/client/remove_custom_routing_endpoints.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`RemoveCustomRoutingEndpoints`](crate::operation::remove_custom_routing_endpoints::builders::RemoveCustomRoutingEndpointsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`endpoint_ids(impl Into<String>)`](crate::operation::remove_custom_routing_endpoints::builders::RemoveCustomRoutingEndpointsFluentBuilder::endpoint_ids) / [`set_endpoint_ids(Option<Vec::<String>>)`](crate::operation::remove_custom_routing_endpoints::builders::RemoveCustomRoutingEndpointsFluentBuilder::set_endpoint_ids):<br>required: **true**<br><p>The IDs for the endpoints. For custom routing accelerators, endpoint IDs are the virtual private cloud (VPC) subnet IDs.</p><br>
7 /// - [`endpoint_group_arn(impl Into<String>)`](crate::operation::remove_custom_routing_endpoints::builders::RemoveCustomRoutingEndpointsFluentBuilder::endpoint_group_arn) / [`set_endpoint_group_arn(Option<String>)`](crate::operation::remove_custom_routing_endpoints::builders::RemoveCustomRoutingEndpointsFluentBuilder::set_endpoint_group_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the endpoint group to remove endpoints from.</p><br>
8 /// - On success, responds with [`RemoveCustomRoutingEndpointsOutput`](crate::operation::remove_custom_routing_endpoints::RemoveCustomRoutingEndpointsOutput)
9 /// - On failure, responds with [`SdkError<RemoveCustomRoutingEndpointsError>`](crate::operation::remove_custom_routing_endpoints::RemoveCustomRoutingEndpointsError)
10 pub fn remove_custom_routing_endpoints(
11 &self,
12 ) -> crate::operation::remove_custom_routing_endpoints::builders::RemoveCustomRoutingEndpointsFluentBuilder {
13 crate::operation::remove_custom_routing_endpoints::builders::RemoveCustomRoutingEndpointsFluentBuilder::new(self.handle.clone())
14 }
15}