logo
pub struct CreateDevEndpointResponse {
Show 19 fields pub arguments: Option<HashMap<String, String>>, pub availability_zone: Option<String>, pub created_timestamp: Option<f64>, pub endpoint_name: Option<String>, pub extra_jars_s3_path: Option<String>, pub extra_python_libs_s3_path: Option<String>, pub failure_reason: Option<String>, pub glue_version: Option<String>, pub number_of_nodes: Option<i64>, pub number_of_workers: Option<i64>, pub role_arn: Option<String>, pub security_configuration: Option<String>, pub security_group_ids: Option<Vec<String>>, pub status: Option<String>, pub subnet_id: Option<String>, pub vpc_id: Option<String>, pub worker_type: Option<String>, pub yarn_endpoint_address: Option<String>, pub zeppelin_remote_spark_interpreter_port: Option<i64>,
}

Fields

arguments: Option<HashMap<String, String>>

The map of arguments used to configure this DevEndpoint.

Valid arguments are:

  • "--enable-glue-datacatalog": ""

You can specify a version of Python support for development endpoints by using the Arguments parameter in the CreateDevEndpoint or UpdateDevEndpoint APIs. If no arguments are provided, the version defaults to Python 2.

availability_zone: Option<String>

The AWS Availability Zone where this DevEndpoint is located.

created_timestamp: Option<f64>

The point in time at which this DevEndpoint was created.

endpoint_name: Option<String>

The name assigned to the new DevEndpoint.

extra_jars_s3_path: Option<String>

Path to one or more Java .jar files in an S3 bucket that will be loaded in your DevEndpoint.

extra_python_libs_s3_path: Option<String>

The paths to one or more Python libraries in an S3 bucket that will be loaded in your DevEndpoint.

failure_reason: Option<String>

The reason for a current failure in this DevEndpoint.

glue_version: Option<String>

Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for running your ETL scripts on development endpoints.

For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

number_of_nodes: Option<i64>

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

number_of_workers: Option<i64>

The number of workers of a defined workerType that are allocated to the development endpoint.

role_arn: Option<String>

The Amazon Resource Name (ARN) of the role assigned to the new DevEndpoint.

security_configuration: Option<String>

The name of the SecurityConfiguration structure being used with this DevEndpoint.

security_group_ids: Option<Vec<String>>

The security groups assigned to the new DevEndpoint.

status: Option<String>

The current status of the new DevEndpoint.

subnet_id: Option<String>

The subnet ID assigned to the new DevEndpoint.

vpc_id: Option<String>

The ID of the virtual private cloud (VPC) used by this DevEndpoint.

worker_type: Option<String>

The type of predefined worker that is allocated to the development endpoint. May be a value of Standard, G.1X, or G.2X.

yarn_endpoint_address: Option<String>

The address of the YARN endpoint used by this DevEndpoint.

zeppelin_remote_spark_interpreter_port: Option<i64>

The Apache Zeppelin port for the remote Apache Spark interpreter.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more