[][src]Struct rusoto_glue::DevEndpointCustomLibraries

pub struct DevEndpointCustomLibraries {
    pub extra_jars_s3_path: Option<String>,
    pub extra_python_libs_s3_path: Option<String>,
}

Custom libraries to be loaded into a DevEndpoint.

Fields

extra_jars_s3_path: Option<String>

Path to one or more Java Jars in an S3 bucket that should be loaded in your DevEndpoint.

Please note that only pure Java/Scala libraries can currently be used on a DevEndpoint.

extra_python_libs_s3_path: Option<String>

Path(s) to one or more Python libraries in an S3 bucket that should be loaded in your DevEndpoint. Multiple values must be complete paths separated by a comma.

Please note that only pure Python libraries can currently be used on a DevEndpoint. Libraries that rely on C extensions, such as the pandas Python data analysis library, are not yet supported.

Trait Implementations

impl PartialEq<DevEndpointCustomLibraries> for DevEndpointCustomLibraries[src]

impl Default for DevEndpointCustomLibraries[src]

impl Clone for DevEndpointCustomLibraries[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DevEndpointCustomLibraries[src]

impl Serialize for DevEndpointCustomLibraries[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self