#[non_exhaustive]pub struct UpdateDevEndpointInput {
pub endpoint_name: Option<String>,
pub public_key: Option<String>,
pub add_public_keys: Option<Vec<String>>,
pub delete_public_keys: Option<Vec<String>>,
pub custom_libraries: Option<DevEndpointCustomLibraries>,
pub update_etl_libraries: Option<bool>,
pub delete_arguments: Option<Vec<String>>,
pub add_arguments: Option<HashMap<String, String>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.endpoint_name: Option<String>
The name of the DevEndpoint
to be updated.
public_key: Option<String>
The public key for the DevEndpoint
to use.
add_public_keys: Option<Vec<String>>
The list of public keys for the DevEndpoint
to use.
delete_public_keys: Option<Vec<String>>
The list of public keys to be deleted from the DevEndpoint
.
custom_libraries: Option<DevEndpointCustomLibraries>
Custom Python or Java libraries to be loaded in the DevEndpoint
.
update_etl_libraries: Option<bool>
True
if the list of custom libraries to be loaded in the development endpoint needs to be updated, or False
if otherwise.
delete_arguments: Option<Vec<String>>
The list of argument keys to be deleted from the map of arguments used to configure the DevEndpoint
.
add_arguments: Option<HashMap<String, String>>
The map of arguments to add the map of arguments used to configure the DevEndpoint
.
Valid arguments are:
-
"--enable-glue-datacatalog": ""
You can specify a version of Python support for development endpoints by using the Arguments
parameter in the CreateDevEndpoint
or UpdateDevEndpoint
APIs. If no arguments are provided, the version defaults to Python 2.
Implementations§
source§impl UpdateDevEndpointInput
impl UpdateDevEndpointInput
sourcepub fn endpoint_name(&self) -> Option<&str>
pub fn endpoint_name(&self) -> Option<&str>
The name of the DevEndpoint
to be updated.
sourcepub fn public_key(&self) -> Option<&str>
pub fn public_key(&self) -> Option<&str>
The public key for the DevEndpoint
to use.
sourcepub fn add_public_keys(&self) -> &[String]
pub fn add_public_keys(&self) -> &[String]
The list of public keys for the DevEndpoint
to use.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .add_public_keys.is_none()
.
sourcepub fn delete_public_keys(&self) -> &[String]
pub fn delete_public_keys(&self) -> &[String]
The list of public keys to be deleted from the DevEndpoint
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .delete_public_keys.is_none()
.
sourcepub fn custom_libraries(&self) -> Option<&DevEndpointCustomLibraries>
pub fn custom_libraries(&self) -> Option<&DevEndpointCustomLibraries>
Custom Python or Java libraries to be loaded in the DevEndpoint
.
sourcepub fn update_etl_libraries(&self) -> Option<bool>
pub fn update_etl_libraries(&self) -> Option<bool>
True
if the list of custom libraries to be loaded in the development endpoint needs to be updated, or False
if otherwise.
sourcepub fn delete_arguments(&self) -> &[String]
pub fn delete_arguments(&self) -> &[String]
The list of argument keys to be deleted from the map of arguments used to configure the DevEndpoint
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .delete_arguments.is_none()
.
sourcepub fn add_arguments(&self) -> Option<&HashMap<String, String>>
pub fn add_arguments(&self) -> Option<&HashMap<String, String>>
The map of arguments to add the map of arguments used to configure the DevEndpoint
.
Valid arguments are:
-
"--enable-glue-datacatalog": ""
You can specify a version of Python support for development endpoints by using the Arguments
parameter in the CreateDevEndpoint
or UpdateDevEndpoint
APIs. If no arguments are provided, the version defaults to Python 2.
source§impl UpdateDevEndpointInput
impl UpdateDevEndpointInput
sourcepub fn builder() -> UpdateDevEndpointInputBuilder
pub fn builder() -> UpdateDevEndpointInputBuilder
Creates a new builder-style object to manufacture UpdateDevEndpointInput
.
Trait Implementations§
source§impl Clone for UpdateDevEndpointInput
impl Clone for UpdateDevEndpointInput
source§fn clone(&self) -> UpdateDevEndpointInput
fn clone(&self) -> UpdateDevEndpointInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateDevEndpointInput
impl Debug for UpdateDevEndpointInput
source§impl PartialEq for UpdateDevEndpointInput
impl PartialEq for UpdateDevEndpointInput
source§fn eq(&self, other: &UpdateDevEndpointInput) -> bool
fn eq(&self, other: &UpdateDevEndpointInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateDevEndpointInput
Auto Trait Implementations§
impl Freeze for UpdateDevEndpointInput
impl RefUnwindSafe for UpdateDevEndpointInput
impl Send for UpdateDevEndpointInput
impl Sync for UpdateDevEndpointInput
impl Unpin for UpdateDevEndpointInput
impl UnwindSafe for UpdateDevEndpointInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more