aws_sdk_opensearchserverless/client/
batch_get_vpc_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 [`BatchGetVpcEndpoint`](crate::operation::batch_get_vpc_endpoint::builders::BatchGetVpcEndpointFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`ids(impl Into<String>)`](crate::operation::batch_get_vpc_endpoint::builders::BatchGetVpcEndpointFluentBuilder::ids) / [`set_ids(Option<Vec::<String>>)`](crate::operation::batch_get_vpc_endpoint::builders::BatchGetVpcEndpointFluentBuilder::set_ids):<br>required: **true**<br><p>A list of VPC endpoint identifiers.</p><br>
7    /// - On success, responds with [`BatchGetVpcEndpointOutput`](crate::operation::batch_get_vpc_endpoint::BatchGetVpcEndpointOutput) with field(s):
8    ///   - [`vpc_endpoint_details(Option<Vec::<VpcEndpointDetail>>)`](crate::operation::batch_get_vpc_endpoint::BatchGetVpcEndpointOutput::vpc_endpoint_details): <p>Details about the specified VPC endpoint.</p>
9    ///   - [`vpc_endpoint_error_details(Option<Vec::<VpcEndpointErrorDetail>>)`](crate::operation::batch_get_vpc_endpoint::BatchGetVpcEndpointOutput::vpc_endpoint_error_details): <p>Error information for a failed request.</p>
10    /// - On failure, responds with [`SdkError<BatchGetVpcEndpointError>`](crate::operation::batch_get_vpc_endpoint::BatchGetVpcEndpointError)
11    pub fn batch_get_vpc_endpoint(&self) -> crate::operation::batch_get_vpc_endpoint::builders::BatchGetVpcEndpointFluentBuilder {
12        crate::operation::batch_get_vpc_endpoint::builders::BatchGetVpcEndpointFluentBuilder::new(self.handle.clone())
13    }
14}