aws_sdk_glue/client/
update_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 [`UpdateDevEndpoint`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`endpoint_name(impl Into<String>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::endpoint_name) / [`set_endpoint_name(Option<String>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::set_endpoint_name):<br>required: **true**<br><p>The name of the <code>DevEndpoint</code> to be updated.</p><br>
7    ///   - [`public_key(impl Into<String>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::public_key) / [`set_public_key(Option<String>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::set_public_key):<br>required: **false**<br><p>The public key for the <code>DevEndpoint</code> to use.</p><br>
8    ///   - [`add_public_keys(impl Into<String>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::add_public_keys) / [`set_add_public_keys(Option<Vec::<String>>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::set_add_public_keys):<br>required: **false**<br><p>The list of public keys for the <code>DevEndpoint</code> to use.</p><br>
9    ///   - [`delete_public_keys(impl Into<String>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::delete_public_keys) / [`set_delete_public_keys(Option<Vec::<String>>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::set_delete_public_keys):<br>required: **false**<br><p>The list of public keys to be deleted from the <code>DevEndpoint</code>.</p><br>
10    ///   - [`custom_libraries(DevEndpointCustomLibraries)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::custom_libraries) / [`set_custom_libraries(Option<DevEndpointCustomLibraries>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::set_custom_libraries):<br>required: **false**<br><p>Custom Python or Java libraries to be loaded in the <code>DevEndpoint</code>.</p><br>
11    ///   - [`update_etl_libraries(bool)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::update_etl_libraries) / [`set_update_etl_libraries(Option<bool>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::set_update_etl_libraries):<br>required: **false**<br><p><code>True</code> if the list of custom libraries to be loaded in the development endpoint needs to be updated, or <code>False</code> if otherwise.</p><br>
12    ///   - [`delete_arguments(impl Into<String>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::delete_arguments) / [`set_delete_arguments(Option<Vec::<String>>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::set_delete_arguments):<br>required: **false**<br><p>The list of argument keys to be deleted from the map of arguments used to configure the <code>DevEndpoint</code>.</p><br>
13    ///   - [`add_arguments(impl Into<String>, impl Into<String>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::add_arguments) / [`set_add_arguments(Option<HashMap::<String, String>>)`](crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::set_add_arguments):<br>required: **false**<br><p>The map of arguments to add the map of arguments used to configure the <code>DevEndpoint</code>.</p> <p>Valid arguments are:</p> <ul>  <li>   <p><code>"--enable-glue-datacatalog": ""</code></p></li> </ul> <p>You can specify a version of Python support for development endpoints by using the <code>Arguments</code> parameter in the <code>CreateDevEndpoint</code> or <code>UpdateDevEndpoint</code> APIs. If no arguments are provided, the version defaults to Python 2.</p><br>
14    /// - On success, responds with [`UpdateDevEndpointOutput`](crate::operation::update_dev_endpoint::UpdateDevEndpointOutput)
15    /// - On failure, responds with [`SdkError<UpdateDevEndpointError>`](crate::operation::update_dev_endpoint::UpdateDevEndpointError)
16    pub fn update_dev_endpoint(&self) -> crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder {
17        crate::operation::update_dev_endpoint::builders::UpdateDevEndpointFluentBuilder::new(self.handle.clone())
18    }
19}