You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glue::Types::UpdateDevEndpointRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateDevEndpointRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  endpoint_name: "GenericString", # required
  public_key: "GenericString",
  add_public_keys: ["GenericString"],
  delete_public_keys: ["GenericString"],
  custom_libraries: {
    extra_python_libs_s3_path: "GenericString",
    extra_jars_s3_path: "GenericString",
  },
  update_etl_libraries: false,
  delete_arguments: ["GenericString"],
  add_arguments: {
    "GenericString" => "GenericString",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#add_argumentsHash<String,String>

The map of arguments to add the map of arguments used to configure the DevEndpoint.

Valid arguments are:

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

  • "GLUE_PYTHON_VERSION": "3"

  • "GLUE_PYTHON_VERSION": "2"

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.

Returns:

  • (Hash<String,String>)

    The map of arguments to add the map of arguments used to configure the DevEndpoint.

#add_public_keysArray<String>

The list of public keys for the DevEndpoint to use.

Returns:

  • (Array<String>)

    The list of public keys for the DevEndpoint to use.

#custom_librariesTypes::DevEndpointCustomLibraries

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

Returns:

#delete_argumentsArray<String>

The list of argument keys to be deleted from the map of arguments used to configure the DevEndpoint.

Returns:

  • (Array<String>)

    The list of argument keys to be deleted from the map of arguments used to configure the DevEndpoint.

#delete_public_keysArray<String>

The list of public keys to be deleted from the DevEndpoint.

Returns:

  • (Array<String>)

    The list of public keys to be deleted from the DevEndpoint.

#endpoint_nameString

The name of the DevEndpoint to be updated.

Returns:

  • (String)

    The name of the DevEndpoint to be updated.

#public_keyString

The public key for the DevEndpoint to use.

Returns:

  • (String)

    The public key for the DevEndpoint to use.

#update_etl_librariesBoolean

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

Returns:

  • (Boolean)

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