aws_sdk_emrcontainers/client/
delete_managed_endpoint.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 [`DeleteManagedEndpoint`](crate::operation::delete_managed_endpoint::builders::DeleteManagedEndpointFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`id(impl Into<String>)`](crate::operation::delete_managed_endpoint::builders::DeleteManagedEndpointFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::delete_managed_endpoint::builders::DeleteManagedEndpointFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the managed endpoint.</p><br>
7    ///   - [`virtual_cluster_id(impl Into<String>)`](crate::operation::delete_managed_endpoint::builders::DeleteManagedEndpointFluentBuilder::virtual_cluster_id) / [`set_virtual_cluster_id(Option<String>)`](crate::operation::delete_managed_endpoint::builders::DeleteManagedEndpointFluentBuilder::set_virtual_cluster_id):<br>required: **true**<br><p>The ID of the endpoint's virtual cluster.</p><br>
8    /// - On success, responds with [`DeleteManagedEndpointOutput`](crate::operation::delete_managed_endpoint::DeleteManagedEndpointOutput) with field(s):
9    ///   - [`id(Option<String>)`](crate::operation::delete_managed_endpoint::DeleteManagedEndpointOutput::id): <p>The output displays the ID of the managed endpoint.</p>
10    ///   - [`virtual_cluster_id(Option<String>)`](crate::operation::delete_managed_endpoint::DeleteManagedEndpointOutput::virtual_cluster_id): <p>The output displays the ID of the endpoint's virtual cluster.</p>
11    /// - On failure, responds with [`SdkError<DeleteManagedEndpointError>`](crate::operation::delete_managed_endpoint::DeleteManagedEndpointError)
12    pub fn delete_managed_endpoint(&self) -> crate::operation::delete_managed_endpoint::builders::DeleteManagedEndpointFluentBuilder {
13        crate::operation::delete_managed_endpoint::builders::DeleteManagedEndpointFluentBuilder::new(self.handle.clone())
14    }
15}