aws_sdk_glue/client/
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 [`GetDevEndpoints`](crate::operation::get_dev_endpoints::builders::GetDevEndpointsFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::get_dev_endpoints::builders::GetDevEndpointsFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`max_results(i32)`](crate::operation::get_dev_endpoints::builders::GetDevEndpointsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::get_dev_endpoints::builders::GetDevEndpointsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum size of information to return.</p><br>
8    ///   - [`next_token(impl Into<String>)`](crate::operation::get_dev_endpoints::builders::GetDevEndpointsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_dev_endpoints::builders::GetDevEndpointsFluentBuilder::set_next_token):<br>required: **false**<br><p>A continuation token, if this is a continuation call.</p><br>
9    /// - On success, responds with [`GetDevEndpointsOutput`](crate::operation::get_dev_endpoints::GetDevEndpointsOutput) with field(s):
10    ///   - [`dev_endpoints(Option<Vec::<DevEndpoint>>)`](crate::operation::get_dev_endpoints::GetDevEndpointsOutput::dev_endpoints): <p>A list of <code>DevEndpoint</code> definitions.</p>
11    ///   - [`next_token(Option<String>)`](crate::operation::get_dev_endpoints::GetDevEndpointsOutput::next_token): <p>A continuation token, if not all <code>DevEndpoint</code> definitions have yet been returned.</p>
12    /// - On failure, responds with [`SdkError<GetDevEndpointsError>`](crate::operation::get_dev_endpoints::GetDevEndpointsError)
13    pub fn get_dev_endpoints(&self) -> crate::operation::get_dev_endpoints::builders::GetDevEndpointsFluentBuilder {
14        crate::operation::get_dev_endpoints::builders::GetDevEndpointsFluentBuilder::new(self.handle.clone())
15    }
16}