- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
UpdateDevEndpointCommand
Updates a specified development endpoint.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { GlueClient, UpdateDevEndpointCommand } from "@aws-sdk/client-glue"; // ES Modules import
// const { GlueClient, UpdateDevEndpointCommand } = require("@aws-sdk/client-glue"); // CommonJS import
const client = new GlueClient(config);
const input = { // UpdateDevEndpointRequest
EndpointName: "STRING_VALUE", // required
PublicKey: "STRING_VALUE",
AddPublicKeys: [ // PublicKeysList
"STRING_VALUE",
],
DeletePublicKeys: [
"STRING_VALUE",
],
CustomLibraries: { // DevEndpointCustomLibraries
ExtraPythonLibsS3Path: "STRING_VALUE",
ExtraJarsS3Path: "STRING_VALUE",
},
UpdateEtlLibraries: true || false,
DeleteArguments: [ // StringList
"STRING_VALUE",
],
AddArguments: { // MapValue
"<keys>": "STRING_VALUE",
},
};
const command = new UpdateDevEndpointCommand(input);
const response = await client.send(command);
// {};
UpdateDevEndpointCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
EndpointName Required | string | undefined | The name of the |
AddArguments | Record<string, string> | undefined | The map of arguments to add the map of arguments used to configure the Valid arguments are:
You can specify a version of Python support for development endpoints by using the |
AddPublicKeys | string[] | undefined | The list of public keys for the |
CustomLibraries | DevEndpointCustomLibraries | undefined | Custom Python or Java libraries to be loaded in the |
DeleteArguments | string[] | undefined | The list of argument keys to be deleted from the map of arguments used to configure the |
DeletePublicKeys | string[] | undefined | The list of public keys to be deleted from the |
PublicKey | string | undefined | The public key for the |
UpdateEtlLibraries | boolean | undefined | |
UpdateDevEndpointCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
EntityNotFoundException | client | A specified entity does not exist |
InternalServiceException | server | An internal service error occurred. |
InvalidInputException | client | The input provided was not valid. |
OperationTimeoutException | client | The operation timed out. |
ValidationException | client | A value could not be validated. |
GlueServiceException | Base exception class for all service exceptions from Glue service. |