#[non_exhaustive]pub struct DevEndpointCustomLibrariesBuilder { /* private fields */ }Expand description
A builder for DevEndpointCustomLibraries.
Implementations§
source§impl DevEndpointCustomLibrariesBuilder
impl DevEndpointCustomLibrariesBuilder
sourcepub fn extra_python_libs_s3_path(self, input: impl Into<String>) -> Self
pub fn extra_python_libs_s3_path(self, input: impl Into<String>) -> Self
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 set_extra_python_libs_s3_path(self, input: Option<String>) -> Self
pub fn set_extra_python_libs_s3_path(self, input: Option<String>) -> Self
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 get_extra_python_libs_s3_path(&self) -> &Option<String>
pub fn get_extra_python_libs_s3_path(&self) -> &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.
sourcepub fn extra_jars_s3_path(self, input: impl Into<String>) -> Self
pub fn extra_jars_s3_path(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_extra_jars_s3_path(self, input: Option<String>) -> Self
pub fn set_extra_jars_s3_path(self, input: Option<String>) -> Self
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.
sourcepub fn get_extra_jars_s3_path(&self) -> &Option<String>
pub fn get_extra_jars_s3_path(&self) -> &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.
sourcepub fn build(self) -> DevEndpointCustomLibraries
pub fn build(self) -> DevEndpointCustomLibraries
Consumes the builder and constructs a DevEndpointCustomLibraries.
Trait Implementations§
source§impl Clone for DevEndpointCustomLibrariesBuilder
impl Clone for DevEndpointCustomLibrariesBuilder
source§fn clone(&self) -> DevEndpointCustomLibrariesBuilder
fn clone(&self) -> DevEndpointCustomLibrariesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DevEndpointCustomLibrariesBuilder
impl Default for DevEndpointCustomLibrariesBuilder
source§fn default() -> DevEndpointCustomLibrariesBuilder
fn default() -> DevEndpointCustomLibrariesBuilder
source§impl PartialEq for DevEndpointCustomLibrariesBuilder
impl PartialEq for DevEndpointCustomLibrariesBuilder
source§fn eq(&self, other: &DevEndpointCustomLibrariesBuilder) -> bool
fn eq(&self, other: &DevEndpointCustomLibrariesBuilder) -> bool
self and other values to be equal, and is used
by ==.