Struct rusoto_glue::DevEndpointCustomLibraries[][src]

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

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.

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 Default for DevEndpointCustomLibraries
[src]

Returns the "default value" for a type. Read more

impl Debug for DevEndpointCustomLibraries
[src]

Formats the value using the given formatter. Read more

impl Clone for DevEndpointCustomLibraries
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DevEndpointCustomLibraries
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations