[][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 development endpoint.

Fields

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.

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.

Trait Implementations

impl Clone for DevEndpointCustomLibraries[src]

impl Debug for DevEndpointCustomLibraries[src]

impl Default for DevEndpointCustomLibraries[src]

impl PartialEq<DevEndpointCustomLibraries> for DevEndpointCustomLibraries[src]

impl Serialize for DevEndpointCustomLibraries[src]

impl StructuralPartialEq for DevEndpointCustomLibraries[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.