aws_sdk_globalaccelerator/client/
delete_custom_routing_endpoint_group.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 [`DeleteCustomRoutingEndpointGroup`](crate::operation::delete_custom_routing_endpoint_group::builders::DeleteCustomRoutingEndpointGroupFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`endpoint_group_arn(impl Into<String>)`](crate::operation::delete_custom_routing_endpoint_group::builders::DeleteCustomRoutingEndpointGroupFluentBuilder::endpoint_group_arn) / [`set_endpoint_group_arn(Option<String>)`](crate::operation::delete_custom_routing_endpoint_group::builders::DeleteCustomRoutingEndpointGroupFluentBuilder::set_endpoint_group_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the endpoint group to delete.</p><br>
7    /// - On success, responds with [`DeleteCustomRoutingEndpointGroupOutput`](crate::operation::delete_custom_routing_endpoint_group::DeleteCustomRoutingEndpointGroupOutput)
8    /// - On failure, responds with [`SdkError<DeleteCustomRoutingEndpointGroupError>`](crate::operation::delete_custom_routing_endpoint_group::DeleteCustomRoutingEndpointGroupError)
9    pub fn delete_custom_routing_endpoint_group(
10        &self,
11    ) -> crate::operation::delete_custom_routing_endpoint_group::builders::DeleteCustomRoutingEndpointGroupFluentBuilder {
12        crate::operation::delete_custom_routing_endpoint_group::builders::DeleteCustomRoutingEndpointGroupFluentBuilder::new(self.handle.clone())
13    }
14}