aws_sdk_neptunegraph/client/delete_private_graph_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 [`DeletePrivateGraphEndpoint`](crate::operation::delete_private_graph_endpoint::builders::DeletePrivateGraphEndpointFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`graph_identifier(impl Into<String>)`](crate::operation::delete_private_graph_endpoint::builders::DeletePrivateGraphEndpointFluentBuilder::graph_identifier) / [`set_graph_identifier(Option<String>)`](crate::operation::delete_private_graph_endpoint::builders::DeletePrivateGraphEndpointFluentBuilder::set_graph_identifier):<br>required: **true**<br><p>The unique identifier of the Neptune Analytics graph.</p><br>
7 /// - [`vpc_id(impl Into<String>)`](crate::operation::delete_private_graph_endpoint::builders::DeletePrivateGraphEndpointFluentBuilder::vpc_id) / [`set_vpc_id(Option<String>)`](crate::operation::delete_private_graph_endpoint::builders::DeletePrivateGraphEndpointFluentBuilder::set_vpc_id):<br>required: **true**<br><p>The ID of the VPC where the private endpoint is located.</p><br>
8 /// - On success, responds with [`DeletePrivateGraphEndpointOutput`](crate::operation::delete_private_graph_endpoint::DeletePrivateGraphEndpointOutput) with field(s):
9 /// - [`vpc_id(String)`](crate::operation::delete_private_graph_endpoint::DeletePrivateGraphEndpointOutput::vpc_id): <p>The ID of the VPC where the private endpoint was deleted.</p>
10 /// - [`subnet_ids(Vec::<String>)`](crate::operation::delete_private_graph_endpoint::DeletePrivateGraphEndpointOutput::subnet_ids): <p>The subnet IDs involved.</p>
11 /// - [`status(PrivateGraphEndpointStatus)`](crate::operation::delete_private_graph_endpoint::DeletePrivateGraphEndpointOutput::status): <p>The status of the delete operation.</p>
12 /// - [`vpc_endpoint_id(Option<String>)`](crate::operation::delete_private_graph_endpoint::DeletePrivateGraphEndpointOutput::vpc_endpoint_id): <p>The ID of the VPC endpoint that was deleted.</p>
13 /// - On failure, responds with [`SdkError<DeletePrivateGraphEndpointError>`](crate::operation::delete_private_graph_endpoint::DeletePrivateGraphEndpointError)
14 pub fn delete_private_graph_endpoint(
15 &self,
16 ) -> crate::operation::delete_private_graph_endpoint::builders::DeletePrivateGraphEndpointFluentBuilder {
17 crate::operation::delete_private_graph_endpoint::builders::DeletePrivateGraphEndpointFluentBuilder::new(self.handle.clone())
18 }
19}