Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateDevEndpointRequest

import type { UpdateDevEndpointRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface UpdateDevEndpointRequest {
AddArguments?: {
[key: string]: string | null | undefined;
}
| null;
AddPublicKeys?: string[] | null;
CustomLibraries?: DevEndpointCustomLibraries | null;
DeleteArguments?: string[] | null;
DeletePublicKeys?: string[] | null;
EndpointName: string;
PublicKey?: string | null;
UpdateEtlLibraries?: boolean | null;
}

§Properties

§
AddArguments?: {
[key: string]: string | null | undefined;
}
| null
[src]

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

Valid arguments are:

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

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.

§
AddPublicKeys?: string[] | null
[src]

The list of public keys for the DevEndpoint to use.

§
CustomLibraries?: DevEndpointCustomLibraries | null
[src]

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

§
DeleteArguments?: string[] | null
[src]

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

§
DeletePublicKeys?: string[] | null
[src]

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

§
EndpointName: string
[src]

The name of the DevEndpoint to be updated.

§
PublicKey?: string | null
[src]

The public key for the DevEndpoint to use.

§
UpdateEtlLibraries?: boolean | null
[src]

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