{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-create-dev-endpoint-response-schema.json", "title": "CreateDevEndpointResponse", "description": "CreateDevEndpointResponse schema from Amazon Glue API", "type": "object", "properties": { "EndpointName": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The name assigned to the new DevEndpoint." } ] }, "Status": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The current status of the new DevEndpoint." } ] }, "SecurityGroupIds": { "allOf": [ { "$ref": "#/components/schemas/StringList" }, { "description": "The security groups assigned to the new DevEndpoint." } ] }, "SubnetId": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The subnet ID assigned to the new DevEndpoint." } ] }, "RoleArn": { "allOf": [ { "$ref": "#/components/schemas/RoleArn" }, { "description": "The Amazon Resource Name (ARN) of the role assigned to the new DevEndpoint." } ] }, "YarnEndpointAddress": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The address of the YARN endpoint used by this DevEndpoint." } ] }, "ZeppelinRemoteSparkInterpreterPort": { "allOf": [ { "$ref": "#/components/schemas/IntegerValue" }, { "description": "The Apache Zeppelin port for the remote Apache Spark interpreter." } ] }, "NumberOfNodes": { "allOf": [ { "$ref": "#/components/schemas/IntegerValue" }, { "description": "The number of Glue Data Processing Units (DPUs) allocated to this DevEndpoint." } ] }, "WorkerType": { "allOf": [ { "$ref": "#/components/schemas/WorkerType" }, { "description": "The type of predefined worker that is allocated to the development endpoint. May be a value of Standard, G.1X, or G.2X." } ] }, "GlueVersion": { "allOf": [ { "$ref": "#/components/schemas/GlueVersionString" }, { "description": "

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.

" } ] }, "NumberOfWorkers": { "allOf": [ { "$ref": "#/components/schemas/NullableInteger" }, { "description": "The number of workers of a defined workerType that are allocated to the development endpoint." } ] }, "AvailabilityZone": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The Amazon Web Services Availability Zone where this DevEndpoint is located." } ] }, "VpcId": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The ID of the virtual private cloud (VPC) used by this DevEndpoint." } ] }, "ExtraPythonLibsS3Path": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The paths to one or more Python libraries in an S3 bucket that will be loaded in your DevEndpoint." } ] }, "ExtraJarsS3Path": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "Path to one or more Java .jar files in an S3 bucket that will be loaded in your DevEndpoint." } ] }, "FailureReason": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The reason for a current failure in this DevEndpoint." } ] }, "SecurityConfiguration": { "allOf": [ { "$ref": "#/components/schemas/NameString" }, { "description": "The name of the SecurityConfiguration structure being used with this DevEndpoint." } ] }, "CreatedTimestamp": { "allOf": [ { "$ref": "#/components/schemas/TimestampValue" }, { "description": "The point in time at which this DevEndpoint was created." } ] }, "Arguments": { "allOf": [ { "$ref": "#/components/schemas/MapValue" }, { "description": "

The map of arguments used to configure this DevEndpoint.

Valid arguments are:

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.

" } ] } } }