Struct aws_sdk_glue::types::DevEndpointCustomLibraries
source · #[non_exhaustive]pub struct DevEndpointCustomLibraries {
pub extra_python_libs_s3_path: Option<String>,
pub extra_jars_s3_path: Option<String>,
}Expand description
Custom libraries to be loaded into a development endpoint.
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.extra_python_libs_s3_path: Option<String>The paths to one or more Python libraries in an Amazon Simple Storage Service (Amazon S3) bucket that should be loaded in your DevEndpoint. Multiple values must be complete paths separated by a comma.
You can only use pure Python libraries with a DevEndpoint. Libraries that rely on C extensions, such as the pandas Python data analysis library, are not currently supported.
extra_jars_s3_path: Option<String>The path to one or more Java .jar files in an S3 bucket that should be loaded in your DevEndpoint.
You can only use pure Java/Scala libraries with a DevEndpoint.
Implementations§
source§impl DevEndpointCustomLibraries
impl DevEndpointCustomLibraries
sourcepub fn extra_python_libs_s3_path(&self) -> Option<&str>
pub fn extra_python_libs_s3_path(&self) -> Option<&str>
The paths to one or more Python libraries in an Amazon Simple Storage Service (Amazon S3) bucket that should be loaded in your DevEndpoint. Multiple values must be complete paths separated by a comma.
You can only use pure Python libraries with a DevEndpoint. Libraries that rely on C extensions, such as the pandas Python data analysis library, are not currently supported.
sourcepub fn extra_jars_s3_path(&self) -> Option<&str>
pub fn extra_jars_s3_path(&self) -> Option<&str>
The path to one or more Java .jar files in an S3 bucket that should be loaded in your DevEndpoint.
You can only use pure Java/Scala libraries with a DevEndpoint.
source§impl DevEndpointCustomLibraries
impl DevEndpointCustomLibraries
sourcepub fn builder() -> DevEndpointCustomLibrariesBuilder
pub fn builder() -> DevEndpointCustomLibrariesBuilder
Creates a new builder-style object to manufacture DevEndpointCustomLibraries.
Trait Implementations§
source§impl Clone for DevEndpointCustomLibraries
impl Clone for DevEndpointCustomLibraries
source§fn clone(&self) -> DevEndpointCustomLibraries
fn clone(&self) -> DevEndpointCustomLibraries
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DevEndpointCustomLibraries
impl Debug for DevEndpointCustomLibraries
source§impl PartialEq for DevEndpointCustomLibraries
impl PartialEq for DevEndpointCustomLibraries
source§fn eq(&self, other: &DevEndpointCustomLibraries) -> bool
fn eq(&self, other: &DevEndpointCustomLibraries) -> bool
self and other values to be equal, and is used
by ==.