Struct rusoto_glue::UpdateDevEndpointRequest[][src]

pub struct UpdateDevEndpointRequest {
    pub custom_libraries: Option<DevEndpointCustomLibraries>,
    pub endpoint_name: String,
    pub public_key: Option<String>,
    pub update_etl_libraries: Option<bool>,
}

Fields

Custom Python or Java libraries to be loaded in the DevEndpoint.

The name of the DevEndpoint to be updated.

The public key for the DevEndpoint to use.

True if the list of custom libraries to be loaded in the development endpoint needs to be updated, or False otherwise.

Trait Implementations

impl Default for UpdateDevEndpointRequest
[src]

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

impl Debug for UpdateDevEndpointRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateDevEndpointRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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