aws_sdk_glue/client/get_dev_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 [`GetDevEndpoint`](crate::operation::get_dev_endpoint::builders::GetDevEndpointFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`endpoint_name(impl Into<String>)`](crate::operation::get_dev_endpoint::builders::GetDevEndpointFluentBuilder::endpoint_name) / [`set_endpoint_name(Option<String>)`](crate::operation::get_dev_endpoint::builders::GetDevEndpointFluentBuilder::set_endpoint_name):<br>required: **true**<br><p>Name of the <code>DevEndpoint</code> to retrieve information for.</p><br>
7 /// - On success, responds with [`GetDevEndpointOutput`](crate::operation::get_dev_endpoint::GetDevEndpointOutput) with field(s):
8 /// - [`dev_endpoint(Option<DevEndpoint>)`](crate::operation::get_dev_endpoint::GetDevEndpointOutput::dev_endpoint): <p>A <code>DevEndpoint</code> definition.</p>
9 /// - On failure, responds with [`SdkError<GetDevEndpointError>`](crate::operation::get_dev_endpoint::GetDevEndpointError)
10 pub fn get_dev_endpoint(&self) -> crate::operation::get_dev_endpoint::builders::GetDevEndpointFluentBuilder {
11 crate::operation::get_dev_endpoint::builders::GetDevEndpointFluentBuilder::new(self.handle.clone())
12 }
13}