aws_sdk_glue/client/
batch_get_dev_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 [`BatchGetDevEndpoints`](crate::operation::batch_get_dev_endpoints::builders::BatchGetDevEndpointsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`dev_endpoint_names(impl Into<String>)`](crate::operation::batch_get_dev_endpoints::builders::BatchGetDevEndpointsFluentBuilder::dev_endpoint_names) / [`set_dev_endpoint_names(Option<Vec::<String>>)`](crate::operation::batch_get_dev_endpoints::builders::BatchGetDevEndpointsFluentBuilder::set_dev_endpoint_names):<br>required: **true**<br><p>The list of <code>DevEndpoint</code> names, which might be the names returned from the <code>ListDevEndpoint</code> operation.</p><br>
7    /// - On success, responds with [`BatchGetDevEndpointsOutput`](crate::operation::batch_get_dev_endpoints::BatchGetDevEndpointsOutput) with field(s):
8    ///   - [`dev_endpoints(Option<Vec::<DevEndpoint>>)`](crate::operation::batch_get_dev_endpoints::BatchGetDevEndpointsOutput::dev_endpoints): <p>A list of <code>DevEndpoint</code> definitions.</p>
9    ///   - [`dev_endpoints_not_found(Option<Vec::<String>>)`](crate::operation::batch_get_dev_endpoints::BatchGetDevEndpointsOutput::dev_endpoints_not_found): <p>A list of <code>DevEndpoints</code> not found.</p>
10    /// - On failure, responds with [`SdkError<BatchGetDevEndpointsError>`](crate::operation::batch_get_dev_endpoints::BatchGetDevEndpointsError)
11    pub fn batch_get_dev_endpoints(&self) -> crate::operation::batch_get_dev_endpoints::builders::BatchGetDevEndpointsFluentBuilder {
12        crate::operation::batch_get_dev_endpoints::builders::BatchGetDevEndpointsFluentBuilder::new(self.handle.clone())
13    }
14}