aws_sdk_neptunegraph/client/get_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 [`GetPrivateGraphEndpoint`](crate::operation::get_private_graph_endpoint::builders::GetPrivateGraphEndpointFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`graph_identifier(impl Into<String>)`](crate::operation::get_private_graph_endpoint::builders::GetPrivateGraphEndpointFluentBuilder::graph_identifier) / [`set_graph_identifier(Option<String>)`](crate::operation::get_private_graph_endpoint::builders::GetPrivateGraphEndpointFluentBuilder::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::get_private_graph_endpoint::builders::GetPrivateGraphEndpointFluentBuilder::vpc_id) / [`set_vpc_id(Option<String>)`](crate::operation::get_private_graph_endpoint::builders::GetPrivateGraphEndpointFluentBuilder::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 [`GetPrivateGraphEndpointOutput`](crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpointOutput) with field(s):
9 /// - [`vpc_id(String)`](crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpointOutput::vpc_id): <p>The ID of the VPC where the private endpoint is located.</p>
10 /// - [`subnet_ids(Vec::<String>)`](crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpointOutput::subnet_ids): <p>The subnet IDs involved.</p>
11 /// - [`status(PrivateGraphEndpointStatus)`](crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpointOutput::status): <p>The current status of the private endpoint.</p>
12 /// - [`vpc_endpoint_id(Option<String>)`](crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpointOutput::vpc_endpoint_id): <p>The ID of the private endpoint.</p>
13 /// - On failure, responds with [`SdkError<GetPrivateGraphEndpointError>`](crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpointError)
14 pub fn get_private_graph_endpoint(&self) -> crate::operation::get_private_graph_endpoint::builders::GetPrivateGraphEndpointFluentBuilder {
15 crate::operation::get_private_graph_endpoint::builders::GetPrivateGraphEndpointFluentBuilder::new(self.handle.clone())
16 }
17}