[−][src]Struct rusoto_glue::CreateDevEndpointRequest
Fields
arguments: Option<HashMap<String, String>>
A map of arguments used to configure the DevEndpoint.
endpoint_name: String
The name to be assigned to the new DevEndpoint.
extra_jars_s3_path: Option<String>
Path to one or more Java Jars in an S3 bucket that should be loaded in your DevEndpoint.
extra_python_libs_s3_path: Option<String>
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.
number_of_nodes: Option<i64>
The number of AWS Glue Data Processing Units (DPUs) to allocate to this DevEndpoint.
public_key: Option<String>
The public key to be used by this DevEndpoint for authentication. This attribute is provided for backward compatibility, as the recommended attribute to use is public keys.
public_keys: Option<Vec<String>>
A list of public keys to be used by the DevEndpoints for authentication. The use of this attribute is preferred over a single public key because the public keys allow you to have a different private key per client.
If you previously created an endpoint with a public key, you must remove that key to be able to set a list of public keys: call the UpdateDevEndpoint
API with the public key content in the deletePublicKeys
attribute, and the list of new keys in the addPublicKeys
attribute.
role_arn: String
The IAM role for the DevEndpoint.
security_configuration: Option<String>
The name of the SecurityConfiguration structure to be used with this DevEndpoint.
security_group_ids: Option<Vec<String>>
Security group IDs for the security groups to be used by the new DevEndpoint.
subnet_id: Option<String>
The subnet ID for the new DevEndpoint to use.
The tags to use with this DevEndpoint. You may use tags to limit access to the DevEndpoint. For more information about tags in AWS Glue, see AWS Tags in AWS Glue in the developer guide.
Trait Implementations
impl PartialEq<CreateDevEndpointRequest> for CreateDevEndpointRequest
[src]
fn eq(&self, other: &CreateDevEndpointRequest) -> bool
[src]
fn ne(&self, other: &CreateDevEndpointRequest) -> bool
[src]
impl Default for CreateDevEndpointRequest
[src]
fn default() -> CreateDevEndpointRequest
[src]
impl Clone for CreateDevEndpointRequest
[src]
fn clone(&self) -> CreateDevEndpointRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CreateDevEndpointRequest
[src]
impl Serialize for CreateDevEndpointRequest
[src]
Auto Trait Implementations
impl Send for CreateDevEndpointRequest
impl Sync for CreateDevEndpointRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self