Struct rusoto_glue::CreateDevEndpointRequest[][src]

pub struct CreateDevEndpointRequest {
    pub endpoint_name: String,
    pub extra_jars_s3_path: Option<String>,
    pub extra_python_libs_s3_path: Option<String>,
    pub number_of_nodes: Option<i64>,
    pub public_key: Option<String>,
    pub role_arn: String,
    pub security_group_ids: Option<Vec<String>>,
    pub subnet_id: Option<String>,
}

Fields

The name to be assigned to the new DevEndpoint.

Path to one or more Java Jars in an S3 bucket that should be loaded in your 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.

The number of AWS Glue Data Processing Units (DPUs) to allocate to this DevEndpoint.

The public key to use for authentication.

The IAM role for the DevEndpoint.

Security group IDs for the security groups to be used by the new DevEndpoint.

The subnet ID for the new DevEndpoint to use.

Trait Implementations

impl Default for CreateDevEndpointRequest
[src]

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

impl Debug for CreateDevEndpointRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateDevEndpointRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateDevEndpointRequest
[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