aws_sdk_globalaccelerator/client/
remove_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 [`RemoveEndpoints`](crate::operation::remove_endpoints::builders::RemoveEndpointsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`endpoint_identifiers(EndpointIdentifier)`](crate::operation::remove_endpoints::builders::RemoveEndpointsFluentBuilder::endpoint_identifiers) / [`set_endpoint_identifiers(Option<Vec::<EndpointIdentifier>>)`](crate::operation::remove_endpoints::builders::RemoveEndpointsFluentBuilder::set_endpoint_identifiers):<br>required: **true**<br><p>The identifiers of the endpoints that you want to remove.</p><br>
7    ///   - [`endpoint_group_arn(impl Into<String>)`](crate::operation::remove_endpoints::builders::RemoveEndpointsFluentBuilder::endpoint_group_arn) / [`set_endpoint_group_arn(Option<String>)`](crate::operation::remove_endpoints::builders::RemoveEndpointsFluentBuilder::set_endpoint_group_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the endpoint group.</p><br>
8    /// - On success, responds with [`RemoveEndpointsOutput`](crate::operation::remove_endpoints::RemoveEndpointsOutput)
9    /// - On failure, responds with [`SdkError<RemoveEndpointsError>`](crate::operation::remove_endpoints::RemoveEndpointsError)
10    pub fn remove_endpoints(&self) -> crate::operation::remove_endpoints::builders::RemoveEndpointsFluentBuilder {
11        crate::operation::remove_endpoints::builders::RemoveEndpointsFluentBuilder::new(self.handle.clone())
12    }
13}