paws.analytics (version 0.1.0)

glue_create_dev_endpoint: Creates a new DevEndpoint

Description

Creates a new DevEndpoint.

Usage

glue_create_dev_endpoint(EndpointName, RoleArn, SecurityGroupIds,
  SubnetId, PublicKey, PublicKeys, NumberOfNodes, ExtraPythonLibsS3Path,
  ExtraJarsS3Path, SecurityConfiguration, Tags, Arguments)

Arguments

EndpointName

[required] The name to be assigned to the new DevEndpoint.

RoleArn

[required] The IAM role for the DevEndpoint.

SecurityGroupIds

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

SubnetId

The subnet ID for the new DevEndpoint to use.

PublicKey

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.

PublicKeys

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.

NumberOfNodes

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

ExtraPythonLibsS3Path

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.

ExtraJarsS3Path

Path to one or more Java Jars in an S3 bucket that should be loaded in your DevEndpoint.

SecurityConfiguration

The name of the SecurityConfiguration structure to be used with this DevEndpoint.

Tags

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.

Arguments

A map of arguments used to configure the DevEndpoint.

Request syntax

svc$create_dev_endpoint(
  EndpointName = "string",
  RoleArn = "string",
  SecurityGroupIds = list(
    "string"
  ),
  SubnetId = "string",
  PublicKey = "string",
  PublicKeys = list(
    "string"
  ),
  NumberOfNodes = 123,
  ExtraPythonLibsS3Path = "string",
  ExtraJarsS3Path = "string",
  SecurityConfiguration = "string",
  Tags = list(
    "string"
  ),
  Arguments = list(
    "string"
  )
)