You are viewing the documentation for an older major version of the AWS SDK for JavaScript.
The modular AWS SDK for JavaScript (v3), the latest major version of AWS SDK for JavaScript, is now stable and recommended for general use. For more information, see the Migration Guide and API Reference.

Class: AWS.Glue

Inherits:
AWS.Service show all
Identifier:
glue
API Version:
2017-03-31
Defined in:
(unknown)

Overview

Constructs a service interface object. Each API operation is exposed as a function on service.

Service Description

Defines the public endpoint for the Glue service.

Sending a Request Using Glue

var glue = new AWS.Glue();
glue.batchCreatePartition(params, function (err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Locking the API Version

In order to ensure that the Glue object uses this specific API, you can construct the object by passing the apiVersion option to the constructor:

var glue = new AWS.Glue({apiVersion: '2017-03-31'});

You can also set the API version globally in AWS.config.apiVersions using the glue service identifier:

AWS.config.apiVersions = {
  glue: '2017-03-31',
  // other service API versions
};

var glue = new AWS.Glue();

Version:

  • 2017-03-31

Constructor Summary collapse

Property Summary collapse

Properties inherited from AWS.Service

apiVersions

Method Summary collapse

Methods inherited from AWS.Service

makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService

Constructor Details

new AWS.Glue(options = {}) ⇒ Object

Constructs a service object. This object has one method for each API operation.

Examples:

Constructing a Glue object

var glue = new AWS.Glue({apiVersion: '2017-03-31'});

Options Hash (options):

  • params (map)

    An optional map of parameters to bind to every request sent by this service object. For more information on bound parameters, see "Working with Services" in the Getting Started Guide.

  • endpoint (String|AWS.Endpoint)

    The endpoint URI to send requests to. The default endpoint is built from the configured region. The endpoint should be a string like 'https://{service}.{region}.amazonaws.com' or an Endpoint object.

  • accessKeyId (String)

    your AWS access key ID.

  • secretAccessKey (String)

    your AWS secret access key.

  • sessionToken (AWS.Credentials)

    the optional AWS session token to sign requests with.

  • credentials (AWS.Credentials)

    the AWS credentials to sign requests with. You can either specify this object, or specify the accessKeyId and secretAccessKey options directly.

  • credentialProvider (AWS.CredentialProviderChain)

    the provider chain used to resolve credentials if no static credentials property is set.

  • region (String)

    the region to send service requests to. See AWS.Glue.region for more information.

  • maxRetries (Integer)

    the maximum amount of retries to attempt with a request. See AWS.Glue.maxRetries for more information.

  • maxRedirects (Integer)

    the maximum amount of redirects to follow with a request. See AWS.Glue.maxRedirects for more information.

  • sslEnabled (Boolean)

    whether to enable SSL for requests.

  • paramValidation (Boolean|map)

    whether input parameters should be validated against the operation description before sending the request. Defaults to true. Pass a map to enable any of the following specific validation features:

    • min [Boolean] — Validates that a value meets the min constraint. This is enabled by default when paramValidation is set to true.
    • max [Boolean] — Validates that a value meets the max constraint.
    • pattern [Boolean] — Validates that a string value matches a regular expression.
    • enum [Boolean] — Validates that a string value matches one of the allowable enum values.
  • computeChecksums (Boolean)

    whether to compute checksums for payload bodies when the service accepts it (currently supported in S3 only)

  • convertResponseTypes (Boolean)

    whether types are converted when parsing response data. Currently only supported for JSON based services. Turning this off may improve performance on large response payloads. Defaults to true.

  • correctClockSkew (Boolean)

    whether to apply a clock skew correction and retry requests that fail because of an skewed client clock. Defaults to false.

  • s3ForcePathStyle (Boolean)

    whether to force path style URLs for S3 objects.

  • s3BucketEndpoint (Boolean)

    whether the provided endpoint addresses an individual bucket (false if it addresses the root API endpoint). Note that setting this configuration option requires an endpoint to be provided explicitly to the service constructor.

  • s3DisableBodySigning (Boolean)

    whether S3 body signing should be disabled when using signature version v4. Body signing can only be disabled when using https. Defaults to true.

  • s3UsEast1RegionalEndpoint ('legacy'|'regional')

    when region is set to 'us-east-1', whether to send s3 request to global endpoints or 'us-east-1' regional endpoints. This config is only applicable to S3 client. Defaults to legacy

  • s3UseArnRegion (Boolean)

    whether to override the request region with the region inferred from requested resource's ARN. Only available for S3 buckets Defaults to true

  • retryDelayOptions (map)

    A set of options to configure the retry delay on retryable errors. Currently supported options are:

    • base [Integer] — The base number of milliseconds to use in the exponential backoff for operation retries. Defaults to 100 ms for all services except DynamoDB, where it defaults to 50ms.
    • customBackoff [function] — A custom function that accepts a retry count and error and returns the amount of time to delay in milliseconds. If the result is a non-zero negative value, no further retry attempts will be made. The base option will be ignored if this option is supplied. The function is only called for retryable errors.
  • httpOptions (map)

    A set of options to pass to the low-level HTTP request. Currently supported options are:

    • proxy [String] — the URL to proxy requests through
    • agent [http.Agent, https.Agent] — the Agent object to perform HTTP requests with. Used for connection pooling. Defaults to the global agent (http.globalAgent) for non-SSL connections. Note that for SSL connections, a special Agent object is used in order to enable peer certificate verification. This feature is only available in the Node.js environment.
    • connectTimeout [Integer] — Sets the socket to timeout after failing to establish a connection with the server after connectTimeout milliseconds. This timeout has no effect once a socket connection has been established.
    • timeout [Integer] — Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000).
    • xhrAsync [Boolean] — Whether the SDK will send asynchronous HTTP requests. Used in the browser environment only. Set to false to send requests synchronously. Defaults to true (async on).
    • xhrWithCredentials [Boolean] — Sets the "withCredentials" property of an XMLHttpRequest object. Used in the browser environment only. Defaults to false.
  • apiVersion (String, Date)

    a String in YYYY-MM-DD format (or a date) that represents the latest possible API version that can be used in all services (unless overridden by apiVersions). Specify 'latest' to use the latest possible version.

  • apiVersions (map<String, String|Date>)

    a map of service identifiers (the lowercase service class name) with the API version to use when instantiating a service. Specify 'latest' for each individual that can use the latest available version.

  • logger (#write, #log)

    an object that responds to .write() (like a stream) or .log() (like the console object) in order to log information about requests

  • systemClockOffset (Number)

    an offset value in milliseconds to apply to all signing times. Use this to compensate for clock skew when your system may be out of sync with the service time. Note that this configuration option can only be applied to the global AWS.config object and cannot be overridden in service-specific configuration. Defaults to 0 milliseconds.

  • signatureVersion (String)

    the signature version to sign requests with (overriding the API configuration). Possible values are: 'v2', 'v3', 'v4'.

  • signatureCache (Boolean)

    whether the signature to sign requests with (overriding the API configuration) is cached. Only applies to the signature version 'v4'. Defaults to true.

  • dynamoDbCrc32 (Boolean)

    whether to validate the CRC32 checksum of HTTP response bodies returned by DynamoDB. Default: true.

  • useAccelerateEndpoint (Boolean)

    Whether to use the S3 Transfer Acceleration endpoint with the S3 service. Default: false.

  • clientSideMonitoring (Boolean)

    whether to collect and publish this client's performance metrics of all its API requests.

  • endpointDiscoveryEnabled (Boolean|undefined)

    whether to call operations with endpoints given by service dynamically. Setting this

  • endpointCacheSize (Number)

    the size of the global cache storing endpoints from endpoint discovery operations. Once endpoint cache is created, updating this setting cannot change existing cache size. Defaults to 1000

  • hostPrefixEnabled (Boolean)

    whether to marshal request parameters to the prefix of hostname. Defaults to true.

  • stsRegionalEndpoints ('legacy'|'regional')

    whether to send sts request to global endpoints or regional endpoints. Defaults to 'legacy'.

Property Details

endpointAWS.Endpoint (readwrite)

Returns an Endpoint object representing the endpoint URL for service requests.

Returns:

  • (AWS.Endpoint)

    an Endpoint object representing the endpoint URL for service requests.

Method Details

batchCreatePartition(params = {}, callback) ⇒ AWS.Request

Creates one or more partitions in a batch operation.

Service Reference:

Examples:

Calling the batchCreatePartition operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  PartitionInputList: [ /* required */
    {
      LastAccessTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
      LastAnalyzedTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
      Parameters: {
        '<KeyString>': 'STRING_VALUE',
        /* '<KeyString>': ... */
      },
      StorageDescriptor: {
        BucketColumns: [
          'STRING_VALUE',
          /* more items */
        ],
        Columns: [
          {
            Name: 'STRING_VALUE', /* required */
            Comment: 'STRING_VALUE',
            Parameters: {
              '<KeyString>': 'STRING_VALUE',
              /* '<KeyString>': ... */
            },
            Type: 'STRING_VALUE'
          },
          /* more items */
        ],
        Compressed: true || false,
        InputFormat: 'STRING_VALUE',
        Location: 'STRING_VALUE',
        NumberOfBuckets: 'NUMBER_VALUE',
        OutputFormat: 'STRING_VALUE',
        Parameters: {
          '<KeyString>': 'STRING_VALUE',
          /* '<KeyString>': ... */
        },
        SchemaReference: {
          SchemaId: {
            RegistryName: 'STRING_VALUE',
            SchemaArn: 'STRING_VALUE',
            SchemaName: 'STRING_VALUE'
          },
          SchemaVersionId: 'STRING_VALUE',
          SchemaVersionNumber: 'NUMBER_VALUE'
        },
        SerdeInfo: {
          Name: 'STRING_VALUE',
          Parameters: {
            '<KeyString>': 'STRING_VALUE',
            /* '<KeyString>': ... */
          },
          SerializationLibrary: 'STRING_VALUE'
        },
        SkewedInfo: {
          SkewedColumnNames: [
            'STRING_VALUE',
            /* more items */
          ],
          SkewedColumnValueLocationMaps: {
            '<ColumnValuesString>': 'STRING_VALUE',
            /* '<ColumnValuesString>': ... */
          },
          SkewedColumnValues: [
            'STRING_VALUE',
            /* more items */
          ]
        },
        SortColumns: [
          {
            Column: 'STRING_VALUE', /* required */
            SortOrder: 'NUMBER_VALUE' /* required */
          },
          /* more items */
        ],
        StoredAsSubDirectories: true || false
      },
      Values: [
        'STRING_VALUE',
        /* more items */
      ]
    },
    /* more items */
  ],
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.batchCreatePartition(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the catalog in which the partition is to be created. Currently, this should be the Amazon Web Services account ID.

    • DatabaseName — (String)

      The name of the metadata database in which the partition is to be created.

    • TableName — (String)

      The name of the metadata table in which the partition is to be created.

    • PartitionInputList — (Array<map>)

      A list of PartitionInput structures that define the partitions to be created.

      • Values — (Array<String>)

        The values of the partition. Although this parameter is not required by the SDK, you must specify this parameter for a valid input.

        The values for the keys for the new partition must be passed as an array of String objects that must be ordered in the same order as the partition keys appearing in the Amazon S3 prefix. Otherwise Glue will add the values to the wrong keys.

      • LastAccessTime — (Date)

        The last time at which the partition was accessed.

      • StorageDescriptor — (map)

        Provides information about the physical location where the partition is stored.

        • Columns — (Array<map>)

          A list of the Columns in the table.

          • Namerequired — (String)

            The name of the Column.

          • Type — (String)

            The data type of the Column.

          • Comment — (String)

            A free-form text comment.

          • Parameters — (map<String>)

            These key-value pairs define properties associated with the column.

        • Location — (String)

          The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

        • InputFormat — (String)

          The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

        • OutputFormat — (String)

          The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

        • Compressed — (Boolean)

          True if the data in the table is compressed, or False if not.

        • NumberOfBuckets — (Integer)

          Must be specified if the table contains any dimension columns.

        • SerdeInfo — (map)

          The serialization/deserialization (SerDe) information.

          • Name — (String)

            Name of the SerDe.

          • SerializationLibrary — (String)

            Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

          • Parameters — (map<String>)

            These key-value pairs define initialization parameters for the SerDe.

        • BucketColumns — (Array<String>)

          A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

        • SortColumns — (Array<map>)

          A list specifying the sort order of each bucket in the table.

          • Columnrequired — (String)

            The name of the column.

          • SortOrderrequired — (Integer)

            Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

        • Parameters — (map<String>)

          The user-supplied properties in key-value form.

        • SkewedInfo — (map)

          The information about values that appear frequently in a column (skewed values).

          • SkewedColumnNames — (Array<String>)

            A list of names of columns that contain skewed values.

          • SkewedColumnValues — (Array<String>)

            A list of values that appear so frequently as to be considered skewed.

          • SkewedColumnValueLocationMaps — (map<String>)

            A mapping of skewed values to the columns that contain them.

        • StoredAsSubDirectories — (Boolean)

          True if the table data is stored in subdirectories, or False if not.

        • SchemaReference — (map)

          An object that references a schema stored in the Glue Schema Registry.

          When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

          • SchemaId — (map)

            A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

            • SchemaArn — (String)

              The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

            • SchemaName — (String)

              The name of the schema. One of SchemaArn or SchemaName has to be provided.

            • RegistryName — (String)

              The name of the schema registry that contains the schema.

          • SchemaVersionId — (String)

            The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

          • SchemaVersionNumber — (Integer)

            The version number of the schema.

      • Parameters — (map<String>)

        These key-value pairs define partition parameters.

      • LastAnalyzedTime — (Date)

        The last time at which column statistics were computed for this partition.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Errors — (Array<map>)

        The errors encountered when trying to create the requested partitions.

        • PartitionValues — (Array<String>)

          The values that define the partition.

        • ErrorDetail — (map)

          The details about the partition error.

          • ErrorCode — (String)

            The code associated with this error.

          • ErrorMessage — (String)

            A message describing the error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchDeleteConnection(params = {}, callback) ⇒ AWS.Request

Deletes a list of connection definitions from the Data Catalog.

Service Reference:

Examples:

Calling the batchDeleteConnection operation

var params = {
  ConnectionNameList: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  CatalogId: 'STRING_VALUE'
};
glue.batchDeleteConnection(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog in which the connections reside. If none is provided, the Amazon Web Services account ID is used by default.

    • ConnectionNameList — (Array<String>)

      A list of names of the connections to delete.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Succeeded — (Array<String>)

        A list of names of the connection definitions that were successfully deleted.

      • Errors — (map<map>)

        A map of the names of connections that were not successfully deleted to error details.

        • ErrorCode — (String)

          The code associated with this error.

        • ErrorMessage — (String)

          A message describing the error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchDeletePartition(params = {}, callback) ⇒ AWS.Request

Deletes one or more partitions in a batch operation.

Service Reference:

Examples:

Calling the batchDeletePartition operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  PartitionsToDelete: [ /* required */
    {
      Values: [ /* required */
        'STRING_VALUE',
        /* more items */
      ]
    },
    /* more items */
  ],
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.batchDeletePartition(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the partition to be deleted resides. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database in which the table in question resides.

    • TableName — (String)

      The name of the table that contains the partitions to be deleted.

    • PartitionsToDelete — (Array<map>)

      A list of PartitionInput structures that define the partitions to be deleted.

      • Valuesrequired — (Array<String>)

        The list of values.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Errors — (Array<map>)

        The errors encountered when trying to delete the requested partitions.

        • PartitionValues — (Array<String>)

          The values that define the partition.

        • ErrorDetail — (map)

          The details about the partition error.

          • ErrorCode — (String)

            The code associated with this error.

          • ErrorMessage — (String)

            A message describing the error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchDeleteTable(params = {}, callback) ⇒ AWS.Request

Deletes multiple tables at once.

Note: After completing this operation, you no longer have access to the table versions and partitions that belong to the deleted table. Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service. To ensure the immediate deletion of all related resources, before calling BatchDeleteTable, use DeleteTableVersion or BatchDeleteTableVersion, and DeletePartition or BatchDeletePartition, to delete any resources that belong to the table.

Service Reference:

Examples:

Calling the batchDeleteTable operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  TablesToDelete: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  CatalogId: 'STRING_VALUE'
};
glue.batchDeleteTable(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database in which the tables to delete reside. For Hive compatibility, this name is entirely lowercase.

    • TablesToDelete — (Array<String>)

      A list of the table to delete.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Errors — (Array<map>)

        A list of errors encountered in attempting to delete the specified tables.

        • TableName — (String)

          The name of the table. For Hive compatibility, this must be entirely lowercase.

        • ErrorDetail — (map)

          The details about the error.

          • ErrorCode — (String)

            The code associated with this error.

          • ErrorMessage — (String)

            A message describing the error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchDeleteTableVersion(params = {}, callback) ⇒ AWS.Request

Deletes a specified batch of versions of a table.

Service Reference:

Examples:

Calling the batchDeleteTableVersion operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  TableName: 'STRING_VALUE', /* required */
  VersionIds: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  CatalogId: 'STRING_VALUE'
};
glue.batchDeleteTableVersion(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase.

    • TableName — (String)

      The name of the table. For Hive compatibility, this name is entirely lowercase.

    • VersionIds — (Array<String>)

      A list of the IDs of versions to be deleted. A VersionId is a string representation of an integer. Each version is incremented by 1.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Errors — (Array<map>)

        A list of errors encountered while trying to delete the specified table versions.

        • TableName — (String)

          The name of the table in question.

        • VersionId — (String)

          The ID value of the version in question. A VersionID is a string representation of an integer. Each version is incremented by 1.

        • ErrorDetail — (map)

          The details about the error.

          • ErrorCode — (String)

            The code associated with this error.

          • ErrorMessage — (String)

            A message describing the error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchGetBlueprints(params = {}, callback) ⇒ AWS.Request

Retrieves information about a list of blueprints.

Service Reference:

Examples:

Calling the batchGetBlueprints operation

var params = {
  Names: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  IncludeBlueprint: true || false,
  IncludeParameterSpec: true || false
};
glue.batchGetBlueprints(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Names — (Array<String>)

      A list of blueprint names.

    • IncludeBlueprint — (Boolean)

      Specifies whether or not to include the blueprint in the response.

    • IncludeParameterSpec — (Boolean)

      Specifies whether or not to include the parameters, as a JSON string, for the blueprint in the response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Blueprints — (Array<map>)

        Returns a list of blueprint as a Blueprints object.

        • Name — (String)

          The name of the blueprint.

        • Description — (String)

          The description of the blueprint.

        • CreatedOn — (Date)

          The date and time the blueprint was registered.

        • LastModifiedOn — (Date)

          The date and time the blueprint was last modified.

        • ParameterSpec — (String)

          A JSON string that indicates the list of parameter specifications for the blueprint.

        • BlueprintLocation — (String)

          Specifies the path in Amazon S3 where the blueprint is published.

        • BlueprintServiceLocation — (String)

          Specifies a path in Amazon S3 where the blueprint is copied when you call CreateBlueprint/UpdateBlueprint to register the blueprint in Glue.

        • Status — (String)

          The status of the blueprint registration.

          • Creating — The blueprint registration is in progress.

          • Active — The blueprint has been successfully registered.

          • Updating — An update to the blueprint registration is in progress.

          • Failed — The blueprint registration failed.

          Possible values include:
          • "CREATING"
          • "ACTIVE"
          • "UPDATING"
          • "FAILED"
        • ErrorMessage — (String)

          An error message.

        • LastActiveDefinition — (map)

          When there are multiple versions of a blueprint and the latest version has some errors, this attribute indicates the last successful blueprint definition that is available with the service.

          • Description — (String)

            The description of the blueprint.

          • LastModifiedOn — (Date)

            The date and time the blueprint was last modified.

          • ParameterSpec — (String)

            A JSON string specifying the parameters for the blueprint.

          • BlueprintLocation — (String)

            Specifies a path in Amazon S3 where the blueprint is published by the Glue developer.

          • BlueprintServiceLocation — (String)

            Specifies a path in Amazon S3 where the blueprint is copied when you create or update the blueprint.

      • MissingBlueprints — (Array<String>)

        Returns a list of BlueprintNames that were not found.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchGetCrawlers(params = {}, callback) ⇒ AWS.Request

Returns a list of resource metadata for a given list of crawler names. After calling the ListCrawlers operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.

Service Reference:

Examples:

Calling the batchGetCrawlers operation

var params = {
  CrawlerNames: [ /* required */
    'STRING_VALUE',
    /* more items */
  ]
};
glue.batchGetCrawlers(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CrawlerNames — (Array<String>)

      A list of crawler names, which might be the names returned from the ListCrawlers operation.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Crawlers — (Array<map>)

        A list of crawler definitions.

        • Name — (String)

          The name of the crawler.

        • Role — (String)

          The Amazon Resource Name (ARN) of an IAM role that's used to access customer resources, such as Amazon Simple Storage Service (Amazon S3) data.

        • Targets — (map)

          A collection of targets to crawl.

          • S3Targets — (Array<map>)

            Specifies Amazon Simple Storage Service (Amazon S3) targets.

            • Path — (String)

              The path to the Amazon S3 target.

            • Exclusions — (Array<String>)

              A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

            • ConnectionName — (String)

              The name of a connection which allows a job or crawler to access data in Amazon S3 within an Amazon Virtual Private Cloud environment (Amazon VPC).

            • SampleSize — (Integer)

              Sets the number of files in each leaf folder to be crawled when crawling sample files in a dataset. If not set, all the files are crawled. A valid value is an integer between 1 and 249.

            • EventQueueArn — (String)

              A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.

            • DlqEventQueueArn — (String)

              A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.

          • JdbcTargets — (Array<map>)

            Specifies JDBC targets.

            • ConnectionName — (String)

              The name of the connection to use to connect to the JDBC target.

            • Path — (String)

              The path of the JDBC target.

            • Exclusions — (Array<String>)

              A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

          • MongoDBTargets — (Array<map>)

            Specifies Amazon DocumentDB or MongoDB targets.

            • ConnectionName — (String)

              The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.

            • Path — (String)

              The path of the Amazon DocumentDB or MongoDB target (database/collection).

            • ScanAll — (Boolean)

              Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.

              A value of true means to scan all records, while a value of false means to sample the records. If no value is specified, the value defaults to true.

          • DynamoDBTargets — (Array<map>)

            Specifies Amazon DynamoDB targets.

            • Path — (String)

              The name of the DynamoDB table to crawl.

            • scanAll — (Boolean)

              Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.

              A value of true means to scan all records, while a value of false means to sample the records. If no value is specified, the value defaults to true.

            • scanRate — (Float)

              The percentage of the configured read capacity units to use by the Glue crawler. Read capacity units is a term defined by DynamoDB, and is a numeric value that acts as rate limiter for the number of reads that can be performed on that table per second.

              The valid values are null or a value between 0.1 to 1.5. A null value is used when user does not provide a value, and defaults to 0.5 of the configured Read Capacity Unit (for provisioned tables), or 0.25 of the max configured Read Capacity Unit (for tables using on-demand mode).

          • CatalogTargets — (Array<map>)

            Specifies Glue Data Catalog targets.

            • DatabaseNamerequired — (String)

              The name of the database to be synchronized.

            • Tablesrequired — (Array<String>)

              A list of the tables to be synchronized.

        • DatabaseName — (String)

          The name of the database in which the crawler's output is stored.

        • Description — (String)

          A description of the crawler.

        • Classifiers — (Array<String>)

          A list of UTF-8 strings that specify the custom classifiers that are associated with the crawler.

        • RecrawlPolicy — (map)

          A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.

          • RecrawlBehavior — (String)

            Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.

            A value of CRAWL_EVERYTHING specifies crawling the entire dataset again.

            A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that were added since the last crawler run.

            A value of CRAWL_EVENT_MODE specifies crawling only the changes identified by Amazon S3 events.

            Possible values include:
            • "CRAWL_EVERYTHING"
            • "CRAWL_NEW_FOLDERS_ONLY"
            • "CRAWL_EVENT_MODE"
        • SchemaChangePolicy — (map)

          The policy that specifies update and delete behaviors for the crawler.

          • UpdateBehavior — (String)

            The update behavior when the crawler finds a changed schema.

            Possible values include:
            • "LOG"
            • "UPDATE_IN_DATABASE"
          • DeleteBehavior — (String)

            The deletion behavior when the crawler finds a deleted object.

            Possible values include:
            • "LOG"
            • "DELETE_FROM_DATABASE"
            • "DEPRECATE_IN_DATABASE"
        • LineageConfiguration — (map)

          A configuration that specifies whether data lineage is enabled for the crawler.

          • CrawlerLineageSettings — (String)

            Specifies whether data lineage is enabled for the crawler. Valid values are:

            • ENABLE: enables data lineage for the crawler

            • DISABLE: disables data lineage for the crawler

            Possible values include:
            • "ENABLE"
            • "DISABLE"
        • State — (String)

          Indicates whether the crawler is running, or whether a run is pending.

          Possible values include:
          • "READY"
          • "RUNNING"
          • "STOPPING"
        • TablePrefix — (String)

          The prefix added to the names of tables that are created.

        • Schedule — (map)

          For scheduled crawlers, the schedule when the crawler runs.

          • ScheduleExpression — (String)

            A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

          • State — (String)

            The state of the schedule.

            Possible values include:
            • "SCHEDULED"
            • "NOT_SCHEDULED"
            • "TRANSITIONING"
        • CrawlElapsedTime — (Integer)

          If the crawler is running, contains the total time elapsed since the last crawl began.

        • CreationTime — (Date)

          The time that the crawler was created.

        • LastUpdated — (Date)

          The time that the crawler was last updated.

        • LastCrawl — (map)

          The status of the last crawl, and potentially error information if an error occurred.

          • Status — (String)

            Status of the last crawl.

            Possible values include:
            • "SUCCEEDED"
            • "CANCELLED"
            • "FAILED"
          • ErrorMessage — (String)

            If an error occurred, the error information about the last crawl.

          • LogGroup — (String)

            The log group for the last crawl.

          • LogStream — (String)

            The log stream for the last crawl.

          • MessagePrefix — (String)

            The prefix for a message about this crawl.

          • StartTime — (Date)

            The time at which the crawl started.

        • Version — (Integer)

          The version of the crawler.

        • Configuration — (String)

          Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Include and Exclude Patterns.

        • CrawlerSecurityConfiguration — (String)

          The name of the SecurityConfiguration structure to be used by this crawler.

      • CrawlersNotFound — (Array<String>)

        A list of names of crawlers that were not found.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchGetDevEndpoints(params = {}, callback) ⇒ AWS.Request

Returns a list of resource metadata for a given list of development endpoint names. After calling the ListDevEndpoints operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.

Service Reference:

Examples:

Calling the batchGetDevEndpoints operation

var params = {
  DevEndpointNames: [ /* required */
    'STRING_VALUE',
    /* more items */
  ]
};
glue.batchGetDevEndpoints(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DevEndpointNames — (Array<String>)

      The list of DevEndpoint names, which might be the names returned from the ListDevEndpoint operation.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DevEndpoints — (Array<map>)

        A list of DevEndpoint definitions.

        • EndpointName — (String)

          The name of the DevEndpoint.

        • RoleArn — (String)

          The Amazon Resource Name (ARN) of the IAM role used in this DevEndpoint.

        • SecurityGroupIds — (Array<String>)

          A list of security group identifiers used in this DevEndpoint.

        • SubnetId — (String)

          The subnet ID for this DevEndpoint.

        • YarnEndpointAddress — (String)

          The YARN endpoint address used by this DevEndpoint.

        • PrivateAddress — (String)

          A private IP address to access the DevEndpoint within a VPC if the DevEndpoint is created within one. The PrivateAddress field is present only when you create the DevEndpoint within your VPC.

        • ZeppelinRemoteSparkInterpreterPort — (Integer)

          The Apache Zeppelin port for the remote Apache Spark interpreter.

        • PublicAddress — (String)

          The public IP address used by this DevEndpoint. The PublicAddress field is present only when you create a non-virtual private cloud (VPC) DevEndpoint.

        • Status — (String)

          The current status of this DevEndpoint.

        • WorkerType — (String)

          The type of predefined worker that is allocated to the development endpoint. Accepts a value of Standard, G.1X, or G.2X.

          • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

          • For the G.1X worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

          • For the G.2X worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

          Known issue: when a development endpoint is created with the G.2X WorkerType configuration, the Spark drivers for the development endpoint will run on 4 vCPU, 16 GB of memory, and a 64 GB disk.

          Possible values include:
          • "Standard"
          • "G.1X"
          • "G.2X"
        • GlueVersion — (String)

          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.

          Development endpoints that are created without specifying a Glue version default to Glue 0.9.

          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.

        • NumberOfWorkers — (Integer)

          The number of workers of a defined workerType that are allocated to the development endpoint.

          The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

        • NumberOfNodes — (Integer)

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

        • AvailabilityZone — (String)

          The AWS Availability Zone where this DevEndpoint is located.

        • VpcId — (String)

          The ID of the virtual private cloud (VPC) used by this DevEndpoint.

        • ExtraPythonLibsS3Path — (String)

          The paths to one or more Python libraries in an Amazon S3 bucket that should be loaded in your DevEndpoint. Multiple values must be complete paths separated by a comma.

          Note: You can only use pure Python libraries with a DevEndpoint. Libraries that rely on C extensions, such as the pandas Python data analysis library, are not currently supported.
        • ExtraJarsS3Path — (String)

          The path to one or more Java .jar files in an S3 bucket that should be loaded in your DevEndpoint.

          Note: You can only use pure Java/Scala libraries with a DevEndpoint.
        • FailureReason — (String)

          The reason for a current failure in this DevEndpoint.

        • LastUpdateStatus — (String)

          The status of the last update.

        • CreatedTimestamp — (Date)

          The point in time at which this DevEndpoint was created.

        • LastModifiedTimestamp — (Date)

          The point in time at which this DevEndpoint was last modified.

        • PublicKey — (String)

          The public key to be used by this DevEndpoint for authentication. This attribute is provided for backward compatibility because the recommended attribute to use is public keys.

        • PublicKeys — (Array<String>)

          A list of public keys to be used by the DevEndpoints for authentication. Using this attribute is preferred over a single public key because the public keys allow you to have a different private key per client.

          Note: 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 operation with the public key content in the deletePublicKeys attribute, and the list of new keys in the addPublicKeys attribute.
        • SecurityConfiguration — (String)

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

        • Arguments — (map<String>)

          A 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.

      • DevEndpointsNotFound — (Array<String>)

        A list of DevEndpoints not found.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchGetJobs(params = {}, callback) ⇒ AWS.Request

Returns a list of resource metadata for a given list of job names. After calling the ListJobs operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.

Service Reference:

Examples:

Calling the batchGetJobs operation

var params = {
  JobNames: [ /* required */
    'STRING_VALUE',
    /* more items */
  ]
};
glue.batchGetJobs(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • JobNames — (Array<String>)

      A list of job names, which might be the names returned from the ListJobs operation.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Jobs — (Array<map>)

        A list of job definitions.

        • Name — (String)

          The name you assign to this job definition.

        • Description — (String)

          A description of the job.

        • LogUri — (String)

          This field is reserved for future use.

        • Role — (String)

          The name or Amazon Resource Name (ARN) of the IAM role associated with this job.

        • CreatedOn — (Date)

          The time and date that this job definition was created.

        • LastModifiedOn — (Date)

          The last point in time when this job definition was modified.

        • ExecutionProperty — (map)

          An ExecutionProperty specifying the maximum number of concurrent runs allowed for this job.

          • MaxConcurrentRuns — (Integer)

            The maximum number of concurrent runs allowed for the job. The default is 1. An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit.

        • Command — (map)

          The JobCommand that runs this job.

          • Name — (String)

            The name of the job command. For an Apache Spark ETL job, this must be glueetl. For a Python shell job, it must be pythonshell. For an Apache Spark streaming ETL job, this must be gluestreaming.

          • ScriptLocation — (String)

            Specifies the Amazon Simple Storage Service (Amazon S3) path to a script that runs a job.

          • PythonVersion — (String)

            The Python version being used to run a Python shell job. Allowed values are 2 or 3.

        • DefaultArguments — (map<String>)

          The default arguments for this job, specified as name-value pairs.

          You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

          For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

          For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

        • NonOverridableArguments — (map<String>)

          Non-overridable arguments for this job, specified as name-value pairs.

        • Connections — (map)

          The connections used for this job.

          • Connections — (Array<String>)

            A list of connections used by the job.

        • MaxRetries — (Integer)

          The maximum number of times to retry this job after a JobRun fails.

        • AllocatedCapacity — (Integer)

          This field is deprecated. Use MaxCapacity instead.

          The number of Glue data processing units (DPUs) allocated to runs of this job. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

        • Timeout — (Integer)

          The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).

        • MaxCapacity — (Float)

          For Glue version 1.0 or earlier jobs, using the standard worker type, the number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

          Do not set Max Capacity if using WorkerType and NumberOfWorkers.

          The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job, an Apache Spark ETL job, or an Apache Spark streaming ETL job:

          • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

          • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl") or Apache Spark streaming ETL job (JobCommand.Name="gluestreaming"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

          For Glue version 2.0 jobs, you cannot instead specify a Maximum capacity. Instead, you should specify a Worker type and the Number of workers.

        • WorkerType — (String)

          The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

          • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

          • For the G.1X worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

          • For the G.2X worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

          Possible values include:
          • "Standard"
          • "G.1X"
          • "G.2X"
        • NumberOfWorkers — (Integer)

          The number of workers of a defined workerType that are allocated when a job runs.

          The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

        • SecurityConfiguration — (String)

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

        • NotificationProperty — (map)

          Specifies configuration properties of a job notification.

          • NotifyDelayAfter — (Integer)

            After a job run starts, the number of minutes to wait before sending a job run delay notification.

        • GlueVersion — (String)

          Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

          For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

          Jobs that are created without specifying a Glue version default to Glue 0.9.

      • JobsNotFound — (Array<String>)

        A list of names of jobs not found.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchGetPartition(params = {}, callback) ⇒ AWS.Request

Retrieves partitions in a batch request.

Service Reference:

Examples:

Calling the batchGetPartition operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  PartitionsToGet: [ /* required */
    {
      Values: [ /* required */
        'STRING_VALUE',
        /* more items */
      ]
    },
    /* more items */
  ],
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.batchGetPartition(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the partitions reside.

    • TableName — (String)

      The name of the partitions' table.

    • PartitionsToGet — (Array<map>)

      A list of partition values identifying the partitions to retrieve.

      • Valuesrequired — (Array<String>)

        The list of values.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Partitions — (Array<map>)

        A list of the requested partitions.

        • Values — (Array<String>)

          The values of the partition.

        • DatabaseName — (String)

          The name of the catalog database in which to create the partition.

        • TableName — (String)

          The name of the database table in which to create the partition.

        • CreationTime — (Date)

          The time at which the partition was created.

        • LastAccessTime — (Date)

          The last time at which the partition was accessed.

        • StorageDescriptor — (map)

          Provides information about the physical location where the partition is stored.

          • Columns — (Array<map>)

            A list of the Columns in the table.

            • Namerequired — (String)

              The name of the Column.

            • Type — (String)

              The data type of the Column.

            • Comment — (String)

              A free-form text comment.

            • Parameters — (map<String>)

              These key-value pairs define properties associated with the column.

          • Location — (String)

            The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

          • InputFormat — (String)

            The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

          • OutputFormat — (String)

            The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

          • Compressed — (Boolean)

            True if the data in the table is compressed, or False if not.

          • NumberOfBuckets — (Integer)

            Must be specified if the table contains any dimension columns.

          • SerdeInfo — (map)

            The serialization/deserialization (SerDe) information.

            • Name — (String)

              Name of the SerDe.

            • SerializationLibrary — (String)

              Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

            • Parameters — (map<String>)

              These key-value pairs define initialization parameters for the SerDe.

          • BucketColumns — (Array<String>)

            A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

          • SortColumns — (Array<map>)

            A list specifying the sort order of each bucket in the table.

            • Columnrequired — (String)

              The name of the column.

            • SortOrderrequired — (Integer)

              Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

          • Parameters — (map<String>)

            The user-supplied properties in key-value form.

          • SkewedInfo — (map)

            The information about values that appear frequently in a column (skewed values).

            • SkewedColumnNames — (Array<String>)

              A list of names of columns that contain skewed values.

            • SkewedColumnValues — (Array<String>)

              A list of values that appear so frequently as to be considered skewed.

            • SkewedColumnValueLocationMaps — (map<String>)

              A mapping of skewed values to the columns that contain them.

          • StoredAsSubDirectories — (Boolean)

            True if the table data is stored in subdirectories, or False if not.

          • SchemaReference — (map)

            An object that references a schema stored in the Glue Schema Registry.

            When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

            • SchemaId — (map)

              A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

              • SchemaArn — (String)

                The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

              • SchemaName — (String)

                The name of the schema. One of SchemaArn or SchemaName has to be provided.

              • RegistryName — (String)

                The name of the schema registry that contains the schema.

            • SchemaVersionId — (String)

              The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

            • SchemaVersionNumber — (Integer)

              The version number of the schema.

        • Parameters — (map<String>)

          These key-value pairs define partition parameters.

        • LastAnalyzedTime — (Date)

          The last time at which column statistics were computed for this partition.

        • CatalogId — (String)

          The ID of the Data Catalog in which the partition resides.

      • UnprocessedKeys — (Array<map>)

        A list of the partition values in the request for which partitions were not returned.

        • Valuesrequired — (Array<String>)

          The list of values.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchGetTriggers(params = {}, callback) ⇒ AWS.Request

Returns a list of resource metadata for a given list of trigger names. After calling the ListTriggers operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.

Service Reference:

Examples:

Calling the batchGetTriggers operation

var params = {
  TriggerNames: [ /* required */
    'STRING_VALUE',
    /* more items */
  ]
};
glue.batchGetTriggers(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • TriggerNames — (Array<String>)

      A list of trigger names, which may be the names returned from the ListTriggers operation.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Triggers — (Array<map>)

        A list of trigger definitions.

        • Name — (String)

          The name of the trigger.

        • WorkflowName — (String)

          The name of the workflow associated with the trigger.

        • Id — (String)

          Reserved for future use.

        • Type — (String)

          The type of trigger that this is.

          Possible values include:
          • "SCHEDULED"
          • "CONDITIONAL"
          • "ON_DEMAND"
          • "EVENT"
        • State — (String)

          The current state of the trigger.

          Possible values include:
          • "CREATING"
          • "CREATED"
          • "ACTIVATING"
          • "ACTIVATED"
          • "DEACTIVATING"
          • "DEACTIVATED"
          • "DELETING"
          • "UPDATING"
        • Description — (String)

          A description of this trigger.

        • Schedule — (String)

          A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

        • Actions — (Array<map>)

          The actions initiated by this trigger.

          • JobName — (String)

            The name of a job to be run.

          • Arguments — (map<String>)

            The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

            You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

            For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

            For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

          • Timeout — (Integer)

            The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

          • SecurityConfiguration — (String)

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

          • NotificationProperty — (map)

            Specifies configuration properties of a job run notification.

            • NotifyDelayAfter — (Integer)

              After a job run starts, the number of minutes to wait before sending a job run delay notification.

          • CrawlerName — (String)

            The name of the crawler to be used with this action.

        • Predicate — (map)

          The predicate of this trigger, which defines when it will fire.

          • Logical — (String)

            An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

            Possible values include:
            • "AND"
            • "ANY"
          • Conditions — (Array<map>)

            A list of the conditions that determine when the trigger will fire.

            • LogicalOperator — (String)

              A logical operator.

              Possible values include:
              • "EQUALS"
            • JobName — (String)

              The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

            • State — (String)

              The condition state. Currently, the only job states that a trigger can listen for are SUCCEEDED, STOPPED, FAILED, and TIMEOUT. The only crawler states that a trigger can listen for are SUCCEEDED, FAILED, and CANCELLED.

              Possible values include:
              • "STARTING"
              • "RUNNING"
              • "STOPPING"
              • "STOPPED"
              • "SUCCEEDED"
              • "FAILED"
              • "TIMEOUT"
            • CrawlerName — (String)

              The name of the crawler to which this condition applies.

            • CrawlState — (String)

              The state of the crawler to which this condition applies.

              Possible values include:
              • "RUNNING"
              • "CANCELLING"
              • "CANCELLED"
              • "SUCCEEDED"
              • "FAILED"
        • EventBatchingCondition — (map)

          Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

          • BatchSizerequired — (Integer)

            Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

          • BatchWindow — (Integer)

            Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

      • TriggersNotFound — (Array<String>)

        A list of names of triggers not found.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchGetWorkflows(params = {}, callback) ⇒ AWS.Request

Returns a list of resource metadata for a given list of workflow names. After calling the ListWorkflows operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.

Service Reference:

Examples:

Calling the batchGetWorkflows operation

var params = {
  Names: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  IncludeGraph: true || false
};
glue.batchGetWorkflows(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Names — (Array<String>)

      A list of workflow names, which may be the names returned from the ListWorkflows operation.

    • IncludeGraph — (Boolean)

      Specifies whether to include a graph when returning the workflow resource metadata.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Workflows — (Array<map>)

        A list of workflow resource metadata.

        • Name — (String)

          The name of the workflow.

        • Description — (String)

          A description of the workflow.

        • DefaultRunProperties — (map<String>)

          A collection of properties to be used as part of each execution of the workflow. The run properties are made available to each job in the workflow. A job can modify the properties for the next jobs in the flow.

        • CreatedOn — (Date)

          The date and time when the workflow was created.

        • LastModifiedOn — (Date)

          The date and time when the workflow was last modified.

        • LastRun — (map)

          The information about the last execution of the workflow.

          • Name — (String)

            Name of the workflow that was run.

          • WorkflowRunId — (String)

            The ID of this workflow run.

          • PreviousRunId — (String)

            The ID of the previous workflow run.

          • WorkflowRunProperties — (map<String>)

            The workflow run properties which were set during the run.

          • StartedOn — (Date)

            The date and time when the workflow run was started.

          • CompletedOn — (Date)

            The date and time when the workflow run completed.

          • Status — (String)

            The status of the workflow run.

            Possible values include:
            • "RUNNING"
            • "COMPLETED"
            • "STOPPING"
            • "STOPPED"
            • "ERROR"
          • ErrorMessage — (String)

            This error message describes any error that may have occurred in starting the workflow run. Currently the only error message is "Concurrent runs exceeded for workflow: foo."

          • Statistics — (map)

            The statistics of the run.

            • TotalActions — (Integer)

              Total number of Actions in the workflow run.

            • TimeoutActions — (Integer)

              Total number of Actions that timed out.

            • FailedActions — (Integer)

              Total number of Actions that have failed.

            • StoppedActions — (Integer)

              Total number of Actions that have stopped.

            • SucceededActions — (Integer)

              Total number of Actions that have succeeded.

            • RunningActions — (Integer)

              Total number Actions in running state.

          • Graph — (map)

            The graph representing all the Glue components that belong to the workflow as nodes and directed connections between them as edges.

            • Nodes — (Array<map>)

              A list of the the Glue components belong to the workflow represented as nodes.

              • Type — (String)

                The type of Glue component represented by the node.

                Possible values include:
                • "CRAWLER"
                • "JOB"
                • "TRIGGER"
              • Name — (String)

                The name of the Glue component represented by the node.

              • UniqueId — (String)

                The unique Id assigned to the node within the workflow.

              • TriggerDetails — (map)

                Details of the Trigger when the node represents a Trigger.

                • Trigger — (map)

                  The information of the trigger represented by the trigger node.

                  • Name — (String)

                    The name of the trigger.

                  • WorkflowName — (String)

                    The name of the workflow associated with the trigger.

                  • Id — (String)

                    Reserved for future use.

                  • Type — (String)

                    The type of trigger that this is.

                    Possible values include:
                    • "SCHEDULED"
                    • "CONDITIONAL"
                    • "ON_DEMAND"
                    • "EVENT"
                  • State — (String)

                    The current state of the trigger.

                    Possible values include:
                    • "CREATING"
                    • "CREATED"
                    • "ACTIVATING"
                    • "ACTIVATED"
                    • "DEACTIVATING"
                    • "DEACTIVATED"
                    • "DELETING"
                    • "UPDATING"
                  • Description — (String)

                    A description of this trigger.

                  • Schedule — (String)

                    A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

                  • Actions — (Array<map>)

                    The actions initiated by this trigger.

                    • JobName — (String)

                      The name of a job to be run.

                    • Arguments — (map<String>)

                      The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

                      You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

                      For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

                      For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

                    • Timeout — (Integer)

                      The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

                    • SecurityConfiguration — (String)

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

                    • NotificationProperty — (map)

                      Specifies configuration properties of a job run notification.

                      • NotifyDelayAfter — (Integer)

                        After a job run starts, the number of minutes to wait before sending a job run delay notification.

                    • CrawlerName — (String)

                      The name of the crawler to be used with this action.

                  • Predicate — (map)

                    The predicate of this trigger, which defines when it will fire.

                    • Logical — (String)

                      An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

                      Possible values include:
                      • "AND"
                      • "ANY"
                    • Conditions — (Array<map>)

                      A list of the conditions that determine when the trigger will fire.

                      • LogicalOperator — (String)

                        A logical operator.

                        Possible values include:
                        • "EQUALS"
                      • JobName — (String)

                        The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

                      • State — (String)

                        The condition state. Currently, the only job states that a trigger can listen for are SUCCEEDED, STOPPED, FAILED, and TIMEOUT. The only crawler states that a trigger can listen for are SUCCEEDED, FAILED, and CANCELLED.

                        Possible values include:
                        • "STARTING"
                        • "RUNNING"
                        • "STOPPING"
                        • "STOPPED"
                        • "SUCCEEDED"
                        • "FAILED"
                        • "TIMEOUT"
                      • CrawlerName — (String)

                        The name of the crawler to which this condition applies.

                      • CrawlState — (String)

                        The state of the crawler to which this condition applies.

                        Possible values include:
                        • "RUNNING"
                        • "CANCELLING"
                        • "CANCELLED"
                        • "SUCCEEDED"
                        • "FAILED"
                  • EventBatchingCondition — (map)

                    Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

                    • BatchSizerequired — (Integer)

                      Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

                    • BatchWindow — (Integer)

                      Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

              • JobDetails — (map)

                Details of the Job when the node represents a Job.

                • JobRuns — (Array<map>)

                  The information for the job runs represented by the job node.

                  • Id — (String)

                    The ID of this job run.

                  • Attempt — (Integer)

                    The number of the attempt to run this job.

                  • PreviousRunId — (String)

                    The ID of the previous run of this job. For example, the JobRunId specified in the StartJobRun action.

                  • TriggerName — (String)

                    The name of the trigger that started this job run.

                  • JobName — (String)

                    The name of the job definition being used in this run.

                  • StartedOn — (Date)

                    The date and time at which this job run was started.

                  • LastModifiedOn — (Date)

                    The last time that this job run was modified.

                  • CompletedOn — (Date)

                    The date and time that this job run completed.

                  • JobRunState — (String)

                    The current state of the job run. For more information about the statuses of jobs that have terminated abnormally, see Glue Job Run Statuses.

                    Possible values include:
                    • "STARTING"
                    • "RUNNING"
                    • "STOPPING"
                    • "STOPPED"
                    • "SUCCEEDED"
                    • "FAILED"
                    • "TIMEOUT"
                  • Arguments — (map<String>)

                    The job arguments associated with this run. For this job run, they replace the default arguments set in the job definition itself.

                    You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

                    For information about how to specify and consume your own job arguments, see the Calling Glue APIs in Python topic in the developer guide.

                    For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

                  • ErrorMessage — (String)

                    An error message associated with this job run.

                  • PredecessorRuns — (Array<map>)

                    A list of predecessors to this job run.

                    • JobName — (String)

                      The name of the job definition used by the predecessor job run.

                    • RunId — (String)

                      The job-run ID of the predecessor job run.

                  • AllocatedCapacity — (Integer)

                    This field is deprecated. Use MaxCapacity instead.

                    The number of Glue data processing units (DPUs) allocated to this JobRun. From 2 to 100 DPUs can be allocated; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

                  • ExecutionTime — (Integer)

                    The amount of time (in seconds) that the job run consumed resources.

                  • Timeout — (Integer)

                    The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

                  • MaxCapacity — (Float)

                    The number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

                    Do not set Max Capacity if using WorkerType and NumberOfWorkers.

                    The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job or an Apache Spark ETL job:

                    • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

                    • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

                  • WorkerType — (String)

                    The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

                    • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

                    • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

                    • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

                    Possible values include:
                    • "Standard"
                    • "G.1X"
                    • "G.2X"
                  • NumberOfWorkers — (Integer)

                    The number of workers of a defined workerType that are allocated when a job runs.

                    The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

                  • SecurityConfiguration — (String)

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

                  • LogGroupName — (String)

                    The name of the log group for secure logging that can be server-side encrypted in Amazon CloudWatch using KMS. This name can be /aws-glue/jobs/, in which case the default encryption is NONE. If you add a role name and SecurityConfiguration name (in other words, /aws-glue/jobs-yourRoleName-yourSecurityConfigurationName/), then that security configuration is used to encrypt the log group.

                  • NotificationProperty — (map)

                    Specifies configuration properties of a job run notification.

                    • NotifyDelayAfter — (Integer)

                      After a job run starts, the number of minutes to wait before sending a job run delay notification.

                  • GlueVersion — (String)

                    Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

                    For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

                    Jobs that are created without specifying a Glue version default to Glue 0.9.

              • CrawlerDetails — (map)

                Details of the crawler when the node represents a crawler.

                • Crawls — (Array<map>)

                  A list of crawls represented by the crawl node.

                  • State — (String)

                    The state of the crawler.

                    Possible values include:
                    • "RUNNING"
                    • "CANCELLING"
                    • "CANCELLED"
                    • "SUCCEEDED"
                    • "FAILED"
                  • StartedOn — (Date)

                    The date and time on which the crawl started.

                  • CompletedOn — (Date)

                    The date and time on which the crawl completed.

                  • ErrorMessage — (String)

                    The error message associated with the crawl.

                  • LogGroup — (String)

                    The log group associated with the crawl.

                  • LogStream — (String)

                    The log stream associated with the crawl.

            • Edges — (Array<map>)

              A list of all the directed connections between the nodes belonging to the workflow.

              • SourceId — (String)

                The unique of the node within the workflow where the edge starts.

              • DestinationId — (String)

                The unique of the node within the workflow where the edge ends.

          • StartingEventBatchCondition — (map)

            The batch condition that started the workflow run.

            • BatchSize — (Integer)

              Number of events in the batch.

            • BatchWindow — (Integer)

              Duration of the batch window in seconds.

        • Graph — (map)

          The graph representing all the Glue components that belong to the workflow as nodes and directed connections between them as edges.

          • Nodes — (Array<map>)

            A list of the the Glue components belong to the workflow represented as nodes.

            • Type — (String)

              The type of Glue component represented by the node.

              Possible values include:
              • "CRAWLER"
              • "JOB"
              • "TRIGGER"
            • Name — (String)

              The name of the Glue component represented by the node.

            • UniqueId — (String)

              The unique Id assigned to the node within the workflow.

            • TriggerDetails — (map)

              Details of the Trigger when the node represents a Trigger.

              • Trigger — (map)

                The information of the trigger represented by the trigger node.

                • Name — (String)

                  The name of the trigger.

                • WorkflowName — (String)

                  The name of the workflow associated with the trigger.

                • Id — (String)

                  Reserved for future use.

                • Type — (String)

                  The type of trigger that this is.

                  Possible values include:
                  • "SCHEDULED"
                  • "CONDITIONAL"
                  • "ON_DEMAND"
                  • "EVENT"
                • State — (String)

                  The current state of the trigger.

                  Possible values include:
                  • "CREATING"
                  • "CREATED"
                  • "ACTIVATING"
                  • "ACTIVATED"
                  • "DEACTIVATING"
                  • "DEACTIVATED"
                  • "DELETING"
                  • "UPDATING"
                • Description — (String)

                  A description of this trigger.

                • Schedule — (String)

                  A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

                • Actions — (Array<map>)

                  The actions initiated by this trigger.

                  • JobName — (String)

                    The name of a job to be run.

                  • Arguments — (map<String>)

                    The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

                    You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

                    For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

                    For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

                  • Timeout — (Integer)

                    The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

                  • SecurityConfiguration — (String)

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

                  • NotificationProperty — (map)

                    Specifies configuration properties of a job run notification.

                    • NotifyDelayAfter — (Integer)

                      After a job run starts, the number of minutes to wait before sending a job run delay notification.

                  • CrawlerName — (String)

                    The name of the crawler to be used with this action.

                • Predicate — (map)

                  The predicate of this trigger, which defines when it will fire.

                  • Logical — (String)

                    An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

                    Possible values include:
                    • "AND"
                    • "ANY"
                  • Conditions — (Array<map>)

                    A list of the conditions that determine when the trigger will fire.

                    • LogicalOperator — (String)

                      A logical operator.

                      Possible values include:
                      • "EQUALS"
                    • JobName — (String)

                      The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

                    • State — (String)

                      The condition state. Currently, the only job states that a trigger can listen for are SUCCEEDED, STOPPED, FAILED, and TIMEOUT. The only crawler states that a trigger can listen for are SUCCEEDED, FAILED, and CANCELLED.

                      Possible values include:
                      • "STARTING"
                      • "RUNNING"
                      • "STOPPING"
                      • "STOPPED"
                      • "SUCCEEDED"
                      • "FAILED"
                      • "TIMEOUT"
                    • CrawlerName — (String)

                      The name of the crawler to which this condition applies.

                    • CrawlState — (String)

                      The state of the crawler to which this condition applies.

                      Possible values include:
                      • "RUNNING"
                      • "CANCELLING"
                      • "CANCELLED"
                      • "SUCCEEDED"
                      • "FAILED"
                • EventBatchingCondition — (map)

                  Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

                  • BatchSizerequired — (Integer)

                    Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

                  • BatchWindow — (Integer)

                    Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

            • JobDetails — (map)

              Details of the Job when the node represents a Job.

              • JobRuns — (Array<map>)

                The information for the job runs represented by the job node.

                • Id — (String)

                  The ID of this job run.

                • Attempt — (Integer)

                  The number of the attempt to run this job.

                • PreviousRunId — (String)

                  The ID of the previous run of this job. For example, the JobRunId specified in the StartJobRun action.

                • TriggerName — (String)

                  The name of the trigger that started this job run.

                • JobName — (String)

                  The name of the job definition being used in this run.

                • StartedOn — (Date)

                  The date and time at which this job run was started.

                • LastModifiedOn — (Date)

                  The last time that this job run was modified.

                • CompletedOn — (Date)

                  The date and time that this job run completed.

                • JobRunState — (String)

                  The current state of the job run. For more information about the statuses of jobs that have terminated abnormally, see Glue Job Run Statuses.

                  Possible values include:
                  • "STARTING"
                  • "RUNNING"
                  • "STOPPING"
                  • "STOPPED"
                  • "SUCCEEDED"
                  • "FAILED"
                  • "TIMEOUT"
                • Arguments — (map<String>)

                  The job arguments associated with this run. For this job run, they replace the default arguments set in the job definition itself.

                  You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

                  For information about how to specify and consume your own job arguments, see the Calling Glue APIs in Python topic in the developer guide.

                  For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

                • ErrorMessage — (String)

                  An error message associated with this job run.

                • PredecessorRuns — (Array<map>)

                  A list of predecessors to this job run.

                  • JobName — (String)

                    The name of the job definition used by the predecessor job run.

                  • RunId — (String)

                    The job-run ID of the predecessor job run.

                • AllocatedCapacity — (Integer)

                  This field is deprecated. Use MaxCapacity instead.

                  The number of Glue data processing units (DPUs) allocated to this JobRun. From 2 to 100 DPUs can be allocated; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

                • ExecutionTime — (Integer)

                  The amount of time (in seconds) that the job run consumed resources.

                • Timeout — (Integer)

                  The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

                • MaxCapacity — (Float)

                  The number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

                  Do not set Max Capacity if using WorkerType and NumberOfWorkers.

                  The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job or an Apache Spark ETL job:

                  • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

                  • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

                • WorkerType — (String)

                  The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

                  • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

                  • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

                  • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

                  Possible values include:
                  • "Standard"
                  • "G.1X"
                  • "G.2X"
                • NumberOfWorkers — (Integer)

                  The number of workers of a defined workerType that are allocated when a job runs.

                  The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

                • SecurityConfiguration — (String)

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

                • LogGroupName — (String)

                  The name of the log group for secure logging that can be server-side encrypted in Amazon CloudWatch using KMS. This name can be /aws-glue/jobs/, in which case the default encryption is NONE. If you add a role name and SecurityConfiguration name (in other words, /aws-glue/jobs-yourRoleName-yourSecurityConfigurationName/), then that security configuration is used to encrypt the log group.

                • NotificationProperty — (map)

                  Specifies configuration properties of a job run notification.

                  • NotifyDelayAfter — (Integer)

                    After a job run starts, the number of minutes to wait before sending a job run delay notification.

                • GlueVersion — (String)

                  Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

                  For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

                  Jobs that are created without specifying a Glue version default to Glue 0.9.

            • CrawlerDetails — (map)

              Details of the crawler when the node represents a crawler.

              • Crawls — (Array<map>)

                A list of crawls represented by the crawl node.

                • State — (String)

                  The state of the crawler.

                  Possible values include:
                  • "RUNNING"
                  • "CANCELLING"
                  • "CANCELLED"
                  • "SUCCEEDED"
                  • "FAILED"
                • StartedOn — (Date)

                  The date and time on which the crawl started.

                • CompletedOn — (Date)

                  The date and time on which the crawl completed.

                • ErrorMessage — (String)

                  The error message associated with the crawl.

                • LogGroup — (String)

                  The log group associated with the crawl.

                • LogStream — (String)

                  The log stream associated with the crawl.

          • Edges — (Array<map>)

            A list of all the directed connections between the nodes belonging to the workflow.

            • SourceId — (String)

              The unique of the node within the workflow where the edge starts.

            • DestinationId — (String)

              The unique of the node within the workflow where the edge ends.

        • MaxConcurrentRuns — (Integer)

          You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.

        • BlueprintDetails — (map)

          This structure indicates the details of the blueprint that this particular workflow is created from.

          • BlueprintName — (String)

            The name of the blueprint.

          • RunId — (String)

            The run ID for this blueprint.

      • MissingWorkflows — (Array<String>)

        A list of names of workflows not found.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchStopJobRun(params = {}, callback) ⇒ AWS.Request

Stops one or more job runs for a specified job definition.

Service Reference:

Examples:

Calling the batchStopJobRun operation

var params = {
  JobName: 'STRING_VALUE', /* required */
  JobRunIds: [ /* required */
    'STRING_VALUE',
    /* more items */
  ]
};
glue.batchStopJobRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • JobName — (String)

      The name of the job definition for which to stop job runs.

    • JobRunIds — (Array<String>)

      A list of the JobRunIds that should be stopped for that job definition.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • SuccessfulSubmissions — (Array<map>)

        A list of the JobRuns that were successfully submitted for stopping.

        • JobName — (String)

          The name of the job definition used in the job run that was stopped.

        • JobRunId — (String)

          The JobRunId of the job run that was stopped.

      • Errors — (Array<map>)

        A list of the errors that were encountered in trying to stop JobRuns, including the JobRunId for which each error was encountered and details about the error.

        • JobName — (String)

          The name of the job definition that is used in the job run in question.

        • JobRunId — (String)

          The JobRunId of the job run in question.

        • ErrorDetail — (map)

          Specifies details about the error that was encountered.

          • ErrorCode — (String)

            The code associated with this error.

          • ErrorMessage — (String)

            A message describing the error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

batchUpdatePartition(params = {}, callback) ⇒ AWS.Request

Updates one or more partitions in a batch operation.

Service Reference:

Examples:

Calling the batchUpdatePartition operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  Entries: [ /* required */
    {
      PartitionInput: { /* required */
        LastAccessTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
        LastAnalyzedTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
        Parameters: {
          '<KeyString>': 'STRING_VALUE',
          /* '<KeyString>': ... */
        },
        StorageDescriptor: {
          BucketColumns: [
            'STRING_VALUE',
            /* more items */
          ],
          Columns: [
            {
              Name: 'STRING_VALUE', /* required */
              Comment: 'STRING_VALUE',
              Parameters: {
                '<KeyString>': 'STRING_VALUE',
                /* '<KeyString>': ... */
              },
              Type: 'STRING_VALUE'
            },
            /* more items */
          ],
          Compressed: true || false,
          InputFormat: 'STRING_VALUE',
          Location: 'STRING_VALUE',
          NumberOfBuckets: 'NUMBER_VALUE',
          OutputFormat: 'STRING_VALUE',
          Parameters: {
            '<KeyString>': 'STRING_VALUE',
            /* '<KeyString>': ... */
          },
          SchemaReference: {
            SchemaId: {
              RegistryName: 'STRING_VALUE',
              SchemaArn: 'STRING_VALUE',
              SchemaName: 'STRING_VALUE'
            },
            SchemaVersionId: 'STRING_VALUE',
            SchemaVersionNumber: 'NUMBER_VALUE'
          },
          SerdeInfo: {
            Name: 'STRING_VALUE',
            Parameters: {
              '<KeyString>': 'STRING_VALUE',
              /* '<KeyString>': ... */
            },
            SerializationLibrary: 'STRING_VALUE'
          },
          SkewedInfo: {
            SkewedColumnNames: [
              'STRING_VALUE',
              /* more items */
            ],
            SkewedColumnValueLocationMaps: {
              '<ColumnValuesString>': 'STRING_VALUE',
              /* '<ColumnValuesString>': ... */
            },
            SkewedColumnValues: [
              'STRING_VALUE',
              /* more items */
            ]
          },
          SortColumns: [
            {
              Column: 'STRING_VALUE', /* required */
              SortOrder: 'NUMBER_VALUE' /* required */
            },
            /* more items */
          ],
          StoredAsSubDirectories: true || false
        },
        Values: [
          'STRING_VALUE',
          /* more items */
        ]
      },
      PartitionValueList: [ /* required */
        'STRING_VALUE',
        /* more items */
      ]
    },
    /* more items */
  ],
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.batchUpdatePartition(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the catalog in which the partition is to be updated. Currently, this should be the Amazon Web Services account ID.

    • DatabaseName — (String)

      The name of the metadata database in which the partition is to be updated.

    • TableName — (String)

      The name of the metadata table in which the partition is to be updated.

    • Entries — (Array<map>)

      A list of up to 100 BatchUpdatePartitionRequestEntry objects to update.

      • PartitionValueListrequired — (Array<String>)

        A list of values defining the partitions.

      • PartitionInputrequired — (map)

        The structure used to update a partition.

        • Values — (Array<String>)

          The values of the partition. Although this parameter is not required by the SDK, you must specify this parameter for a valid input.

          The values for the keys for the new partition must be passed as an array of String objects that must be ordered in the same order as the partition keys appearing in the Amazon S3 prefix. Otherwise Glue will add the values to the wrong keys.

        • LastAccessTime — (Date)

          The last time at which the partition was accessed.

        • StorageDescriptor — (map)

          Provides information about the physical location where the partition is stored.

          • Columns — (Array<map>)

            A list of the Columns in the table.

            • Namerequired — (String)

              The name of the Column.

            • Type — (String)

              The data type of the Column.

            • Comment — (String)

              A free-form text comment.

            • Parameters — (map<String>)

              These key-value pairs define properties associated with the column.

          • Location — (String)

            The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

          • InputFormat — (String)

            The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

          • OutputFormat — (String)

            The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

          • Compressed — (Boolean)

            True if the data in the table is compressed, or False if not.

          • NumberOfBuckets — (Integer)

            Must be specified if the table contains any dimension columns.

          • SerdeInfo — (map)

            The serialization/deserialization (SerDe) information.

            • Name — (String)

              Name of the SerDe.

            • SerializationLibrary — (String)

              Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

            • Parameters — (map<String>)

              These key-value pairs define initialization parameters for the SerDe.

          • BucketColumns — (Array<String>)

            A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

          • SortColumns — (Array<map>)

            A list specifying the sort order of each bucket in the table.

            • Columnrequired — (String)

              The name of the column.

            • SortOrderrequired — (Integer)

              Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

          • Parameters — (map<String>)

            The user-supplied properties in key-value form.

          • SkewedInfo — (map)

            The information about values that appear frequently in a column (skewed values).

            • SkewedColumnNames — (Array<String>)

              A list of names of columns that contain skewed values.

            • SkewedColumnValues — (Array<String>)

              A list of values that appear so frequently as to be considered skewed.

            • SkewedColumnValueLocationMaps — (map<String>)

              A mapping of skewed values to the columns that contain them.

          • StoredAsSubDirectories — (Boolean)

            True if the table data is stored in subdirectories, or False if not.

          • SchemaReference — (map)

            An object that references a schema stored in the Glue Schema Registry.

            When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

            • SchemaId — (map)

              A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

              • SchemaArn — (String)

                The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

              • SchemaName — (String)

                The name of the schema. One of SchemaArn or SchemaName has to be provided.

              • RegistryName — (String)

                The name of the schema registry that contains the schema.

            • SchemaVersionId — (String)

              The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

            • SchemaVersionNumber — (Integer)

              The version number of the schema.

        • Parameters — (map<String>)

          These key-value pairs define partition parameters.

        • LastAnalyzedTime — (Date)

          The last time at which column statistics were computed for this partition.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Errors — (Array<map>)

        The errors encountered when trying to update the requested partitions. A list of BatchUpdatePartitionFailureEntry objects.

        • PartitionValueList — (Array<String>)

          A list of values defining the partitions.

        • ErrorDetail — (map)

          The details about the batch update partition error.

          • ErrorCode — (String)

            The code associated with this error.

          • ErrorMessage — (String)

            A message describing the error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

cancelMLTaskRun(params = {}, callback) ⇒ AWS.Request

Cancels (stops) a task run. Machine learning task runs are asynchronous tasks that Glue runs on your behalf as part of various machine learning workflows. You can cancel a machine learning task run at any time by calling CancelMLTaskRun with a task run's parent transform's TransformID and the task run's TaskRunId.

Service Reference:

Examples:

Calling the cancelMLTaskRun operation

var params = {
  TaskRunId: 'STRING_VALUE', /* required */
  TransformId: 'STRING_VALUE' /* required */
};
glue.cancelMLTaskRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • TransformId — (String)

      The unique identifier of the machine learning transform.

    • TaskRunId — (String)

      A unique identifier for the task run.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TransformId — (String)

        The unique identifier of the machine learning transform.

      • TaskRunId — (String)

        The unique identifier for the task run.

      • Status — (String)

        The status for this run.

        Possible values include:
        • "STARTING"
        • "RUNNING"
        • "STOPPING"
        • "STOPPED"
        • "SUCCEEDED"
        • "FAILED"
        • "TIMEOUT"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

checkSchemaVersionValidity(params = {}, callback) ⇒ AWS.Request

Validates the supplied schema. This call has no side effects, it simply validates using the supplied schema using DataFormat as the format. Since it does not take a schema set name, no compatibility checks are performed.

Service Reference:

Examples:

Calling the checkSchemaVersionValidity operation

var params = {
  DataFormat: AVRO | JSON, /* required */
  SchemaDefinition: 'STRING_VALUE' /* required */
};
glue.checkSchemaVersionValidity(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DataFormat — (String)

      The data format of the schema definition. Currently AVRO and JSON are supported.

      Possible values include:
      • "AVRO"
      • "JSON"
    • SchemaDefinition — (String)

      The definition of the schema that has to be validated.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Valid — (Boolean)

        Return true, if the schema is valid and false otherwise.

      • Error — (String)

        A validation failure error message.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createBlueprint(params = {}, callback) ⇒ AWS.Request

Registers a blueprint with Glue.

Service Reference:

Examples:

Calling the createBlueprint operation

var params = {
  BlueprintLocation: 'STRING_VALUE', /* required */
  Name: 'STRING_VALUE', /* required */
  Description: 'STRING_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.createBlueprint(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the blueprint.

    • Description — (String)

      A description of the blueprint.

    • BlueprintLocation — (String)

      Specifies a path in Amazon S3 where the blueprint is published.

    • Tags — (map<String>)

      The tags to be applied to this blueprint.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Name — (String)

        Returns the name of the blueprint that was registered.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createClassifier(params = {}, callback) ⇒ AWS.Request

Creates a classifier in the user's account. This can be a GrokClassifier, an XMLClassifier, a JsonClassifier, or a CsvClassifier, depending on which field of the request is present.

Service Reference:

Examples:

Calling the createClassifier operation

var params = {
  CsvClassifier: {
    Name: 'STRING_VALUE', /* required */
    AllowSingleColumn: true || false,
    ContainsHeader: UNKNOWN | PRESENT | ABSENT,
    Delimiter: 'STRING_VALUE',
    DisableValueTrimming: true || false,
    Header: [
      'STRING_VALUE',
      /* more items */
    ],
    QuoteSymbol: 'STRING_VALUE'
  },
  GrokClassifier: {
    Classification: 'STRING_VALUE', /* required */
    GrokPattern: 'STRING_VALUE', /* required */
    Name: 'STRING_VALUE', /* required */
    CustomPatterns: 'STRING_VALUE'
  },
  JsonClassifier: {
    JsonPath: 'STRING_VALUE', /* required */
    Name: 'STRING_VALUE' /* required */
  },
  XMLClassifier: {
    Classification: 'STRING_VALUE', /* required */
    Name: 'STRING_VALUE', /* required */
    RowTag: 'STRING_VALUE'
  }
};
glue.createClassifier(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • GrokClassifier — (map)

      A GrokClassifier object specifying the classifier to create.

      • Classificationrequired — (String)

        An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, Amazon CloudWatch Logs, and so on.

      • Namerequired — (String)

        The name of the new classifier.

      • GrokPatternrequired — (String)

        The grok pattern used by this classifier.

      • CustomPatterns — (String)

        Optional custom grok patterns used by this classifier.

    • XMLClassifier — (map)

      An XMLClassifier object specifying the classifier to create.

      • Classificationrequired — (String)

        An identifier of the data format that the classifier matches.

      • Namerequired — (String)

        The name of the classifier.

      • RowTag — (String)

        The XML tag designating the element that contains each record in an XML document being parsed. This can't identify a self-closing element (closed by />). An empty row element that contains only attributes can be parsed as long as it ends with a closing tag (for example, <row item_a="A" item_b="B"></row> is okay, but <row item_a="A" item_b="B" /> is not).

    • JsonClassifier — (map)

      A JsonClassifier object specifying the classifier to create.

      • Namerequired — (String)

        The name of the classifier.

      • JsonPathrequired — (String)

        A JsonPath string defining the JSON data for the classifier to classify. Glue supports a subset of JsonPath, as described in Writing JsonPath Custom Classifiers.

    • CsvClassifier — (map)

      A CsvClassifier object specifying the classifier to create.

      • Namerequired — (String)

        The name of the classifier.

      • Delimiter — (String)

        A custom symbol to denote what separates each column entry in the row.

      • QuoteSymbol — (String)

        A custom symbol to denote what combines content into a single column value. Must be different from the column delimiter.

      • ContainsHeader — (String)

        Indicates whether the CSV file contains a header.

        Possible values include:
        • "UNKNOWN"
        • "PRESENT"
        • "ABSENT"
      • Header — (Array<String>)

        A list of strings representing column names.

      • DisableValueTrimming — (Boolean)

        Specifies not to trim values before identifying the type of column values. The default value is true.

      • AllowSingleColumn — (Boolean)

        Enables the processing of files that contain only one column.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createConnection(params = {}, callback) ⇒ AWS.Request

Creates a connection definition in the Data Catalog.

Service Reference:

Examples:

Calling the createConnection operation

var params = {
  ConnectionInput: { /* required */
    ConnectionProperties: { /* required */
      '<ConnectionPropertyKey>': 'STRING_VALUE',
      /* '<ConnectionPropertyKey>': ... */
    },
    ConnectionType: JDBC | SFTP | MONGODB | KAFKA | NETWORK | MARKETPLACE | CUSTOM, /* required */
    Name: 'STRING_VALUE', /* required */
    Description: 'STRING_VALUE',
    MatchCriteria: [
      'STRING_VALUE',
      /* more items */
    ],
    PhysicalConnectionRequirements: {
      AvailabilityZone: 'STRING_VALUE',
      SecurityGroupIdList: [
        'STRING_VALUE',
        /* more items */
      ],
      SubnetId: 'STRING_VALUE'
    }
  },
  CatalogId: 'STRING_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.createConnection(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog in which to create the connection. If none is provided, the Amazon Web Services account ID is used by default.

    • ConnectionInput — (map)

      A ConnectionInput object defining the connection to create.

      • Namerequired — (String)

        The name of the connection.

      • Description — (String)

        The description of the connection.

      • ConnectionTyperequired — (String)

        The type of the connection. Currently, these types are supported:

        • JDBC - Designates a connection to a database through Java Database Connectivity (JDBC).

        • KAFKA - Designates a connection to an Apache Kafka streaming platform.

        • MONGODB - Designates a connection to a MongoDB document database.

        • NETWORK - Designates a network connection to a data source within an Amazon Virtual Private Cloud environment (Amazon VPC).

        • MARKETPLACE - Uses configuration settings contained in a connector purchased from Amazon Web Services Marketplace to read from and write to data stores that are not natively supported by Glue.

        • CUSTOM - Uses configuration settings contained in a custom connector to read from and write to data stores that are not natively supported by Glue.

        SFTP is not supported.

        Possible values include:
        • "JDBC"
        • "SFTP"
        • "MONGODB"
        • "KAFKA"
        • "NETWORK"
        • "MARKETPLACE"
        • "CUSTOM"
      • MatchCriteria — (Array<String>)

        A list of criteria that can be used in selecting this connection.

      • ConnectionPropertiesrequired — (map<String>)

        These key-value pairs define parameters for the connection.

      • PhysicalConnectionRequirements — (map)

        A map of physical connection requirements, such as virtual private cloud (VPC) and SecurityGroup, that are needed to successfully make this connection.

        • SubnetId — (String)

          The subnet ID used by the connection.

        • SecurityGroupIdList — (Array<String>)

          The security group ID list used by the connection.

        • AvailabilityZone — (String)

          The connection's Availability Zone. This field is redundant because the specified subnet implies the Availability Zone to be used. Currently the field must be populated, but it will be deprecated in the future.

    • Tags — (map<String>)

      The tags you assign to the connection.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createCrawler(params = {}, callback) ⇒ AWS.Request

Creates a new crawler with specified targets, role, configuration, and optional schedule. At least one crawl target must be specified, in the s3Targets field, the jdbcTargets field, or the DynamoDBTargets field.

Service Reference:

Examples:

Calling the createCrawler operation

var params = {
  Name: 'STRING_VALUE', /* required */
  Role: 'STRING_VALUE', /* required */
  Targets: { /* required */
    CatalogTargets: [
      {
        DatabaseName: 'STRING_VALUE', /* required */
        Tables: [ /* required */
          'STRING_VALUE',
          /* more items */
        ]
      },
      /* more items */
    ],
    DynamoDBTargets: [
      {
        Path: 'STRING_VALUE',
        scanAll: true || false,
        scanRate: 'NUMBER_VALUE'
      },
      /* more items */
    ],
    JdbcTargets: [
      {
        ConnectionName: 'STRING_VALUE',
        Exclusions: [
          'STRING_VALUE',
          /* more items */
        ],
        Path: 'STRING_VALUE'
      },
      /* more items */
    ],
    MongoDBTargets: [
      {
        ConnectionName: 'STRING_VALUE',
        Path: 'STRING_VALUE',
        ScanAll: true || false
      },
      /* more items */
    ],
    S3Targets: [
      {
        ConnectionName: 'STRING_VALUE',
        DlqEventQueueArn: 'STRING_VALUE',
        EventQueueArn: 'STRING_VALUE',
        Exclusions: [
          'STRING_VALUE',
          /* more items */
        ],
        Path: 'STRING_VALUE',
        SampleSize: 'NUMBER_VALUE'
      },
      /* more items */
    ]
  },
  Classifiers: [
    'STRING_VALUE',
    /* more items */
  ],
  Configuration: 'STRING_VALUE',
  CrawlerSecurityConfiguration: 'STRING_VALUE',
  DatabaseName: 'STRING_VALUE',
  Description: 'STRING_VALUE',
  LineageConfiguration: {
    CrawlerLineageSettings: ENABLE | DISABLE
  },
  RecrawlPolicy: {
    RecrawlBehavior: CRAWL_EVERYTHING | CRAWL_NEW_FOLDERS_ONLY | CRAWL_EVENT_MODE
  },
  Schedule: 'STRING_VALUE',
  SchemaChangePolicy: {
    DeleteBehavior: LOG | DELETE_FROM_DATABASE | DEPRECATE_IN_DATABASE,
    UpdateBehavior: LOG | UPDATE_IN_DATABASE
  },
  TablePrefix: 'STRING_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.createCrawler(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      Name of the new crawler.

    • Role — (String)

      The IAM role or Amazon Resource Name (ARN) of an IAM role used by the new crawler to access customer resources.

    • DatabaseName — (String)

      The Glue database where results are written, such as: arn:aws:daylight:us-east-1::database/sometable/*.

    • Description — (String)

      A description of the new crawler.

    • Targets — (map)

      A list of collection of targets to crawl.

      • S3Targets — (Array<map>)

        Specifies Amazon Simple Storage Service (Amazon S3) targets.

        • Path — (String)

          The path to the Amazon S3 target.

        • Exclusions — (Array<String>)

          A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

        • ConnectionName — (String)

          The name of a connection which allows a job or crawler to access data in Amazon S3 within an Amazon Virtual Private Cloud environment (Amazon VPC).

        • SampleSize — (Integer)

          Sets the number of files in each leaf folder to be crawled when crawling sample files in a dataset. If not set, all the files are crawled. A valid value is an integer between 1 and 249.

        • EventQueueArn — (String)

          A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.

        • DlqEventQueueArn — (String)

          A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.

      • JdbcTargets — (Array<map>)

        Specifies JDBC targets.

        • ConnectionName — (String)

          The name of the connection to use to connect to the JDBC target.

        • Path — (String)

          The path of the JDBC target.

        • Exclusions — (Array<String>)

          A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

      • MongoDBTargets — (Array<map>)

        Specifies Amazon DocumentDB or MongoDB targets.

        • ConnectionName — (String)

          The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.

        • Path — (String)

          The path of the Amazon DocumentDB or MongoDB target (database/collection).

        • ScanAll — (Boolean)

          Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.

          A value of true means to scan all records, while a value of false means to sample the records. If no value is specified, the value defaults to true.

      • DynamoDBTargets — (Array<map>)

        Specifies Amazon DynamoDB targets.

        • Path — (String)

          The name of the DynamoDB table to crawl.

        • scanAll — (Boolean)

          Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.

          A value of true means to scan all records, while a value of false means to sample the records. If no value is specified, the value defaults to true.

        • scanRate — (Float)

          The percentage of the configured read capacity units to use by the Glue crawler. Read capacity units is a term defined by DynamoDB, and is a numeric value that acts as rate limiter for the number of reads that can be performed on that table per second.

          The valid values are null or a value between 0.1 to 1.5. A null value is used when user does not provide a value, and defaults to 0.5 of the configured Read Capacity Unit (for provisioned tables), or 0.25 of the max configured Read Capacity Unit (for tables using on-demand mode).

      • CatalogTargets — (Array<map>)

        Specifies Glue Data Catalog targets.

        • DatabaseNamerequired — (String)

          The name of the database to be synchronized.

        • Tablesrequired — (Array<String>)

          A list of the tables to be synchronized.

    • Schedule — (String)

      A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

    • Classifiers — (Array<String>)

      A list of custom classifiers that the user has registered. By default, all built-in classifiers are included in a crawl, but these custom classifiers always override the default classifiers for a given classification.

    • TablePrefix — (String)

      The table prefix used for catalog tables that are created.

    • SchemaChangePolicy — (map)

      The policy for the crawler's update and deletion behavior.

      • UpdateBehavior — (String)

        The update behavior when the crawler finds a changed schema.

        Possible values include:
        • "LOG"
        • "UPDATE_IN_DATABASE"
      • DeleteBehavior — (String)

        The deletion behavior when the crawler finds a deleted object.

        Possible values include:
        • "LOG"
        • "DELETE_FROM_DATABASE"
        • "DEPRECATE_IN_DATABASE"
    • RecrawlPolicy — (map)

      A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.

      • RecrawlBehavior — (String)

        Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.

        A value of CRAWL_EVERYTHING specifies crawling the entire dataset again.

        A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that were added since the last crawler run.

        A value of CRAWL_EVENT_MODE specifies crawling only the changes identified by Amazon S3 events.

        Possible values include:
        • "CRAWL_EVERYTHING"
        • "CRAWL_NEW_FOLDERS_ONLY"
        • "CRAWL_EVENT_MODE"
    • LineageConfiguration — (map)

      Specifies data lineage configuration settings for the crawler.

      • CrawlerLineageSettings — (String)

        Specifies whether data lineage is enabled for the crawler. Valid values are:

        • ENABLE: enables data lineage for the crawler

        • DISABLE: disables data lineage for the crawler

        Possible values include:
        • "ENABLE"
        • "DISABLE"
    • Configuration — (String)

      Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Configuring a Crawler.

    • CrawlerSecurityConfiguration — (String)

      The name of the SecurityConfiguration structure to be used by this crawler.

    • Tags — (map<String>)

      The tags to use with this crawler request. You may use tags to limit access to the crawler. For more information about tags in Glue, see Amazon Web Services Tags in Glue in the developer guide.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createDatabase(params = {}, callback) ⇒ AWS.Request

Creates a new database in a Data Catalog.

Service Reference:

Examples:

Calling the createDatabase operation

var params = {
  DatabaseInput: { /* required */
    Name: 'STRING_VALUE', /* required */
    CreateTableDefaultPermissions: [
      {
        Permissions: [
          ALL | SELECT | ALTER | DROP | DELETE | INSERT | CREATE_DATABASE | CREATE_TABLE | DATA_LOCATION_ACCESS,
          /* more items */
        ],
        Principal: {
          DataLakePrincipalIdentifier: 'STRING_VALUE'
        }
      },
      /* more items */
    ],
    Description: 'STRING_VALUE',
    LocationUri: 'STRING_VALUE',
    Parameters: {
      '<KeyString>': 'STRING_VALUE',
      /* '<KeyString>': ... */
    },
    TargetDatabase: {
      CatalogId: 'STRING_VALUE',
      DatabaseName: 'STRING_VALUE'
    }
  },
  CatalogId: 'STRING_VALUE'
};
glue.createDatabase(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog in which to create the database. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseInput — (map)

      The metadata for the database.

      • Namerequired — (String)

        The name of the database. For Hive compatibility, this is folded to lowercase when it is stored.

      • Description — (String)

        A description of the database.

      • LocationUri — (String)

        The location of the database (for example, an HDFS path).

      • Parameters — (map<String>)

        These key-value pairs define parameters and properties of the database.

        These key-value pairs define parameters and properties of the database.

      • CreateTableDefaultPermissions — (Array<map>)

        Creates a set of default permissions on the table for principals.

        • Principal — (map)

          The principal who is granted permissions.

          • DataLakePrincipalIdentifier — (String)

            An identifier for the Lake Formation principal.

        • Permissions — (Array<String>)

          The permissions that are granted to the principal.

      • TargetDatabase — (map)

        A DatabaseIdentifier structure that describes a target database for resource linking.

        • CatalogId — (String)

          The ID of the Data Catalog in which the database resides.

        • DatabaseName — (String)

          The name of the catalog database.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createDevEndpoint(params = {}, callback) ⇒ AWS.Request

Creates a new development endpoint.

Service Reference:

Examples:

Calling the createDevEndpoint operation

var params = {
  EndpointName: 'STRING_VALUE', /* required */
  RoleArn: 'STRING_VALUE', /* required */
  Arguments: {
    '<GenericString>': 'STRING_VALUE',
    /* '<GenericString>': ... */
  },
  ExtraJarsS3Path: 'STRING_VALUE',
  ExtraPythonLibsS3Path: 'STRING_VALUE',
  GlueVersion: 'STRING_VALUE',
  NumberOfNodes: 'NUMBER_VALUE',
  NumberOfWorkers: 'NUMBER_VALUE',
  PublicKey: 'STRING_VALUE',
  PublicKeys: [
    'STRING_VALUE',
    /* more items */
  ],
  SecurityConfiguration: 'STRING_VALUE',
  SecurityGroupIds: [
    'STRING_VALUE',
    /* more items */
  ],
  SubnetId: 'STRING_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  },
  WorkerType: Standard | G.1X | G.2X
};
glue.createDevEndpoint(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • EndpointName — (String)

      The name to be assigned to the new DevEndpoint.

    • RoleArn — (String)

      The IAM role for the DevEndpoint.

    • SecurityGroupIds — (Array<String>)

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

    • SubnetId — (String)

      The subnet ID for the new DevEndpoint to use.

    • PublicKey — (String)

      The public key to be used by this DevEndpoint for authentication. This attribute is provided for backward compatibility because the recommended attribute to use is public keys.

    • PublicKeys — (Array<String>)

      A list of public keys to be used by the development endpoints 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.

      Note: 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 — (Integer)

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

    • WorkerType — (String)

      The type of predefined worker that is allocated to the development endpoint. Accepts a value of Standard, G.1X, or G.2X.

      • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

      • For the G.1X worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

      • For the G.2X worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

      Known issue: when a development endpoint is created with the G.2X WorkerType configuration, the Spark drivers for the development endpoint will run on 4 vCPU, 16 GB of memory, and a 64 GB disk.

      Possible values include:
      • "Standard"
      • "G.1X"
      • "G.2X"
    • GlueVersion — (String)

      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.

      Development endpoints that are created without specifying a Glue version default to Glue 0.9.

      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.

    • NumberOfWorkers — (Integer)

      The number of workers of a defined workerType that are allocated to the development endpoint.

      The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

    • ExtraPythonLibsS3Path — (String)

      The paths to one or more Python libraries in an Amazon S3 bucket that should be loaded in your DevEndpoint. Multiple values must be complete paths separated by a comma.

      Note: You can only use pure Python libraries with a DevEndpoint. Libraries that rely on C extensions, such as the pandas Python data analysis library, are not yet supported.
    • ExtraJarsS3Path — (String)

      The path to one or more Java .jar files in an S3 bucket that should be loaded in your DevEndpoint.

    • SecurityConfiguration — (String)

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

    • Tags — (map<String>)

      The tags to use with this DevEndpoint. You may use tags to limit access to the DevEndpoint. For more information about tags in Glue, see Amazon Web Services Tags in Glue in the developer guide.

    • Arguments — (map<String>)

      A map of arguments used to configure the DevEndpoint.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • EndpointName — (String)

        The name assigned to the new DevEndpoint.

      • Status — (String)

        The current status of the new DevEndpoint.

      • SecurityGroupIds — (Array<String>)

        The security groups assigned to the new DevEndpoint.

      • SubnetId — (String)

        The subnet ID assigned to the new DevEndpoint.

      • RoleArn — (String)

        The Amazon Resource Name (ARN) of the role assigned to the new DevEndpoint.

      • YarnEndpointAddress — (String)

        The address of the YARN endpoint used by this DevEndpoint.

      • ZeppelinRemoteSparkInterpreterPort — (Integer)

        The Apache Zeppelin port for the remote Apache Spark interpreter.

      • NumberOfNodes — (Integer)

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

      • WorkerType — (String)

        The type of predefined worker that is allocated to the development endpoint. May be a value of Standard, G.1X, or G.2X.

        Possible values include:
        • "Standard"
        • "G.1X"
        • "G.2X"
      • GlueVersion — (String)

        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 — (Integer)

        The number of workers of a defined workerType that are allocated to the development endpoint.

      • AvailabilityZone — (String)

        The AWS Availability Zone where this DevEndpoint is located.

      • VpcId — (String)

        The ID of the virtual private cloud (VPC) used by this DevEndpoint.

      • ExtraPythonLibsS3Path — (String)

        The paths to one or more Python libraries in an S3 bucket that will be loaded in your DevEndpoint.

      • ExtraJarsS3Path — (String)

        Path to one or more Java .jar files in an S3 bucket that will be loaded in your DevEndpoint.

      • FailureReason — (String)

        The reason for a current failure in this DevEndpoint.

      • SecurityConfiguration — (String)

        The name of the SecurityConfiguration structure being used with this DevEndpoint.

      • CreatedTimestamp — (Date)

        The point in time at which this DevEndpoint was created.

      • Arguments — (map<String>)

        The map of arguments used to configure this 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.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createJob(params = {}, callback) ⇒ AWS.Request

Creates a new job definition.

Service Reference:

Examples:

Calling the createJob operation

var params = {
  Command: { /* required */
    Name: 'STRING_VALUE',
    PythonVersion: 'STRING_VALUE',
    ScriptLocation: 'STRING_VALUE'
  },
  Name: 'STRING_VALUE', /* required */
  Role: 'STRING_VALUE', /* required */
  AllocatedCapacity: 'NUMBER_VALUE',
  Connections: {
    Connections: [
      'STRING_VALUE',
      /* more items */
    ]
  },
  DefaultArguments: {
    '<GenericString>': 'STRING_VALUE',
    /* '<GenericString>': ... */
  },
  Description: 'STRING_VALUE',
  ExecutionProperty: {
    MaxConcurrentRuns: 'NUMBER_VALUE'
  },
  GlueVersion: 'STRING_VALUE',
  LogUri: 'STRING_VALUE',
  MaxCapacity: 'NUMBER_VALUE',
  MaxRetries: 'NUMBER_VALUE',
  NonOverridableArguments: {
    '<GenericString>': 'STRING_VALUE',
    /* '<GenericString>': ... */
  },
  NotificationProperty: {
    NotifyDelayAfter: 'NUMBER_VALUE'
  },
  NumberOfWorkers: 'NUMBER_VALUE',
  SecurityConfiguration: 'STRING_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  },
  Timeout: 'NUMBER_VALUE',
  WorkerType: Standard | G.1X | G.2X
};
glue.createJob(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name you assign to this job definition. It must be unique in your account.

    • Description — (String)

      Description of the job being defined.

    • LogUri — (String)

      This field is reserved for future use.

    • Role — (String)

      The name or Amazon Resource Name (ARN) of the IAM role associated with this job.

    • ExecutionProperty — (map)

      An ExecutionProperty specifying the maximum number of concurrent runs allowed for this job.

      • MaxConcurrentRuns — (Integer)

        The maximum number of concurrent runs allowed for the job. The default is 1. An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit.

    • Command — (map)

      The JobCommand that runs this job.

      • Name — (String)

        The name of the job command. For an Apache Spark ETL job, this must be glueetl. For a Python shell job, it must be pythonshell. For an Apache Spark streaming ETL job, this must be gluestreaming.

      • ScriptLocation — (String)

        Specifies the Amazon Simple Storage Service (Amazon S3) path to a script that runs a job.

      • PythonVersion — (String)

        The Python version being used to run a Python shell job. Allowed values are 2 or 3.

    • DefaultArguments — (map<String>)

      The default arguments for this job.

      You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

      For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

      For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

    • NonOverridableArguments — (map<String>)

      Non-overridable arguments for this job, specified as name-value pairs.

    • Connections — (map)

      The connections used for this job.

      • Connections — (Array<String>)

        A list of connections used by the job.

    • MaxRetries — (Integer)

      The maximum number of times to retry this job if it fails.

    • AllocatedCapacity — (Integer)

      This parameter is deprecated. Use MaxCapacity instead.

      The number of Glue data processing units (DPUs) to allocate to this Job. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

    • Timeout — (Integer)

      The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).

    • MaxCapacity — (Float)

      For Glue version 1.0 or earlier jobs, using the standard worker type, the number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

      Do not set Max Capacity if using WorkerType and NumberOfWorkers.

      The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job or an Apache Spark ETL job:

      • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

      • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl") or Apache Spark streaming ETL job (JobCommand.Name="gluestreaming"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

      For Glue version 2.0 jobs, you cannot instead specify a Maximum capacity. Instead, you should specify a Worker type and the Number of workers.

    • SecurityConfiguration — (String)

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

    • Tags — (map<String>)

      The tags to use with this job. You may use tags to limit access to the job. For more information about tags in Glue, see Amazon Web Services Tags in Glue in the developer guide.

    • NotificationProperty — (map)

      Specifies configuration properties of a job notification.

      • NotifyDelayAfter — (Integer)

        After a job run starts, the number of minutes to wait before sending a job run delay notification.

    • GlueVersion — (String)

      Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

      For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

      Jobs that are created without specifying a Glue version default to Glue 0.9.

    • NumberOfWorkers — (Integer)

      The number of workers of a defined workerType that are allocated when a job runs.

      The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

    • WorkerType — (String)

      The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

      • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

      • For the G.1X worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

      • For the G.2X worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

      Possible values include:
      • "Standard"
      • "G.1X"
      • "G.2X"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Name — (String)

        The unique name that was provided for this job definition.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createMLTransform(params = {}, callback) ⇒ AWS.Request

Creates an Glue machine learning transform. This operation creates the transform and all the necessary parameters to train it.

Call this operation as the first step in the process of using a machine learning transform (such as the FindMatches transform) for deduplicating data. You can provide an optional Description, in addition to the parameters that you want to use for your algorithm.

You must also specify certain parameters for the tasks that Glue runs on your behalf as part of learning from your data and creating a high-quality machine learning transform. These parameters include Role, and optionally, AllocatedCapacity, Timeout, and MaxRetries. For more information, see Jobs.

Service Reference:

Examples:

Calling the createMLTransform operation

var params = {
  InputRecordTables: [ /* required */
    {
      DatabaseName: 'STRING_VALUE', /* required */
      TableName: 'STRING_VALUE', /* required */
      CatalogId: 'STRING_VALUE',
      ConnectionName: 'STRING_VALUE'
    },
    /* more items */
  ],
  Name: 'STRING_VALUE', /* required */
  Parameters: { /* required */
    TransformType: FIND_MATCHES, /* required */
    FindMatchesParameters: {
      AccuracyCostTradeoff: 'NUMBER_VALUE',
      EnforceProvidedLabels: true || false,
      PrecisionRecallTradeoff: 'NUMBER_VALUE',
      PrimaryKeyColumnName: 'STRING_VALUE'
    }
  },
  Role: 'STRING_VALUE', /* required */
  Description: 'STRING_VALUE',
  GlueVersion: 'STRING_VALUE',
  MaxCapacity: 'NUMBER_VALUE',
  MaxRetries: 'NUMBER_VALUE',
  NumberOfWorkers: 'NUMBER_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  },
  Timeout: 'NUMBER_VALUE',
  TransformEncryption: {
    MlUserDataEncryption: {
      MlUserDataEncryptionMode: DISABLED | SSE-KMS, /* required */
      KmsKeyId: 'STRING_VALUE'
    },
    TaskRunSecurityConfigurationName: 'STRING_VALUE'
  },
  WorkerType: Standard | G.1X | G.2X
};
glue.createMLTransform(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The unique name that you give the transform when you create it.

    • Description — (String)

      A description of the machine learning transform that is being defined. The default is an empty string.

    • InputRecordTables — (Array<map>)

      A list of Glue table definitions used by the transform.

      • DatabaseNamerequired — (String)

        A database name in the Glue Data Catalog.

      • TableNamerequired — (String)

        A table name in the Glue Data Catalog.

      • CatalogId — (String)

        A unique identifier for the Glue Data Catalog.

      • ConnectionName — (String)

        The name of the connection to the Glue Data Catalog.

    • Parameters — (map)

      The algorithmic parameters that are specific to the transform type used. Conditionally dependent on the transform type.

      • TransformTyperequired — (String)

        The type of machine learning transform.

        For information about the types of machine learning transforms, see Creating Machine Learning Transforms.

        Possible values include:
        • "FIND_MATCHES"
      • FindMatchesParameters — (map)

        The parameters for the find matches algorithm.

        • PrimaryKeyColumnName — (String)

          The name of a column that uniquely identifies rows in the source table. Used to help identify matching records.

        • PrecisionRecallTradeoff — (Float)

          The value selected when tuning your transform for a balance between precision and recall. A value of 0.5 means no preference; a value of 1.0 means a bias purely for precision, and a value of 0.0 means a bias for recall. Because this is a tradeoff, choosing values close to 1.0 means very low recall, and choosing values close to 0.0 results in very low precision.

          The precision metric indicates how often your model is correct when it predicts a match.

          The recall metric indicates that for an actual match, how often your model predicts the match.

        • AccuracyCostTradeoff — (Float)

          The value that is selected when tuning your transform for a balance between accuracy and cost. A value of 0.5 means that the system balances accuracy and cost concerns. A value of 1.0 means a bias purely for accuracy, which typically results in a higher cost, sometimes substantially higher. A value of 0.0 means a bias purely for cost, which results in a less accurate FindMatches transform, sometimes with unacceptable accuracy.

          Accuracy measures how well the transform finds true positives and true negatives. Increasing accuracy requires more machine resources and cost. But it also results in increased recall.

          Cost measures how many compute resources, and thus money, are consumed to run the transform.

        • EnforceProvidedLabels — (Boolean)

          The value to switch on or off to force the output to match the provided labels from users. If the value is True, the find matches transform forces the output to match the provided labels. The results override the normal conflation results. If the value is False, the find matches transform does not ensure all the labels provided are respected, and the results rely on the trained model.

          Note that setting this value to true may increase the conflation execution time.

    • Role — (String)

      The name or Amazon Resource Name (ARN) of the IAM role with the required permissions. The required permissions include both Glue service role permissions to Glue resources, and Amazon S3 permissions required by the transform.

      • This role needs Glue service role permissions to allow access to resources in Glue. See Attach a Policy to IAM Users That Access Glue.

      • This role needs permission to your Amazon Simple Storage Service (Amazon S3) sources, targets, temporary directory, scripts, and any libraries used by the task run for this transform.

    • GlueVersion — (String)

      This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see Glue Versions in the developer guide.

    • MaxCapacity — (Float)

      The number of Glue data processing units (DPUs) that are allocated to task runs for this transform. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

      MaxCapacity is a mutually exclusive option with NumberOfWorkers and WorkerType.

      • If either NumberOfWorkers or WorkerType is set, then MaxCapacity cannot be set.

      • If MaxCapacity is set then neither NumberOfWorkers or WorkerType can be set.

      • If WorkerType is set, then NumberOfWorkers is required (and vice versa).

      • MaxCapacity and NumberOfWorkers must both be at least 1.

      When the WorkerType field is set to a value other than Standard, the MaxCapacity field is set automatically and becomes read-only.

      When the WorkerType field is set to a value other than Standard, the MaxCapacity field is set automatically and becomes read-only.

    • WorkerType — (String)

      The type of predefined worker that is allocated when this task runs. Accepts a value of Standard, G.1X, or G.2X.

      • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

      • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

      • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

      MaxCapacity is a mutually exclusive option with NumberOfWorkers and WorkerType.

      • If either NumberOfWorkers or WorkerType is set, then MaxCapacity cannot be set.

      • If MaxCapacity is set then neither NumberOfWorkers or WorkerType can be set.

      • If WorkerType is set, then NumberOfWorkers is required (and vice versa).

      • MaxCapacity and NumberOfWorkers must both be at least 1.

      Possible values include:
      • "Standard"
      • "G.1X"
      • "G.2X"
    • NumberOfWorkers — (Integer)

      The number of workers of a defined workerType that are allocated when this task runs.

      If WorkerType is set, then NumberOfWorkers is required (and vice versa).

    • Timeout — (Integer)

      The timeout of the task run for this transform in minutes. This is the maximum time that a task run for this transform can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).

    • MaxRetries — (Integer)

      The maximum number of times to retry a task for this transform after a task run fails.

    • Tags — (map<String>)

      The tags to use with this machine learning transform. You may use tags to limit access to the machine learning transform. For more information about tags in Glue, see Amazon Web Services Tags in Glue in the developer guide.

    • TransformEncryption — (map)

      The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.

      • MlUserDataEncryption — (map)

        An MLUserDataEncryption object containing the encryption mode and customer-provided KMS key ID.

        • MlUserDataEncryptionModerequired — (String)

          The encryption mode applied to user data. Valid values are:

          • DISABLED: encryption is disabled

          • SSEKMS: use of server-side encryption with Key Management Service (SSE-KMS) for user data stored in Amazon S3.

          Possible values include:
          • "DISABLED"
          • "SSE-KMS"
        • KmsKeyId — (String)

          The ID for the customer-provided KMS key.

      • TaskRunSecurityConfigurationName — (String)

        The name of the security configuration.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TransformId — (String)

        A unique identifier that is generated for the transform.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createPartition(params = {}, callback) ⇒ AWS.Request

Creates a new partition.

Service Reference:

Examples:

Calling the createPartition operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  PartitionInput: { /* required */
    LastAccessTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    LastAnalyzedTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    Parameters: {
      '<KeyString>': 'STRING_VALUE',
      /* '<KeyString>': ... */
    },
    StorageDescriptor: {
      BucketColumns: [
        'STRING_VALUE',
        /* more items */
      ],
      Columns: [
        {
          Name: 'STRING_VALUE', /* required */
          Comment: 'STRING_VALUE',
          Parameters: {
            '<KeyString>': 'STRING_VALUE',
            /* '<KeyString>': ... */
          },
          Type: 'STRING_VALUE'
        },
        /* more items */
      ],
      Compressed: true || false,
      InputFormat: 'STRING_VALUE',
      Location: 'STRING_VALUE',
      NumberOfBuckets: 'NUMBER_VALUE',
      OutputFormat: 'STRING_VALUE',
      Parameters: {
        '<KeyString>': 'STRING_VALUE',
        /* '<KeyString>': ... */
      },
      SchemaReference: {
        SchemaId: {
          RegistryName: 'STRING_VALUE',
          SchemaArn: 'STRING_VALUE',
          SchemaName: 'STRING_VALUE'
        },
        SchemaVersionId: 'STRING_VALUE',
        SchemaVersionNumber: 'NUMBER_VALUE'
      },
      SerdeInfo: {
        Name: 'STRING_VALUE',
        Parameters: {
          '<KeyString>': 'STRING_VALUE',
          /* '<KeyString>': ... */
        },
        SerializationLibrary: 'STRING_VALUE'
      },
      SkewedInfo: {
        SkewedColumnNames: [
          'STRING_VALUE',
          /* more items */
        ],
        SkewedColumnValueLocationMaps: {
          '<ColumnValuesString>': 'STRING_VALUE',
          /* '<ColumnValuesString>': ... */
        },
        SkewedColumnValues: [
          'STRING_VALUE',
          /* more items */
        ]
      },
      SortColumns: [
        {
          Column: 'STRING_VALUE', /* required */
          SortOrder: 'NUMBER_VALUE' /* required */
        },
        /* more items */
      ],
      StoredAsSubDirectories: true || false
    },
    Values: [
      'STRING_VALUE',
      /* more items */
    ]
  },
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.createPartition(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The Amazon Web Services account ID of the catalog in which the partition is to be created.

    • DatabaseName — (String)

      The name of the metadata database in which the partition is to be created.

    • TableName — (String)

      The name of the metadata table in which the partition is to be created.

    • PartitionInput — (map)

      A PartitionInput structure defining the partition to be created.

      • Values — (Array<String>)

        The values of the partition. Although this parameter is not required by the SDK, you must specify this parameter for a valid input.

        The values for the keys for the new partition must be passed as an array of String objects that must be ordered in the same order as the partition keys appearing in the Amazon S3 prefix. Otherwise Glue will add the values to the wrong keys.

      • LastAccessTime — (Date)

        The last time at which the partition was accessed.

      • StorageDescriptor — (map)

        Provides information about the physical location where the partition is stored.

        • Columns — (Array<map>)

          A list of the Columns in the table.

          • Namerequired — (String)

            The name of the Column.

          • Type — (String)

            The data type of the Column.

          • Comment — (String)

            A free-form text comment.

          • Parameters — (map<String>)

            These key-value pairs define properties associated with the column.

        • Location — (String)

          The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

        • InputFormat — (String)

          The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

        • OutputFormat — (String)

          The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

        • Compressed — (Boolean)

          True if the data in the table is compressed, or False if not.

        • NumberOfBuckets — (Integer)

          Must be specified if the table contains any dimension columns.

        • SerdeInfo — (map)

          The serialization/deserialization (SerDe) information.

          • Name — (String)

            Name of the SerDe.

          • SerializationLibrary — (String)

            Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

          • Parameters — (map<String>)

            These key-value pairs define initialization parameters for the SerDe.

        • BucketColumns — (Array<String>)

          A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

        • SortColumns — (Array<map>)

          A list specifying the sort order of each bucket in the table.

          • Columnrequired — (String)

            The name of the column.

          • SortOrderrequired — (Integer)

            Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

        • Parameters — (map<String>)

          The user-supplied properties in key-value form.

        • SkewedInfo — (map)

          The information about values that appear frequently in a column (skewed values).

          • SkewedColumnNames — (Array<String>)

            A list of names of columns that contain skewed values.

          • SkewedColumnValues — (Array<String>)

            A list of values that appear so frequently as to be considered skewed.

          • SkewedColumnValueLocationMaps — (map<String>)

            A mapping of skewed values to the columns that contain them.

        • StoredAsSubDirectories — (Boolean)

          True if the table data is stored in subdirectories, or False if not.

        • SchemaReference — (map)

          An object that references a schema stored in the Glue Schema Registry.

          When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

          • SchemaId — (map)

            A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

            • SchemaArn — (String)

              The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

            • SchemaName — (String)

              The name of the schema. One of SchemaArn or SchemaName has to be provided.

            • RegistryName — (String)

              The name of the schema registry that contains the schema.

          • SchemaVersionId — (String)

            The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

          • SchemaVersionNumber — (Integer)

            The version number of the schema.

      • Parameters — (map<String>)

        These key-value pairs define partition parameters.

      • LastAnalyzedTime — (Date)

        The last time at which column statistics were computed for this partition.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createPartitionIndex(params = {}, callback) ⇒ AWS.Request

Creates a specified partition index in an existing table.

Service Reference:

Examples:

Calling the createPartitionIndex operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  PartitionIndex: { /* required */
    IndexName: 'STRING_VALUE', /* required */
    Keys: [ /* required */
      'STRING_VALUE',
      /* more items */
    ]
  },
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.createPartitionIndex(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The catalog ID where the table resides.

    • DatabaseName — (String)

      Specifies the name of a database in which you want to create a partition index.

    • TableName — (String)

      Specifies the name of a table in which you want to create a partition index.

    • PartitionIndex — (map)

      Specifies a PartitionIndex structure to create a partition index in an existing table.

      • Keysrequired — (Array<String>)

        The keys for the partition index.

      • IndexNamerequired — (String)

        The name of the partition index.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createRegistry(params = {}, callback) ⇒ AWS.Request

Creates a new registry which may be used to hold a collection of schemas.

Service Reference:

Examples:

Calling the createRegistry operation

var params = {
  RegistryName: 'STRING_VALUE', /* required */
  Description: 'STRING_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.createRegistry(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • RegistryName — (String)

      Name of the registry to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.

    • Description — (String)

      A description of the registry. If description is not provided, there will not be any default value for this.

    • Tags — (map<String>)

      Amazon Web Services tags that contain a key value pair and may be searched by console, command line, or API.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RegistryArn — (String)

        The Amazon Resource Name (ARN) of the newly created registry.

      • RegistryName — (String)

        The name of the registry.

      • Description — (String)

        A description of the registry.

      • Tags — (map<String>)

        The tags for the registry.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createSchema(params = {}, callback) ⇒ AWS.Request

Creates a new schema set and registers the schema definition. Returns an error if the schema set already exists without actually registering the version.

When the schema set is created, a version checkpoint will be set to the first version. Compatibility mode "DISABLED" restricts any additional schema versions from being added after the first schema version. For all other compatibility modes, validation of compatibility settings will be applied only from the second version onwards when the RegisterSchemaVersion API is used.

When this API is called without a RegistryId, this will create an entry for a "default-registry" in the registry database tables, if it is not already present.

Service Reference:

Examples:

Calling the createSchema operation

var params = {
  DataFormat: AVRO | JSON, /* required */
  SchemaName: 'STRING_VALUE', /* required */
  Compatibility: NONE | DISABLED | BACKWARD | BACKWARD_ALL | FORWARD | FORWARD_ALL | FULL | FULL_ALL,
  Description: 'STRING_VALUE',
  RegistryId: {
    RegistryArn: 'STRING_VALUE',
    RegistryName: 'STRING_VALUE'
  },
  SchemaDefinition: 'STRING_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.createSchema(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • RegistryId — (map)

      This is a wrapper shape to contain the registry identity fields. If this is not provided, the default registry will be used. The ARN format for the same will be: arn:aws:glue:us-east-2:<customer id>:registry/default-registry:random-5-letter-id.

      • RegistryName — (String)

        Name of the registry. Used only for lookup. One of RegistryArn or RegistryName has to be provided.

      • RegistryArn — (String)

        Arn of the registry to be updated. One of RegistryArn or RegistryName has to be provided.

    • SchemaName — (String)

      Name of the schema to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.

    • DataFormat — (String)

      The data format of the schema definition. Currently AVRO and JSON are supported.

      Possible values include:
      • "AVRO"
      • "JSON"
    • Compatibility — (String)

      The compatibility mode of the schema. The possible values are:

      • NONE: No compatibility mode applies. You can use this choice in development scenarios or if you do not know the compatibility mode that you want to apply to schemas. Any new version added will be accepted without undergoing a compatibility check.

      • DISABLED: This compatibility choice prevents versioning for a particular schema. You can use this choice to prevent future versioning of a schema.

      • BACKWARD: This compatibility choice is recommended as it allows data receivers to read both the current and one previous schema version. This means that for instance, a new schema version cannot drop data fields or change the type of these fields, so they can't be read by readers using the previous version.

      • BACKWARD_ALL: This compatibility choice allows data receivers to read both the current and all previous schema versions. You can use this choice when you need to delete fields or add optional fields, and check compatibility against all previous schema versions.

      • FORWARD: This compatibility choice allows data receivers to read both the current and one next schema version, but not necessarily later versions. You can use this choice when you need to add fields or delete optional fields, but only check compatibility against the last schema version.

      • FORWARD_ALL: This compatibility choice allows data receivers to read written by producers of any new registered schema. You can use this choice when you need to add fields or delete optional fields, and check compatibility against all previous schema versions.

      • FULL: This compatibility choice allows data receivers to read data written by producers using the previous or next version of the schema, but not necessarily earlier or later versions. You can use this choice when you need to add or remove optional fields, but only check compatibility against the last schema version.

      • FULL_ALL: This compatibility choice allows data receivers to read data written by producers using all previous schema versions. You can use this choice when you need to add or remove optional fields, and check compatibility against all previous schema versions.

      Possible values include:
      • "NONE"
      • "DISABLED"
      • "BACKWARD"
      • "BACKWARD_ALL"
      • "FORWARD"
      • "FORWARD_ALL"
      • "FULL"
      • "FULL_ALL"
    • Description — (String)

      An optional description of the schema. If description is not provided, there will not be any automatic default value for this.

    • Tags — (map<String>)

      Amazon Web Services tags that contain a key value pair and may be searched by console, command line, or API. If specified, follows the Amazon Web Services tags-on-create pattern.

    • SchemaDefinition — (String)

      The schema definition using the DataFormat setting for SchemaName.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RegistryName — (String)

        The name of the registry.

      • RegistryArn — (String)

        The Amazon Resource Name (ARN) of the registry.

      • SchemaName — (String)

        The name of the schema.

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema.

      • Description — (String)

        A description of the schema if specified when created.

      • DataFormat — (String)

        The data format of the schema definition. Currently AVRO and JSON are supported.

        Possible values include:
        • "AVRO"
        • "JSON"
      • Compatibility — (String)

        The schema compatibility mode.

        Possible values include:
        • "NONE"
        • "DISABLED"
        • "BACKWARD"
        • "BACKWARD_ALL"
        • "FORWARD"
        • "FORWARD_ALL"
        • "FULL"
        • "FULL_ALL"
      • SchemaCheckpoint — (Integer)

        The version number of the checkpoint (the last time the compatibility mode was changed).

      • LatestSchemaVersion — (Integer)

        The latest version of the schema associated with the returned schema definition.

      • NextSchemaVersion — (Integer)

        The next version of the schema associated with the returned schema definition.

      • SchemaStatus — (String)

        The status of the schema.

        Possible values include:
        • "AVAILABLE"
        • "PENDING"
        • "DELETING"
      • Tags — (map<String>)

        The tags for the schema.

      • SchemaVersionId — (String)

        The unique identifier of the first schema version.

      • SchemaVersionStatus — (String)

        The status of the first schema version created.

        Possible values include:
        • "AVAILABLE"
        • "PENDING"
        • "FAILURE"
        • "DELETING"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createScript(params = {}, callback) ⇒ AWS.Request

Transforms a directed acyclic graph (DAG) into code.

Service Reference:

Examples:

Calling the createScript operation

var params = {
  DagEdges: [
    {
      Source: 'STRING_VALUE', /* required */
      Target: 'STRING_VALUE', /* required */
      TargetParameter: 'STRING_VALUE'
    },
    /* more items */
  ],
  DagNodes: [
    {
      Args: [ /* required */
        {
          Name: 'STRING_VALUE', /* required */
          Value: 'STRING_VALUE', /* required */
          Param: true || false
        },
        /* more items */
      ],
      Id: 'STRING_VALUE', /* required */
      NodeType: 'STRING_VALUE', /* required */
      LineNumber: 'NUMBER_VALUE'
    },
    /* more items */
  ],
  Language: PYTHON | SCALA
};
glue.createScript(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • DagNodes — (Array<map>)

      A list of the nodes in the DAG.

      • Idrequired — (String)

        A node identifier that is unique within the node's graph.

      • NodeTyperequired — (String)

        The type of node that this is.

      • Argsrequired — (Array<map>)

        Properties of the node, in the form of name-value pairs.

        • Namerequired — (String)

          The name of the argument or property.

        • Valuerequired — (String)

          The value of the argument or property.

        • Param — (Boolean)

          True if the value is used as a parameter.

      • LineNumber — (Integer)

        The line number of the node.

    • DagEdges — (Array<map>)

      A list of the edges in the DAG.

      • Sourcerequired — (String)

        The ID of the node at which the edge starts.

      • Targetrequired — (String)

        The ID of the node at which the edge ends.

      • TargetParameter — (String)

        The target of the edge.

    • Language — (String)

      The programming language of the resulting code from the DAG.

      Possible values include:
      • "PYTHON"
      • "SCALA"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • PythonScript — (String)

        The Python script generated from the DAG.

      • ScalaCode — (String)

        The Scala code generated from the DAG.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createSecurityConfiguration(params = {}, callback) ⇒ AWS.Request

Creates a new security configuration. A security configuration is a set of security properties that can be used by Glue. You can use a security configuration to encrypt data at rest. For information about using security configurations in Glue, see Encrypting Data Written by Crawlers, Jobs, and Development Endpoints.

Service Reference:

Examples:

Calling the createSecurityConfiguration operation

var params = {
  EncryptionConfiguration: { /* required */
    CloudWatchEncryption: {
      CloudWatchEncryptionMode: DISABLED | SSE-KMS,
      KmsKeyArn: 'STRING_VALUE'
    },
    JobBookmarksEncryption: {
      JobBookmarksEncryptionMode: DISABLED | CSE-KMS,
      KmsKeyArn: 'STRING_VALUE'
    },
    S3Encryption: [
      {
        KmsKeyArn: 'STRING_VALUE',
        S3EncryptionMode: DISABLED | SSE-KMS | SSE-S3
      },
      /* more items */
    ]
  },
  Name: 'STRING_VALUE' /* required */
};
glue.createSecurityConfiguration(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name for the new security configuration.

    • EncryptionConfiguration — (map)

      The encryption configuration for the new security configuration.

      • S3Encryption — (Array<map>)

        The encryption configuration for Amazon Simple Storage Service (Amazon S3) data.

        • S3EncryptionMode — (String)

          The encryption mode to use for Amazon S3 data.

          Possible values include:
          • "DISABLED"
          • "SSE-KMS"
          • "SSE-S3"
        • KmsKeyArn — (String)

          The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

      • CloudWatchEncryption — (map)

        The encryption configuration for Amazon CloudWatch.

        • CloudWatchEncryptionMode — (String)

          The encryption mode to use for CloudWatch data.

          Possible values include:
          • "DISABLED"
          • "SSE-KMS"
        • KmsKeyArn — (String)

          The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

      • JobBookmarksEncryption — (map)

        The encryption configuration for job bookmarks.

        • JobBookmarksEncryptionMode — (String)

          The encryption mode to use for job bookmarks data.

          Possible values include:
          • "DISABLED"
          • "CSE-KMS"
        • KmsKeyArn — (String)

          The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Name — (String)

        The name assigned to the new security configuration.

      • CreatedTimestamp — (Date)

        The time at which the new security configuration was created.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createTable(params = {}, callback) ⇒ AWS.Request

Creates a new table definition in the Data Catalog.

Service Reference:

Examples:

Calling the createTable operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  TableInput: { /* required */
    Name: 'STRING_VALUE', /* required */
    Description: 'STRING_VALUE',
    LastAccessTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    LastAnalyzedTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    Owner: 'STRING_VALUE',
    Parameters: {
      '<KeyString>': 'STRING_VALUE',
      /* '<KeyString>': ... */
    },
    PartitionKeys: [
      {
        Name: 'STRING_VALUE', /* required */
        Comment: 'STRING_VALUE',
        Parameters: {
          '<KeyString>': 'STRING_VALUE',
          /* '<KeyString>': ... */
        },
        Type: 'STRING_VALUE'
      },
      /* more items */
    ],
    Retention: 'NUMBER_VALUE',
    StorageDescriptor: {
      BucketColumns: [
        'STRING_VALUE',
        /* more items */
      ],
      Columns: [
        {
          Name: 'STRING_VALUE', /* required */
          Comment: 'STRING_VALUE',
          Parameters: {
            '<KeyString>': 'STRING_VALUE',
            /* '<KeyString>': ... */
          },
          Type: 'STRING_VALUE'
        },
        /* more items */
      ],
      Compressed: true || false,
      InputFormat: 'STRING_VALUE',
      Location: 'STRING_VALUE',
      NumberOfBuckets: 'NUMBER_VALUE',
      OutputFormat: 'STRING_VALUE',
      Parameters: {
        '<KeyString>': 'STRING_VALUE',
        /* '<KeyString>': ... */
      },
      SchemaReference: {
        SchemaId: {
          RegistryName: 'STRING_VALUE',
          SchemaArn: 'STRING_VALUE',
          SchemaName: 'STRING_VALUE'
        },
        SchemaVersionId: 'STRING_VALUE',
        SchemaVersionNumber: 'NUMBER_VALUE'
      },
      SerdeInfo: {
        Name: 'STRING_VALUE',
        Parameters: {
          '<KeyString>': 'STRING_VALUE',
          /* '<KeyString>': ... */
        },
        SerializationLibrary: 'STRING_VALUE'
      },
      SkewedInfo: {
        SkewedColumnNames: [
          'STRING_VALUE',
          /* more items */
        ],
        SkewedColumnValueLocationMaps: {
          '<ColumnValuesString>': 'STRING_VALUE',
          /* '<ColumnValuesString>': ... */
        },
        SkewedColumnValues: [
          'STRING_VALUE',
          /* more items */
        ]
      },
      SortColumns: [
        {
          Column: 'STRING_VALUE', /* required */
          SortOrder: 'NUMBER_VALUE' /* required */
        },
        /* more items */
      ],
      StoredAsSubDirectories: true || false
    },
    TableType: 'STRING_VALUE',
    TargetTable: {
      CatalogId: 'STRING_VALUE',
      DatabaseName: 'STRING_VALUE',
      Name: 'STRING_VALUE'
    },
    ViewExpandedText: 'STRING_VALUE',
    ViewOriginalText: 'STRING_VALUE'
  },
  CatalogId: 'STRING_VALUE',
  PartitionIndexes: [
    {
      IndexName: 'STRING_VALUE', /* required */
      Keys: [ /* required */
        'STRING_VALUE',
        /* more items */
      ]
    },
    /* more items */
  ]
};
glue.createTable(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog in which to create the Table. If none is supplied, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The catalog database in which to create the new table. For Hive compatibility, this name is entirely lowercase.

    • TableInput — (map)

      The TableInput object that defines the metadata table to create in the catalog.

      • Namerequired — (String)

        The table name. For Hive compatibility, this is folded to lowercase when it is stored.

      • Description — (String)

        A description of the table.

      • Owner — (String)

        The table owner.

      • LastAccessTime — (Date)

        The last time that the table was accessed.

      • LastAnalyzedTime — (Date)

        The last time that column statistics were computed for this table.

      • Retention — (Integer)

        The retention time for this table.

      • StorageDescriptor — (map)

        A storage descriptor containing information about the physical storage of this table.

        • Columns — (Array<map>)

          A list of the Columns in the table.

          • Namerequired — (String)

            The name of the Column.

          • Type — (String)

            The data type of the Column.

          • Comment — (String)

            A free-form text comment.

          • Parameters — (map<String>)

            These key-value pairs define properties associated with the column.

        • Location — (String)

          The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

        • InputFormat — (String)

          The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

        • OutputFormat — (String)

          The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

        • Compressed — (Boolean)

          True if the data in the table is compressed, or False if not.

        • NumberOfBuckets — (Integer)

          Must be specified if the table contains any dimension columns.

        • SerdeInfo — (map)

          The serialization/deserialization (SerDe) information.

          • Name — (String)

            Name of the SerDe.

          • SerializationLibrary — (String)

            Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

          • Parameters — (map<String>)

            These key-value pairs define initialization parameters for the SerDe.

        • BucketColumns — (Array<String>)

          A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

        • SortColumns — (Array<map>)

          A list specifying the sort order of each bucket in the table.

          • Columnrequired — (String)

            The name of the column.

          • SortOrderrequired — (Integer)

            Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

        • Parameters — (map<String>)

          The user-supplied properties in key-value form.

        • SkewedInfo — (map)

          The information about values that appear frequently in a column (skewed values).

          • SkewedColumnNames — (Array<String>)

            A list of names of columns that contain skewed values.

          • SkewedColumnValues — (Array<String>)

            A list of values that appear so frequently as to be considered skewed.

          • SkewedColumnValueLocationMaps — (map<String>)

            A mapping of skewed values to the columns that contain them.

        • StoredAsSubDirectories — (Boolean)

          True if the table data is stored in subdirectories, or False if not.

        • SchemaReference — (map)

          An object that references a schema stored in the Glue Schema Registry.

          When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

          • SchemaId — (map)

            A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

            • SchemaArn — (String)

              The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

            • SchemaName — (String)

              The name of the schema. One of SchemaArn or SchemaName has to be provided.

            • RegistryName — (String)

              The name of the schema registry that contains the schema.

          • SchemaVersionId — (String)

            The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

          • SchemaVersionNumber — (Integer)

            The version number of the schema.

      • PartitionKeys — (Array<map>)

        A list of columns by which the table is partitioned. Only primitive types are supported as partition keys.

        When you create a table used by Amazon Athena, and you do not specify any partitionKeys, you must at least set the value of partitionKeys to an empty list. For example:

        "PartitionKeys": []

        • Namerequired — (String)

          The name of the Column.

        • Type — (String)

          The data type of the Column.

        • Comment — (String)

          A free-form text comment.

        • Parameters — (map<String>)

          These key-value pairs define properties associated with the column.

      • ViewOriginalText — (String)

        If the table is a view, the original text of the view; otherwise null.

      • ViewExpandedText — (String)

        If the table is a view, the expanded text of the view; otherwise null.

      • TableType — (String)

        The type of this table (EXTERNAL_TABLE, VIRTUAL_VIEW, etc.).

      • Parameters — (map<String>)

        These key-value pairs define properties associated with the table.

      • TargetTable — (map)

        A TableIdentifier structure that describes a target table for resource linking.

        • CatalogId — (String)

          The ID of the Data Catalog in which the table resides.

        • DatabaseName — (String)

          The name of the catalog database that contains the target table.

        • Name — (String)

          The name of the target table.

    • PartitionIndexes — (Array<map>)

      A list of partition indexes, PartitionIndex structures, to create in the table.

      • Keysrequired — (Array<String>)

        The keys for the partition index.

      • IndexNamerequired — (String)

        The name of the partition index.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createTrigger(params = {}, callback) ⇒ AWS.Request

Creates a new trigger.

Service Reference:

Examples:

Calling the createTrigger operation

var params = {
  Actions: [ /* required */
    {
      Arguments: {
        '<GenericString>': 'STRING_VALUE',
        /* '<GenericString>': ... */
      },
      CrawlerName: 'STRING_VALUE',
      JobName: 'STRING_VALUE',
      NotificationProperty: {
        NotifyDelayAfter: 'NUMBER_VALUE'
      },
      SecurityConfiguration: 'STRING_VALUE',
      Timeout: 'NUMBER_VALUE'
    },
    /* more items */
  ],
  Name: 'STRING_VALUE', /* required */
  Type: SCHEDULED | CONDITIONAL | ON_DEMAND | EVENT, /* required */
  Description: 'STRING_VALUE',
  EventBatchingCondition: {
    BatchSize: 'NUMBER_VALUE', /* required */
    BatchWindow: 'NUMBER_VALUE'
  },
  Predicate: {
    Conditions: [
      {
        CrawlState: RUNNING | CANCELLING | CANCELLED | SUCCEEDED | FAILED,
        CrawlerName: 'STRING_VALUE',
        JobName: 'STRING_VALUE',
        LogicalOperator: EQUALS,
        State: STARTING | RUNNING | STOPPING | STOPPED | SUCCEEDED | FAILED | TIMEOUT
      },
      /* more items */
    ],
    Logical: AND | ANY
  },
  Schedule: 'STRING_VALUE',
  StartOnCreation: true || false,
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  },
  WorkflowName: 'STRING_VALUE'
};
glue.createTrigger(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the trigger.

    • WorkflowName — (String)

      The name of the workflow associated with the trigger.

    • Type — (String)

      The type of the new trigger.

      Possible values include:
      • "SCHEDULED"
      • "CONDITIONAL"
      • "ON_DEMAND"
      • "EVENT"
    • Schedule — (String)

      A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

      This field is required when the trigger type is SCHEDULED.

    • Predicate — (map)

      A predicate to specify when the new trigger should fire.

      This field is required when the trigger type is CONDITIONAL.

      • Logical — (String)

        An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

        Possible values include:
        • "AND"
        • "ANY"
      • Conditions — (Array<map>)

        A list of the conditions that determine when the trigger will fire.

        • LogicalOperator — (String)

          A logical operator.

          Possible values include:
          • "EQUALS"
        • JobName — (String)

          The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

        • State — (String)

          The condition state. Currently, the only job states that a trigger can listen for are SUCCEEDED, STOPPED, FAILED, and TIMEOUT. The only crawler states that a trigger can listen for are SUCCEEDED, FAILED, and CANCELLED.

          Possible values include:
          • "STARTING"
          • "RUNNING"
          • "STOPPING"
          • "STOPPED"
          • "SUCCEEDED"
          • "FAILED"
          • "TIMEOUT"
        • CrawlerName — (String)

          The name of the crawler to which this condition applies.

        • CrawlState — (String)

          The state of the crawler to which this condition applies.

          Possible values include:
          • "RUNNING"
          • "CANCELLING"
          • "CANCELLED"
          • "SUCCEEDED"
          • "FAILED"
    • Actions — (Array<map>)

      The actions initiated by this trigger when it fires.

      • JobName — (String)

        The name of a job to be run.

      • Arguments — (map<String>)

        The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

        You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

        For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

        For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

      • Timeout — (Integer)

        The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

      • SecurityConfiguration — (String)

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

      • NotificationProperty — (map)

        Specifies configuration properties of a job run notification.

        • NotifyDelayAfter — (Integer)

          After a job run starts, the number of minutes to wait before sending a job run delay notification.

      • CrawlerName — (String)

        The name of the crawler to be used with this action.

    • Description — (String)

      A description of the new trigger.

    • StartOnCreation — (Boolean)

      Set to true to start SCHEDULED and CONDITIONAL triggers when created. True is not supported for ON_DEMAND triggers.

    • Tags — (map<String>)

      The tags to use with this trigger. You may use tags to limit access to the trigger. For more information about tags in Glue, see Amazon Web Services Tags in Glue in the developer guide.

    • EventBatchingCondition — (map)

      Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

      • BatchSizerequired — (Integer)

        Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

      • BatchWindow — (Integer)

        Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Name — (String)

        The name of the trigger.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createUserDefinedFunction(params = {}, callback) ⇒ AWS.Request

Creates a new function definition in the Data Catalog.

Service Reference:

Examples:

Calling the createUserDefinedFunction operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  FunctionInput: { /* required */
    ClassName: 'STRING_VALUE',
    FunctionName: 'STRING_VALUE',
    OwnerName: 'STRING_VALUE',
    OwnerType: USER | ROLE | GROUP,
    ResourceUris: [
      {
        ResourceType: JAR | FILE | ARCHIVE,
        Uri: 'STRING_VALUE'
      },
      /* more items */
    ]
  },
  CatalogId: 'STRING_VALUE'
};
glue.createUserDefinedFunction(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog in which to create the function. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database in which to create the function.

    • FunctionInput — (map)

      A FunctionInput object that defines the function to create in the Data Catalog.

      • FunctionName — (String)

        The name of the function.

      • ClassName — (String)

        The Java class that contains the function code.

      • OwnerName — (String)

        The owner of the function.

      • OwnerType — (String)

        The owner type.

        Possible values include:
        • "USER"
        • "ROLE"
        • "GROUP"
      • ResourceUris — (Array<map>)

        The resource URIs for the function.

        • ResourceType — (String)

          The type of the resource.

          Possible values include:
          • "JAR"
          • "FILE"
          • "ARCHIVE"
        • Uri — (String)

          The URI for accessing the resource.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createWorkflow(params = {}, callback) ⇒ AWS.Request

Creates a new workflow.

Service Reference:

Examples:

Calling the createWorkflow operation

var params = {
  Name: 'STRING_VALUE', /* required */
  DefaultRunProperties: {
    '<IdString>': 'STRING_VALUE',
    /* '<IdString>': ... */
  },
  Description: 'STRING_VALUE',
  MaxConcurrentRuns: 'NUMBER_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.createWorkflow(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name to be assigned to the workflow. It should be unique within your account.

    • Description — (String)

      A description of the workflow.

    • DefaultRunProperties — (map<String>)

      A collection of properties to be used as part of each execution of the workflow.

    • Tags — (map<String>)

      The tags to be used with this workflow.

    • MaxConcurrentRuns — (Integer)

      You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Name — (String)

        The name of the workflow which was provided as part of the request.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteBlueprint(params = {}, callback) ⇒ AWS.Request

Deletes an existing blueprint.

Service Reference:

Examples:

Calling the deleteBlueprint operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.deleteBlueprint(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the blueprint to delete.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Name — (String)

        Returns the name of the blueprint that was deleted.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteClassifier(params = {}, callback) ⇒ AWS.Request

Removes a classifier from the Data Catalog.

Service Reference:

Examples:

Calling the deleteClassifier operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.deleteClassifier(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      Name of the classifier to remove.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteColumnStatisticsForPartition(params = {}, callback) ⇒ AWS.Request

Delete the partition column statistics of a column.

The Identity and Access Management (IAM) permission required for this operation is DeletePartition.

Examples:

Calling the deleteColumnStatisticsForPartition operation

var params = {
  ColumnName: 'STRING_VALUE', /* required */
  DatabaseName: 'STRING_VALUE', /* required */
  PartitionValues: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.deleteColumnStatisticsForPartition(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the partitions reside.

    • TableName — (String)

      The name of the partitions' table.

    • PartitionValues — (Array<String>)

      A list of partition values identifying the partition.

    • ColumnName — (String)

      Name of the column.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteColumnStatisticsForTable(params = {}, callback) ⇒ AWS.Request

Retrieves table statistics of columns.

The Identity and Access Management (IAM) permission required for this operation is DeleteTable.

Service Reference:

Examples:

Calling the deleteColumnStatisticsForTable operation

var params = {
  ColumnName: 'STRING_VALUE', /* required */
  DatabaseName: 'STRING_VALUE', /* required */
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.deleteColumnStatisticsForTable(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the partitions reside.

    • TableName — (String)

      The name of the partitions' table.

    • ColumnName — (String)

      The name of the column.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteConnection(params = {}, callback) ⇒ AWS.Request

Deletes a connection from the Data Catalog.

Service Reference:

Examples:

Calling the deleteConnection operation

var params = {
  ConnectionName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.deleteConnection(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog in which the connection resides. If none is provided, the Amazon Web Services account ID is used by default.

    • ConnectionName — (String)

      The name of the connection to delete.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteCrawler(params = {}, callback) ⇒ AWS.Request

Removes a specified crawler from the Glue Data Catalog, unless the crawler state is RUNNING.

Service Reference:

Examples:

Calling the deleteCrawler operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.deleteCrawler(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the crawler to remove.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteDatabase(params = {}, callback) ⇒ AWS.Request

Removes a specified database from a Data Catalog.

Note: After completing this operation, you no longer have access to the tables (and all table versions and partitions that might belong to the tables) and the user-defined functions in the deleted database. Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service. To ensure the immediate deletion of all related resources, before calling DeleteDatabase, use DeleteTableVersion or BatchDeleteTableVersion, DeletePartition or BatchDeletePartition, DeleteUserDefinedFunction, and DeleteTable or BatchDeleteTable, to delete any resources that belong to the database.

Service Reference:

Examples:

Calling the deleteDatabase operation

var params = {
  Name: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.deleteDatabase(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog in which the database resides. If none is provided, the Amazon Web Services account ID is used by default.

    • Name — (String)

      The name of the database to delete. For Hive compatibility, this must be all lowercase.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteDevEndpoint(params = {}, callback) ⇒ AWS.Request

Deletes a specified development endpoint.

Service Reference:

Examples:

Calling the deleteDevEndpoint operation

var params = {
  EndpointName: 'STRING_VALUE' /* required */
};
glue.deleteDevEndpoint(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • EndpointName — (String)

      The name of the DevEndpoint.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteJob(params = {}, callback) ⇒ AWS.Request

Deletes a specified job definition. If the job definition is not found, no exception is thrown.

Service Reference:

Examples:

Calling the deleteJob operation

var params = {
  JobName: 'STRING_VALUE' /* required */
};
glue.deleteJob(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • JobName — (String)

      The name of the job definition to delete.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • JobName — (String)

        The name of the job definition that was deleted.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteMLTransform(params = {}, callback) ⇒ AWS.Request

Deletes an Glue machine learning transform. Machine learning transforms are a special type of transform that use machine learning to learn the details of the transformation to be performed by learning from examples provided by humans. These transformations are then saved by Glue. If you no longer need a transform, you can delete it by calling DeleteMLTransforms. However, any Glue jobs that still reference the deleted transform will no longer succeed.

Service Reference:

Examples:

Calling the deleteMLTransform operation

var params = {
  TransformId: 'STRING_VALUE' /* required */
};
glue.deleteMLTransform(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • TransformId — (String)

      The unique identifier of the transform to delete.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TransformId — (String)

        The unique identifier of the transform that was deleted.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deletePartition(params = {}, callback) ⇒ AWS.Request

Deletes a specified partition.

Service Reference:

Examples:

Calling the deletePartition operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  PartitionValues: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.deletePartition(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the partition to be deleted resides. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database in which the table in question resides.

    • TableName — (String)

      The name of the table that contains the partition to be deleted.

    • PartitionValues — (Array<String>)

      The values that define the partition.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deletePartitionIndex(params = {}, callback) ⇒ AWS.Request

Deletes a specified partition index from an existing table.

Service Reference:

Examples:

Calling the deletePartitionIndex operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  IndexName: 'STRING_VALUE', /* required */
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.deletePartitionIndex(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The catalog ID where the table resides.

    • DatabaseName — (String)

      Specifies the name of a database from which you want to delete a partition index.

    • TableName — (String)

      Specifies the name of a table from which you want to delete a partition index.

    • IndexName — (String)

      The name of the partition index to be deleted.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteRegistry(params = {}, callback) ⇒ AWS.Request

Delete the entire registry including schema and all of its versions. To get the status of the delete operation, you can call the GetRegistry API after the asynchronous call. Deleting a registry will deactivate all online operations for the registry such as the UpdateRegistry, CreateSchema, UpdateSchema, and RegisterSchemaVersion APIs.

Service Reference:

Examples:

Calling the deleteRegistry operation

var params = {
  RegistryId: { /* required */
    RegistryArn: 'STRING_VALUE',
    RegistryName: 'STRING_VALUE'
  }
};
glue.deleteRegistry(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • RegistryId — (map)

      This is a wrapper structure that may contain the registry name and Amazon Resource Name (ARN).

      • RegistryName — (String)

        Name of the registry. Used only for lookup. One of RegistryArn or RegistryName has to be provided.

      • RegistryArn — (String)

        Arn of the registry to be updated. One of RegistryArn or RegistryName has to be provided.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RegistryName — (String)

        The name of the registry being deleted.

      • RegistryArn — (String)

        The Amazon Resource Name (ARN) of the registry being deleted.

      • Status — (String)

        The status of the registry. A successful operation will return the Deleting status.

        Possible values include:
        • "AVAILABLE"
        • "DELETING"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteResourcePolicy(params = {}, callback) ⇒ AWS.Request

Deletes a specified policy.

Service Reference:

Examples:

Calling the deleteResourcePolicy operation

var params = {
  PolicyHashCondition: 'STRING_VALUE',
  ResourceArn: 'STRING_VALUE'
};
glue.deleteResourcePolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • PolicyHashCondition — (String)

      The hash value returned when this policy was set.

    • ResourceArn — (String)

      The ARN of the Glue resource for the resource policy to be deleted.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteSchema(params = {}, callback) ⇒ AWS.Request

Deletes the entire schema set, including the schema set and all of its versions. To get the status of the delete operation, you can call GetSchema API after the asynchronous call. Deleting a registry will deactivate all online operations for the schema, such as the GetSchemaByDefinition, and RegisterSchemaVersion APIs.

Service Reference:

Examples:

Calling the deleteSchema operation

var params = {
  SchemaId: { /* required */
    RegistryName: 'STRING_VALUE',
    SchemaArn: 'STRING_VALUE',
    SchemaName: 'STRING_VALUE'
  }
};
glue.deleteSchema(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • SchemaId — (map)

      This is a wrapper structure that may contain the schema name and Amazon Resource Name (ARN).

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaName — (String)

        The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • RegistryName — (String)

        The name of the schema registry that contains the schema.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema being deleted.

      • SchemaName — (String)

        The name of the schema being deleted.

      • Status — (String)

        The status of the schema.

        Possible values include:
        • "AVAILABLE"
        • "PENDING"
        • "DELETING"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteSchemaVersions(params = {}, callback) ⇒ AWS.Request

Remove versions from the specified schema. A version number or range may be supplied. If the compatibility mode forbids deleting of a version that is necessary, such as BACKWARDS_FULL, an error is returned. Calling the GetSchemaVersions API after this call will list the status of the deleted versions.

When the range of version numbers contain check pointed version, the API will return a 409 conflict and will not proceed with the deletion. You have to remove the checkpoint first using the DeleteSchemaCheckpoint API before using this API.

You cannot use the DeleteSchemaVersions API to delete the first schema version in the schema set. The first schema version can only be deleted by the DeleteSchema API. This operation will also delete the attached SchemaVersionMetadata under the schema versions. Hard deletes will be enforced on the database.

If the compatibility mode forbids deleting of a version that is necessary, such as BACKWARDS_FULL, an error is returned.

Service Reference:

Examples:

Calling the deleteSchemaVersions operation

var params = {
  SchemaId: { /* required */
    RegistryName: 'STRING_VALUE',
    SchemaArn: 'STRING_VALUE',
    SchemaName: 'STRING_VALUE'
  },
  Versions: 'STRING_VALUE' /* required */
};
glue.deleteSchemaVersions(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • SchemaId — (map)

      This is a wrapper structure that may contain the schema name and Amazon Resource Name (ARN).

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaName — (String)

        The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • RegistryName — (String)

        The name of the schema registry that contains the schema.

    • Versions — (String)

      A version range may be supplied which may be of the format:

      • a single version number, 5

      • a range, 5-8 : deletes versions 5, 6, 7, 8

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • SchemaVersionErrors — (Array<map>)

        A list of SchemaVersionErrorItem objects, each containing an error and schema version.

        • VersionNumber — (Integer)

          The version number of the schema.

        • ErrorDetails — (map)

          The details of the error for the schema version.

          • ErrorCode — (String)

            The error code for an error.

          • ErrorMessage — (String)

            The error message for an error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteSecurityConfiguration(params = {}, callback) ⇒ AWS.Request

Deletes a specified security configuration.

Service Reference:

Examples:

Calling the deleteSecurityConfiguration operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.deleteSecurityConfiguration(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the security configuration to delete.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteTable(params = {}, callback) ⇒ AWS.Request

Removes a table definition from the Data Catalog.

Note: After completing this operation, you no longer have access to the table versions and partitions that belong to the deleted table. Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service. To ensure the immediate deletion of all related resources, before calling DeleteTable, use DeleteTableVersion or BatchDeleteTableVersion, and DeletePartition or BatchDeletePartition, to delete any resources that belong to the table.

Service Reference:

Examples:

Calling the deleteTable operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  Name: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.deleteTable(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database in which the table resides. For Hive compatibility, this name is entirely lowercase.

    • Name — (String)

      The name of the table to be deleted. For Hive compatibility, this name is entirely lowercase.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteTableVersion(params = {}, callback) ⇒ AWS.Request

Deletes a specified version of a table.

Service Reference:

Examples:

Calling the deleteTableVersion operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  TableName: 'STRING_VALUE', /* required */
  VersionId: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.deleteTableVersion(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase.

    • TableName — (String)

      The name of the table. For Hive compatibility, this name is entirely lowercase.

    • VersionId — (String)

      The ID of the table version to be deleted. A VersionID is a string representation of an integer. Each version is incremented by 1.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteTrigger(params = {}, callback) ⇒ AWS.Request

Deletes a specified trigger. If the trigger is not found, no exception is thrown.

Service Reference:

Examples:

Calling the deleteTrigger operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.deleteTrigger(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the trigger to delete.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Name — (String)

        The name of the trigger that was deleted.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteUserDefinedFunction(params = {}, callback) ⇒ AWS.Request

Deletes an existing function definition from the Data Catalog.

Service Reference:

Examples:

Calling the deleteUserDefinedFunction operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  FunctionName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.deleteUserDefinedFunction(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the function to be deleted is located. If none is supplied, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the function is located.

    • FunctionName — (String)

      The name of the function definition to be deleted.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteWorkflow(params = {}, callback) ⇒ AWS.Request

Deletes a workflow.

Service Reference:

Examples:

Calling the deleteWorkflow operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.deleteWorkflow(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      Name of the workflow to be deleted.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Name — (String)

        Name of the workflow specified in input.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getBlueprint(params = {}, callback) ⇒ AWS.Request

Retrieves the details of a blueprint.

Service Reference:

Examples:

Calling the getBlueprint operation

var params = {
  Name: 'STRING_VALUE', /* required */
  IncludeBlueprint: true || false,
  IncludeParameterSpec: true || false
};
glue.getBlueprint(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the blueprint.

    • IncludeBlueprint — (Boolean)

      Specifies whether or not to include the blueprint in the response.

    • IncludeParameterSpec — (Boolean)

      Specifies whether or not to include the parameter specification.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Blueprint — (map)

        Returns a Blueprint object.

        • Name — (String)

          The name of the blueprint.

        • Description — (String)

          The description of the blueprint.

        • CreatedOn — (Date)

          The date and time the blueprint was registered.

        • LastModifiedOn — (Date)

          The date and time the blueprint was last modified.

        • ParameterSpec — (String)

          A JSON string that indicates the list of parameter specifications for the blueprint.

        • BlueprintLocation — (String)

          Specifies the path in Amazon S3 where the blueprint is published.

        • BlueprintServiceLocation — (String)

          Specifies a path in Amazon S3 where the blueprint is copied when you call CreateBlueprint/UpdateBlueprint to register the blueprint in Glue.

        • Status — (String)

          The status of the blueprint registration.

          • Creating — The blueprint registration is in progress.

          • Active — The blueprint has been successfully registered.

          • Updating — An update to the blueprint registration is in progress.

          • Failed — The blueprint registration failed.

          Possible values include:
          • "CREATING"
          • "ACTIVE"
          • "UPDATING"
          • "FAILED"
        • ErrorMessage — (String)

          An error message.

        • LastActiveDefinition — (map)

          When there are multiple versions of a blueprint and the latest version has some errors, this attribute indicates the last successful blueprint definition that is available with the service.

          • Description — (String)

            The description of the blueprint.

          • LastModifiedOn — (Date)

            The date and time the blueprint was last modified.

          • ParameterSpec — (String)

            A JSON string specifying the parameters for the blueprint.

          • BlueprintLocation — (String)

            Specifies a path in Amazon S3 where the blueprint is published by the Glue developer.

          • BlueprintServiceLocation — (String)

            Specifies a path in Amazon S3 where the blueprint is copied when you create or update the blueprint.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getBlueprintRun(params = {}, callback) ⇒ AWS.Request

Retrieves the details of a blueprint run.

Service Reference:

Examples:

Calling the getBlueprintRun operation

var params = {
  BlueprintName: 'STRING_VALUE', /* required */
  RunId: 'STRING_VALUE' /* required */
};
glue.getBlueprintRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • BlueprintName — (String)

      The name of the blueprint.

    • RunId — (String)

      The run ID for the blueprint run you want to retrieve.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • BlueprintRun — (map)

        Returns a BlueprintRun object.

        • BlueprintName — (String)

          The name of the blueprint.

        • RunId — (String)

          The run ID for this blueprint run.

        • WorkflowName — (String)

          The name of a workflow that is created as a result of a successful blueprint run. If a blueprint run has an error, there will not be a workflow created.

        • State — (String)

          The state of the blueprint run. Possible values are:

          • Running — The blueprint run is in progress.

          • Succeeded — The blueprint run completed successfully.

          • Failed — The blueprint run failed and rollback is complete.

          • Rolling Back — The blueprint run failed and rollback is in progress.

          Possible values include:
          • "RUNNING"
          • "SUCCEEDED"
          • "FAILED"
          • "ROLLING_BACK"
        • StartedOn — (Date)

          The date and time that the blueprint run started.

        • CompletedOn — (Date)

          The date and time that the blueprint run completed.

        • ErrorMessage — (String)

          Indicates any errors that are seen while running the blueprint.

        • RollbackErrorMessage — (String)

          If there are any errors while creating the entities of a workflow, we try to roll back the created entities until that point and delete them. This attribute indicates the errors seen while trying to delete the entities that are created.

        • Parameters — (String)

          The blueprint parameters as a string. You will have to provide a value for each key that is required from the parameter spec that is defined in the Blueprint$ParameterSpec.

        • RoleArn — (String)

          The role ARN. This role will be assumed by the Glue service and will be used to create the workflow and other entities of a workflow.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getBlueprintRuns(params = {}, callback) ⇒ AWS.Request

Retrieves the details of blueprint runs for a specified blueprint.

Service Reference:

Examples:

Calling the getBlueprintRuns operation

var params = {
  BlueprintName: 'STRING_VALUE', /* required */
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getBlueprintRuns(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • BlueprintName — (String)

      The name of the blueprint.

    • NextToken — (String)

      A continuation token, if this is a continuation request.

    • MaxResults — (Integer)

      The maximum size of a list to return.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • BlueprintRuns — (Array<map>)

        Returns a list of BlueprintRun objects.

        • BlueprintName — (String)

          The name of the blueprint.

        • RunId — (String)

          The run ID for this blueprint run.

        • WorkflowName — (String)

          The name of a workflow that is created as a result of a successful blueprint run. If a blueprint run has an error, there will not be a workflow created.

        • State — (String)

          The state of the blueprint run. Possible values are:

          • Running — The blueprint run is in progress.

          • Succeeded — The blueprint run completed successfully.

          • Failed — The blueprint run failed and rollback is complete.

          • Rolling Back — The blueprint run failed and rollback is in progress.

          Possible values include:
          • "RUNNING"
          • "SUCCEEDED"
          • "FAILED"
          • "ROLLING_BACK"
        • StartedOn — (Date)

          The date and time that the blueprint run started.

        • CompletedOn — (Date)

          The date and time that the blueprint run completed.

        • ErrorMessage — (String)

          Indicates any errors that are seen while running the blueprint.

        • RollbackErrorMessage — (String)

          If there are any errors while creating the entities of a workflow, we try to roll back the created entities until that point and delete them. This attribute indicates the errors seen while trying to delete the entities that are created.

        • Parameters — (String)

          The blueprint parameters as a string. You will have to provide a value for each key that is required from the parameter spec that is defined in the Blueprint$ParameterSpec.

        • RoleArn — (String)

          The role ARN. This role will be assumed by the Glue service and will be used to create the workflow and other entities of a workflow.

      • NextToken — (String)

        A continuation token, if not all blueprint runs have been returned.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getCatalogImportStatus(params = {}, callback) ⇒ AWS.Request

Retrieves the status of a migration operation.

Service Reference:

Examples:

Calling the getCatalogImportStatus operation

var params = {
  CatalogId: 'STRING_VALUE'
};
glue.getCatalogImportStatus(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the catalog to migrate. Currently, this should be the Amazon Web Services account ID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ImportStatus — (map)

        The status of the specified catalog migration.

        • ImportCompleted — (Boolean)

          True if the migration has completed, or False otherwise.

        • ImportTime — (Date)

          The time that the migration was started.

        • ImportedBy — (String)

          The name of the person who initiated the migration.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getClassifier(params = {}, callback) ⇒ AWS.Request

Retrieve a classifier by name.

Service Reference:

Examples:

Calling the getClassifier operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.getClassifier(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      Name of the classifier to retrieve.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Classifier — (map)

        The requested classifier.

        • GrokClassifier — (map)

          A classifier that uses grok.

          • Namerequired — (String)

            The name of the classifier.

          • Classificationrequired — (String)

            An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, and so on.

          • CreationTime — (Date)

            The time that this classifier was registered.

          • LastUpdated — (Date)

            The time that this classifier was last updated.

          • Version — (Integer)

            The version of this classifier.

          • GrokPatternrequired — (String)

            The grok pattern applied to a data store by this classifier. For more information, see built-in patterns in Writing Custom Classifiers.

          • CustomPatterns — (String)

            Optional custom grok patterns defined by this classifier. For more information, see custom patterns in Writing Custom Classifiers.

        • XMLClassifier — (map)

          A classifier for XML content.

          • Namerequired — (String)

            The name of the classifier.

          • Classificationrequired — (String)

            An identifier of the data format that the classifier matches.

          • CreationTime — (Date)

            The time that this classifier was registered.

          • LastUpdated — (Date)

            The time that this classifier was last updated.

          • Version — (Integer)

            The version of this classifier.

          • RowTag — (String)

            The XML tag designating the element that contains each record in an XML document being parsed. This can't identify a self-closing element (closed by />). An empty row element that contains only attributes can be parsed as long as it ends with a closing tag (for example, <row item_a="A" item_b="B"></row> is okay, but <row item_a="A" item_b="B" /> is not).

        • JsonClassifier — (map)

          A classifier for JSON content.

          • Namerequired — (String)

            The name of the classifier.

          • CreationTime — (Date)

            The time that this classifier was registered.

          • LastUpdated — (Date)

            The time that this classifier was last updated.

          • Version — (Integer)

            The version of this classifier.

          • JsonPathrequired — (String)

            A JsonPath string defining the JSON data for the classifier to classify. Glue supports a subset of JsonPath, as described in Writing JsonPath Custom Classifiers.

        • CsvClassifier — (map)

          A classifier for comma-separated values (CSV).

          • Namerequired — (String)

            The name of the classifier.

          • CreationTime — (Date)

            The time that this classifier was registered.

          • LastUpdated — (Date)

            The time that this classifier was last updated.

          • Version — (Integer)

            The version of this classifier.

          • Delimiter — (String)

            A custom symbol to denote what separates each column entry in the row.

          • QuoteSymbol — (String)

            A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.

          • ContainsHeader — (String)

            Indicates whether the CSV file contains a header.

            Possible values include:
            • "UNKNOWN"
            • "PRESENT"
            • "ABSENT"
          • Header — (Array<String>)

            A list of strings representing column names.

          • DisableValueTrimming — (Boolean)

            Specifies not to trim values before identifying the type of column values. The default value is true.

          • AllowSingleColumn — (Boolean)

            Enables the processing of files that contain only one column.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getClassifiers(params = {}, callback) ⇒ AWS.Request

Lists all classifier objects in the Data Catalog.

Service Reference:

Examples:

Calling the getClassifiers operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getClassifiers(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • MaxResults — (Integer)

      The size of the list to return (optional).

    • NextToken — (String)

      An optional continuation token.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Classifiers — (Array<map>)

        The requested list of classifier objects.

        • GrokClassifier — (map)

          A classifier that uses grok.

          • Namerequired — (String)

            The name of the classifier.

          • Classificationrequired — (String)

            An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, and so on.

          • CreationTime — (Date)

            The time that this classifier was registered.

          • LastUpdated — (Date)

            The time that this classifier was last updated.

          • Version — (Integer)

            The version of this classifier.

          • GrokPatternrequired — (String)

            The grok pattern applied to a data store by this classifier. For more information, see built-in patterns in Writing Custom Classifiers.

          • CustomPatterns — (String)

            Optional custom grok patterns defined by this classifier. For more information, see custom patterns in Writing Custom Classifiers.

        • XMLClassifier — (map)

          A classifier for XML content.

          • Namerequired — (String)

            The name of the classifier.

          • Classificationrequired — (String)

            An identifier of the data format that the classifier matches.

          • CreationTime — (Date)

            The time that this classifier was registered.

          • LastUpdated — (Date)

            The time that this classifier was last updated.

          • Version — (Integer)

            The version of this classifier.

          • RowTag — (String)

            The XML tag designating the element that contains each record in an XML document being parsed. This can't identify a self-closing element (closed by />). An empty row element that contains only attributes can be parsed as long as it ends with a closing tag (for example, <row item_a="A" item_b="B"></row> is okay, but <row item_a="A" item_b="B" /> is not).

        • JsonClassifier — (map)

          A classifier for JSON content.

          • Namerequired — (String)

            The name of the classifier.

          • CreationTime — (Date)

            The time that this classifier was registered.

          • LastUpdated — (Date)

            The time that this classifier was last updated.

          • Version — (Integer)

            The version of this classifier.

          • JsonPathrequired — (String)

            A JsonPath string defining the JSON data for the classifier to classify. Glue supports a subset of JsonPath, as described in Writing JsonPath Custom Classifiers.

        • CsvClassifier — (map)

          A classifier for comma-separated values (CSV).

          • Namerequired — (String)

            The name of the classifier.

          • CreationTime — (Date)

            The time that this classifier was registered.

          • LastUpdated — (Date)

            The time that this classifier was last updated.

          • Version — (Integer)

            The version of this classifier.

          • Delimiter — (String)

            A custom symbol to denote what separates each column entry in the row.

          • QuoteSymbol — (String)

            A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.

          • ContainsHeader — (String)

            Indicates whether the CSV file contains a header.

            Possible values include:
            • "UNKNOWN"
            • "PRESENT"
            • "ABSENT"
          • Header — (Array<String>)

            A list of strings representing column names.

          • DisableValueTrimming — (Boolean)

            Specifies not to trim values before identifying the type of column values. The default value is true.

          • AllowSingleColumn — (Boolean)

            Enables the processing of files that contain only one column.

      • NextToken — (String)

        A continuation token.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getColumnStatisticsForPartition(params = {}, callback) ⇒ AWS.Request

Retrieves partition statistics of columns.

The Identity and Access Management (IAM) permission required for this operation is GetPartition.

Service Reference:

Examples:

Calling the getColumnStatisticsForPartition operation

var params = {
  ColumnNames: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  DatabaseName: 'STRING_VALUE', /* required */
  PartitionValues: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.getColumnStatisticsForPartition(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the partitions reside.

    • TableName — (String)

      The name of the partitions' table.

    • PartitionValues — (Array<String>)

      A list of partition values identifying the partition.

    • ColumnNames — (Array<String>)

      A list of the column names.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ColumnStatisticsList — (Array<map>)

        List of ColumnStatistics that failed to be retrieved.

        • ColumnNamerequired — (String)

          Name of column which statistics belong to.

        • ColumnTyperequired — (String)

          The data type of the column.

        • AnalyzedTimerequired — (Date)

          The timestamp of when column statistics were generated.

        • StatisticsDatarequired — (map)

          A ColumnStatisticData object that contains the statistics data values.

          • Typerequired — (String)

            The type of column statistics data.

            Possible values include:
            • "BOOLEAN"
            • "DATE"
            • "DECIMAL"
            • "DOUBLE"
            • "LONG"
            • "STRING"
            • "BINARY"
          • BooleanColumnStatisticsData — (map)

            Boolean column statistics data.

            • NumberOfTruesrequired — (Integer)

              The number of true values in the column.

            • NumberOfFalsesrequired — (Integer)

              The number of false values in the column.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

          • DateColumnStatisticsData — (map)

            Date column statistics data.

            • MinimumValue — (Date)

              The lowest value in the column.

            • MaximumValue — (Date)

              The highest value in the column.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

            • NumberOfDistinctValuesrequired — (Integer)

              The number of distinct values in a column.

          • DecimalColumnStatisticsData — (map)

            Decimal column statistics data.

            • MinimumValue — (map)

              The lowest value in the column.

              • UnscaledValuerequired — (Buffer, Typed Array, Blob, String)

                The unscaled numeric value.

              • Scalerequired — (Integer)

                The scale that determines where the decimal point falls in the unscaled value.

            • MaximumValue — (map)

              The highest value in the column.

              • UnscaledValuerequired — (Buffer, Typed Array, Blob, String)

                The unscaled numeric value.

              • Scalerequired — (Integer)

                The scale that determines where the decimal point falls in the unscaled value.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

            • NumberOfDistinctValuesrequired — (Integer)

              The number of distinct values in a column.

          • DoubleColumnStatisticsData — (map)

            Double column statistics data.

            • MinimumValue — (Float)

              The lowest value in the column.

            • MaximumValue — (Float)

              The highest value in the column.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

            • NumberOfDistinctValuesrequired — (Integer)

              The number of distinct values in a column.

          • LongColumnStatisticsData — (map)

            Long column statistics data.

            • MinimumValue — (Integer)

              The lowest value in the column.

            • MaximumValue — (Integer)

              The highest value in the column.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

            • NumberOfDistinctValuesrequired — (Integer)

              The number of distinct values in a column.

          • StringColumnStatisticsData — (map)

            String column statistics data.

            • MaximumLengthrequired — (Integer)

              The size of the longest string in the column.

            • AverageLengthrequired — (Float)

              The average string length in the column.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

            • NumberOfDistinctValuesrequired — (Integer)

              The number of distinct values in a column.

          • BinaryColumnStatisticsData — (map)

            Binary column statistics data.

            • MaximumLengthrequired — (Integer)

              The size of the longest bit sequence in the column.

            • AverageLengthrequired — (Float)

              The average bit sequence length in the column.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

      • Errors — (Array<map>)

        Error occurred during retrieving column statistics data.

        • ColumnName — (String)

          The name of the column that failed.

        • Error — (map)

          An error message with the reason for the failure of an operation.

          • ErrorCode — (String)

            The code associated with this error.

          • ErrorMessage — (String)

            A message describing the error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getColumnStatisticsForTable(params = {}, callback) ⇒ AWS.Request

Retrieves table statistics of columns.

The Identity and Access Management (IAM) permission required for this operation is GetTable.

Service Reference:

Examples:

Calling the getColumnStatisticsForTable operation

var params = {
  ColumnNames: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  DatabaseName: 'STRING_VALUE', /* required */
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.getColumnStatisticsForTable(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the partitions reside.

    • TableName — (String)

      The name of the partitions' table.

    • ColumnNames — (Array<String>)

      A list of the column names.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ColumnStatisticsList — (Array<map>)

        List of ColumnStatistics that failed to be retrieved.

        • ColumnNamerequired — (String)

          Name of column which statistics belong to.

        • ColumnTyperequired — (String)

          The data type of the column.

        • AnalyzedTimerequired — (Date)

          The timestamp of when column statistics were generated.

        • StatisticsDatarequired — (map)

          A ColumnStatisticData object that contains the statistics data values.

          • Typerequired — (String)

            The type of column statistics data.

            Possible values include:
            • "BOOLEAN"
            • "DATE"
            • "DECIMAL"
            • "DOUBLE"
            • "LONG"
            • "STRING"
            • "BINARY"
          • BooleanColumnStatisticsData — (map)

            Boolean column statistics data.

            • NumberOfTruesrequired — (Integer)

              The number of true values in the column.

            • NumberOfFalsesrequired — (Integer)

              The number of false values in the column.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

          • DateColumnStatisticsData — (map)

            Date column statistics data.

            • MinimumValue — (Date)

              The lowest value in the column.

            • MaximumValue — (Date)

              The highest value in the column.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

            • NumberOfDistinctValuesrequired — (Integer)

              The number of distinct values in a column.

          • DecimalColumnStatisticsData — (map)

            Decimal column statistics data.

            • MinimumValue — (map)

              The lowest value in the column.

              • UnscaledValuerequired — (Buffer, Typed Array, Blob, String)

                The unscaled numeric value.

              • Scalerequired — (Integer)

                The scale that determines where the decimal point falls in the unscaled value.

            • MaximumValue — (map)

              The highest value in the column.

              • UnscaledValuerequired — (Buffer, Typed Array, Blob, String)

                The unscaled numeric value.

              • Scalerequired — (Integer)

                The scale that determines where the decimal point falls in the unscaled value.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

            • NumberOfDistinctValuesrequired — (Integer)

              The number of distinct values in a column.

          • DoubleColumnStatisticsData — (map)

            Double column statistics data.

            • MinimumValue — (Float)

              The lowest value in the column.

            • MaximumValue — (Float)

              The highest value in the column.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

            • NumberOfDistinctValuesrequired — (Integer)

              The number of distinct values in a column.

          • LongColumnStatisticsData — (map)

            Long column statistics data.

            • MinimumValue — (Integer)

              The lowest value in the column.

            • MaximumValue — (Integer)

              The highest value in the column.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

            • NumberOfDistinctValuesrequired — (Integer)

              The number of distinct values in a column.

          • StringColumnStatisticsData — (map)

            String column statistics data.

            • MaximumLengthrequired — (Integer)

              The size of the longest string in the column.

            • AverageLengthrequired — (Float)

              The average string length in the column.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

            • NumberOfDistinctValuesrequired — (Integer)

              The number of distinct values in a column.

          • BinaryColumnStatisticsData — (map)

            Binary column statistics data.

            • MaximumLengthrequired — (Integer)

              The size of the longest bit sequence in the column.

            • AverageLengthrequired — (Float)

              The average bit sequence length in the column.

            • NumberOfNullsrequired — (Integer)

              The number of null values in the column.

      • Errors — (Array<map>)

        List of ColumnStatistics that failed to be retrieved.

        • ColumnName — (String)

          The name of the column that failed.

        • Error — (map)

          An error message with the reason for the failure of an operation.

          • ErrorCode — (String)

            The code associated with this error.

          • ErrorMessage — (String)

            A message describing the error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getConnection(params = {}, callback) ⇒ AWS.Request

Retrieves a connection definition from the Data Catalog.

Service Reference:

Examples:

Calling the getConnection operation

var params = {
  Name: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE',
  HidePassword: true || false
};
glue.getConnection(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog in which the connection resides. If none is provided, the Amazon Web Services account ID is used by default.

    • Name — (String)

      The name of the connection definition to retrieve.

    • HidePassword — (Boolean)

      Allows you to retrieve the connection metadata without returning the password. For instance, the AWS Glue console uses this flag to retrieve the connection, and does not display the password. Set this parameter when the caller might not have permission to use the KMS key to decrypt the password, but it does have permission to access the rest of the connection properties.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Connection — (map)

        The requested connection definition.

        • Name — (String)

          The name of the connection definition.

        • Description — (String)

          The description of the connection.

        • ConnectionType — (String)

          The type of the connection. Currently, SFTP is not supported.

          Possible values include:
          • "JDBC"
          • "SFTP"
          • "MONGODB"
          • "KAFKA"
          • "NETWORK"
          • "MARKETPLACE"
          • "CUSTOM"
        • MatchCriteria — (Array<String>)

          A list of criteria that can be used in selecting this connection.

        • ConnectionProperties — (map<String>)

          These key-value pairs define parameters for the connection:

          • HOST - The host URI: either the fully qualified domain name (FQDN) or the IPv4 address of the database host.

          • PORT - The port number, between 1024 and 65535, of the port on which the database host is listening for database connections.

          • USER_NAME - The name under which to log in to the database. The value string for USER_NAME is "USERNAME".

          • PASSWORD - A password, if one is used, for the user name.

          • ENCRYPTED_PASSWORD - When you enable connection password protection by setting ConnectionPasswordEncryption in the Data Catalog encryption settings, this field stores the encrypted password.

          • JDBC_DRIVER_JAR_URI - The Amazon Simple Storage Service (Amazon S3) path of the JAR file that contains the JDBC driver to use.

          • JDBC_DRIVER_CLASS_NAME - The class name of the JDBC driver to use.

          • JDBC_ENGINE - The name of the JDBC engine to use.

          • JDBC_ENGINE_VERSION - The version of the JDBC engine to use.

          • CONFIG_FILES - (Reserved for future use.)

          • INSTANCE_ID - The instance ID to use.

          • JDBC_CONNECTION_URL - The URL for connecting to a JDBC data source.

          • JDBC_ENFORCE_SSL - A Boolean string (true, false) specifying whether Secure Sockets Layer (SSL) with hostname matching is enforced for the JDBC connection on the client. The default is false.

          • CUSTOM_JDBC_CERT - An Amazon S3 location specifying the customer's root certificate. Glue uses this root certificate to validate the customer’s certificate when connecting to the customer database. Glue only handles X.509 certificates. The certificate provided must be DER-encoded and supplied in Base64 encoding PEM format.

          • SKIP_CUSTOM_JDBC_CERT_VALIDATION - By default, this is false. Glue validates the Signature algorithm and Subject Public Key Algorithm for the customer certificate. The only permitted algorithms for the Signature algorithm are SHA256withRSA, SHA384withRSA or SHA512withRSA. For the Subject Public Key Algorithm, the key length must be at least 2048. You can set the value of this property to true to skip Glue’s validation of the customer certificate.

          • CUSTOM_JDBC_CERT_STRING - A custom JDBC certificate string which is used for domain match or distinguished name match to prevent a man-in-the-middle attack. In Oracle database, this is used as the SSL_SERVER_CERT_DN; in Microsoft SQL Server, this is used as the hostNameInCertificate.

          • CONNECTION_URL - The URL for connecting to a general (non-JDBC) data source.

          • KAFKA_BOOTSTRAP_SERVERS - A comma-separated list of host and port pairs that are the addresses of the Apache Kafka brokers in a Kafka cluster to which a Kafka client will connect to and bootstrap itself.

          • KAFKA_SSL_ENABLED - Whether to enable or disable SSL on an Apache Kafka connection. Default value is "true".

          • KAFKA_CUSTOM_CERT - The Amazon S3 URL for the private CA cert file (.pem format). The default is an empty string.

          • KAFKA_SKIP_CUSTOM_CERT_VALIDATION - Whether to skip the validation of the CA cert file or not. Glue validates for three algorithms: SHA256withRSA, SHA384withRSA and SHA512withRSA. Default value is "false".

          • SECRET_ID - The secret ID used for the secret manager of credentials.

          • CONNECTOR_URL - The connector URL for a MARKETPLACE or CUSTOM connection.

          • CONNECTOR_TYPE - The connector type for a MARKETPLACE or CUSTOM connection.

          • CONNECTOR_CLASS_NAME - The connector class name for a MARKETPLACE or CUSTOM connection.

          • KAFKA_CLIENT_KEYSTORE - The Amazon S3 location of the client keystore file for Kafka client side authentication (Optional).

          • KAFKA_CLIENT_KEYSTORE_PASSWORD - The password to access the provided keystore (Optional).

          • KAFKA_CLIENT_KEY_PASSWORD - A keystore can consist of multiple keys, so this is the password to access the client key to be used with the Kafka server side key (Optional).

          • ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD - The encrypted version of the Kafka client keystore password (if the user has the Glue encrypt passwords setting selected).

          • ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD - The encrypted version of the Kafka client key password (if the user has the Glue encrypt passwords setting selected).

        • PhysicalConnectionRequirements — (map)

          A map of physical connection requirements, such as virtual private cloud (VPC) and SecurityGroup, that are needed to make this connection successfully.

          • SubnetId — (String)

            The subnet ID used by the connection.

          • SecurityGroupIdList — (Array<String>)

            The security group ID list used by the connection.

          • AvailabilityZone — (String)

            The connection's Availability Zone. This field is redundant because the specified subnet implies the Availability Zone to be used. Currently the field must be populated, but it will be deprecated in the future.

        • CreationTime — (Date)

          The time that this connection definition was created.

        • LastUpdatedTime — (Date)

          The last time that this connection definition was updated.

        • LastUpdatedBy — (String)

          The user, group, or role that last updated this connection definition.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getConnections(params = {}, callback) ⇒ AWS.Request

Retrieves a list of connection definitions from the Data Catalog.

Service Reference:

Examples:

Calling the getConnections operation

var params = {
  CatalogId: 'STRING_VALUE',
  Filter: {
    ConnectionType: JDBC | SFTP | MONGODB | KAFKA | NETWORK | MARKETPLACE | CUSTOM,
    MatchCriteria: [
      'STRING_VALUE',
      /* more items */
    ]
  },
  HidePassword: true || false,
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getConnections(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog in which the connections reside. If none is provided, the Amazon Web Services account ID is used by default.

    • Filter — (map)

      A filter that controls which connections are returned.

      • MatchCriteria — (Array<String>)

        A criteria string that must match the criteria recorded in the connection definition for that connection definition to be returned.

      • ConnectionType — (String)

        The type of connections to return. Currently, SFTP is not supported.

        Possible values include:
        • "JDBC"
        • "SFTP"
        • "MONGODB"
        • "KAFKA"
        • "NETWORK"
        • "MARKETPLACE"
        • "CUSTOM"
    • HidePassword — (Boolean)

      Allows you to retrieve the connection metadata without returning the password. For instance, the AWS Glue console uses this flag to retrieve the connection, and does not display the password. Set this parameter when the caller might not have permission to use the KMS key to decrypt the password, but it does have permission to access the rest of the connection properties.

    • NextToken — (String)

      A continuation token, if this is a continuation call.

    • MaxResults — (Integer)

      The maximum number of connections to return in one response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ConnectionList — (Array<map>)

        A list of requested connection definitions.

        • Name — (String)

          The name of the connection definition.

        • Description — (String)

          The description of the connection.

        • ConnectionType — (String)

          The type of the connection. Currently, SFTP is not supported.

          Possible values include:
          • "JDBC"
          • "SFTP"
          • "MONGODB"
          • "KAFKA"
          • "NETWORK"
          • "MARKETPLACE"
          • "CUSTOM"
        • MatchCriteria — (Array<String>)

          A list of criteria that can be used in selecting this connection.

        • ConnectionProperties — (map<String>)

          These key-value pairs define parameters for the connection:

          • HOST - The host URI: either the fully qualified domain name (FQDN) or the IPv4 address of the database host.

          • PORT - The port number, between 1024 and 65535, of the port on which the database host is listening for database connections.

          • USER_NAME - The name under which to log in to the database. The value string for USER_NAME is "USERNAME".

          • PASSWORD - A password, if one is used, for the user name.

          • ENCRYPTED_PASSWORD - When you enable connection password protection by setting ConnectionPasswordEncryption in the Data Catalog encryption settings, this field stores the encrypted password.

          • JDBC_DRIVER_JAR_URI - The Amazon Simple Storage Service (Amazon S3) path of the JAR file that contains the JDBC driver to use.

          • JDBC_DRIVER_CLASS_NAME - The class name of the JDBC driver to use.

          • JDBC_ENGINE - The name of the JDBC engine to use.

          • JDBC_ENGINE_VERSION - The version of the JDBC engine to use.

          • CONFIG_FILES - (Reserved for future use.)

          • INSTANCE_ID - The instance ID to use.

          • JDBC_CONNECTION_URL - The URL for connecting to a JDBC data source.

          • JDBC_ENFORCE_SSL - A Boolean string (true, false) specifying whether Secure Sockets Layer (SSL) with hostname matching is enforced for the JDBC connection on the client. The default is false.

          • CUSTOM_JDBC_CERT - An Amazon S3 location specifying the customer's root certificate. Glue uses this root certificate to validate the customer’s certificate when connecting to the customer database. Glue only handles X.509 certificates. The certificate provided must be DER-encoded and supplied in Base64 encoding PEM format.

          • SKIP_CUSTOM_JDBC_CERT_VALIDATION - By default, this is false. Glue validates the Signature algorithm and Subject Public Key Algorithm for the customer certificate. The only permitted algorithms for the Signature algorithm are SHA256withRSA, SHA384withRSA or SHA512withRSA. For the Subject Public Key Algorithm, the key length must be at least 2048. You can set the value of this property to true to skip Glue’s validation of the customer certificate.

          • CUSTOM_JDBC_CERT_STRING - A custom JDBC certificate string which is used for domain match or distinguished name match to prevent a man-in-the-middle attack. In Oracle database, this is used as the SSL_SERVER_CERT_DN; in Microsoft SQL Server, this is used as the hostNameInCertificate.

          • CONNECTION_URL - The URL for connecting to a general (non-JDBC) data source.

          • KAFKA_BOOTSTRAP_SERVERS - A comma-separated list of host and port pairs that are the addresses of the Apache Kafka brokers in a Kafka cluster to which a Kafka client will connect to and bootstrap itself.

          • KAFKA_SSL_ENABLED - Whether to enable or disable SSL on an Apache Kafka connection. Default value is "true".

          • KAFKA_CUSTOM_CERT - The Amazon S3 URL for the private CA cert file (.pem format). The default is an empty string.

          • KAFKA_SKIP_CUSTOM_CERT_VALIDATION - Whether to skip the validation of the CA cert file or not. Glue validates for three algorithms: SHA256withRSA, SHA384withRSA and SHA512withRSA. Default value is "false".

          • SECRET_ID - The secret ID used for the secret manager of credentials.

          • CONNECTOR_URL - The connector URL for a MARKETPLACE or CUSTOM connection.

          • CONNECTOR_TYPE - The connector type for a MARKETPLACE or CUSTOM connection.

          • CONNECTOR_CLASS_NAME - The connector class name for a MARKETPLACE or CUSTOM connection.

          • KAFKA_CLIENT_KEYSTORE - The Amazon S3 location of the client keystore file for Kafka client side authentication (Optional).

          • KAFKA_CLIENT_KEYSTORE_PASSWORD - The password to access the provided keystore (Optional).

          • KAFKA_CLIENT_KEY_PASSWORD - A keystore can consist of multiple keys, so this is the password to access the client key to be used with the Kafka server side key (Optional).

          • ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD - The encrypted version of the Kafka client keystore password (if the user has the Glue encrypt passwords setting selected).

          • ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD - The encrypted version of the Kafka client key password (if the user has the Glue encrypt passwords setting selected).

        • PhysicalConnectionRequirements — (map)

          A map of physical connection requirements, such as virtual private cloud (VPC) and SecurityGroup, that are needed to make this connection successfully.

          • SubnetId — (String)

            The subnet ID used by the connection.

          • SecurityGroupIdList — (Array<String>)

            The security group ID list used by the connection.

          • AvailabilityZone — (String)

            The connection's Availability Zone. This field is redundant because the specified subnet implies the Availability Zone to be used. Currently the field must be populated, but it will be deprecated in the future.

        • CreationTime — (Date)

          The time that this connection definition was created.

        • LastUpdatedTime — (Date)

          The last time that this connection definition was updated.

        • LastUpdatedBy — (String)

          The user, group, or role that last updated this connection definition.

      • NextToken — (String)

        A continuation token, if the list of connections returned does not include the last of the filtered connections.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getCrawler(params = {}, callback) ⇒ AWS.Request

Retrieves metadata for a specified crawler.

Service Reference:

Examples:

Calling the getCrawler operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.getCrawler(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the crawler to retrieve metadata for.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Crawler — (map)

        The metadata for the specified crawler.

        • Name — (String)

          The name of the crawler.

        • Role — (String)

          The Amazon Resource Name (ARN) of an IAM role that's used to access customer resources, such as Amazon Simple Storage Service (Amazon S3) data.

        • Targets — (map)

          A collection of targets to crawl.

          • S3Targets — (Array<map>)

            Specifies Amazon Simple Storage Service (Amazon S3) targets.

            • Path — (String)

              The path to the Amazon S3 target.

            • Exclusions — (Array<String>)

              A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

            • ConnectionName — (String)

              The name of a connection which allows a job or crawler to access data in Amazon S3 within an Amazon Virtual Private Cloud environment (Amazon VPC).

            • SampleSize — (Integer)

              Sets the number of files in each leaf folder to be crawled when crawling sample files in a dataset. If not set, all the files are crawled. A valid value is an integer between 1 and 249.

            • EventQueueArn — (String)

              A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.

            • DlqEventQueueArn — (String)

              A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.

          • JdbcTargets — (Array<map>)

            Specifies JDBC targets.

            • ConnectionName — (String)

              The name of the connection to use to connect to the JDBC target.

            • Path — (String)

              The path of the JDBC target.

            • Exclusions — (Array<String>)

              A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

          • MongoDBTargets — (Array<map>)

            Specifies Amazon DocumentDB or MongoDB targets.

            • ConnectionName — (String)

              The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.

            • Path — (String)

              The path of the Amazon DocumentDB or MongoDB target (database/collection).

            • ScanAll — (Boolean)

              Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.

              A value of true means to scan all records, while a value of false means to sample the records. If no value is specified, the value defaults to true.

          • DynamoDBTargets — (Array<map>)

            Specifies Amazon DynamoDB targets.

            • Path — (String)

              The name of the DynamoDB table to crawl.

            • scanAll — (Boolean)

              Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.

              A value of true means to scan all records, while a value of false means to sample the records. If no value is specified, the value defaults to true.

            • scanRate — (Float)

              The percentage of the configured read capacity units to use by the Glue crawler. Read capacity units is a term defined by DynamoDB, and is a numeric value that acts as rate limiter for the number of reads that can be performed on that table per second.

              The valid values are null or a value between 0.1 to 1.5. A null value is used when user does not provide a value, and defaults to 0.5 of the configured Read Capacity Unit (for provisioned tables), or 0.25 of the max configured Read Capacity Unit (for tables using on-demand mode).

          • CatalogTargets — (Array<map>)

            Specifies Glue Data Catalog targets.

            • DatabaseNamerequired — (String)

              The name of the database to be synchronized.

            • Tablesrequired — (Array<String>)

              A list of the tables to be synchronized.

        • DatabaseName — (String)

          The name of the database in which the crawler's output is stored.

        • Description — (String)

          A description of the crawler.

        • Classifiers — (Array<String>)

          A list of UTF-8 strings that specify the custom classifiers that are associated with the crawler.

        • RecrawlPolicy — (map)

          A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.

          • RecrawlBehavior — (String)

            Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.

            A value of CRAWL_EVERYTHING specifies crawling the entire dataset again.

            A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that were added since the last crawler run.

            A value of CRAWL_EVENT_MODE specifies crawling only the changes identified by Amazon S3 events.

            Possible values include:
            • "CRAWL_EVERYTHING"
            • "CRAWL_NEW_FOLDERS_ONLY"
            • "CRAWL_EVENT_MODE"
        • SchemaChangePolicy — (map)

          The policy that specifies update and delete behaviors for the crawler.

          • UpdateBehavior — (String)

            The update behavior when the crawler finds a changed schema.

            Possible values include:
            • "LOG"
            • "UPDATE_IN_DATABASE"
          • DeleteBehavior — (String)

            The deletion behavior when the crawler finds a deleted object.

            Possible values include:
            • "LOG"
            • "DELETE_FROM_DATABASE"
            • "DEPRECATE_IN_DATABASE"
        • LineageConfiguration — (map)

          A configuration that specifies whether data lineage is enabled for the crawler.

          • CrawlerLineageSettings — (String)

            Specifies whether data lineage is enabled for the crawler. Valid values are:

            • ENABLE: enables data lineage for the crawler

            • DISABLE: disables data lineage for the crawler

            Possible values include:
            • "ENABLE"
            • "DISABLE"
        • State — (String)

          Indicates whether the crawler is running, or whether a run is pending.

          Possible values include:
          • "READY"
          • "RUNNING"
          • "STOPPING"
        • TablePrefix — (String)

          The prefix added to the names of tables that are created.

        • Schedule — (map)

          For scheduled crawlers, the schedule when the crawler runs.

          • ScheduleExpression — (String)

            A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

          • State — (String)

            The state of the schedule.

            Possible values include:
            • "SCHEDULED"
            • "NOT_SCHEDULED"
            • "TRANSITIONING"
        • CrawlElapsedTime — (Integer)

          If the crawler is running, contains the total time elapsed since the last crawl began.

        • CreationTime — (Date)

          The time that the crawler was created.

        • LastUpdated — (Date)

          The time that the crawler was last updated.

        • LastCrawl — (map)

          The status of the last crawl, and potentially error information if an error occurred.

          • Status — (String)

            Status of the last crawl.

            Possible values include:
            • "SUCCEEDED"
            • "CANCELLED"
            • "FAILED"
          • ErrorMessage — (String)

            If an error occurred, the error information about the last crawl.

          • LogGroup — (String)

            The log group for the last crawl.

          • LogStream — (String)

            The log stream for the last crawl.

          • MessagePrefix — (String)

            The prefix for a message about this crawl.

          • StartTime — (Date)

            The time at which the crawl started.

        • Version — (Integer)

          The version of the crawler.

        • Configuration — (String)

          Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Include and Exclude Patterns.

        • CrawlerSecurityConfiguration — (String)

          The name of the SecurityConfiguration structure to be used by this crawler.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getCrawlerMetrics(params = {}, callback) ⇒ AWS.Request

Retrieves metrics about specified crawlers.

Service Reference:

Examples:

Calling the getCrawlerMetrics operation

var params = {
  CrawlerNameList: [
    'STRING_VALUE',
    /* more items */
  ],
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getCrawlerMetrics(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CrawlerNameList — (Array<String>)

      A list of the names of crawlers about which to retrieve metrics.

    • MaxResults — (Integer)

      The maximum size of a list to return.

    • NextToken — (String)

      A continuation token, if this is a continuation call.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CrawlerMetricsList — (Array<map>)

        A list of metrics for the specified crawler.

        • CrawlerName — (String)

          The name of the crawler.

        • TimeLeftSeconds — (Float)

          The estimated time left to complete a running crawl.

        • StillEstimating — (Boolean)

          True if the crawler is still estimating how long it will take to complete this run.

        • LastRuntimeSeconds — (Float)

          The duration of the crawler's most recent run, in seconds.

        • MedianRuntimeSeconds — (Float)

          The median duration of this crawler's runs, in seconds.

        • TablesCreated — (Integer)

          The number of tables created by this crawler.

        • TablesUpdated — (Integer)

          The number of tables updated by this crawler.

        • TablesDeleted — (Integer)

          The number of tables deleted by this crawler.

      • NextToken — (String)

        A continuation token, if the returned list does not contain the last metric available.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getCrawlers(params = {}, callback) ⇒ AWS.Request

Retrieves metadata for all crawlers defined in the customer account.

Service Reference:

Examples:

Calling the getCrawlers operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getCrawlers(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • MaxResults — (Integer)

      The number of crawlers to return on each call.

    • NextToken — (String)

      A continuation token, if this is a continuation request.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Crawlers — (Array<map>)

        A list of crawler metadata.

        • Name — (String)

          The name of the crawler.

        • Role — (String)

          The Amazon Resource Name (ARN) of an IAM role that's used to access customer resources, such as Amazon Simple Storage Service (Amazon S3) data.

        • Targets — (map)

          A collection of targets to crawl.

          • S3Targets — (Array<map>)

            Specifies Amazon Simple Storage Service (Amazon S3) targets.

            • Path — (String)

              The path to the Amazon S3 target.

            • Exclusions — (Array<String>)

              A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

            • ConnectionName — (String)

              The name of a connection which allows a job or crawler to access data in Amazon S3 within an Amazon Virtual Private Cloud environment (Amazon VPC).

            • SampleSize — (Integer)

              Sets the number of files in each leaf folder to be crawled when crawling sample files in a dataset. If not set, all the files are crawled. A valid value is an integer between 1 and 249.

            • EventQueueArn — (String)

              A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.

            • DlqEventQueueArn — (String)

              A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.

          • JdbcTargets — (Array<map>)

            Specifies JDBC targets.

            • ConnectionName — (String)

              The name of the connection to use to connect to the JDBC target.

            • Path — (String)

              The path of the JDBC target.

            • Exclusions — (Array<String>)

              A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

          • MongoDBTargets — (Array<map>)

            Specifies Amazon DocumentDB or MongoDB targets.

            • ConnectionName — (String)

              The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.

            • Path — (String)

              The path of the Amazon DocumentDB or MongoDB target (database/collection).

            • ScanAll — (Boolean)

              Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.

              A value of true means to scan all records, while a value of false means to sample the records. If no value is specified, the value defaults to true.

          • DynamoDBTargets — (Array<map>)

            Specifies Amazon DynamoDB targets.

            • Path — (String)

              The name of the DynamoDB table to crawl.

            • scanAll — (Boolean)

              Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.

              A value of true means to scan all records, while a value of false means to sample the records. If no value is specified, the value defaults to true.

            • scanRate — (Float)

              The percentage of the configured read capacity units to use by the Glue crawler. Read capacity units is a term defined by DynamoDB, and is a numeric value that acts as rate limiter for the number of reads that can be performed on that table per second.

              The valid values are null or a value between 0.1 to 1.5. A null value is used when user does not provide a value, and defaults to 0.5 of the configured Read Capacity Unit (for provisioned tables), or 0.25 of the max configured Read Capacity Unit (for tables using on-demand mode).

          • CatalogTargets — (Array<map>)

            Specifies Glue Data Catalog targets.

            • DatabaseNamerequired — (String)

              The name of the database to be synchronized.

            • Tablesrequired — (Array<String>)

              A list of the tables to be synchronized.

        • DatabaseName — (String)

          The name of the database in which the crawler's output is stored.

        • Description — (String)

          A description of the crawler.

        • Classifiers — (Array<String>)

          A list of UTF-8 strings that specify the custom classifiers that are associated with the crawler.

        • RecrawlPolicy — (map)

          A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.

          • RecrawlBehavior — (String)

            Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.

            A value of CRAWL_EVERYTHING specifies crawling the entire dataset again.

            A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that were added since the last crawler run.

            A value of CRAWL_EVENT_MODE specifies crawling only the changes identified by Amazon S3 events.

            Possible values include:
            • "CRAWL_EVERYTHING"
            • "CRAWL_NEW_FOLDERS_ONLY"
            • "CRAWL_EVENT_MODE"
        • SchemaChangePolicy — (map)

          The policy that specifies update and delete behaviors for the crawler.

          • UpdateBehavior — (String)

            The update behavior when the crawler finds a changed schema.

            Possible values include:
            • "LOG"
            • "UPDATE_IN_DATABASE"
          • DeleteBehavior — (String)

            The deletion behavior when the crawler finds a deleted object.

            Possible values include:
            • "LOG"
            • "DELETE_FROM_DATABASE"
            • "DEPRECATE_IN_DATABASE"
        • LineageConfiguration — (map)

          A configuration that specifies whether data lineage is enabled for the crawler.

          • CrawlerLineageSettings — (String)

            Specifies whether data lineage is enabled for the crawler. Valid values are:

            • ENABLE: enables data lineage for the crawler

            • DISABLE: disables data lineage for the crawler

            Possible values include:
            • "ENABLE"
            • "DISABLE"
        • State — (String)

          Indicates whether the crawler is running, or whether a run is pending.

          Possible values include:
          • "READY"
          • "RUNNING"
          • "STOPPING"
        • TablePrefix — (String)

          The prefix added to the names of tables that are created.

        • Schedule — (map)

          For scheduled crawlers, the schedule when the crawler runs.

          • ScheduleExpression — (String)

            A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

          • State — (String)

            The state of the schedule.

            Possible values include:
            • "SCHEDULED"
            • "NOT_SCHEDULED"
            • "TRANSITIONING"
        • CrawlElapsedTime — (Integer)

          If the crawler is running, contains the total time elapsed since the last crawl began.

        • CreationTime — (Date)

          The time that the crawler was created.

        • LastUpdated — (Date)

          The time that the crawler was last updated.

        • LastCrawl — (map)

          The status of the last crawl, and potentially error information if an error occurred.

          • Status — (String)

            Status of the last crawl.

            Possible values include:
            • "SUCCEEDED"
            • "CANCELLED"
            • "FAILED"
          • ErrorMessage — (String)

            If an error occurred, the error information about the last crawl.

          • LogGroup — (String)

            The log group for the last crawl.

          • LogStream — (String)

            The log stream for the last crawl.

          • MessagePrefix — (String)

            The prefix for a message about this crawl.

          • StartTime — (Date)

            The time at which the crawl started.

        • Version — (Integer)

          The version of the crawler.

        • Configuration — (String)

          Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Include and Exclude Patterns.

        • CrawlerSecurityConfiguration — (String)

          The name of the SecurityConfiguration structure to be used by this crawler.

      • NextToken — (String)

        A continuation token, if the returned list has not reached the end of those defined in this customer account.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getDatabase(params = {}, callback) ⇒ AWS.Request

Retrieves the definition of a specified database.

Service Reference:

Examples:

Calling the getDatabase operation

var params = {
  Name: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.getDatabase(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog in which the database resides. If none is provided, the Amazon Web Services account ID is used by default.

    • Name — (String)

      The name of the database to retrieve. For Hive compatibility, this should be all lowercase.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Database — (map)

        The definition of the specified database in the Data Catalog.

        • Namerequired — (String)

          The name of the database. For Hive compatibility, this is folded to lowercase when it is stored.

        • Description — (String)

          A description of the database.

        • LocationUri — (String)

          The location of the database (for example, an HDFS path).

        • Parameters — (map<String>)

          These key-value pairs define parameters and properties of the database.

        • CreateTime — (Date)

          The time at which the metadata database was created in the catalog.

        • CreateTableDefaultPermissions — (Array<map>)

          Creates a set of default permissions on the table for principals.

          • Principal — (map)

            The principal who is granted permissions.

            • DataLakePrincipalIdentifier — (String)

              An identifier for the Lake Formation principal.

          • Permissions — (Array<String>)

            The permissions that are granted to the principal.

        • TargetDatabase — (map)

          A DatabaseIdentifier structure that describes a target database for resource linking.

          • CatalogId — (String)

            The ID of the Data Catalog in which the database resides.

          • DatabaseName — (String)

            The name of the catalog database.

        • CatalogId — (String)

          The ID of the Data Catalog in which the database resides.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getDatabases(params = {}, callback) ⇒ AWS.Request

Retrieves all databases defined in a given Data Catalog.

Service Reference:

Examples:

Calling the getDatabases operation

var params = {
  CatalogId: 'STRING_VALUE',
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  ResourceShareType: FOREIGN | ALL
};
glue.getDatabases(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog from which to retrieve Databases. If none is provided, the Amazon Web Services account ID is used by default.

    • NextToken — (String)

      A continuation token, if this is a continuation call.

    • MaxResults — (Integer)

      The maximum number of databases to return in one response.

    • ResourceShareType — (String)

      Allows you to specify that you want to list the databases shared with your account. The allowable values are FOREIGN or ALL.

      • If set to FOREIGN, will list the databases shared with your account.

      • If set to ALL, will list the databases shared with your account, as well as the databases in yor local account.

      Possible values include:
      • "FOREIGN"
      • "ALL"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DatabaseList — (Array<map>)

        A list of Database objects from the specified catalog.

        • Namerequired — (String)

          The name of the database. For Hive compatibility, this is folded to lowercase when it is stored.

        • Description — (String)

          A description of the database.

        • LocationUri — (String)

          The location of the database (for example, an HDFS path).

        • Parameters — (map<String>)

          These key-value pairs define parameters and properties of the database.

        • CreateTime — (Date)

          The time at which the metadata database was created in the catalog.

        • CreateTableDefaultPermissions — (Array<map>)

          Creates a set of default permissions on the table for principals.

          • Principal — (map)

            The principal who is granted permissions.

            • DataLakePrincipalIdentifier — (String)

              An identifier for the Lake Formation principal.

          • Permissions — (Array<String>)

            The permissions that are granted to the principal.

        • TargetDatabase — (map)

          A DatabaseIdentifier structure that describes a target database for resource linking.

          • CatalogId — (String)

            The ID of the Data Catalog in which the database resides.

          • DatabaseName — (String)

            The name of the catalog database.

        • CatalogId — (String)

          The ID of the Data Catalog in which the database resides.

      • NextToken — (String)

        A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getDataCatalogEncryptionSettings(params = {}, callback) ⇒ AWS.Request

Retrieves the security configuration for a specified catalog.

Examples:

Calling the getDataCatalogEncryptionSettings operation

var params = {
  CatalogId: 'STRING_VALUE'
};
glue.getDataCatalogEncryptionSettings(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog to retrieve the security configuration for. If none is provided, the Amazon Web Services account ID is used by default.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DataCatalogEncryptionSettings — (map)

        The requested security configuration.

        • EncryptionAtRest — (map)

          Specifies the encryption-at-rest configuration for the Data Catalog.

          • CatalogEncryptionModerequired — (String)

            The encryption-at-rest mode for encrypting Data Catalog data.

            Possible values include:
            • "DISABLED"
            • "SSE-KMS"
          • SseAwsKmsKeyId — (String)

            The ID of the KMS key to use for encryption at rest.

        • ConnectionPasswordEncryption — (map)

          When connection password protection is enabled, the Data Catalog uses a customer-provided key to encrypt the password as part of CreateConnection or UpdateConnection and store it in the ENCRYPTED_PASSWORD field in the connection properties. You can enable catalog encryption or only password encryption.

          • ReturnConnectionPasswordEncryptedrequired — (Boolean)

            When the ReturnConnectionPasswordEncrypted flag is set to "true", passwords remain encrypted in the responses of GetConnection and GetConnections. This encryption takes effect independently from catalog encryption.

          • AwsKmsKeyId — (String)

            An KMS key that is used to encrypt the connection password.

            If connection password protection is enabled, the caller of CreateConnection and UpdateConnection needs at least kms:Encrypt permission on the specified KMS key, to encrypt passwords before storing them in the Data Catalog.

            You can set the decrypt permission to enable or restrict access on the password key according to your security requirements.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getDataflowGraph(params = {}, callback) ⇒ AWS.Request

Transforms a Python script into a directed acyclic graph (DAG).

Service Reference:

Examples:

Calling the getDataflowGraph operation

var params = {
  PythonScript: 'STRING_VALUE'
};
glue.getDataflowGraph(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • PythonScript — (String)

      The Python script to transform.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DagNodes — (Array<map>)

        A list of the nodes in the resulting DAG.

        • Idrequired — (String)

          A node identifier that is unique within the node's graph.

        • NodeTyperequired — (String)

          The type of node that this is.

        • Argsrequired — (Array<map>)

          Properties of the node, in the form of name-value pairs.

          • Namerequired — (String)

            The name of the argument or property.

          • Valuerequired — (String)

            The value of the argument or property.

          • Param — (Boolean)

            True if the value is used as a parameter.

        • LineNumber — (Integer)

          The line number of the node.

      • DagEdges — (Array<map>)

        A list of the edges in the resulting DAG.

        • Sourcerequired — (String)

          The ID of the node at which the edge starts.

        • Targetrequired — (String)

          The ID of the node at which the edge ends.

        • TargetParameter — (String)

          The target of the edge.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getDevEndpoint(params = {}, callback) ⇒ AWS.Request

Retrieves information about a specified development endpoint.

Note: When you create a development endpoint in a virtual private cloud (VPC), Glue returns only a private IP address, and the public IP address field is not populated. When you create a non-VPC development endpoint, Glue returns only a public IP address.

Service Reference:

Examples:

Calling the getDevEndpoint operation

var params = {
  EndpointName: 'STRING_VALUE' /* required */
};
glue.getDevEndpoint(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • EndpointName — (String)

      Name of the DevEndpoint to retrieve information for.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DevEndpoint — (map)

        A DevEndpoint definition.

        • EndpointName — (String)

          The name of the DevEndpoint.

        • RoleArn — (String)

          The Amazon Resource Name (ARN) of the IAM role used in this DevEndpoint.

        • SecurityGroupIds — (Array<String>)

          A list of security group identifiers used in this DevEndpoint.

        • SubnetId — (String)

          The subnet ID for this DevEndpoint.

        • YarnEndpointAddress — (String)

          The YARN endpoint address used by this DevEndpoint.

        • PrivateAddress — (String)

          A private IP address to access the DevEndpoint within a VPC if the DevEndpoint is created within one. The PrivateAddress field is present only when you create the DevEndpoint within your VPC.

        • ZeppelinRemoteSparkInterpreterPort — (Integer)

          The Apache Zeppelin port for the remote Apache Spark interpreter.

        • PublicAddress — (String)

          The public IP address used by this DevEndpoint. The PublicAddress field is present only when you create a non-virtual private cloud (VPC) DevEndpoint.

        • Status — (String)

          The current status of this DevEndpoint.

        • WorkerType — (String)

          The type of predefined worker that is allocated to the development endpoint. Accepts a value of Standard, G.1X, or G.2X.

          • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

          • For the G.1X worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

          • For the G.2X worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

          Known issue: when a development endpoint is created with the G.2X WorkerType configuration, the Spark drivers for the development endpoint will run on 4 vCPU, 16 GB of memory, and a 64 GB disk.

          Possible values include:
          • "Standard"
          • "G.1X"
          • "G.2X"
        • GlueVersion — (String)

          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.

          Development endpoints that are created without specifying a Glue version default to Glue 0.9.

          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.

        • NumberOfWorkers — (Integer)

          The number of workers of a defined workerType that are allocated to the development endpoint.

          The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

        • NumberOfNodes — (Integer)

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

        • AvailabilityZone — (String)

          The AWS Availability Zone where this DevEndpoint is located.

        • VpcId — (String)

          The ID of the virtual private cloud (VPC) used by this DevEndpoint.

        • ExtraPythonLibsS3Path — (String)

          The paths to one or more Python libraries in an Amazon S3 bucket that should be loaded in your DevEndpoint. Multiple values must be complete paths separated by a comma.

          Note: You can only use pure Python libraries with a DevEndpoint. Libraries that rely on C extensions, such as the pandas Python data analysis library, are not currently supported.
        • ExtraJarsS3Path — (String)

          The path to one or more Java .jar files in an S3 bucket that should be loaded in your DevEndpoint.

          Note: You can only use pure Java/Scala libraries with a DevEndpoint.
        • FailureReason — (String)

          The reason for a current failure in this DevEndpoint.

        • LastUpdateStatus — (String)

          The status of the last update.

        • CreatedTimestamp — (Date)

          The point in time at which this DevEndpoint was created.

        • LastModifiedTimestamp — (Date)

          The point in time at which this DevEndpoint was last modified.

        • PublicKey — (String)

          The public key to be used by this DevEndpoint for authentication. This attribute is provided for backward compatibility because the recommended attribute to use is public keys.

        • PublicKeys — (Array<String>)

          A list of public keys to be used by the DevEndpoints for authentication. Using this attribute is preferred over a single public key because the public keys allow you to have a different private key per client.

          Note: 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 operation with the public key content in the deletePublicKeys attribute, and the list of new keys in the addPublicKeys attribute.
        • SecurityConfiguration — (String)

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

        • Arguments — (map<String>)

          A 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.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getDevEndpoints(params = {}, callback) ⇒ AWS.Request

Retrieves all the development endpoints in this AWS account.

Note: When you create a development endpoint in a virtual private cloud (VPC), Glue returns only a private IP address and the public IP address field is not populated. When you create a non-VPC development endpoint, Glue returns only a public IP address.

Service Reference:

Examples:

Calling the getDevEndpoints operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getDevEndpoints(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • MaxResults — (Integer)

      The maximum size of information to return.

    • NextToken — (String)

      A continuation token, if this is a continuation call.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DevEndpoints — (Array<map>)

        A list of DevEndpoint definitions.

        • EndpointName — (String)

          The name of the DevEndpoint.

        • RoleArn — (String)

          The Amazon Resource Name (ARN) of the IAM role used in this DevEndpoint.

        • SecurityGroupIds — (Array<String>)

          A list of security group identifiers used in this DevEndpoint.

        • SubnetId — (String)

          The subnet ID for this DevEndpoint.

        • YarnEndpointAddress — (String)

          The YARN endpoint address used by this DevEndpoint.

        • PrivateAddress — (String)

          A private IP address to access the DevEndpoint within a VPC if the DevEndpoint is created within one. The PrivateAddress field is present only when you create the DevEndpoint within your VPC.

        • ZeppelinRemoteSparkInterpreterPort — (Integer)

          The Apache Zeppelin port for the remote Apache Spark interpreter.

        • PublicAddress — (String)

          The public IP address used by this DevEndpoint. The PublicAddress field is present only when you create a non-virtual private cloud (VPC) DevEndpoint.

        • Status — (String)

          The current status of this DevEndpoint.

        • WorkerType — (String)

          The type of predefined worker that is allocated to the development endpoint. Accepts a value of Standard, G.1X, or G.2X.

          • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

          • For the G.1X worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

          • For the G.2X worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

          Known issue: when a development endpoint is created with the G.2X WorkerType configuration, the Spark drivers for the development endpoint will run on 4 vCPU, 16 GB of memory, and a 64 GB disk.

          Possible values include:
          • "Standard"
          • "G.1X"
          • "G.2X"
        • GlueVersion — (String)

          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.

          Development endpoints that are created without specifying a Glue version default to Glue 0.9.

          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.

        • NumberOfWorkers — (Integer)

          The number of workers of a defined workerType that are allocated to the development endpoint.

          The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

        • NumberOfNodes — (Integer)

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

        • AvailabilityZone — (String)

          The AWS Availability Zone where this DevEndpoint is located.

        • VpcId — (String)

          The ID of the virtual private cloud (VPC) used by this DevEndpoint.

        • ExtraPythonLibsS3Path — (String)

          The paths to one or more Python libraries in an Amazon S3 bucket that should be loaded in your DevEndpoint. Multiple values must be complete paths separated by a comma.

          Note: You can only use pure Python libraries with a DevEndpoint. Libraries that rely on C extensions, such as the pandas Python data analysis library, are not currently supported.
        • ExtraJarsS3Path — (String)

          The path to one or more Java .jar files in an S3 bucket that should be loaded in your DevEndpoint.

          Note: You can only use pure Java/Scala libraries with a DevEndpoint.
        • FailureReason — (String)

          The reason for a current failure in this DevEndpoint.

        • LastUpdateStatus — (String)

          The status of the last update.

        • CreatedTimestamp — (Date)

          The point in time at which this DevEndpoint was created.

        • LastModifiedTimestamp — (Date)

          The point in time at which this DevEndpoint was last modified.

        • PublicKey — (String)

          The public key to be used by this DevEndpoint for authentication. This attribute is provided for backward compatibility because the recommended attribute to use is public keys.

        • PublicKeys — (Array<String>)

          A list of public keys to be used by the DevEndpoints for authentication. Using this attribute is preferred over a single public key because the public keys allow you to have a different private key per client.

          Note: 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 operation with the public key content in the deletePublicKeys attribute, and the list of new keys in the addPublicKeys attribute.
        • SecurityConfiguration — (String)

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

        • Arguments — (map<String>)

          A 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.

      • NextToken — (String)

        A continuation token, if not all DevEndpoint definitions have yet been returned.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getJob(params = {}, callback) ⇒ AWS.Request

Retrieves an existing job definition.

Service Reference:

Examples:

Calling the getJob operation

var params = {
  JobName: 'STRING_VALUE' /* required */
};
glue.getJob(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • JobName — (String)

      The name of the job definition to retrieve.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Job — (map)

        The requested job definition.

        • Name — (String)

          The name you assign to this job definition.

        • Description — (String)

          A description of the job.

        • LogUri — (String)

          This field is reserved for future use.

        • Role — (String)

          The name or Amazon Resource Name (ARN) of the IAM role associated with this job.

        • CreatedOn — (Date)

          The time and date that this job definition was created.

        • LastModifiedOn — (Date)

          The last point in time when this job definition was modified.

        • ExecutionProperty — (map)

          An ExecutionProperty specifying the maximum number of concurrent runs allowed for this job.

          • MaxConcurrentRuns — (Integer)

            The maximum number of concurrent runs allowed for the job. The default is 1. An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit.

        • Command — (map)

          The JobCommand that runs this job.

          • Name — (String)

            The name of the job command. For an Apache Spark ETL job, this must be glueetl. For a Python shell job, it must be pythonshell. For an Apache Spark streaming ETL job, this must be gluestreaming.

          • ScriptLocation — (String)

            Specifies the Amazon Simple Storage Service (Amazon S3) path to a script that runs a job.

          • PythonVersion — (String)

            The Python version being used to run a Python shell job. Allowed values are 2 or 3.

        • DefaultArguments — (map<String>)

          The default arguments for this job, specified as name-value pairs.

          You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

          For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

          For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

        • NonOverridableArguments — (map<String>)

          Non-overridable arguments for this job, specified as name-value pairs.

        • Connections — (map)

          The connections used for this job.

          • Connections — (Array<String>)

            A list of connections used by the job.

        • MaxRetries — (Integer)

          The maximum number of times to retry this job after a JobRun fails.

        • AllocatedCapacity — (Integer)

          This field is deprecated. Use MaxCapacity instead.

          The number of Glue data processing units (DPUs) allocated to runs of this job. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

        • Timeout — (Integer)

          The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).

        • MaxCapacity — (Float)

          For Glue version 1.0 or earlier jobs, using the standard worker type, the number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

          Do not set Max Capacity if using WorkerType and NumberOfWorkers.

          The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job, an Apache Spark ETL job, or an Apache Spark streaming ETL job:

          • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

          • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl") or Apache Spark streaming ETL job (JobCommand.Name="gluestreaming"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

          For Glue version 2.0 jobs, you cannot instead specify a Maximum capacity. Instead, you should specify a Worker type and the Number of workers.

        • WorkerType — (String)

          The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

          • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

          • For the G.1X worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

          • For the G.2X worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

          Possible values include:
          • "Standard"
          • "G.1X"
          • "G.2X"
        • NumberOfWorkers — (Integer)

          The number of workers of a defined workerType that are allocated when a job runs.

          The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

        • SecurityConfiguration — (String)

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

        • NotificationProperty — (map)

          Specifies configuration properties of a job notification.

          • NotifyDelayAfter — (Integer)

            After a job run starts, the number of minutes to wait before sending a job run delay notification.

        • GlueVersion — (String)

          Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

          For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

          Jobs that are created without specifying a Glue version default to Glue 0.9.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getJobBookmark(params = {}, callback) ⇒ AWS.Request

Returns information on a job bookmark entry.

Service Reference:

Examples:

Calling the getJobBookmark operation

var params = {
  JobName: 'STRING_VALUE', /* required */
  RunId: 'STRING_VALUE'
};
glue.getJobBookmark(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • JobName — (String)

      The name of the job in question.

    • RunId — (String)

      The unique run identifier associated with this job run.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • JobBookmarkEntry — (map)

        A structure that defines a point that a job can resume processing.

        • JobName — (String)

          The name of the job in question.

        • Version — (Integer)

          The version of the job.

        • Run — (Integer)

          The run ID number.

        • Attempt — (Integer)

          The attempt ID number.

        • PreviousRunId — (String)

          The unique run identifier associated with the previous job run.

        • RunId — (String)

          The run ID number.

        • JobBookmark — (String)

          The bookmark itself.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getJobRun(params = {}, callback) ⇒ AWS.Request

Retrieves the metadata for a given job run.

Service Reference:

Examples:

Calling the getJobRun operation

var params = {
  JobName: 'STRING_VALUE', /* required */
  RunId: 'STRING_VALUE', /* required */
  PredecessorsIncluded: true || false
};
glue.getJobRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • JobName — (String)

      Name of the job definition being run.

    • RunId — (String)

      The ID of the job run.

    • PredecessorsIncluded — (Boolean)

      True if a list of predecessor runs should be returned.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • JobRun — (map)

        The requested job-run metadata.

        • Id — (String)

          The ID of this job run.

        • Attempt — (Integer)

          The number of the attempt to run this job.

        • PreviousRunId — (String)

          The ID of the previous run of this job. For example, the JobRunId specified in the StartJobRun action.

        • TriggerName — (String)

          The name of the trigger that started this job run.

        • JobName — (String)

          The name of the job definition being used in this run.

        • StartedOn — (Date)

          The date and time at which this job run was started.

        • LastModifiedOn — (Date)

          The last time that this job run was modified.

        • CompletedOn — (Date)

          The date and time that this job run completed.

        • JobRunState — (String)

          The current state of the job run. For more information about the statuses of jobs that have terminated abnormally, see Glue Job Run Statuses.

          Possible values include:
          • "STARTING"
          • "RUNNING"
          • "STOPPING"
          • "STOPPED"
          • "SUCCEEDED"
          • "FAILED"
          • "TIMEOUT"
        • Arguments — (map<String>)

          The job arguments associated with this run. For this job run, they replace the default arguments set in the job definition itself.

          You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

          For information about how to specify and consume your own job arguments, see the Calling Glue APIs in Python topic in the developer guide.

          For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

        • ErrorMessage — (String)

          An error message associated with this job run.

        • PredecessorRuns — (Array<map>)

          A list of predecessors to this job run.

          • JobName — (String)

            The name of the job definition used by the predecessor job run.

          • RunId — (String)

            The job-run ID of the predecessor job run.

        • AllocatedCapacity — (Integer)

          This field is deprecated. Use MaxCapacity instead.

          The number of Glue data processing units (DPUs) allocated to this JobRun. From 2 to 100 DPUs can be allocated; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

        • ExecutionTime — (Integer)

          The amount of time (in seconds) that the job run consumed resources.

        • Timeout — (Integer)

          The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

        • MaxCapacity — (Float)

          The number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

          Do not set Max Capacity if using WorkerType and NumberOfWorkers.

          The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job or an Apache Spark ETL job:

          • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

          • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

        • WorkerType — (String)

          The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

          • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

          • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

          • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

          Possible values include:
          • "Standard"
          • "G.1X"
          • "G.2X"
        • NumberOfWorkers — (Integer)

          The number of workers of a defined workerType that are allocated when a job runs.

          The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

        • SecurityConfiguration — (String)

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

        • LogGroupName — (String)

          The name of the log group for secure logging that can be server-side encrypted in Amazon CloudWatch using KMS. This name can be /aws-glue/jobs/, in which case the default encryption is NONE. If you add a role name and SecurityConfiguration name (in other words, /aws-glue/jobs-yourRoleName-yourSecurityConfigurationName/), then that security configuration is used to encrypt the log group.

        • NotificationProperty — (map)

          Specifies configuration properties of a job run notification.

          • NotifyDelayAfter — (Integer)

            After a job run starts, the number of minutes to wait before sending a job run delay notification.

        • GlueVersion — (String)

          Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

          For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

          Jobs that are created without specifying a Glue version default to Glue 0.9.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getJobRuns(params = {}, callback) ⇒ AWS.Request

Retrieves metadata for all runs of a given job definition.

Service Reference:

Examples:

Calling the getJobRuns operation

var params = {
  JobName: 'STRING_VALUE', /* required */
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getJobRuns(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • JobName — (String)

      The name of the job definition for which to retrieve all job runs.

    • NextToken — (String)

      A continuation token, if this is a continuation call.

    • MaxResults — (Integer)

      The maximum size of the response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • JobRuns — (Array<map>)

        A list of job-run metadata objects.

        • Id — (String)

          The ID of this job run.

        • Attempt — (Integer)

          The number of the attempt to run this job.

        • PreviousRunId — (String)

          The ID of the previous run of this job. For example, the JobRunId specified in the StartJobRun action.

        • TriggerName — (String)

          The name of the trigger that started this job run.

        • JobName — (String)

          The name of the job definition being used in this run.

        • StartedOn — (Date)

          The date and time at which this job run was started.

        • LastModifiedOn — (Date)

          The last time that this job run was modified.

        • CompletedOn — (Date)

          The date and time that this job run completed.

        • JobRunState — (String)

          The current state of the job run. For more information about the statuses of jobs that have terminated abnormally, see Glue Job Run Statuses.

          Possible values include:
          • "STARTING"
          • "RUNNING"
          • "STOPPING"
          • "STOPPED"
          • "SUCCEEDED"
          • "FAILED"
          • "TIMEOUT"
        • Arguments — (map<String>)

          The job arguments associated with this run. For this job run, they replace the default arguments set in the job definition itself.

          You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

          For information about how to specify and consume your own job arguments, see the Calling Glue APIs in Python topic in the developer guide.

          For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

        • ErrorMessage — (String)

          An error message associated with this job run.

        • PredecessorRuns — (Array<map>)

          A list of predecessors to this job run.

          • JobName — (String)

            The name of the job definition used by the predecessor job run.

          • RunId — (String)

            The job-run ID of the predecessor job run.

        • AllocatedCapacity — (Integer)

          This field is deprecated. Use MaxCapacity instead.

          The number of Glue data processing units (DPUs) allocated to this JobRun. From 2 to 100 DPUs can be allocated; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

        • ExecutionTime — (Integer)

          The amount of time (in seconds) that the job run consumed resources.

        • Timeout — (Integer)

          The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

        • MaxCapacity — (Float)

          The number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

          Do not set Max Capacity if using WorkerType and NumberOfWorkers.

          The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job or an Apache Spark ETL job:

          • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

          • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

        • WorkerType — (String)

          The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

          • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

          • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

          • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

          Possible values include:
          • "Standard"
          • "G.1X"
          • "G.2X"
        • NumberOfWorkers — (Integer)

          The number of workers of a defined workerType that are allocated when a job runs.

          The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

        • SecurityConfiguration — (String)

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

        • LogGroupName — (String)

          The name of the log group for secure logging that can be server-side encrypted in Amazon CloudWatch using KMS. This name can be /aws-glue/jobs/, in which case the default encryption is NONE. If you add a role name and SecurityConfiguration name (in other words, /aws-glue/jobs-yourRoleName-yourSecurityConfigurationName/), then that security configuration is used to encrypt the log group.

        • NotificationProperty — (map)

          Specifies configuration properties of a job run notification.

          • NotifyDelayAfter — (Integer)

            After a job run starts, the number of minutes to wait before sending a job run delay notification.

        • GlueVersion — (String)

          Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

          For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

          Jobs that are created without specifying a Glue version default to Glue 0.9.

      • NextToken — (String)

        A continuation token, if not all requested job runs have been returned.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getJobs(params = {}, callback) ⇒ AWS.Request

Retrieves all current job definitions.

Service Reference:

Examples:

Calling the getJobs operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getJobs(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      A continuation token, if this is a continuation call.

    • MaxResults — (Integer)

      The maximum size of the response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Jobs — (Array<map>)

        A list of job definitions.

        • Name — (String)

          The name you assign to this job definition.

        • Description — (String)

          A description of the job.

        • LogUri — (String)

          This field is reserved for future use.

        • Role — (String)

          The name or Amazon Resource Name (ARN) of the IAM role associated with this job.

        • CreatedOn — (Date)

          The time and date that this job definition was created.

        • LastModifiedOn — (Date)

          The last point in time when this job definition was modified.

        • ExecutionProperty — (map)

          An ExecutionProperty specifying the maximum number of concurrent runs allowed for this job.

          • MaxConcurrentRuns — (Integer)

            The maximum number of concurrent runs allowed for the job. The default is 1. An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit.

        • Command — (map)

          The JobCommand that runs this job.

          • Name — (String)

            The name of the job command. For an Apache Spark ETL job, this must be glueetl. For a Python shell job, it must be pythonshell. For an Apache Spark streaming ETL job, this must be gluestreaming.

          • ScriptLocation — (String)

            Specifies the Amazon Simple Storage Service (Amazon S3) path to a script that runs a job.

          • PythonVersion — (String)

            The Python version being used to run a Python shell job. Allowed values are 2 or 3.

        • DefaultArguments — (map<String>)

          The default arguments for this job, specified as name-value pairs.

          You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

          For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

          For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

        • NonOverridableArguments — (map<String>)

          Non-overridable arguments for this job, specified as name-value pairs.

        • Connections — (map)

          The connections used for this job.

          • Connections — (Array<String>)

            A list of connections used by the job.

        • MaxRetries — (Integer)

          The maximum number of times to retry this job after a JobRun fails.

        • AllocatedCapacity — (Integer)

          This field is deprecated. Use MaxCapacity instead.

          The number of Glue data processing units (DPUs) allocated to runs of this job. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

        • Timeout — (Integer)

          The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).

        • MaxCapacity — (Float)

          For Glue version 1.0 or earlier jobs, using the standard worker type, the number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

          Do not set Max Capacity if using WorkerType and NumberOfWorkers.

          The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job, an Apache Spark ETL job, or an Apache Spark streaming ETL job:

          • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

          • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl") or Apache Spark streaming ETL job (JobCommand.Name="gluestreaming"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

          For Glue version 2.0 jobs, you cannot instead specify a Maximum capacity. Instead, you should specify a Worker type and the Number of workers.

        • WorkerType — (String)

          The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

          • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

          • For the G.1X worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

          • For the G.2X worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

          Possible values include:
          • "Standard"
          • "G.1X"
          • "G.2X"
        • NumberOfWorkers — (Integer)

          The number of workers of a defined workerType that are allocated when a job runs.

          The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

        • SecurityConfiguration — (String)

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

        • NotificationProperty — (map)

          Specifies configuration properties of a job notification.

          • NotifyDelayAfter — (Integer)

            After a job run starts, the number of minutes to wait before sending a job run delay notification.

        • GlueVersion — (String)

          Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

          For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

          Jobs that are created without specifying a Glue version default to Glue 0.9.

      • NextToken — (String)

        A continuation token, if not all job definitions have yet been returned.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getMapping(params = {}, callback) ⇒ AWS.Request

Creates mappings.

Service Reference:

Examples:

Calling the getMapping operation

var params = {
  Source: { /* required */
    DatabaseName: 'STRING_VALUE', /* required */
    TableName: 'STRING_VALUE' /* required */
  },
  Location: {
    DynamoDB: [
      {
        Name: 'STRING_VALUE', /* required */
        Value: 'STRING_VALUE', /* required */
        Param: true || false
      },
      /* more items */
    ],
    Jdbc: [
      {
        Name: 'STRING_VALUE', /* required */
        Value: 'STRING_VALUE', /* required */
        Param: true || false
      },
      /* more items */
    ],
    S3: [
      {
        Name: 'STRING_VALUE', /* required */
        Value: 'STRING_VALUE', /* required */
        Param: true || false
      },
      /* more items */
    ]
  },
  Sinks: [
    {
      DatabaseName: 'STRING_VALUE', /* required */
      TableName: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
glue.getMapping(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Source — (map)

      Specifies the source table.

      • DatabaseNamerequired — (String)

        The database in which the table metadata resides.

      • TableNamerequired — (String)

        The name of the table in question.

    • Sinks — (Array<map>)

      A list of target tables.

      • DatabaseNamerequired — (String)

        The database in which the table metadata resides.

      • TableNamerequired — (String)

        The name of the table in question.

    • Location — (map)

      Parameters for the mapping.

      • Jdbc — (Array<map>)

        A JDBC location.

        • Namerequired — (String)

          The name of the argument or property.

        • Valuerequired — (String)

          The value of the argument or property.

        • Param — (Boolean)

          True if the value is used as a parameter.

      • S3 — (Array<map>)

        An Amazon Simple Storage Service (Amazon S3) location.

        • Namerequired — (String)

          The name of the argument or property.

        • Valuerequired — (String)

          The value of the argument or property.

        • Param — (Boolean)

          True if the value is used as a parameter.

      • DynamoDB — (Array<map>)

        An Amazon DynamoDB table location.

        • Namerequired — (String)

          The name of the argument or property.

        • Valuerequired — (String)

          The value of the argument or property.

        • Param — (Boolean)

          True if the value is used as a parameter.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Mapping — (Array<map>)

        A list of mappings to the specified targets.

        • SourceTable — (String)

          The name of the source table.

        • SourcePath — (String)

          The source path.

        • SourceType — (String)

          The source type.

        • TargetTable — (String)

          The target table.

        • TargetPath — (String)

          The target path.

        • TargetType — (String)

          The target type.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getMLTaskRun(params = {}, callback) ⇒ AWS.Request

Gets details for a specific task run on a machine learning transform. Machine learning task runs are asynchronous tasks that Glue runs on your behalf as part of various machine learning workflows. You can check the stats of any task run by calling GetMLTaskRun with the TaskRunID and its parent transform's TransformID.

Service Reference:

Examples:

Calling the getMLTaskRun operation

var params = {
  TaskRunId: 'STRING_VALUE', /* required */
  TransformId: 'STRING_VALUE' /* required */
};
glue.getMLTaskRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • TransformId — (String)

      The unique identifier of the machine learning transform.

    • TaskRunId — (String)

      The unique identifier of the task run.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TransformId — (String)

        The unique identifier of the task run.

      • TaskRunId — (String)

        The unique run identifier associated with this run.

      • Status — (String)

        The status for this task run.

        Possible values include:
        • "STARTING"
        • "RUNNING"
        • "STOPPING"
        • "STOPPED"
        • "SUCCEEDED"
        • "FAILED"
        • "TIMEOUT"
      • LogGroupName — (String)

        The names of the log groups that are associated with the task run.

      • Properties — (map)

        The list of properties that are associated with the task run.

        • TaskType — (String)

          The type of task run.

          Possible values include:
          • "EVALUATION"
          • "LABELING_SET_GENERATION"
          • "IMPORT_LABELS"
          • "EXPORT_LABELS"
          • "FIND_MATCHES"
        • ImportLabelsTaskRunProperties — (map)

          The configuration properties for an importing labels task run.

          • InputS3Path — (String)

            The Amazon Simple Storage Service (Amazon S3) path from where you will import the labels.

          • Replace — (Boolean)

            Indicates whether to overwrite your existing labels.

        • ExportLabelsTaskRunProperties — (map)

          The configuration properties for an exporting labels task run.

          • OutputS3Path — (String)

            The Amazon Simple Storage Service (Amazon S3) path where you will export the labels.

        • LabelingSetGenerationTaskRunProperties — (map)

          The configuration properties for a labeling set generation task run.

          • OutputS3Path — (String)

            The Amazon Simple Storage Service (Amazon S3) path where you will generate the labeling set.

        • FindMatchesTaskRunProperties — (map)

          The configuration properties for a find matches task run.

          • JobId — (String)

            The job ID for the Find Matches task run.

          • JobName — (String)

            The name assigned to the job for the Find Matches task run.

          • JobRunId — (String)

            The job run ID for the Find Matches task run.

      • ErrorString — (String)

        The error strings that are associated with the task run.

      • StartedOn — (Date)

        The date and time when this task run started.

      • LastModifiedOn — (Date)

        The date and time when this task run was last modified.

      • CompletedOn — (Date)

        The date and time when this task run was completed.

      • ExecutionTime — (Integer)

        The amount of time (in seconds) that the task run consumed resources.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getMLTaskRuns(params = {}, callback) ⇒ AWS.Request

Gets a list of runs for a machine learning transform. Machine learning task runs are asynchronous tasks that Glue runs on your behalf as part of various machine learning workflows. You can get a sortable, filterable list of machine learning task runs by calling GetMLTaskRuns with their parent transform's TransformID and other optional parameters as documented in this section.

This operation returns a list of historic runs and must be paginated.

Service Reference:

Examples:

Calling the getMLTaskRuns operation

var params = {
  TransformId: 'STRING_VALUE', /* required */
  Filter: {
    StartedAfter: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    StartedBefore: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    Status: STARTING | RUNNING | STOPPING | STOPPED | SUCCEEDED | FAILED | TIMEOUT,
    TaskRunType: EVALUATION | LABELING_SET_GENERATION | IMPORT_LABELS | EXPORT_LABELS | FIND_MATCHES
  },
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  Sort: {
    Column: TASK_RUN_TYPE | STATUS | STARTED, /* required */
    SortDirection: DESCENDING | ASCENDING /* required */
  }
};
glue.getMLTaskRuns(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • TransformId — (String)

      The unique identifier of the machine learning transform.

    • NextToken — (String)

      A token for pagination of the results. The default is empty.

    • MaxResults — (Integer)

      The maximum number of results to return.

    • Filter — (map)

      The filter criteria, in the TaskRunFilterCriteria structure, for the task run.

      • TaskRunType — (String)

        The type of task run.

        Possible values include:
        • "EVALUATION"
        • "LABELING_SET_GENERATION"
        • "IMPORT_LABELS"
        • "EXPORT_LABELS"
        • "FIND_MATCHES"
      • Status — (String)

        The current status of the task run.

        Possible values include:
        • "STARTING"
        • "RUNNING"
        • "STOPPING"
        • "STOPPED"
        • "SUCCEEDED"
        • "FAILED"
        • "TIMEOUT"
      • StartedBefore — (Date)

        Filter on task runs started before this date.

      • StartedAfter — (Date)

        Filter on task runs started after this date.

    • Sort — (map)

      The sorting criteria, in the TaskRunSortCriteria structure, for the task run.

      • Columnrequired — (String)

        The column to be used to sort the list of task runs for the machine learning transform.

        Possible values include:
        • "TASK_RUN_TYPE"
        • "STATUS"
        • "STARTED"
      • SortDirectionrequired — (String)

        The sort direction to be used to sort the list of task runs for the machine learning transform.

        Possible values include:
        • "DESCENDING"
        • "ASCENDING"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TaskRuns — (Array<map>)

        A list of task runs that are associated with the transform.

        • TransformId — (String)

          The unique identifier for the transform.

        • TaskRunId — (String)

          The unique identifier for this task run.

        • Status — (String)

          The current status of the requested task run.

          Possible values include:
          • "STARTING"
          • "RUNNING"
          • "STOPPING"
          • "STOPPED"
          • "SUCCEEDED"
          • "FAILED"
          • "TIMEOUT"
        • LogGroupName — (String)

          The names of the log group for secure logging, associated with this task run.

        • Properties — (map)

          Specifies configuration properties associated with this task run.

          • TaskType — (String)

            The type of task run.

            Possible values include:
            • "EVALUATION"
            • "LABELING_SET_GENERATION"
            • "IMPORT_LABELS"
            • "EXPORT_LABELS"
            • "FIND_MATCHES"
          • ImportLabelsTaskRunProperties — (map)

            The configuration properties for an importing labels task run.

            • InputS3Path — (String)

              The Amazon Simple Storage Service (Amazon S3) path from where you will import the labels.

            • Replace — (Boolean)

              Indicates whether to overwrite your existing labels.

          • ExportLabelsTaskRunProperties — (map)

            The configuration properties for an exporting labels task run.

            • OutputS3Path — (String)

              The Amazon Simple Storage Service (Amazon S3) path where you will export the labels.

          • LabelingSetGenerationTaskRunProperties — (map)

            The configuration properties for a labeling set generation task run.

            • OutputS3Path — (String)

              The Amazon Simple Storage Service (Amazon S3) path where you will generate the labeling set.

          • FindMatchesTaskRunProperties — (map)

            The configuration properties for a find matches task run.

            • JobId — (String)

              The job ID for the Find Matches task run.

            • JobName — (String)

              The name assigned to the job for the Find Matches task run.

            • JobRunId — (String)

              The job run ID for the Find Matches task run.

        • ErrorString — (String)

          The list of error strings associated with this task run.

        • StartedOn — (Date)

          The date and time that this task run started.

        • LastModifiedOn — (Date)

          The last point in time that the requested task run was updated.

        • CompletedOn — (Date)

          The last point in time that the requested task run was completed.

        • ExecutionTime — (Integer)

          The amount of time (in seconds) that the task run consumed resources.

      • NextToken — (String)

        A pagination token, if more results are available.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getMLTransform(params = {}, callback) ⇒ AWS.Request

Gets an Glue machine learning transform artifact and all its corresponding metadata. Machine learning transforms are a special type of transform that use machine learning to learn the details of the transformation to be performed by learning from examples provided by humans. These transformations are then saved by Glue. You can retrieve their metadata by calling GetMLTransform.

Service Reference:

Examples:

Calling the getMLTransform operation

var params = {
  TransformId: 'STRING_VALUE' /* required */
};
glue.getMLTransform(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • TransformId — (String)

      The unique identifier of the transform, generated at the time that the transform was created.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TransformId — (String)

        The unique identifier of the transform, generated at the time that the transform was created.

      • Name — (String)

        The unique name given to the transform when it was created.

      • Description — (String)

        A description of the transform.

      • Status — (String)

        The last known status of the transform (to indicate whether it can be used or not). One of "NOT_READY", "READY", or "DELETING".

        Possible values include:
        • "NOT_READY"
        • "READY"
        • "DELETING"
      • CreatedOn — (Date)

        The date and time when the transform was created.

      • LastModifiedOn — (Date)

        The date and time when the transform was last modified.

      • InputRecordTables — (Array<map>)

        A list of Glue table definitions used by the transform.

        • DatabaseNamerequired — (String)

          A database name in the Glue Data Catalog.

        • TableNamerequired — (String)

          A table name in the Glue Data Catalog.

        • CatalogId — (String)

          A unique identifier for the Glue Data Catalog.

        • ConnectionName — (String)

          The name of the connection to the Glue Data Catalog.

      • Parameters — (map)

        The configuration parameters that are specific to the algorithm used.

        • TransformTyperequired — (String)

          The type of machine learning transform.

          For information about the types of machine learning transforms, see Creating Machine Learning Transforms.

          Possible values include:
          • "FIND_MATCHES"
        • FindMatchesParameters — (map)

          The parameters for the find matches algorithm.

          • PrimaryKeyColumnName — (String)

            The name of a column that uniquely identifies rows in the source table. Used to help identify matching records.

          • PrecisionRecallTradeoff — (Float)

            The value selected when tuning your transform for a balance between precision and recall. A value of 0.5 means no preference; a value of 1.0 means a bias purely for precision, and a value of 0.0 means a bias for recall. Because this is a tradeoff, choosing values close to 1.0 means very low recall, and choosing values close to 0.0 results in very low precision.

            The precision metric indicates how often your model is correct when it predicts a match.

            The recall metric indicates that for an actual match, how often your model predicts the match.

          • AccuracyCostTradeoff — (Float)

            The value that is selected when tuning your transform for a balance between accuracy and cost. A value of 0.5 means that the system balances accuracy and cost concerns. A value of 1.0 means a bias purely for accuracy, which typically results in a higher cost, sometimes substantially higher. A value of 0.0 means a bias purely for cost, which results in a less accurate FindMatches transform, sometimes with unacceptable accuracy.

            Accuracy measures how well the transform finds true positives and true negatives. Increasing accuracy requires more machine resources and cost. But it also results in increased recall.

            Cost measures how many compute resources, and thus money, are consumed to run the transform.

          • EnforceProvidedLabels — (Boolean)

            The value to switch on or off to force the output to match the provided labels from users. If the value is True, the find matches transform forces the output to match the provided labels. The results override the normal conflation results. If the value is False, the find matches transform does not ensure all the labels provided are respected, and the results rely on the trained model.

            Note that setting this value to true may increase the conflation execution time.

      • EvaluationMetrics — (map)

        The latest evaluation metrics.

        • TransformTyperequired — (String)

          The type of machine learning transform.

          Possible values include:
          • "FIND_MATCHES"
        • FindMatchesMetrics — (map)

          The evaluation metrics for the find matches algorithm.

          • AreaUnderPRCurve — (Float)

            The area under the precision/recall curve (AUPRC) is a single number measuring the overall quality of the transform, that is independent of the choice made for precision vs. recall. Higher values indicate that you have a more attractive precision vs. recall tradeoff.

            For more information, see Precision and recall in Wikipedia.

          • Precision — (Float)

            The precision metric indicates when often your transform is correct when it predicts a match. Specifically, it measures how well the transform finds true positives from the total true positives possible.

            For more information, see Precision and recall in Wikipedia.

          • Recall — (Float)

            The recall metric indicates that for an actual match, how often your transform predicts the match. Specifically, it measures how well the transform finds true positives from the total records in the source data.

            For more information, see Precision and recall in Wikipedia.

          • F1 — (Float)

            The maximum F1 metric indicates the transform's accuracy between 0 and 1, where 1 is the best accuracy.

            For more information, see F1 score in Wikipedia.

          • ConfusionMatrix — (map)

            The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making.

            For more information, see Confusion matrix in Wikipedia.

            • NumTruePositives — (Integer)

              The number of matches in the data that the transform correctly found, in the confusion matrix for your transform.

            • NumFalsePositives — (Integer)

              The number of nonmatches in the data that the transform incorrectly classified as a match, in the confusion matrix for your transform.

            • NumTrueNegatives — (Integer)

              The number of nonmatches in the data that the transform correctly rejected, in the confusion matrix for your transform.

            • NumFalseNegatives — (Integer)

              The number of matches in the data that the transform didn't find, in the confusion matrix for your transform.

          • ColumnImportances — (Array<map>)

            A list of ColumnImportance structures containing column importance metrics, sorted in order of descending importance.

            • ColumnName — (String)

              The name of a column.

            • Importance — (Float)

              The column importance score for the column, as a decimal.

      • LabelCount — (Integer)

        The number of labels available for this transform.

      • Schema — (Array<map>)

        The Map<Column, Type> object that represents the schema that this transform accepts. Has an upper bound of 100 columns.

        • Name — (String)

          The name of the column.

        • DataType — (String)

          The type of data in the column.

      • Role — (String)

        The name or Amazon Resource Name (ARN) of the IAM role with the required permissions.

      • GlueVersion — (String)

        This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see Glue Versions in the developer guide.

      • MaxCapacity — (Float)

        The number of Glue data processing units (DPUs) that are allocated to task runs for this transform. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

        When the WorkerType field is set to a value other than Standard, the MaxCapacity field is set automatically and becomes read-only.

      • WorkerType — (String)

        The type of predefined worker that is allocated when this task runs. Accepts a value of Standard, G.1X, or G.2X.

        • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

        • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

        • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

        Possible values include:
        • "Standard"
        • "G.1X"
        • "G.2X"
      • NumberOfWorkers — (Integer)

        The number of workers of a defined workerType that are allocated when this task runs.

      • Timeout — (Integer)

        The timeout for a task run for this transform in minutes. This is the maximum time that a task run for this transform can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).

      • MaxRetries — (Integer)

        The maximum number of times to retry a task for this transform after a task run fails.

      • TransformEncryption — (map)

        The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.

        • MlUserDataEncryption — (map)

          An MLUserDataEncryption object containing the encryption mode and customer-provided KMS key ID.

          • MlUserDataEncryptionModerequired — (String)

            The encryption mode applied to user data. Valid values are:

            • DISABLED: encryption is disabled

            • SSEKMS: use of server-side encryption with Key Management Service (SSE-KMS) for user data stored in Amazon S3.

            Possible values include:
            • "DISABLED"
            • "SSE-KMS"
          • KmsKeyId — (String)

            The ID for the customer-provided KMS key.

        • TaskRunSecurityConfigurationName — (String)

          The name of the security configuration.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getMLTransforms(params = {}, callback) ⇒ AWS.Request

Gets a sortable, filterable list of existing Glue machine learning transforms. Machine learning transforms are a special type of transform that use machine learning to learn the details of the transformation to be performed by learning from examples provided by humans. These transformations are then saved by Glue, and you can retrieve their metadata by calling GetMLTransforms.

Service Reference:

Examples:

Calling the getMLTransforms operation

var params = {
  Filter: {
    CreatedAfter: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    CreatedBefore: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    GlueVersion: 'STRING_VALUE',
    LastModifiedAfter: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    LastModifiedBefore: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    Name: 'STRING_VALUE',
    Schema: [
      {
        DataType: 'STRING_VALUE',
        Name: 'STRING_VALUE'
      },
      /* more items */
    ],
    Status: NOT_READY | READY | DELETING,
    TransformType: FIND_MATCHES
  },
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  Sort: {
    Column: NAME | TRANSFORM_TYPE | STATUS | CREATED | LAST_MODIFIED, /* required */
    SortDirection: DESCENDING | ASCENDING /* required */
  }
};
glue.getMLTransforms(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      A paginated token to offset the results.

    • MaxResults — (Integer)

      The maximum number of results to return.

    • Filter — (map)

      The filter transformation criteria.

      • Name — (String)

        A unique transform name that is used to filter the machine learning transforms.

      • TransformType — (String)

        The type of machine learning transform that is used to filter the machine learning transforms.

        Possible values include:
        • "FIND_MATCHES"
      • Status — (String)

        Filters the list of machine learning transforms by the last known status of the transforms (to indicate whether a transform can be used or not). One of "NOT_READY", "READY", or "DELETING".

        Possible values include:
        • "NOT_READY"
        • "READY"
        • "DELETING"
      • GlueVersion — (String)

        This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see Glue Versions in the developer guide.

      • CreatedBefore — (Date)

        The time and date before which the transforms were created.

      • CreatedAfter — (Date)

        The time and date after which the transforms were created.

      • LastModifiedBefore — (Date)

        Filter on transforms last modified before this date.

      • LastModifiedAfter — (Date)

        Filter on transforms last modified after this date.

      • Schema — (Array<map>)

        Filters on datasets with a specific schema. The Map<Column, Type> object is an array of key-value pairs representing the schema this transform accepts, where Column is the name of a column, and Type is the type of the data such as an integer or string. Has an upper bound of 100 columns.

        • Name — (String)

          The name of the column.

        • DataType — (String)

          The type of data in the column.

    • Sort — (map)

      The sorting criteria.

      • Columnrequired — (String)

        The column to be used in the sorting criteria that are associated with the machine learning transform.

        Possible values include:
        • "NAME"
        • "TRANSFORM_TYPE"
        • "STATUS"
        • "CREATED"
        • "LAST_MODIFIED"
      • SortDirectionrequired — (String)

        The sort direction to be used in the sorting criteria that are associated with the machine learning transform.

        Possible values include:
        • "DESCENDING"
        • "ASCENDING"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Transforms — (Array<map>)

        A list of machine learning transforms.

        • TransformId — (String)

          The unique transform ID that is generated for the machine learning transform. The ID is guaranteed to be unique and does not change.

        • Name — (String)

          A user-defined name for the machine learning transform. Names are not guaranteed unique and can be changed at any time.

        • Description — (String)

          A user-defined, long-form description text for the machine learning transform. Descriptions are not guaranteed to be unique and can be changed at any time.

        • Status — (String)

          The current status of the machine learning transform.

          Possible values include:
          • "NOT_READY"
          • "READY"
          • "DELETING"
        • CreatedOn — (Date)

          A timestamp. The time and date that this machine learning transform was created.

        • LastModifiedOn — (Date)

          A timestamp. The last point in time when this machine learning transform was modified.

        • InputRecordTables — (Array<map>)

          A list of Glue table definitions used by the transform.

          • DatabaseNamerequired — (String)

            A database name in the Glue Data Catalog.

          • TableNamerequired — (String)

            A table name in the Glue Data Catalog.

          • CatalogId — (String)

            A unique identifier for the Glue Data Catalog.

          • ConnectionName — (String)

            The name of the connection to the Glue Data Catalog.

        • Parameters — (map)

          A TransformParameters object. You can use parameters to tune (customize) the behavior of the machine learning transform by specifying what data it learns from and your preference on various tradeoffs (such as precious vs. recall, or accuracy vs. cost).

          • TransformTyperequired — (String)

            The type of machine learning transform.

            For information about the types of machine learning transforms, see Creating Machine Learning Transforms.

            Possible values include:
            • "FIND_MATCHES"
          • FindMatchesParameters — (map)

            The parameters for the find matches algorithm.

            • PrimaryKeyColumnName — (String)

              The name of a column that uniquely identifies rows in the source table. Used to help identify matching records.

            • PrecisionRecallTradeoff — (Float)

              The value selected when tuning your transform for a balance between precision and recall. A value of 0.5 means no preference; a value of 1.0 means a bias purely for precision, and a value of 0.0 means a bias for recall. Because this is a tradeoff, choosing values close to 1.0 means very low recall, and choosing values close to 0.0 results in very low precision.

              The precision metric indicates how often your model is correct when it predicts a match.

              The recall metric indicates that for an actual match, how often your model predicts the match.

            • AccuracyCostTradeoff — (Float)

              The value that is selected when tuning your transform for a balance between accuracy and cost. A value of 0.5 means that the system balances accuracy and cost concerns. A value of 1.0 means a bias purely for accuracy, which typically results in a higher cost, sometimes substantially higher. A value of 0.0 means a bias purely for cost, which results in a less accurate FindMatches transform, sometimes with unacceptable accuracy.

              Accuracy measures how well the transform finds true positives and true negatives. Increasing accuracy requires more machine resources and cost. But it also results in increased recall.

              Cost measures how many compute resources, and thus money, are consumed to run the transform.

            • EnforceProvidedLabels — (Boolean)

              The value to switch on or off to force the output to match the provided labels from users. If the value is True, the find matches transform forces the output to match the provided labels. The results override the normal conflation results. If the value is False, the find matches transform does not ensure all the labels provided are respected, and the results rely on the trained model.

              Note that setting this value to true may increase the conflation execution time.

        • EvaluationMetrics — (map)

          An EvaluationMetrics object. Evaluation metrics provide an estimate of the quality of your machine learning transform.

          • TransformTyperequired — (String)

            The type of machine learning transform.

            Possible values include:
            • "FIND_MATCHES"
          • FindMatchesMetrics — (map)

            The evaluation metrics for the find matches algorithm.

            • AreaUnderPRCurve — (Float)

              The area under the precision/recall curve (AUPRC) is a single number measuring the overall quality of the transform, that is independent of the choice made for precision vs. recall. Higher values indicate that you have a more attractive precision vs. recall tradeoff.

              For more information, see Precision and recall in Wikipedia.

            • Precision — (Float)

              The precision metric indicates when often your transform is correct when it predicts a match. Specifically, it measures how well the transform finds true positives from the total true positives possible.

              For more information, see Precision and recall in Wikipedia.

            • Recall — (Float)

              The recall metric indicates that for an actual match, how often your transform predicts the match. Specifically, it measures how well the transform finds true positives from the total records in the source data.

              For more information, see Precision and recall in Wikipedia.

            • F1 — (Float)

              The maximum F1 metric indicates the transform's accuracy between 0 and 1, where 1 is the best accuracy.

              For more information, see F1 score in Wikipedia.

            • ConfusionMatrix — (map)

              The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making.

              For more information, see Confusion matrix in Wikipedia.

              • NumTruePositives — (Integer)

                The number of matches in the data that the transform correctly found, in the confusion matrix for your transform.

              • NumFalsePositives — (Integer)

                The number of nonmatches in the data that the transform incorrectly classified as a match, in the confusion matrix for your transform.

              • NumTrueNegatives — (Integer)

                The number of nonmatches in the data that the transform correctly rejected, in the confusion matrix for your transform.

              • NumFalseNegatives — (Integer)

                The number of matches in the data that the transform didn't find, in the confusion matrix for your transform.

            • ColumnImportances — (Array<map>)

              A list of ColumnImportance structures containing column importance metrics, sorted in order of descending importance.

              • ColumnName — (String)

                The name of a column.

              • Importance — (Float)

                The column importance score for the column, as a decimal.

        • LabelCount — (Integer)

          A count identifier for the labeling files generated by Glue for this transform. As you create a better transform, you can iteratively download, label, and upload the labeling file.

        • Schema — (Array<map>)

          A map of key-value pairs representing the columns and data types that this transform can run against. Has an upper bound of 100 columns.

          • Name — (String)

            The name of the column.

          • DataType — (String)

            The type of data in the column.

        • Role — (String)

          The name or Amazon Resource Name (ARN) of the IAM role with the required permissions. The required permissions include both Glue service role permissions to Glue resources, and Amazon S3 permissions required by the transform.

          • This role needs Glue service role permissions to allow access to resources in Glue. See Attach a Policy to IAM Users That Access Glue.

          • This role needs permission to your Amazon Simple Storage Service (Amazon S3) sources, targets, temporary directory, scripts, and any libraries used by the task run for this transform.

        • GlueVersion — (String)

          This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see Glue Versions in the developer guide.

        • MaxCapacity — (Float)

          The number of Glue data processing units (DPUs) that are allocated to task runs for this transform. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

          MaxCapacity is a mutually exclusive option with NumberOfWorkers and WorkerType.

          • If either NumberOfWorkers or WorkerType is set, then MaxCapacity cannot be set.

          • If MaxCapacity is set then neither NumberOfWorkers or WorkerType can be set.

          • If WorkerType is set, then NumberOfWorkers is required (and vice versa).

          • MaxCapacity and NumberOfWorkers must both be at least 1.

          When the WorkerType field is set to a value other than Standard, the MaxCapacity field is set automatically and becomes read-only.

        • WorkerType — (String)

          The type of predefined worker that is allocated when a task of this transform runs. Accepts a value of Standard, G.1X, or G.2X.

          • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

          • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

          • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

          MaxCapacity is a mutually exclusive option with NumberOfWorkers and WorkerType.

          • If either NumberOfWorkers or WorkerType is set, then MaxCapacity cannot be set.

          • If MaxCapacity is set then neither NumberOfWorkers or WorkerType can be set.

          • If WorkerType is set, then NumberOfWorkers is required (and vice versa).

          • MaxCapacity and NumberOfWorkers must both be at least 1.

          Possible values include:
          • "Standard"
          • "G.1X"
          • "G.2X"
        • NumberOfWorkers — (Integer)

          The number of workers of a defined workerType that are allocated when a task of the transform runs.

          If WorkerType is set, then NumberOfWorkers is required (and vice versa).

        • Timeout — (Integer)

          The timeout in minutes of the machine learning transform.

        • MaxRetries — (Integer)

          The maximum number of times to retry after an MLTaskRun of the machine learning transform fails.

        • TransformEncryption — (map)

          The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.

          • MlUserDataEncryption — (map)

            An MLUserDataEncryption object containing the encryption mode and customer-provided KMS key ID.

            • MlUserDataEncryptionModerequired — (String)

              The encryption mode applied to user data. Valid values are:

              • DISABLED: encryption is disabled

              • SSEKMS: use of server-side encryption with Key Management Service (SSE-KMS) for user data stored in Amazon S3.

              Possible values include:
              • "DISABLED"
              • "SSE-KMS"
            • KmsKeyId — (String)

              The ID for the customer-provided KMS key.

          • TaskRunSecurityConfigurationName — (String)

            The name of the security configuration.

      • NextToken — (String)

        A pagination token, if more results are available.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getPartition(params = {}, callback) ⇒ AWS.Request

Retrieves information about a specified partition.

Service Reference:

Examples:

Calling the getPartition operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  PartitionValues: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.getPartition(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the partition in question resides. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the partition resides.

    • TableName — (String)

      The name of the partition's table.

    • PartitionValues — (Array<String>)

      The values that define the partition.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Partition — (map)

        The requested information, in the form of a Partition object.

        • Values — (Array<String>)

          The values of the partition.

        • DatabaseName — (String)

          The name of the catalog database in which to create the partition.

        • TableName — (String)

          The name of the database table in which to create the partition.

        • CreationTime — (Date)

          The time at which the partition was created.

        • LastAccessTime — (Date)

          The last time at which the partition was accessed.

        • StorageDescriptor — (map)

          Provides information about the physical location where the partition is stored.

          • Columns — (Array<map>)

            A list of the Columns in the table.

            • Namerequired — (String)

              The name of the Column.

            • Type — (String)

              The data type of the Column.

            • Comment — (String)

              A free-form text comment.

            • Parameters — (map<String>)

              These key-value pairs define properties associated with the column.

          • Location — (String)

            The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

          • InputFormat — (String)

            The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

          • OutputFormat — (String)

            The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

          • Compressed — (Boolean)

            True if the data in the table is compressed, or False if not.

          • NumberOfBuckets — (Integer)

            Must be specified if the table contains any dimension columns.

          • SerdeInfo — (map)

            The serialization/deserialization (SerDe) information.

            • Name — (String)

              Name of the SerDe.

            • SerializationLibrary — (String)

              Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

            • Parameters — (map<String>)

              These key-value pairs define initialization parameters for the SerDe.

          • BucketColumns — (Array<String>)

            A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

          • SortColumns — (Array<map>)

            A list specifying the sort order of each bucket in the table.

            • Columnrequired — (String)

              The name of the column.

            • SortOrderrequired — (Integer)

              Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

          • Parameters — (map<String>)

            The user-supplied properties in key-value form.

          • SkewedInfo — (map)

            The information about values that appear frequently in a column (skewed values).

            • SkewedColumnNames — (Array<String>)

              A list of names of columns that contain skewed values.

            • SkewedColumnValues — (Array<String>)

              A list of values that appear so frequently as to be considered skewed.

            • SkewedColumnValueLocationMaps — (map<String>)

              A mapping of skewed values to the columns that contain them.

          • StoredAsSubDirectories — (Boolean)

            True if the table data is stored in subdirectories, or False if not.

          • SchemaReference — (map)

            An object that references a schema stored in the Glue Schema Registry.

            When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

            • SchemaId — (map)

              A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

              • SchemaArn — (String)

                The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

              • SchemaName — (String)

                The name of the schema. One of SchemaArn or SchemaName has to be provided.

              • RegistryName — (String)

                The name of the schema registry that contains the schema.

            • SchemaVersionId — (String)

              The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

            • SchemaVersionNumber — (Integer)

              The version number of the schema.

        • Parameters — (map<String>)

          These key-value pairs define partition parameters.

        • LastAnalyzedTime — (Date)

          The last time at which column statistics were computed for this partition.

        • CatalogId — (String)

          The ID of the Data Catalog in which the partition resides.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getPartitionIndexes(params = {}, callback) ⇒ AWS.Request

Retrieves the partition indexes associated with a table.

Service Reference:

Examples:

Calling the getPartitionIndexes operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getPartitionIndexes(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The catalog ID where the table resides.

    • DatabaseName — (String)

      Specifies the name of a database from which you want to retrieve partition indexes.

    • TableName — (String)

      Specifies the name of a table for which you want to retrieve the partition indexes.

    • NextToken — (String)

      A continuation token, included if this is a continuation call.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • PartitionIndexDescriptorList — (Array<map>)

        A list of index descriptors.

        • IndexNamerequired — (String)

          The name of the partition index.

        • Keysrequired — (Array<map>)

          A list of one or more keys, as KeySchemaElement structures, for the partition index.

          • Namerequired — (String)

            The name of a partition key.

          • Typerequired — (String)

            The type of a partition key.

        • IndexStatusrequired — (String)

          The status of the partition index.

          The possible statuses are:

          • CREATING: The index is being created. When an index is in a CREATING state, the index or its table cannot be deleted.

          • ACTIVE: The index creation succeeds.

          • FAILED: The index creation fails.

          • DELETING: The index is deleted from the list of indexes.

          Possible values include:
          • "CREATING"
          • "ACTIVE"
          • "DELETING"
          • "FAILED"
        • BackfillErrors — (Array<map>)

          A list of errors that can occur when registering partition indexes for an existing table.

          • Code — (String)

            The error code for an error that occurred when registering partition indexes for an existing table.

            Possible values include:
            • "ENCRYPTED_PARTITION_ERROR"
            • "INTERNAL_ERROR"
            • "INVALID_PARTITION_TYPE_DATA_ERROR"
            • "MISSING_PARTITION_VALUE_ERROR"
            • "UNSUPPORTED_PARTITION_CHARACTER_ERROR"
          • Partitions — (Array<map>)

            A list of a limited number of partitions in the response.

            • Valuesrequired — (Array<String>)

              The list of values.

      • NextToken — (String)

        A continuation token, present if the current list segment is not the last.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getPartitions(params = {}, callback) ⇒ AWS.Request

Retrieves information about the partitions in a table.

Service Reference:

Examples:

Calling the getPartitions operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE',
  ExcludeColumnSchema: true || false,
  Expression: 'STRING_VALUE',
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  Segment: {
    SegmentNumber: 'NUMBER_VALUE', /* required */
    TotalSegments: 'NUMBER_VALUE' /* required */
  }
};
glue.getPartitions(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the partitions in question reside. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the partitions reside.

    • TableName — (String)

      The name of the partitions' table.

    • Expression — (String)

      An expression that filters the partitions to be returned.

      The expression uses SQL syntax similar to the SQL WHERE filter clause. The SQL statement parser JSQLParser parses the expression.

      Operators: The following are the operators that you can use in the Expression API call:

      =

      Checks whether the values of the two operands are equal; if yes, then the condition becomes true.

      Example: Assume 'variable a' holds 10 and 'variable b' holds 20.

      (a = b) is not true.

      < >

      Checks whether the values of two operands are equal; if the values are not equal, then the condition becomes true.

      Example: (a < > b) is true.

      >

      Checks whether the value of the left operand is greater than the value of the right operand; if yes, then the condition becomes true.

      Example: (a > b) is not true.

      <

      Checks whether the value of the left operand is less than the value of the right operand; if yes, then the condition becomes true.

      Example: (a < b) is true.

      >=

      Checks whether the value of the left operand is greater than or equal to the value of the right operand; if yes, then the condition becomes true.

      Example: (a >= b) is not true.

      <=

      Checks whether the value of the left operand is less than or equal to the value of the right operand; if yes, then the condition becomes true.

      Example: (a <= b) is true.

      AND, OR, IN, BETWEEN, LIKE, NOT, IS NULL

      Logical operators.

      Supported Partition Key Types: The following are the supported partition keys.

      • string

      • date

      • timestamp

      • int

      • bigint

      • long

      • tinyint

      • smallint

      • decimal

      If an type is encountered that is not valid, an exception is thrown.

      The following list shows the valid operators on each type. When you define a crawler, the partitionKey type is created as a STRING, to be compatible with the catalog partitions.

      Sample API Call:

    • NextToken — (String)

      A continuation token, if this is not the first call to retrieve these partitions.

    • Segment — (map)

      The segment of the table's partitions to scan in this request.

      • SegmentNumberrequired — (Integer)

        The zero-based index number of the segment. For example, if the total number of segments is 4, SegmentNumber values range from 0 through 3.

      • TotalSegmentsrequired — (Integer)

        The total number of segments.

    • MaxResults — (Integer)

      The maximum number of partitions to return in a single response.

    • ExcludeColumnSchema — (Boolean)

      When true, specifies not returning the partition column schema. Useful when you are interested only in other partition attributes such as partition values or location. This approach avoids the problem of a large response by not returning duplicate data.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Partitions — (Array<map>)

        A list of requested partitions.

        • Values — (Array<String>)

          The values of the partition.

        • DatabaseName — (String)

          The name of the catalog database in which to create the partition.

        • TableName — (String)

          The name of the database table in which to create the partition.

        • CreationTime — (Date)

          The time at which the partition was created.

        • LastAccessTime — (Date)

          The last time at which the partition was accessed.

        • StorageDescriptor — (map)

          Provides information about the physical location where the partition is stored.

          • Columns — (Array<map>)

            A list of the Columns in the table.

            • Namerequired — (String)

              The name of the Column.

            • Type — (String)

              The data type of the Column.

            • Comment — (String)

              A free-form text comment.

            • Parameters — (map<String>)

              These key-value pairs define properties associated with the column.

          • Location — (String)

            The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

          • InputFormat — (String)

            The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

          • OutputFormat — (String)

            The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

          • Compressed — (Boolean)

            True if the data in the table is compressed, or False if not.

          • NumberOfBuckets — (Integer)

            Must be specified if the table contains any dimension columns.

          • SerdeInfo — (map)

            The serialization/deserialization (SerDe) information.

            • Name — (String)

              Name of the SerDe.

            • SerializationLibrary — (String)

              Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

            • Parameters — (map<String>)

              These key-value pairs define initialization parameters for the SerDe.

          • BucketColumns — (Array<String>)

            A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

          • SortColumns — (Array<map>)

            A list specifying the sort order of each bucket in the table.

            • Columnrequired — (String)

              The name of the column.

            • SortOrderrequired — (Integer)

              Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

          • Parameters — (map<String>)

            The user-supplied properties in key-value form.

          • SkewedInfo — (map)

            The information about values that appear frequently in a column (skewed values).

            • SkewedColumnNames — (Array<String>)

              A list of names of columns that contain skewed values.

            • SkewedColumnValues — (Array<String>)

              A list of values that appear so frequently as to be considered skewed.

            • SkewedColumnValueLocationMaps — (map<String>)

              A mapping of skewed values to the columns that contain them.

          • StoredAsSubDirectories — (Boolean)

            True if the table data is stored in subdirectories, or False if not.

          • SchemaReference — (map)

            An object that references a schema stored in the Glue Schema Registry.

            When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

            • SchemaId — (map)

              A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

              • SchemaArn — (String)

                The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

              • SchemaName — (String)

                The name of the schema. One of SchemaArn or SchemaName has to be provided.

              • RegistryName — (String)

                The name of the schema registry that contains the schema.

            • SchemaVersionId — (String)

              The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

            • SchemaVersionNumber — (Integer)

              The version number of the schema.

        • Parameters — (map<String>)

          These key-value pairs define partition parameters.

        • LastAnalyzedTime — (Date)

          The last time at which column statistics were computed for this partition.

        • CatalogId — (String)

          The ID of the Data Catalog in which the partition resides.

      • NextToken — (String)

        A continuation token, if the returned list of partitions does not include the last one.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getPlan(params = {}, callback) ⇒ AWS.Request

Gets code to perform a specified mapping.

Service Reference:

Examples:

Calling the getPlan operation

var params = {
  Mapping: [ /* required */
    {
      SourcePath: 'STRING_VALUE',
      SourceTable: 'STRING_VALUE',
      SourceType: 'STRING_VALUE',
      TargetPath: 'STRING_VALUE',
      TargetTable: 'STRING_VALUE',
      TargetType: 'STRING_VALUE'
    },
    /* more items */
  ],
  Source: { /* required */
    DatabaseName: 'STRING_VALUE', /* required */
    TableName: 'STRING_VALUE' /* required */
  },
  AdditionalPlanOptionsMap: {
    '<GenericString>': 'STRING_VALUE',
    /* '<GenericString>': ... */
  },
  Language: PYTHON | SCALA,
  Location: {
    DynamoDB: [
      {
        Name: 'STRING_VALUE', /* required */
        Value: 'STRING_VALUE', /* required */
        Param: true || false
      },
      /* more items */
    ],
    Jdbc: [
      {
        Name: 'STRING_VALUE', /* required */
        Value: 'STRING_VALUE', /* required */
        Param: true || false
      },
      /* more items */
    ],
    S3: [
      {
        Name: 'STRING_VALUE', /* required */
        Value: 'STRING_VALUE', /* required */
        Param: true || false
      },
      /* more items */
    ]
  },
  Sinks: [
    {
      DatabaseName: 'STRING_VALUE', /* required */
      TableName: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
glue.getPlan(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Mapping — (Array<map>)

      The list of mappings from a source table to target tables.

      • SourceTable — (String)

        The name of the source table.

      • SourcePath — (String)

        The source path.

      • SourceType — (String)

        The source type.

      • TargetTable — (String)

        The target table.

      • TargetPath — (String)

        The target path.

      • TargetType — (String)

        The target type.

    • Source — (map)

      The source table.

      • DatabaseNamerequired — (String)

        The database in which the table metadata resides.

      • TableNamerequired — (String)

        The name of the table in question.

    • Sinks — (Array<map>)

      The target tables.

      • DatabaseNamerequired — (String)

        The database in which the table metadata resides.

      • TableNamerequired — (String)

        The name of the table in question.

    • Location — (map)

      The parameters for the mapping.

      • Jdbc — (Array<map>)

        A JDBC location.

        • Namerequired — (String)

          The name of the argument or property.

        • Valuerequired — (String)

          The value of the argument or property.

        • Param — (Boolean)

          True if the value is used as a parameter.

      • S3 — (Array<map>)

        An Amazon Simple Storage Service (Amazon S3) location.

        • Namerequired — (String)

          The name of the argument or property.

        • Valuerequired — (String)

          The value of the argument or property.

        • Param — (Boolean)

          True if the value is used as a parameter.

      • DynamoDB — (Array<map>)

        An Amazon DynamoDB table location.

        • Namerequired — (String)

          The name of the argument or property.

        • Valuerequired — (String)

          The value of the argument or property.

        • Param — (Boolean)

          True if the value is used as a parameter.

    • Language — (String)

      The programming language of the code to perform the mapping.

      Possible values include:
      • "PYTHON"
      • "SCALA"
    • AdditionalPlanOptionsMap — (map<String>)

      A map to hold additional optional key-value parameters.

      Currently, these key-value pairs are supported:

      • inferSchema  —  Specifies whether to set inferSchema to true or false for the default script generated by an Glue job. For example, to set inferSchema to true, pass the following key value pair:

        --additional-plan-options-map '{"inferSchema":"true"}'

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • PythonScript — (String)

        A Python script to perform the mapping.

      • ScalaCode — (String)

        The Scala code to perform the mapping.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getRegistry(params = {}, callback) ⇒ AWS.Request

Describes the specified registry in detail.

Service Reference:

Examples:

Calling the getRegistry operation

var params = {
  RegistryId: { /* required */
    RegistryArn: 'STRING_VALUE',
    RegistryName: 'STRING_VALUE'
  }
};
glue.getRegistry(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • RegistryId — (map)

      This is a wrapper structure that may contain the registry name and Amazon Resource Name (ARN).

      • RegistryName — (String)

        Name of the registry. Used only for lookup. One of RegistryArn or RegistryName has to be provided.

      • RegistryArn — (String)

        Arn of the registry to be updated. One of RegistryArn or RegistryName has to be provided.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RegistryName — (String)

        The name of the registry.

      • RegistryArn — (String)

        The Amazon Resource Name (ARN) of the registry.

      • Description — (String)

        A description of the registry.

      • Status — (String)

        The status of the registry.

        Possible values include:
        • "AVAILABLE"
        • "DELETING"
      • CreatedTime — (String)

        The date and time the registry was created.

      • UpdatedTime — (String)

        The date and time the registry was updated.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getResourcePolicies(params = {}, callback) ⇒ AWS.Request

Retrieves the resource policies set on individual resources by Resource Access Manager during cross-account permission grants. Also retrieves the Data Catalog resource policy.

If you enabled metadata encryption in Data Catalog settings, and you do not have permission on the KMS key, the operation can't return the Data Catalog resource policy.

Service Reference:

Examples:

Calling the getResourcePolicies operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getResourcePolicies(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      A continuation token, if this is a continuation request.

    • MaxResults — (Integer)

      The maximum size of a list to return.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • GetResourcePoliciesResponseList — (Array<map>)

        A list of the individual resource policies and the account-level resource policy.

        • PolicyInJson — (String)

          Contains the requested policy document, in JSON format.

        • PolicyHash — (String)

          Contains the hash value associated with this policy.

        • CreateTime — (Date)

          The date and time at which the policy was created.

        • UpdateTime — (Date)

          The date and time at which the policy was last updated.

      • NextToken — (String)

        A continuation token, if the returned list does not contain the last resource policy available.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getResourcePolicy(params = {}, callback) ⇒ AWS.Request

Retrieves a specified resource policy.

Service Reference:

Examples:

Calling the getResourcePolicy operation

var params = {
  ResourceArn: 'STRING_VALUE'
};
glue.getResourcePolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResourceArn — (String)

      The ARN of the Glue resource for which to retrieve the resource policy. If not supplied, the Data Catalog resource policy is returned. Use GetResourcePolicies to view all existing resource policies. For more information see Specifying Glue Resource ARNs.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • PolicyInJson — (String)

        Contains the requested policy document, in JSON format.

      • PolicyHash — (String)

        Contains the hash value associated with this policy.

      • CreateTime — (Date)

        The date and time at which the policy was created.

      • UpdateTime — (Date)

        The date and time at which the policy was last updated.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getSchema(params = {}, callback) ⇒ AWS.Request

Describes the specified schema in detail.

Service Reference:

Examples:

Calling the getSchema operation

var params = {
  SchemaId: { /* required */
    RegistryName: 'STRING_VALUE',
    SchemaArn: 'STRING_VALUE',
    SchemaName: 'STRING_VALUE'
  }
};
glue.getSchema(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • SchemaId — (map)

      This is a wrapper structure to contain schema identity fields. The structure contains:

      • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

      • SchemaId$SchemaName: The name of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaName — (String)

        The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • RegistryName — (String)

        The name of the schema registry that contains the schema.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RegistryName — (String)

        The name of the registry.

      • RegistryArn — (String)

        The Amazon Resource Name (ARN) of the registry.

      • SchemaName — (String)

        The name of the schema.

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema.

      • Description — (String)

        A description of schema if specified when created

      • DataFormat — (String)

        The data format of the schema definition. Currently AVRO and JSON are supported.

        Possible values include:
        • "AVRO"
        • "JSON"
      • Compatibility — (String)

        The compatibility mode of the schema.

        Possible values include:
        • "NONE"
        • "DISABLED"
        • "BACKWARD"
        • "BACKWARD_ALL"
        • "FORWARD"
        • "FORWARD_ALL"
        • "FULL"
        • "FULL_ALL"
      • SchemaCheckpoint — (Integer)

        The version number of the checkpoint (the last time the compatibility mode was changed).

      • LatestSchemaVersion — (Integer)

        The latest version of the schema associated with the returned schema definition.

      • NextSchemaVersion — (Integer)

        The next version of the schema associated with the returned schema definition.

      • SchemaStatus — (String)

        The status of the schema.

        Possible values include:
        • "AVAILABLE"
        • "PENDING"
        • "DELETING"
      • CreatedTime — (String)

        The date and time the schema was created.

      • UpdatedTime — (String)

        The date and time the schema was updated.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getSchemaByDefinition(params = {}, callback) ⇒ AWS.Request

Retrieves a schema by the SchemaDefinition. The schema definition is sent to the Schema Registry, canonicalized, and hashed. If the hash is matched within the scope of the SchemaName or ARN (or the default registry, if none is supplied), that schema’s metadata is returned. Otherwise, a 404 or NotFound error is returned. Schema versions in Deleted statuses will not be included in the results.

Service Reference:

Examples:

Calling the getSchemaByDefinition operation

var params = {
  SchemaDefinition: 'STRING_VALUE', /* required */
  SchemaId: { /* required */
    RegistryName: 'STRING_VALUE',
    SchemaArn: 'STRING_VALUE',
    SchemaName: 'STRING_VALUE'
  }
};
glue.getSchemaByDefinition(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • SchemaId — (map)

      This is a wrapper structure to contain schema identity fields. The structure contains:

      • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaId$SchemaName: The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaName — (String)

        The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • RegistryName — (String)

        The name of the schema registry that contains the schema.

    • SchemaDefinition — (String)

      The definition of the schema for which schema details are required.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • SchemaVersionId — (String)

        The schema ID of the schema version.

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema.

      • DataFormat — (String)

        The data format of the schema definition. Currently only AVRO and JSON are supported.

        Possible values include:
        • "AVRO"
        • "JSON"
      • Status — (String)

        The status of the schema version.

        Possible values include:
        • "AVAILABLE"
        • "PENDING"
        • "FAILURE"
        • "DELETING"
      • CreatedTime — (String)

        The date and time the schema was created.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getSchemaVersion(params = {}, callback) ⇒ AWS.Request

Get the specified schema by its unique ID assigned when a version of the schema is created or registered. Schema versions in Deleted status will not be included in the results.

Service Reference:

Examples:

Calling the getSchemaVersion operation

var params = {
  SchemaId: {
    RegistryName: 'STRING_VALUE',
    SchemaArn: 'STRING_VALUE',
    SchemaName: 'STRING_VALUE'
  },
  SchemaVersionId: 'STRING_VALUE',
  SchemaVersionNumber: {
    LatestVersion: true || false,
    VersionNumber: 'NUMBER_VALUE'
  }
};
glue.getSchemaVersion(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • SchemaId — (map)

      This is a wrapper structure to contain schema identity fields. The structure contains:

      • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

      • SchemaId$SchemaName: The name of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaName — (String)

        The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • RegistryName — (String)

        The name of the schema registry that contains the schema.

    • SchemaVersionId — (String)

      The SchemaVersionId of the schema version. This field is required for fetching by schema ID. Either this or the SchemaId wrapper has to be provided.

    • SchemaVersionNumber — (map)

      The version number of the schema.

      • LatestVersion — (Boolean)

        The latest version available for the schema.

      • VersionNumber — (Integer)

        The version number of the schema.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • SchemaVersionId — (String)

        The SchemaVersionId of the schema version.

      • SchemaDefinition — (String)

        The schema definition for the schema ID.

      • DataFormat — (String)

        The data format of the schema definition. Currently AVRO and JSON are supported.

        Possible values include:
        • "AVRO"
        • "JSON"
      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema.

      • VersionNumber — (Integer)

        The version number of the schema.

      • Status — (String)

        The status of the schema version.

        Possible values include:
        • "AVAILABLE"
        • "PENDING"
        • "FAILURE"
        • "DELETING"
      • CreatedTime — (String)

        The date and time the schema version was created.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getSchemaVersionsDiff(params = {}, callback) ⇒ AWS.Request

Fetches the schema version difference in the specified difference type between two stored schema versions in the Schema Registry.

This API allows you to compare two schema versions between two schema definitions under the same schema.

Service Reference:

Examples:

Calling the getSchemaVersionsDiff operation

var params = {
  FirstSchemaVersionNumber: { /* required */
    LatestVersion: true || false,
    VersionNumber: 'NUMBER_VALUE'
  },
  SchemaDiffType: SYNTAX_DIFF, /* required */
  SchemaId: { /* required */
    RegistryName: 'STRING_VALUE',
    SchemaArn: 'STRING_VALUE',
    SchemaName: 'STRING_VALUE'
  },
  SecondSchemaVersionNumber: { /* required */
    LatestVersion: true || false,
    VersionNumber: 'NUMBER_VALUE'
  }
};
glue.getSchemaVersionsDiff(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • SchemaId — (map)

      This is a wrapper structure to contain schema identity fields. The structure contains:

      • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaId$SchemaName: The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaName — (String)

        The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • RegistryName — (String)

        The name of the schema registry that contains the schema.

    • FirstSchemaVersionNumber — (map)

      The first of the two schema versions to be compared.

      • LatestVersion — (Boolean)

        The latest version available for the schema.

      • VersionNumber — (Integer)

        The version number of the schema.

    • SecondSchemaVersionNumber — (map)

      The second of the two schema versions to be compared.

      • LatestVersion — (Boolean)

        The latest version available for the schema.

      • VersionNumber — (Integer)

        The version number of the schema.

    • SchemaDiffType — (String)

      Refers to SYNTAX_DIFF, which is the currently supported diff type.

      Possible values include:
      • "SYNTAX_DIFF"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Diff — (String)

        The difference between schemas as a string in JsonPatch format.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getSecurityConfiguration(params = {}, callback) ⇒ AWS.Request

Retrieves a specified security configuration.

Service Reference:

Examples:

Calling the getSecurityConfiguration operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.getSecurityConfiguration(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the security configuration to retrieve.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • SecurityConfiguration — (map)

        The requested security configuration.

        • Name — (String)

          The name of the security configuration.

        • CreatedTimeStamp — (Date)

          The time at which this security configuration was created.

        • EncryptionConfiguration — (map)

          The encryption configuration associated with this security configuration.

          • S3Encryption — (Array<map>)

            The encryption configuration for Amazon Simple Storage Service (Amazon S3) data.

            • S3EncryptionMode — (String)

              The encryption mode to use for Amazon S3 data.

              Possible values include:
              • "DISABLED"
              • "SSE-KMS"
              • "SSE-S3"
            • KmsKeyArn — (String)

              The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

          • CloudWatchEncryption — (map)

            The encryption configuration for Amazon CloudWatch.

            • CloudWatchEncryptionMode — (String)

              The encryption mode to use for CloudWatch data.

              Possible values include:
              • "DISABLED"
              • "SSE-KMS"
            • KmsKeyArn — (String)

              The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

          • JobBookmarksEncryption — (map)

            The encryption configuration for job bookmarks.

            • JobBookmarksEncryptionMode — (String)

              The encryption mode to use for job bookmarks data.

              Possible values include:
              • "DISABLED"
              • "CSE-KMS"
            • KmsKeyArn — (String)

              The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getSecurityConfigurations(params = {}, callback) ⇒ AWS.Request

Retrieves a list of all security configurations.

Service Reference:

Examples:

Calling the getSecurityConfigurations operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getSecurityConfigurations(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • MaxResults — (Integer)

      The maximum number of results to return.

    • NextToken — (String)

      A continuation token, if this is a continuation call.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • SecurityConfigurations — (Array<map>)

        A list of security configurations.

        • Name — (String)

          The name of the security configuration.

        • CreatedTimeStamp — (Date)

          The time at which this security configuration was created.

        • EncryptionConfiguration — (map)

          The encryption configuration associated with this security configuration.

          • S3Encryption — (Array<map>)

            The encryption configuration for Amazon Simple Storage Service (Amazon S3) data.

            • S3EncryptionMode — (String)

              The encryption mode to use for Amazon S3 data.

              Possible values include:
              • "DISABLED"
              • "SSE-KMS"
              • "SSE-S3"
            • KmsKeyArn — (String)

              The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

          • CloudWatchEncryption — (map)

            The encryption configuration for Amazon CloudWatch.

            • CloudWatchEncryptionMode — (String)

              The encryption mode to use for CloudWatch data.

              Possible values include:
              • "DISABLED"
              • "SSE-KMS"
            • KmsKeyArn — (String)

              The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

          • JobBookmarksEncryption — (map)

            The encryption configuration for job bookmarks.

            • JobBookmarksEncryptionMode — (String)

              The encryption mode to use for job bookmarks data.

              Possible values include:
              • "DISABLED"
              • "CSE-KMS"
            • KmsKeyArn — (String)

              The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

      • NextToken — (String)

        A continuation token, if there are more security configurations to return.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getTable(params = {}, callback) ⇒ AWS.Request

Retrieves the Table definition in a Data Catalog for a specified table.

Service Reference:

Examples:

Calling the getTable operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  Name: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.getTable(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase.

    • Name — (String)

      The name of the table for which to retrieve the definition. For Hive compatibility, this name is entirely lowercase.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Table — (map)

        The Table object that defines the specified table.

        • Namerequired — (String)

          The table name. For Hive compatibility, this must be entirely lowercase.

        • DatabaseName — (String)

          The name of the database where the table metadata resides. For Hive compatibility, this must be all lowercase.

        • Description — (String)

          A description of the table.

        • Owner — (String)

          The owner of the table.

        • CreateTime — (Date)

          The time when the table definition was created in the Data Catalog.

        • UpdateTime — (Date)

          The last time that the table was updated.

        • LastAccessTime — (Date)

          The last time that the table was accessed. This is usually taken from HDFS, and might not be reliable.

        • LastAnalyzedTime — (Date)

          The last time that column statistics were computed for this table.

        • Retention — (Integer)

          The retention time for this table.

        • StorageDescriptor — (map)

          A storage descriptor containing information about the physical storage of this table.

          • Columns — (Array<map>)

            A list of the Columns in the table.

            • Namerequired — (String)

              The name of the Column.

            • Type — (String)

              The data type of the Column.

            • Comment — (String)

              A free-form text comment.

            • Parameters — (map<String>)

              These key-value pairs define properties associated with the column.

          • Location — (String)

            The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

          • InputFormat — (String)

            The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

          • OutputFormat — (String)

            The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

          • Compressed — (Boolean)

            True if the data in the table is compressed, or False if not.

          • NumberOfBuckets — (Integer)

            Must be specified if the table contains any dimension columns.

          • SerdeInfo — (map)

            The serialization/deserialization (SerDe) information.

            • Name — (String)

              Name of the SerDe.

            • SerializationLibrary — (String)

              Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

            • Parameters — (map<String>)

              These key-value pairs define initialization parameters for the SerDe.

          • BucketColumns — (Array<String>)

            A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

          • SortColumns — (Array<map>)

            A list specifying the sort order of each bucket in the table.

            • Columnrequired — (String)

              The name of the column.

            • SortOrderrequired — (Integer)

              Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

          • Parameters — (map<String>)

            The user-supplied properties in key-value form.

          • SkewedInfo — (map)

            The information about values that appear frequently in a column (skewed values).

            • SkewedColumnNames — (Array<String>)

              A list of names of columns that contain skewed values.

            • SkewedColumnValues — (Array<String>)

              A list of values that appear so frequently as to be considered skewed.

            • SkewedColumnValueLocationMaps — (map<String>)

              A mapping of skewed values to the columns that contain them.

          • StoredAsSubDirectories — (Boolean)

            True if the table data is stored in subdirectories, or False if not.

          • SchemaReference — (map)

            An object that references a schema stored in the Glue Schema Registry.

            When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

            • SchemaId — (map)

              A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

              • SchemaArn — (String)

                The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

              • SchemaName — (String)

                The name of the schema. One of SchemaArn or SchemaName has to be provided.

              • RegistryName — (String)

                The name of the schema registry that contains the schema.

            • SchemaVersionId — (String)

              The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

            • SchemaVersionNumber — (Integer)

              The version number of the schema.

        • PartitionKeys — (Array<map>)

          A list of columns by which the table is partitioned. Only primitive types are supported as partition keys.

          When you create a table used by Amazon Athena, and you do not specify any partitionKeys, you must at least set the value of partitionKeys to an empty list. For example:

          "PartitionKeys": []

          • Namerequired — (String)

            The name of the Column.

          • Type — (String)

            The data type of the Column.

          • Comment — (String)

            A free-form text comment.

          • Parameters — (map<String>)

            These key-value pairs define properties associated with the column.

        • ViewOriginalText — (String)

          If the table is a view, the original text of the view; otherwise null.

        • ViewExpandedText — (String)

          If the table is a view, the expanded text of the view; otherwise null.

        • TableType — (String)

          The type of this table (EXTERNAL_TABLE, VIRTUAL_VIEW, etc.).

        • Parameters — (map<String>)

          These key-value pairs define properties associated with the table.

        • CreatedBy — (String)

          The person or entity who created the table.

        • IsRegisteredWithLakeFormation — (Boolean)

          Indicates whether the table has been registered with Lake Formation.

        • TargetTable — (map)

          A TableIdentifier structure that describes a target table for resource linking.

          • CatalogId — (String)

            The ID of the Data Catalog in which the table resides.

          • DatabaseName — (String)

            The name of the catalog database that contains the target table.

          • Name — (String)

            The name of the target table.

        • CatalogId — (String)

          The ID of the Data Catalog in which the table resides.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getTables(params = {}, callback) ⇒ AWS.Request

Retrieves the definitions of some or all of the tables in a given Database.

Service Reference:

Examples:

Calling the getTables operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE',
  Expression: 'STRING_VALUE',
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getTables(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The database in the catalog whose tables to list. For Hive compatibility, this name is entirely lowercase.

    • Expression — (String)

      A regular expression pattern. If present, only those tables whose names match the pattern are returned.

    • NextToken — (String)

      A continuation token, included if this is a continuation call.

    • MaxResults — (Integer)

      The maximum number of tables to return in a single response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TableList — (Array<map>)

        A list of the requested Table objects.

        • Namerequired — (String)

          The table name. For Hive compatibility, this must be entirely lowercase.

        • DatabaseName — (String)

          The name of the database where the table metadata resides. For Hive compatibility, this must be all lowercase.

        • Description — (String)

          A description of the table.

        • Owner — (String)

          The owner of the table.

        • CreateTime — (Date)

          The time when the table definition was created in the Data Catalog.

        • UpdateTime — (Date)

          The last time that the table was updated.

        • LastAccessTime — (Date)

          The last time that the table was accessed. This is usually taken from HDFS, and might not be reliable.

        • LastAnalyzedTime — (Date)

          The last time that column statistics were computed for this table.

        • Retention — (Integer)

          The retention time for this table.

        • StorageDescriptor — (map)

          A storage descriptor containing information about the physical storage of this table.

          • Columns — (Array<map>)

            A list of the Columns in the table.

            • Namerequired — (String)

              The name of the Column.

            • Type — (String)

              The data type of the Column.

            • Comment — (String)

              A free-form text comment.

            • Parameters — (map<String>)

              These key-value pairs define properties associated with the column.

          • Location — (String)

            The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

          • InputFormat — (String)

            The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

          • OutputFormat — (String)

            The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

          • Compressed — (Boolean)

            True if the data in the table is compressed, or False if not.

          • NumberOfBuckets — (Integer)

            Must be specified if the table contains any dimension columns.

          • SerdeInfo — (map)

            The serialization/deserialization (SerDe) information.

            • Name — (String)

              Name of the SerDe.

            • SerializationLibrary — (String)

              Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

            • Parameters — (map<String>)

              These key-value pairs define initialization parameters for the SerDe.

          • BucketColumns — (Array<String>)

            A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

          • SortColumns — (Array<map>)

            A list specifying the sort order of each bucket in the table.

            • Columnrequired — (String)

              The name of the column.

            • SortOrderrequired — (Integer)

              Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

          • Parameters — (map<String>)

            The user-supplied properties in key-value form.

          • SkewedInfo — (map)

            The information about values that appear frequently in a column (skewed values).

            • SkewedColumnNames — (Array<String>)

              A list of names of columns that contain skewed values.

            • SkewedColumnValues — (Array<String>)

              A list of values that appear so frequently as to be considered skewed.

            • SkewedColumnValueLocationMaps — (map<String>)

              A mapping of skewed values to the columns that contain them.

          • StoredAsSubDirectories — (Boolean)

            True if the table data is stored in subdirectories, or False if not.

          • SchemaReference — (map)

            An object that references a schema stored in the Glue Schema Registry.

            When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

            • SchemaId — (map)

              A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

              • SchemaArn — (String)

                The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

              • SchemaName — (String)

                The name of the schema. One of SchemaArn or SchemaName has to be provided.

              • RegistryName — (String)

                The name of the schema registry that contains the schema.

            • SchemaVersionId — (String)

              The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

            • SchemaVersionNumber — (Integer)

              The version number of the schema.

        • PartitionKeys — (Array<map>)

          A list of columns by which the table is partitioned. Only primitive types are supported as partition keys.

          When you create a table used by Amazon Athena, and you do not specify any partitionKeys, you must at least set the value of partitionKeys to an empty list. For example:

          "PartitionKeys": []

          • Namerequired — (String)

            The name of the Column.

          • Type — (String)

            The data type of the Column.

          • Comment — (String)

            A free-form text comment.

          • Parameters — (map<String>)

            These key-value pairs define properties associated with the column.

        • ViewOriginalText — (String)

          If the table is a view, the original text of the view; otherwise null.

        • ViewExpandedText — (String)

          If the table is a view, the expanded text of the view; otherwise null.

        • TableType — (String)

          The type of this table (EXTERNAL_TABLE, VIRTUAL_VIEW, etc.).

        • Parameters — (map<String>)

          These key-value pairs define properties associated with the table.

        • CreatedBy — (String)

          The person or entity who created the table.

        • IsRegisteredWithLakeFormation — (Boolean)

          Indicates whether the table has been registered with Lake Formation.

        • TargetTable — (map)

          A TableIdentifier structure that describes a target table for resource linking.

          • CatalogId — (String)

            The ID of the Data Catalog in which the table resides.

          • DatabaseName — (String)

            The name of the catalog database that contains the target table.

          • Name — (String)

            The name of the target table.

        • CatalogId — (String)

          The ID of the Data Catalog in which the table resides.

      • NextToken — (String)

        A continuation token, present if the current list segment is not the last.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getTableVersion(params = {}, callback) ⇒ AWS.Request

Retrieves a specified version of a table.

Service Reference:

Examples:

Calling the getTableVersion operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE',
  VersionId: 'STRING_VALUE'
};
glue.getTableVersion(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase.

    • TableName — (String)

      The name of the table. For Hive compatibility, this name is entirely lowercase.

    • VersionId — (String)

      The ID value of the table version to be retrieved. A VersionID is a string representation of an integer. Each version is incremented by 1.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TableVersion — (map)

        The requested table version.

        • Table — (map)

          The table in question.

          • Namerequired — (String)

            The table name. For Hive compatibility, this must be entirely lowercase.

          • DatabaseName — (String)

            The name of the database where the table metadata resides. For Hive compatibility, this must be all lowercase.

          • Description — (String)

            A description of the table.

          • Owner — (String)

            The owner of the table.

          • CreateTime — (Date)

            The time when the table definition was created in the Data Catalog.

          • UpdateTime — (Date)

            The last time that the table was updated.

          • LastAccessTime — (Date)

            The last time that the table was accessed. This is usually taken from HDFS, and might not be reliable.

          • LastAnalyzedTime — (Date)

            The last time that column statistics were computed for this table.

          • Retention — (Integer)

            The retention time for this table.

          • StorageDescriptor — (map)

            A storage descriptor containing information about the physical storage of this table.

            • Columns — (Array<map>)

              A list of the Columns in the table.

              • Namerequired — (String)

                The name of the Column.

              • Type — (String)

                The data type of the Column.

              • Comment — (String)

                A free-form text comment.

              • Parameters — (map<String>)

                These key-value pairs define properties associated with the column.

            • Location — (String)

              The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

            • InputFormat — (String)

              The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

            • OutputFormat — (String)

              The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

            • Compressed — (Boolean)

              True if the data in the table is compressed, or False if not.

            • NumberOfBuckets — (Integer)

              Must be specified if the table contains any dimension columns.

            • SerdeInfo — (map)

              The serialization/deserialization (SerDe) information.

              • Name — (String)

                Name of the SerDe.

              • SerializationLibrary — (String)

                Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

              • Parameters — (map<String>)

                These key-value pairs define initialization parameters for the SerDe.

            • BucketColumns — (Array<String>)

              A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

            • SortColumns — (Array<map>)

              A list specifying the sort order of each bucket in the table.

              • Columnrequired — (String)

                The name of the column.

              • SortOrderrequired — (Integer)

                Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

            • Parameters — (map<String>)

              The user-supplied properties in key-value form.

            • SkewedInfo — (map)

              The information about values that appear frequently in a column (skewed values).

              • SkewedColumnNames — (Array<String>)

                A list of names of columns that contain skewed values.

              • SkewedColumnValues — (Array<String>)

                A list of values that appear so frequently as to be considered skewed.

              • SkewedColumnValueLocationMaps — (map<String>)

                A mapping of skewed values to the columns that contain them.

            • StoredAsSubDirectories — (Boolean)

              True if the table data is stored in subdirectories, or False if not.

            • SchemaReference — (map)

              An object that references a schema stored in the Glue Schema Registry.

              When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

              • SchemaId — (map)

                A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

                • SchemaArn — (String)

                  The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

                • SchemaName — (String)

                  The name of the schema. One of SchemaArn or SchemaName has to be provided.

                • RegistryName — (String)

                  The name of the schema registry that contains the schema.

              • SchemaVersionId — (String)

                The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

              • SchemaVersionNumber — (Integer)

                The version number of the schema.

          • PartitionKeys — (Array<map>)

            A list of columns by which the table is partitioned. Only primitive types are supported as partition keys.

            When you create a table used by Amazon Athena, and you do not specify any partitionKeys, you must at least set the value of partitionKeys to an empty list. For example:

            "PartitionKeys": []

            • Namerequired — (String)

              The name of the Column.

            • Type — (String)

              The data type of the Column.

            • Comment — (String)

              A free-form text comment.

            • Parameters — (map<String>)

              These key-value pairs define properties associated with the column.

          • ViewOriginalText — (String)

            If the table is a view, the original text of the view; otherwise null.

          • ViewExpandedText — (String)

            If the table is a view, the expanded text of the view; otherwise null.

          • TableType — (String)

            The type of this table (EXTERNAL_TABLE, VIRTUAL_VIEW, etc.).

          • Parameters — (map<String>)

            These key-value pairs define properties associated with the table.

          • CreatedBy — (String)

            The person or entity who created the table.

          • IsRegisteredWithLakeFormation — (Boolean)

            Indicates whether the table has been registered with Lake Formation.

          • TargetTable — (map)

            A TableIdentifier structure that describes a target table for resource linking.

            • CatalogId — (String)

              The ID of the Data Catalog in which the table resides.

            • DatabaseName — (String)

              The name of the catalog database that contains the target table.

            • Name — (String)

              The name of the target table.

          • CatalogId — (String)

            The ID of the Data Catalog in which the table resides.

        • VersionId — (String)

          The ID value that identifies this table version. A VersionId is a string representation of an integer. Each version is incremented by 1.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getTableVersions(params = {}, callback) ⇒ AWS.Request

Retrieves a list of strings that identify available versions of a specified table.

Service Reference:

Examples:

Calling the getTableVersions operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE',
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getTableVersions(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase.

    • TableName — (String)

      The name of the table. For Hive compatibility, this name is entirely lowercase.

    • NextToken — (String)

      A continuation token, if this is not the first call.

    • MaxResults — (Integer)

      The maximum number of table versions to return in one response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TableVersions — (Array<map>)

        A list of strings identifying available versions of the specified table.

        • Table — (map)

          The table in question.

          • Namerequired — (String)

            The table name. For Hive compatibility, this must be entirely lowercase.

          • DatabaseName — (String)

            The name of the database where the table metadata resides. For Hive compatibility, this must be all lowercase.

          • Description — (String)

            A description of the table.

          • Owner — (String)

            The owner of the table.

          • CreateTime — (Date)

            The time when the table definition was created in the Data Catalog.

          • UpdateTime — (Date)

            The last time that the table was updated.

          • LastAccessTime — (Date)

            The last time that the table was accessed. This is usually taken from HDFS, and might not be reliable.

          • LastAnalyzedTime — (Date)

            The last time that column statistics were computed for this table.

          • Retention — (Integer)

            The retention time for this table.

          • StorageDescriptor — (map)

            A storage descriptor containing information about the physical storage of this table.

            • Columns — (Array<map>)

              A list of the Columns in the table.

              • Namerequired — (String)

                The name of the Column.

              • Type — (String)

                The data type of the Column.

              • Comment — (String)

                A free-form text comment.

              • Parameters — (map<String>)

                These key-value pairs define properties associated with the column.

            • Location — (String)

              The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

            • InputFormat — (String)

              The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

            • OutputFormat — (String)

              The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

            • Compressed — (Boolean)

              True if the data in the table is compressed, or False if not.

            • NumberOfBuckets — (Integer)

              Must be specified if the table contains any dimension columns.

            • SerdeInfo — (map)

              The serialization/deserialization (SerDe) information.

              • Name — (String)

                Name of the SerDe.

              • SerializationLibrary — (String)

                Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

              • Parameters — (map<String>)

                These key-value pairs define initialization parameters for the SerDe.

            • BucketColumns — (Array<String>)

              A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

            • SortColumns — (Array<map>)

              A list specifying the sort order of each bucket in the table.

              • Columnrequired — (String)

                The name of the column.

              • SortOrderrequired — (Integer)

                Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

            • Parameters — (map<String>)

              The user-supplied properties in key-value form.

            • SkewedInfo — (map)

              The information about values that appear frequently in a column (skewed values).

              • SkewedColumnNames — (Array<String>)

                A list of names of columns that contain skewed values.

              • SkewedColumnValues — (Array<String>)

                A list of values that appear so frequently as to be considered skewed.

              • SkewedColumnValueLocationMaps — (map<String>)

                A mapping of skewed values to the columns that contain them.

            • StoredAsSubDirectories — (Boolean)

              True if the table data is stored in subdirectories, or False if not.

            • SchemaReference — (map)

              An object that references a schema stored in the Glue Schema Registry.

              When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

              • SchemaId — (map)

                A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

                • SchemaArn — (String)

                  The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

                • SchemaName — (String)

                  The name of the schema. One of SchemaArn or SchemaName has to be provided.

                • RegistryName — (String)

                  The name of the schema registry that contains the schema.

              • SchemaVersionId — (String)

                The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

              • SchemaVersionNumber — (Integer)

                The version number of the schema.

          • PartitionKeys — (Array<map>)

            A list of columns by which the table is partitioned. Only primitive types are supported as partition keys.

            When you create a table used by Amazon Athena, and you do not specify any partitionKeys, you must at least set the value of partitionKeys to an empty list. For example:

            "PartitionKeys": []

            • Namerequired — (String)

              The name of the Column.

            • Type — (String)

              The data type of the Column.

            • Comment — (String)

              A free-form text comment.

            • Parameters — (map<String>)

              These key-value pairs define properties associated with the column.

          • ViewOriginalText — (String)

            If the table is a view, the original text of the view; otherwise null.

          • ViewExpandedText — (String)

            If the table is a view, the expanded text of the view; otherwise null.

          • TableType — (String)

            The type of this table (EXTERNAL_TABLE, VIRTUAL_VIEW, etc.).

          • Parameters — (map<String>)

            These key-value pairs define properties associated with the table.

          • CreatedBy — (String)

            The person or entity who created the table.

          • IsRegisteredWithLakeFormation — (Boolean)

            Indicates whether the table has been registered with Lake Formation.

          • TargetTable — (map)

            A TableIdentifier structure that describes a target table for resource linking.

            • CatalogId — (String)

              The ID of the Data Catalog in which the table resides.

            • DatabaseName — (String)

              The name of the catalog database that contains the target table.

            • Name — (String)

              The name of the target table.

          • CatalogId — (String)

            The ID of the Data Catalog in which the table resides.

        • VersionId — (String)

          The ID value that identifies this table version. A VersionId is a string representation of an integer. Each version is incremented by 1.

      • NextToken — (String)

        A continuation token, if the list of available versions does not include the last one.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getTags(params = {}, callback) ⇒ AWS.Request

Retrieves a list of tags associated with a resource.

Service Reference:

Examples:

Calling the getTags operation

var params = {
  ResourceArn: 'STRING_VALUE' /* required */
};
glue.getTags(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResourceArn — (String)

      The Amazon Resource Name (ARN) of the resource for which to retrieve tags.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Tags — (map<String>)

        The requested tags.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getTrigger(params = {}, callback) ⇒ AWS.Request

Retrieves the definition of a trigger.

Service Reference:

Examples:

Calling the getTrigger operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.getTrigger(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the trigger to retrieve.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Trigger — (map)

        The requested trigger definition.

        • Name — (String)

          The name of the trigger.

        • WorkflowName — (String)

          The name of the workflow associated with the trigger.

        • Id — (String)

          Reserved for future use.

        • Type — (String)

          The type of trigger that this is.

          Possible values include:
          • "SCHEDULED"
          • "CONDITIONAL"
          • "ON_DEMAND"
          • "EVENT"
        • State — (String)

          The current state of the trigger.

          Possible values include:
          • "CREATING"
          • "CREATED"
          • "ACTIVATING"
          • "ACTIVATED"
          • "DEACTIVATING"
          • "DEACTIVATED"
          • "DELETING"
          • "UPDATING"
        • Description — (String)

          A description of this trigger.

        • Schedule — (String)

          A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

        • Actions — (Array<map>)

          The actions initiated by this trigger.

          • JobName — (String)

            The name of a job to be run.

          • Arguments — (map<String>)

            The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

            You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

            For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

            For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

          • Timeout — (Integer)

            The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

          • SecurityConfiguration — (String)

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

          • NotificationProperty — (map)

            Specifies configuration properties of a job run notification.

            • NotifyDelayAfter — (Integer)

              After a job run starts, the number of minutes to wait before sending a job run delay notification.

          • CrawlerName — (String)

            The name of the crawler to be used with this action.

        • Predicate — (map)

          The predicate of this trigger, which defines when it will fire.

          • Logical — (String)

            An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

            Possible values include:
            • "AND"
            • "ANY"
          • Conditions — (Array<map>)

            A list of the conditions that determine when the trigger will fire.

            • LogicalOperator — (String)

              A logical operator.

              Possible values include:
              • "EQUALS"
            • JobName — (String)

              The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

            • State — (String)

              The condition state. Currently, the only job states that a trigger can listen for are SUCCEEDED, STOPPED, FAILED, and TIMEOUT. The only crawler states that a trigger can listen for are SUCCEEDED, FAILED, and CANCELLED.

              Possible values include:
              • "STARTING"
              • "RUNNING"
              • "STOPPING"
              • "STOPPED"
              • "SUCCEEDED"
              • "FAILED"
              • "TIMEOUT"
            • CrawlerName — (String)

              The name of the crawler to which this condition applies.

            • CrawlState — (String)

              The state of the crawler to which this condition applies.

              Possible values include:
              • "RUNNING"
              • "CANCELLING"
              • "CANCELLED"
              • "SUCCEEDED"
              • "FAILED"
        • EventBatchingCondition — (map)

          Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

          • BatchSizerequired — (Integer)

            Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

          • BatchWindow — (Integer)

            Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getTriggers(params = {}, callback) ⇒ AWS.Request

Gets all the triggers associated with a job.

Service Reference:

Examples:

Calling the getTriggers operation

var params = {
  DependentJobName: 'STRING_VALUE',
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getTriggers(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      A continuation token, if this is a continuation call.

    • DependentJobName — (String)

      The name of the job to retrieve triggers for. The trigger that can start this job is returned, and if there is no such trigger, all triggers are returned.

    • MaxResults — (Integer)

      The maximum size of the response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Triggers — (Array<map>)

        A list of triggers for the specified job.

        • Name — (String)

          The name of the trigger.

        • WorkflowName — (String)

          The name of the workflow associated with the trigger.

        • Id — (String)

          Reserved for future use.

        • Type — (String)

          The type of trigger that this is.

          Possible values include:
          • "SCHEDULED"
          • "CONDITIONAL"
          • "ON_DEMAND"
          • "EVENT"
        • State — (String)

          The current state of the trigger.

          Possible values include:
          • "CREATING"
          • "CREATED"
          • "ACTIVATING"
          • "ACTIVATED"
          • "DEACTIVATING"
          • "DEACTIVATED"
          • "DELETING"
          • "UPDATING"
        • Description — (String)

          A description of this trigger.

        • Schedule — (String)

          A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

        • Actions — (Array<map>)

          The actions initiated by this trigger.

          • JobName — (String)

            The name of a job to be run.

          • Arguments — (map<String>)

            The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

            You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

            For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

            For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

          • Timeout — (Integer)

            The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

          • SecurityConfiguration — (String)

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

          • NotificationProperty — (map)

            Specifies configuration properties of a job run notification.

            • NotifyDelayAfter — (Integer)

              After a job run starts, the number of minutes to wait before sending a job run delay notification.

          • CrawlerName — (String)

            The name of the crawler to be used with this action.

        • Predicate — (map)

          The predicate of this trigger, which defines when it will fire.

          • Logical — (String)

            An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

            Possible values include:
            • "AND"
            • "ANY"
          • Conditions — (Array<map>)

            A list of the conditions that determine when the trigger will fire.

            • LogicalOperator — (String)

              A logical operator.

              Possible values include:
              • "EQUALS"
            • JobName — (String)

              The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

            • State — (String)

              The condition state. Currently, the only job states that a trigger can listen for are SUCCEEDED, STOPPED, FAILED, and TIMEOUT. The only crawler states that a trigger can listen for are SUCCEEDED, FAILED, and CANCELLED.

              Possible values include:
              • "STARTING"
              • "RUNNING"
              • "STOPPING"
              • "STOPPED"
              • "SUCCEEDED"
              • "FAILED"
              • "TIMEOUT"
            • CrawlerName — (String)

              The name of the crawler to which this condition applies.

            • CrawlState — (String)

              The state of the crawler to which this condition applies.

              Possible values include:
              • "RUNNING"
              • "CANCELLING"
              • "CANCELLED"
              • "SUCCEEDED"
              • "FAILED"
        • EventBatchingCondition — (map)

          Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

          • BatchSizerequired — (Integer)

            Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

          • BatchWindow — (Integer)

            Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

      • NextToken — (String)

        A continuation token, if not all the requested triggers have yet been returned.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getUserDefinedFunction(params = {}, callback) ⇒ AWS.Request

Retrieves a specified function definition from the Data Catalog.

Service Reference:

Examples:

Calling the getUserDefinedFunction operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  FunctionName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.getUserDefinedFunction(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the function to be retrieved is located. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the function is located.

    • FunctionName — (String)

      The name of the function.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • UserDefinedFunction — (map)

        The requested function definition.

        • FunctionName — (String)

          The name of the function.

        • DatabaseName — (String)

          The name of the catalog database that contains the function.

        • ClassName — (String)

          The Java class that contains the function code.

        • OwnerName — (String)

          The owner of the function.

        • OwnerType — (String)

          The owner type.

          Possible values include:
          • "USER"
          • "ROLE"
          • "GROUP"
        • CreateTime — (Date)

          The time at which the function was created.

        • ResourceUris — (Array<map>)

          The resource URIs for the function.

          • ResourceType — (String)

            The type of the resource.

            Possible values include:
            • "JAR"
            • "FILE"
            • "ARCHIVE"
          • Uri — (String)

            The URI for accessing the resource.

        • CatalogId — (String)

          The ID of the Data Catalog in which the function resides.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getUserDefinedFunctions(params = {}, callback) ⇒ AWS.Request

Retrieves multiple function definitions from the Data Catalog.

Service Reference:

Examples:

Calling the getUserDefinedFunctions operation

var params = {
  Pattern: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE',
  DatabaseName: 'STRING_VALUE',
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getUserDefinedFunctions(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the functions to be retrieved are located. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the functions are located. If none is provided, functions from all the databases across the catalog will be returned.

    • Pattern — (String)

      An optional function-name pattern string that filters the function definitions returned.

    • NextToken — (String)

      A continuation token, if this is a continuation call.

    • MaxResults — (Integer)

      The maximum number of functions to return in one response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • UserDefinedFunctions — (Array<map>)

        A list of requested function definitions.

        • FunctionName — (String)

          The name of the function.

        • DatabaseName — (String)

          The name of the catalog database that contains the function.

        • ClassName — (String)

          The Java class that contains the function code.

        • OwnerName — (String)

          The owner of the function.

        • OwnerType — (String)

          The owner type.

          Possible values include:
          • "USER"
          • "ROLE"
          • "GROUP"
        • CreateTime — (Date)

          The time at which the function was created.

        • ResourceUris — (Array<map>)

          The resource URIs for the function.

          • ResourceType — (String)

            The type of the resource.

            Possible values include:
            • "JAR"
            • "FILE"
            • "ARCHIVE"
          • Uri — (String)

            The URI for accessing the resource.

        • CatalogId — (String)

          The ID of the Data Catalog in which the function resides.

      • NextToken — (String)

        A continuation token, if the list of functions returned does not include the last requested function.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getWorkflow(params = {}, callback) ⇒ AWS.Request

Retrieves resource metadata for a workflow.

Service Reference:

Examples:

Calling the getWorkflow operation

var params = {
  Name: 'STRING_VALUE', /* required */
  IncludeGraph: true || false
};
glue.getWorkflow(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the workflow to retrieve.

    • IncludeGraph — (Boolean)

      Specifies whether to include a graph when returning the workflow resource metadata.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Workflow — (map)

        The resource metadata for the workflow.

        • Name — (String)

          The name of the workflow.

        • Description — (String)

          A description of the workflow.

        • DefaultRunProperties — (map<String>)

          A collection of properties to be used as part of each execution of the workflow. The run properties are made available to each job in the workflow. A job can modify the properties for the next jobs in the flow.

        • CreatedOn — (Date)

          The date and time when the workflow was created.

        • LastModifiedOn — (Date)

          The date and time when the workflow was last modified.

        • LastRun — (map)

          The information about the last execution of the workflow.

          • Name — (String)

            Name of the workflow that was run.

          • WorkflowRunId — (String)

            The ID of this workflow run.

          • PreviousRunId — (String)

            The ID of the previous workflow run.

          • WorkflowRunProperties — (map<String>)

            The workflow run properties which were set during the run.

          • StartedOn — (Date)

            The date and time when the workflow run was started.

          • CompletedOn — (Date)

            The date and time when the workflow run completed.

          • Status — (String)

            The status of the workflow run.

            Possible values include:
            • "RUNNING"
            • "COMPLETED"
            • "STOPPING"
            • "STOPPED"
            • "ERROR"
          • ErrorMessage — (String)

            This error message describes any error that may have occurred in starting the workflow run. Currently the only error message is "Concurrent runs exceeded for workflow: foo."

          • Statistics — (map)

            The statistics of the run.

            • TotalActions — (Integer)

              Total number of Actions in the workflow run.

            • TimeoutActions — (Integer)

              Total number of Actions that timed out.

            • FailedActions — (Integer)

              Total number of Actions that have failed.

            • StoppedActions — (Integer)

              Total number of Actions that have stopped.

            • SucceededActions — (Integer)

              Total number of Actions that have succeeded.

            • RunningActions — (Integer)

              Total number Actions in running state.

          • Graph — (map)

            The graph representing all the Glue components that belong to the workflow as nodes and directed connections between them as edges.

            • Nodes — (Array<map>)

              A list of the the Glue components belong to the workflow represented as nodes.

              • Type — (String)

                The type of Glue component represented by the node.

                Possible values include:
                • "CRAWLER"
                • "JOB"
                • "TRIGGER"
              • Name — (String)

                The name of the Glue component represented by the node.

              • UniqueId — (String)

                The unique Id assigned to the node within the workflow.

              • TriggerDetails — (map)

                Details of the Trigger when the node represents a Trigger.

                • Trigger — (map)

                  The information of the trigger represented by the trigger node.

                  • Name — (String)

                    The name of the trigger.

                  • WorkflowName — (String)

                    The name of the workflow associated with the trigger.

                  • Id — (String)

                    Reserved for future use.

                  • Type — (String)

                    The type of trigger that this is.

                    Possible values include:
                    • "SCHEDULED"
                    • "CONDITIONAL"
                    • "ON_DEMAND"
                    • "EVENT"
                  • State — (String)

                    The current state of the trigger.

                    Possible values include:
                    • "CREATING"
                    • "CREATED"
                    • "ACTIVATING"
                    • "ACTIVATED"
                    • "DEACTIVATING"
                    • "DEACTIVATED"
                    • "DELETING"
                    • "UPDATING"
                  • Description — (String)

                    A description of this trigger.

                  • Schedule — (String)

                    A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

                  • Actions — (Array<map>)

                    The actions initiated by this trigger.

                    • JobName — (String)

                      The name of a job to be run.

                    • Arguments — (map<String>)

                      The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

                      You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

                      For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

                      For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

                    • Timeout — (Integer)

                      The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

                    • SecurityConfiguration — (String)

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

                    • NotificationProperty — (map)

                      Specifies configuration properties of a job run notification.

                      • NotifyDelayAfter — (Integer)

                        After a job run starts, the number of minutes to wait before sending a job run delay notification.

                    • CrawlerName — (String)

                      The name of the crawler to be used with this action.

                  • Predicate — (map)

                    The predicate of this trigger, which defines when it will fire.

                    • Logical — (String)

                      An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

                      Possible values include:
                      • "AND"
                      • "ANY"
                    • Conditions — (Array<map>)

                      A list of the conditions that determine when the trigger will fire.

                      • LogicalOperator — (String)

                        A logical operator.

                        Possible values include:
                        • "EQUALS"
                      • JobName — (String)

                        The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

                      • State — (String)

                        The condition state. Currently, the only job states that a trigger can listen for are SUCCEEDED, STOPPED, FAILED, and TIMEOUT. The only crawler states that a trigger can listen for are SUCCEEDED, FAILED, and CANCELLED.

                        Possible values include:
                        • "STARTING"
                        • "RUNNING"
                        • "STOPPING"
                        • "STOPPED"
                        • "SUCCEEDED"
                        • "FAILED"
                        • "TIMEOUT"
                      • CrawlerName — (String)

                        The name of the crawler to which this condition applies.

                      • CrawlState — (String)

                        The state of the crawler to which this condition applies.

                        Possible values include:
                        • "RUNNING"
                        • "CANCELLING"
                        • "CANCELLED"
                        • "SUCCEEDED"
                        • "FAILED"
                  • EventBatchingCondition — (map)

                    Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

                    • BatchSizerequired — (Integer)

                      Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

                    • BatchWindow — (Integer)

                      Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

              • JobDetails — (map)

                Details of the Job when the node represents a Job.

                • JobRuns — (Array<map>)

                  The information for the job runs represented by the job node.

                  • Id — (String)

                    The ID of this job run.

                  • Attempt — (Integer)

                    The number of the attempt to run this job.

                  • PreviousRunId — (String)

                    The ID of the previous run of this job. For example, the JobRunId specified in the StartJobRun action.

                  • TriggerName — (String)

                    The name of the trigger that started this job run.

                  • JobName — (String)

                    The name of the job definition being used in this run.

                  • StartedOn — (Date)

                    The date and time at which this job run was started.

                  • LastModifiedOn — (Date)

                    The last time that this job run was modified.

                  • CompletedOn — (Date)

                    The date and time that this job run completed.

                  • JobRunState — (String)

                    The current state of the job run. For more information about the statuses of jobs that have terminated abnormally, see Glue Job Run Statuses.

                    Possible values include:
                    • "STARTING"
                    • "RUNNING"
                    • "STOPPING"
                    • "STOPPED"
                    • "SUCCEEDED"
                    • "FAILED"
                    • "TIMEOUT"
                  • Arguments — (map<String>)

                    The job arguments associated with this run. For this job run, they replace the default arguments set in the job definition itself.

                    You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

                    For information about how to specify and consume your own job arguments, see the Calling Glue APIs in Python topic in the developer guide.

                    For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

                  • ErrorMessage — (String)

                    An error message associated with this job run.

                  • PredecessorRuns — (Array<map>)

                    A list of predecessors to this job run.

                    • JobName — (String)

                      The name of the job definition used by the predecessor job run.

                    • RunId — (String)

                      The job-run ID of the predecessor job run.

                  • AllocatedCapacity — (Integer)

                    This field is deprecated. Use MaxCapacity instead.

                    The number of Glue data processing units (DPUs) allocated to this JobRun. From 2 to 100 DPUs can be allocated; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

                  • ExecutionTime — (Integer)

                    The amount of time (in seconds) that the job run consumed resources.

                  • Timeout — (Integer)

                    The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

                  • MaxCapacity — (Float)

                    The number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

                    Do not set Max Capacity if using WorkerType and NumberOfWorkers.

                    The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job or an Apache Spark ETL job:

                    • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

                    • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

                  • WorkerType — (String)

                    The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

                    • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

                    • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

                    • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

                    Possible values include:
                    • "Standard"
                    • "G.1X"
                    • "G.2X"
                  • NumberOfWorkers — (Integer)

                    The number of workers of a defined workerType that are allocated when a job runs.

                    The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

                  • SecurityConfiguration — (String)

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

                  • LogGroupName — (String)

                    The name of the log group for secure logging that can be server-side encrypted in Amazon CloudWatch using KMS. This name can be /aws-glue/jobs/, in which case the default encryption is NONE. If you add a role name and SecurityConfiguration name (in other words, /aws-glue/jobs-yourRoleName-yourSecurityConfigurationName/), then that security configuration is used to encrypt the log group.

                  • NotificationProperty — (map)

                    Specifies configuration properties of a job run notification.

                    • NotifyDelayAfter — (Integer)

                      After a job run starts, the number of minutes to wait before sending a job run delay notification.

                  • GlueVersion — (String)

                    Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

                    For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

                    Jobs that are created without specifying a Glue version default to Glue 0.9.

              • CrawlerDetails — (map)

                Details of the crawler when the node represents a crawler.

                • Crawls — (Array<map>)

                  A list of crawls represented by the crawl node.

                  • State — (String)

                    The state of the crawler.

                    Possible values include:
                    • "RUNNING"
                    • "CANCELLING"
                    • "CANCELLED"
                    • "SUCCEEDED"
                    • "FAILED"
                  • StartedOn — (Date)

                    The date and time on which the crawl started.

                  • CompletedOn — (Date)

                    The date and time on which the crawl completed.

                  • ErrorMessage — (String)

                    The error message associated with the crawl.

                  • LogGroup — (String)

                    The log group associated with the crawl.

                  • LogStream — (String)

                    The log stream associated with the crawl.

            • Edges — (Array<map>)

              A list of all the directed connections between the nodes belonging to the workflow.

              • SourceId — (String)

                The unique of the node within the workflow where the edge starts.

              • DestinationId — (String)

                The unique of the node within the workflow where the edge ends.

          • StartingEventBatchCondition — (map)

            The batch condition that started the workflow run.

            • BatchSize — (Integer)

              Number of events in the batch.

            • BatchWindow — (Integer)

              Duration of the batch window in seconds.

        • Graph — (map)

          The graph representing all the Glue components that belong to the workflow as nodes and directed connections between them as edges.

          • Nodes — (Array<map>)

            A list of the the Glue components belong to the workflow represented as nodes.

            • Type — (String)

              The type of Glue component represented by the node.

              Possible values include:
              • "CRAWLER"
              • "JOB"
              • "TRIGGER"
            • Name — (String)

              The name of the Glue component represented by the node.

            • UniqueId — (String)

              The unique Id assigned to the node within the workflow.

            • TriggerDetails — (map)

              Details of the Trigger when the node represents a Trigger.

              • Trigger — (map)

                The information of the trigger represented by the trigger node.

                • Name — (String)

                  The name of the trigger.

                • WorkflowName — (String)

                  The name of the workflow associated with the trigger.

                • Id — (String)

                  Reserved for future use.

                • Type — (String)

                  The type of trigger that this is.

                  Possible values include:
                  • "SCHEDULED"
                  • "CONDITIONAL"
                  • "ON_DEMAND"
                  • "EVENT"
                • State — (String)

                  The current state of the trigger.

                  Possible values include:
                  • "CREATING"
                  • "CREATED"
                  • "ACTIVATING"
                  • "ACTIVATED"
                  • "DEACTIVATING"
                  • "DEACTIVATED"
                  • "DELETING"
                  • "UPDATING"
                • Description — (String)

                  A description of this trigger.

                • Schedule — (String)

                  A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

                • Actions — (Array<map>)

                  The actions initiated by this trigger.

                  • JobName — (String)

                    The name of a job to be run.

                  • Arguments — (map<String>)

                    The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

                    You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

                    For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

                    For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

                  • Timeout — (Integer)

                    The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

                  • SecurityConfiguration — (String)

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

                  • NotificationProperty — (map)

                    Specifies configuration properties of a job run notification.

                    • NotifyDelayAfter — (Integer)

                      After a job run starts, the number of minutes to wait before sending a job run delay notification.

                  • CrawlerName — (String)

                    The name of the crawler to be used with this action.

                • Predicate — (map)

                  The predicate of this trigger, which defines when it will fire.

                  • Logical — (String)

                    An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

                    Possible values include:
                    • "AND"
                    • "ANY"
                  • Conditions — (Array<map>)

                    A list of the conditions that determine when the trigger will fire.

                    • LogicalOperator — (String)

                      A logical operator.

                      Possible values include:
                      • "EQUALS"
                    • JobName — (String)

                      The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

                    • State — (String)

                      The condition state. Currently, the only job states that a trigger can listen for are SUCCEEDED, STOPPED, FAILED, and TIMEOUT. The only crawler states that a trigger can listen for are SUCCEEDED, FAILED, and CANCELLED.

                      Possible values include:
                      • "STARTING"
                      • "RUNNING"
                      • "STOPPING"
                      • "STOPPED"
                      • "SUCCEEDED"
                      • "FAILED"
                      • "TIMEOUT"
                    • CrawlerName — (String)

                      The name of the crawler to which this condition applies.

                    • CrawlState — (String)

                      The state of the crawler to which this condition applies.

                      Possible values include:
                      • "RUNNING"
                      • "CANCELLING"
                      • "CANCELLED"
                      • "SUCCEEDED"
                      • "FAILED"
                • EventBatchingCondition — (map)

                  Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

                  • BatchSizerequired — (Integer)

                    Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

                  • BatchWindow — (Integer)

                    Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

            • JobDetails — (map)

              Details of the Job when the node represents a Job.

              • JobRuns — (Array<map>)

                The information for the job runs represented by the job node.

                • Id — (String)

                  The ID of this job run.

                • Attempt — (Integer)

                  The number of the attempt to run this job.

                • PreviousRunId — (String)

                  The ID of the previous run of this job. For example, the JobRunId specified in the StartJobRun action.

                • TriggerName — (String)

                  The name of the trigger that started this job run.

                • JobName — (String)

                  The name of the job definition being used in this run.

                • StartedOn — (Date)

                  The date and time at which this job run was started.

                • LastModifiedOn — (Date)

                  The last time that this job run was modified.

                • CompletedOn — (Date)

                  The date and time that this job run completed.

                • JobRunState — (String)

                  The current state of the job run. For more information about the statuses of jobs that have terminated abnormally, see Glue Job Run Statuses.

                  Possible values include:
                  • "STARTING"
                  • "RUNNING"
                  • "STOPPING"
                  • "STOPPED"
                  • "SUCCEEDED"
                  • "FAILED"
                  • "TIMEOUT"
                • Arguments — (map<String>)

                  The job arguments associated with this run. For this job run, they replace the default arguments set in the job definition itself.

                  You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

                  For information about how to specify and consume your own job arguments, see the Calling Glue APIs in Python topic in the developer guide.

                  For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

                • ErrorMessage — (String)

                  An error message associated with this job run.

                • PredecessorRuns — (Array<map>)

                  A list of predecessors to this job run.

                  • JobName — (String)

                    The name of the job definition used by the predecessor job run.

                  • RunId — (String)

                    The job-run ID of the predecessor job run.

                • AllocatedCapacity — (Integer)

                  This field is deprecated. Use MaxCapacity instead.

                  The number of Glue data processing units (DPUs) allocated to this JobRun. From 2 to 100 DPUs can be allocated; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

                • ExecutionTime — (Integer)

                  The amount of time (in seconds) that the job run consumed resources.

                • Timeout — (Integer)

                  The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

                • MaxCapacity — (Float)

                  The number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

                  Do not set Max Capacity if using WorkerType and NumberOfWorkers.

                  The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job or an Apache Spark ETL job:

                  • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

                  • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

                • WorkerType — (String)

                  The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

                  • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

                  • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

                  • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

                  Possible values include:
                  • "Standard"
                  • "G.1X"
                  • "G.2X"
                • NumberOfWorkers — (Integer)

                  The number of workers of a defined workerType that are allocated when a job runs.

                  The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

                • SecurityConfiguration — (String)

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

                • LogGroupName — (String)

                  The name of the log group for secure logging that can be server-side encrypted in Amazon CloudWatch using KMS. This name can be /aws-glue/jobs/, in which case the default encryption is NONE. If you add a role name and SecurityConfiguration name (in other words, /aws-glue/jobs-yourRoleName-yourSecurityConfigurationName/), then that security configuration is used to encrypt the log group.

                • NotificationProperty — (map)

                  Specifies configuration properties of a job run notification.

                  • NotifyDelayAfter — (Integer)

                    After a job run starts, the number of minutes to wait before sending a job run delay notification.

                • GlueVersion — (String)

                  Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

                  For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

                  Jobs that are created without specifying a Glue version default to Glue 0.9.

            • CrawlerDetails — (map)

              Details of the crawler when the node represents a crawler.

              • Crawls — (Array<map>)

                A list of crawls represented by the crawl node.

                • State — (String)

                  The state of the crawler.

                  Possible values include:
                  • "RUNNING"
                  • "CANCELLING"
                  • "CANCELLED"
                  • "SUCCEEDED"
                  • "FAILED"
                • StartedOn — (Date)

                  The date and time on which the crawl started.

                • CompletedOn — (Date)

                  The date and time on which the crawl completed.

                • ErrorMessage — (String)

                  The error message associated with the crawl.

                • LogGroup — (String)

                  The log group associated with the crawl.

                • LogStream — (String)

                  The log stream associated with the crawl.

          • Edges — (Array<map>)

            A list of all the directed connections between the nodes belonging to the workflow.

            • SourceId — (String)

              The unique of the node within the workflow where the edge starts.

            • DestinationId — (String)

              The unique of the node within the workflow where the edge ends.

        • MaxConcurrentRuns — (Integer)

          You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.

        • BlueprintDetails — (map)

          This structure indicates the details of the blueprint that this particular workflow is created from.

          • BlueprintName — (String)

            The name of the blueprint.

          • RunId — (String)

            The run ID for this blueprint.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getWorkflowRun(params = {}, callback) ⇒ AWS.Request

Retrieves the metadata for a given workflow run.

Service Reference:

Examples:

Calling the getWorkflowRun operation

var params = {
  Name: 'STRING_VALUE', /* required */
  RunId: 'STRING_VALUE', /* required */
  IncludeGraph: true || false
};
glue.getWorkflowRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      Name of the workflow being run.

    • RunId — (String)

      The ID of the workflow run.

    • IncludeGraph — (Boolean)

      Specifies whether to include the workflow graph in response or not.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Run — (map)

        The requested workflow run metadata.

        • Name — (String)

          Name of the workflow that was run.

        • WorkflowRunId — (String)

          The ID of this workflow run.

        • PreviousRunId — (String)

          The ID of the previous workflow run.

        • WorkflowRunProperties — (map<String>)

          The workflow run properties which were set during the run.

        • StartedOn — (Date)

          The date and time when the workflow run was started.

        • CompletedOn — (Date)

          The date and time when the workflow run completed.

        • Status — (String)

          The status of the workflow run.

          Possible values include:
          • "RUNNING"
          • "COMPLETED"
          • "STOPPING"
          • "STOPPED"
          • "ERROR"
        • ErrorMessage — (String)

          This error message describes any error that may have occurred in starting the workflow run. Currently the only error message is "Concurrent runs exceeded for workflow: foo."

        • Statistics — (map)

          The statistics of the run.

          • TotalActions — (Integer)

            Total number of Actions in the workflow run.

          • TimeoutActions — (Integer)

            Total number of Actions that timed out.

          • FailedActions — (Integer)

            Total number of Actions that have failed.

          • StoppedActions — (Integer)

            Total number of Actions that have stopped.

          • SucceededActions — (Integer)

            Total number of Actions that have succeeded.

          • RunningActions — (Integer)

            Total number Actions in running state.

        • Graph — (map)

          The graph representing all the Glue components that belong to the workflow as nodes and directed connections between them as edges.

          • Nodes — (Array<map>)

            A list of the the Glue components belong to the workflow represented as nodes.

            • Type — (String)

              The type of Glue component represented by the node.

              Possible values include:
              • "CRAWLER"
              • "JOB"
              • "TRIGGER"
            • Name — (String)

              The name of the Glue component represented by the node.

            • UniqueId — (String)

              The unique Id assigned to the node within the workflow.

            • TriggerDetails — (map)

              Details of the Trigger when the node represents a Trigger.

              • Trigger — (map)

                The information of the trigger represented by the trigger node.

                • Name — (String)

                  The name of the trigger.

                • WorkflowName — (String)

                  The name of the workflow associated with the trigger.

                • Id — (String)

                  Reserved for future use.

                • Type — (String)

                  The type of trigger that this is.

                  Possible values include:
                  • "SCHEDULED"
                  • "CONDITIONAL"
                  • "ON_DEMAND"
                  • "EVENT"
                • State — (String)

                  The current state of the trigger.

                  Possible values include:
                  • "CREATING"
                  • "CREATED"
                  • "ACTIVATING"
                  • "ACTIVATED"
                  • "DEACTIVATING"
                  • "DEACTIVATED"
                  • "DELETING"
                  • "UPDATING"
                • Description — (String)

                  A description of this trigger.

                • Schedule — (String)

                  A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

                • Actions — (Array<map>)

                  The actions initiated by this trigger.

                  • JobName — (String)

                    The name of a job to be run.

                  • Arguments — (map<String>)

                    The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

                    You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

                    For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

                    For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

                  • Timeout — (Integer)

                    The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

                  • SecurityConfiguration — (String)

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

                  • NotificationProperty — (map)

                    Specifies configuration properties of a job run notification.

                    • NotifyDelayAfter — (Integer)

                      After a job run starts, the number of minutes to wait before sending a job run delay notification.

                  • CrawlerName — (String)

                    The name of the crawler to be used with this action.

                • Predicate — (map)

                  The predicate of this trigger, which defines when it will fire.

                  • Logical — (String)

                    An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

                    Possible values include:
                    • "AND"
                    • "ANY"
                  • Conditions — (Array<map>)

                    A list of the conditions that determine when the trigger will fire.

                    • LogicalOperator — (String)

                      A logical operator.

                      Possible values include:
                      • "EQUALS"
                    • JobName — (String)

                      The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

                    • State — (String)

                      The condition state. Currently, the only job states that a trigger can listen for are SUCCEEDED, STOPPED, FAILED, and TIMEOUT. The only crawler states that a trigger can listen for are SUCCEEDED, FAILED, and CANCELLED.

                      Possible values include:
                      • "STARTING"
                      • "RUNNING"
                      • "STOPPING"
                      • "STOPPED"
                      • "SUCCEEDED"
                      • "FAILED"
                      • "TIMEOUT"
                    • CrawlerName — (String)

                      The name of the crawler to which this condition applies.

                    • CrawlState — (String)

                      The state of the crawler to which this condition applies.

                      Possible values include:
                      • "RUNNING"
                      • "CANCELLING"
                      • "CANCELLED"
                      • "SUCCEEDED"
                      • "FAILED"
                • EventBatchingCondition — (map)

                  Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

                  • BatchSizerequired — (Integer)

                    Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

                  • BatchWindow — (Integer)

                    Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

            • JobDetails — (map)

              Details of the Job when the node represents a Job.

              • JobRuns — (Array<map>)

                The information for the job runs represented by the job node.

                • Id — (String)

                  The ID of this job run.

                • Attempt — (Integer)

                  The number of the attempt to run this job.

                • PreviousRunId — (String)

                  The ID of the previous run of this job. For example, the JobRunId specified in the StartJobRun action.

                • TriggerName — (String)

                  The name of the trigger that started this job run.

                • JobName — (String)

                  The name of the job definition being used in this run.

                • StartedOn — (Date)

                  The date and time at which this job run was started.

                • LastModifiedOn — (Date)

                  The last time that this job run was modified.

                • CompletedOn — (Date)

                  The date and time that this job run completed.

                • JobRunState — (String)

                  The current state of the job run. For more information about the statuses of jobs that have terminated abnormally, see Glue Job Run Statuses.

                  Possible values include:
                  • "STARTING"
                  • "RUNNING"
                  • "STOPPING"
                  • "STOPPED"
                  • "SUCCEEDED"
                  • "FAILED"
                  • "TIMEOUT"
                • Arguments — (map<String>)

                  The job arguments associated with this run. For this job run, they replace the default arguments set in the job definition itself.

                  You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

                  For information about how to specify and consume your own job arguments, see the Calling Glue APIs in Python topic in the developer guide.

                  For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

                • ErrorMessage — (String)

                  An error message associated with this job run.

                • PredecessorRuns — (Array<map>)

                  A list of predecessors to this job run.

                  • JobName — (String)

                    The name of the job definition used by the predecessor job run.

                  • RunId — (String)

                    The job-run ID of the predecessor job run.

                • AllocatedCapacity — (Integer)

                  This field is deprecated. Use MaxCapacity instead.

                  The number of Glue data processing units (DPUs) allocated to this JobRun. From 2 to 100 DPUs can be allocated; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

                • ExecutionTime — (Integer)

                  The amount of time (in seconds) that the job run consumed resources.

                • Timeout — (Integer)

                  The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

                • MaxCapacity — (Float)

                  The number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

                  Do not set Max Capacity if using WorkerType and NumberOfWorkers.

                  The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job or an Apache Spark ETL job:

                  • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

                  • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

                • WorkerType — (String)

                  The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

                  • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

                  • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

                  • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

                  Possible values include:
                  • "Standard"
                  • "G.1X"
                  • "G.2X"
                • NumberOfWorkers — (Integer)

                  The number of workers of a defined workerType that are allocated when a job runs.

                  The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

                • SecurityConfiguration — (String)

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

                • LogGroupName — (String)

                  The name of the log group for secure logging that can be server-side encrypted in Amazon CloudWatch using KMS. This name can be /aws-glue/jobs/, in which case the default encryption is NONE. If you add a role name and SecurityConfiguration name (in other words, /aws-glue/jobs-yourRoleName-yourSecurityConfigurationName/), then that security configuration is used to encrypt the log group.

                • NotificationProperty — (map)

                  Specifies configuration properties of a job run notification.

                  • NotifyDelayAfter — (Integer)

                    After a job run starts, the number of minutes to wait before sending a job run delay notification.

                • GlueVersion — (String)

                  Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

                  For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

                  Jobs that are created without specifying a Glue version default to Glue 0.9.

            • CrawlerDetails — (map)

              Details of the crawler when the node represents a crawler.

              • Crawls — (Array<map>)

                A list of crawls represented by the crawl node.

                • State — (String)

                  The state of the crawler.

                  Possible values include:
                  • "RUNNING"
                  • "CANCELLING"
                  • "CANCELLED"
                  • "SUCCEEDED"
                  • "FAILED"
                • StartedOn — (Date)

                  The date and time on which the crawl started.

                • CompletedOn — (Date)

                  The date and time on which the crawl completed.

                • ErrorMessage — (String)

                  The error message associated with the crawl.

                • LogGroup — (String)

                  The log group associated with the crawl.

                • LogStream — (String)

                  The log stream associated with the crawl.

          • Edges — (Array<map>)

            A list of all the directed connections between the nodes belonging to the workflow.

            • SourceId — (String)

              The unique of the node within the workflow where the edge starts.

            • DestinationId — (String)

              The unique of the node within the workflow where the edge ends.

        • StartingEventBatchCondition — (map)

          The batch condition that started the workflow run.

          • BatchSize — (Integer)

            Number of events in the batch.

          • BatchWindow — (Integer)

            Duration of the batch window in seconds.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getWorkflowRunProperties(params = {}, callback) ⇒ AWS.Request

Retrieves the workflow run properties which were set during the run.

Service Reference:

Examples:

Calling the getWorkflowRunProperties operation

var params = {
  Name: 'STRING_VALUE', /* required */
  RunId: 'STRING_VALUE' /* required */
};
glue.getWorkflowRunProperties(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      Name of the workflow which was run.

    • RunId — (String)

      The ID of the workflow run whose run properties should be returned.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RunProperties — (map<String>)

        The workflow run properties which were set during the specified run.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getWorkflowRuns(params = {}, callback) ⇒ AWS.Request

Retrieves metadata for all runs of a given workflow.

Service Reference:

Examples:

Calling the getWorkflowRuns operation

var params = {
  Name: 'STRING_VALUE', /* required */
  IncludeGraph: true || false,
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.getWorkflowRuns(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      Name of the workflow whose metadata of runs should be returned.

    • IncludeGraph — (Boolean)

      Specifies whether to include the workflow graph in response or not.

    • NextToken — (String)

      The maximum size of the response.

    • MaxResults — (Integer)

      The maximum number of workflow runs to be included in the response.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Runs — (Array<map>)

        A list of workflow run metadata objects.

        • Name — (String)

          Name of the workflow that was run.

        • WorkflowRunId — (String)

          The ID of this workflow run.

        • PreviousRunId — (String)

          The ID of the previous workflow run.

        • WorkflowRunProperties — (map<String>)

          The workflow run properties which were set during the run.

        • StartedOn — (Date)

          The date and time when the workflow run was started.

        • CompletedOn — (Date)

          The date and time when the workflow run completed.

        • Status — (String)

          The status of the workflow run.

          Possible values include:
          • "RUNNING"
          • "COMPLETED"
          • "STOPPING"
          • "STOPPED"
          • "ERROR"
        • ErrorMessage — (String)

          This error message describes any error that may have occurred in starting the workflow run. Currently the only error message is "Concurrent runs exceeded for workflow: foo."

        • Statistics — (map)

          The statistics of the run.

          • TotalActions — (Integer)

            Total number of Actions in the workflow run.

          • TimeoutActions — (Integer)

            Total number of Actions that timed out.

          • FailedActions — (Integer)

            Total number of Actions that have failed.

          • StoppedActions — (Integer)

            Total number of Actions that have stopped.

          • SucceededActions — (Integer)

            Total number of Actions that have succeeded.

          • RunningActions — (Integer)

            Total number Actions in running state.

        • Graph — (map)

          The graph representing all the Glue components that belong to the workflow as nodes and directed connections between them as edges.

          • Nodes — (Array<map>)

            A list of the the Glue components belong to the workflow represented as nodes.

            • Type — (String)

              The type of Glue component represented by the node.

              Possible values include:
              • "CRAWLER"
              • "JOB"
              • "TRIGGER"
            • Name — (String)

              The name of the Glue component represented by the node.

            • UniqueId — (String)

              The unique Id assigned to the node within the workflow.

            • TriggerDetails — (map)

              Details of the Trigger when the node represents a Trigger.

              • Trigger — (map)

                The information of the trigger represented by the trigger node.

                • Name — (String)

                  The name of the trigger.

                • WorkflowName — (String)

                  The name of the workflow associated with the trigger.

                • Id — (String)

                  Reserved for future use.

                • Type — (String)

                  The type of trigger that this is.

                  Possible values include:
                  • "SCHEDULED"
                  • "CONDITIONAL"
                  • "ON_DEMAND"
                  • "EVENT"
                • State — (String)

                  The current state of the trigger.

                  Possible values include:
                  • "CREATING"
                  • "CREATED"
                  • "ACTIVATING"
                  • "ACTIVATED"
                  • "DEACTIVATING"
                  • "DEACTIVATED"
                  • "DELETING"
                  • "UPDATING"
                • Description — (String)

                  A description of this trigger.

                • Schedule — (String)

                  A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

                • Actions — (Array<map>)

                  The actions initiated by this trigger.

                  • JobName — (String)

                    The name of a job to be run.

                  • Arguments — (map<String>)

                    The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

                    You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

                    For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

                    For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

                  • Timeout — (Integer)

                    The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

                  • SecurityConfiguration — (String)

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

                  • NotificationProperty — (map)

                    Specifies configuration properties of a job run notification.

                    • NotifyDelayAfter — (Integer)

                      After a job run starts, the number of minutes to wait before sending a job run delay notification.

                  • CrawlerName — (String)

                    The name of the crawler to be used with this action.

                • Predicate — (map)

                  The predicate of this trigger, which defines when it will fire.

                  • Logical — (String)

                    An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

                    Possible values include:
                    • "AND"
                    • "ANY"
                  • Conditions — (Array<map>)

                    A list of the conditions that determine when the trigger will fire.

                    • LogicalOperator — (String)

                      A logical operator.

                      Possible values include:
                      • "EQUALS"
                    • JobName — (String)

                      The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

                    • State — (String)

                      The condition state. Currently, the only job states that a trigger can listen for are SUCCEEDED, STOPPED, FAILED, and TIMEOUT. The only crawler states that a trigger can listen for are SUCCEEDED, FAILED, and CANCELLED.

                      Possible values include:
                      • "STARTING"
                      • "RUNNING"
                      • "STOPPING"
                      • "STOPPED"
                      • "SUCCEEDED"
                      • "FAILED"
                      • "TIMEOUT"
                    • CrawlerName — (String)

                      The name of the crawler to which this condition applies.

                    • CrawlState — (String)

                      The state of the crawler to which this condition applies.

                      Possible values include:
                      • "RUNNING"
                      • "CANCELLING"
                      • "CANCELLED"
                      • "SUCCEEDED"
                      • "FAILED"
                • EventBatchingCondition — (map)

                  Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

                  • BatchSizerequired — (Integer)

                    Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

                  • BatchWindow — (Integer)

                    Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

            • JobDetails — (map)

              Details of the Job when the node represents a Job.

              • JobRuns — (Array<map>)

                The information for the job runs represented by the job node.

                • Id — (String)

                  The ID of this job run.

                • Attempt — (Integer)

                  The number of the attempt to run this job.

                • PreviousRunId — (String)

                  The ID of the previous run of this job. For example, the JobRunId specified in the StartJobRun action.

                • TriggerName — (String)

                  The name of the trigger that started this job run.

                • JobName — (String)

                  The name of the job definition being used in this run.

                • StartedOn — (Date)

                  The date and time at which this job run was started.

                • LastModifiedOn — (Date)

                  The last time that this job run was modified.

                • CompletedOn — (Date)

                  The date and time that this job run completed.

                • JobRunState — (String)

                  The current state of the job run. For more information about the statuses of jobs that have terminated abnormally, see Glue Job Run Statuses.

                  Possible values include:
                  • "STARTING"
                  • "RUNNING"
                  • "STOPPING"
                  • "STOPPED"
                  • "SUCCEEDED"
                  • "FAILED"
                  • "TIMEOUT"
                • Arguments — (map<String>)

                  The job arguments associated with this run. For this job run, they replace the default arguments set in the job definition itself.

                  You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

                  For information about how to specify and consume your own job arguments, see the Calling Glue APIs in Python topic in the developer guide.

                  For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

                • ErrorMessage — (String)

                  An error message associated with this job run.

                • PredecessorRuns — (Array<map>)

                  A list of predecessors to this job run.

                  • JobName — (String)

                    The name of the job definition used by the predecessor job run.

                  • RunId — (String)

                    The job-run ID of the predecessor job run.

                • AllocatedCapacity — (Integer)

                  This field is deprecated. Use MaxCapacity instead.

                  The number of Glue data processing units (DPUs) allocated to this JobRun. From 2 to 100 DPUs can be allocated; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

                • ExecutionTime — (Integer)

                  The amount of time (in seconds) that the job run consumed resources.

                • Timeout — (Integer)

                  The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

                • MaxCapacity — (Float)

                  The number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

                  Do not set Max Capacity if using WorkerType and NumberOfWorkers.

                  The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job or an Apache Spark ETL job:

                  • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

                  • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

                • WorkerType — (String)

                  The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

                  • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

                  • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

                  • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

                  Possible values include:
                  • "Standard"
                  • "G.1X"
                  • "G.2X"
                • NumberOfWorkers — (Integer)

                  The number of workers of a defined workerType that are allocated when a job runs.

                  The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

                • SecurityConfiguration — (String)

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

                • LogGroupName — (String)

                  The name of the log group for secure logging that can be server-side encrypted in Amazon CloudWatch using KMS. This name can be /aws-glue/jobs/, in which case the default encryption is NONE. If you add a role name and SecurityConfiguration name (in other words, /aws-glue/jobs-yourRoleName-yourSecurityConfigurationName/), then that security configuration is used to encrypt the log group.

                • NotificationProperty — (map)

                  Specifies configuration properties of a job run notification.

                  • NotifyDelayAfter — (Integer)

                    After a job run starts, the number of minutes to wait before sending a job run delay notification.

                • GlueVersion — (String)

                  Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

                  For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

                  Jobs that are created without specifying a Glue version default to Glue 0.9.

            • CrawlerDetails — (map)

              Details of the crawler when the node represents a crawler.

              • Crawls — (Array<map>)

                A list of crawls represented by the crawl node.

                • State — (String)

                  The state of the crawler.

                  Possible values include:
                  • "RUNNING"
                  • "CANCELLING"
                  • "CANCELLED"
                  • "SUCCEEDED"
                  • "FAILED"
                • StartedOn — (Date)

                  The date and time on which the crawl started.

                • CompletedOn — (Date)

                  The date and time on which the crawl completed.

                • ErrorMessage — (String)

                  The error message associated with the crawl.

                • LogGroup — (String)

                  The log group associated with the crawl.

                • LogStream — (String)

                  The log stream associated with the crawl.

          • Edges — (Array<map>)

            A list of all the directed connections between the nodes belonging to the workflow.

            • SourceId — (String)

              The unique of the node within the workflow where the edge starts.

            • DestinationId — (String)

              The unique of the node within the workflow where the edge ends.

        • StartingEventBatchCondition — (map)

          The batch condition that started the workflow run.

          • BatchSize — (Integer)

            Number of events in the batch.

          • BatchWindow — (Integer)

            Duration of the batch window in seconds.

      • NextToken — (String)

        A continuation token, if not all requested workflow runs have been returned.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

importCatalogToGlue(params = {}, callback) ⇒ AWS.Request

Imports an existing Amazon Athena Data Catalog to Glue.

Service Reference:

Examples:

Calling the importCatalogToGlue operation

var params = {
  CatalogId: 'STRING_VALUE'
};
glue.importCatalogToGlue(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the catalog to import. Currently, this should be the Amazon Web Services account ID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listBlueprints(params = {}, callback) ⇒ AWS.Request

Lists all the blueprint names in an account.

Service Reference:

Examples:

Calling the listBlueprints operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.listBlueprints(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      A continuation token, if this is a continuation request.

    • MaxResults — (Integer)

      The maximum size of a list to return.

    • Tags — (map<String>)

      Filters the list by an Amazon Web Services resource tag.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Blueprints — (Array<String>)

        List of names of blueprints in the account.

      • NextToken — (String)

        A continuation token, if not all blueprint names have been returned.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listCrawlers(params = {}, callback) ⇒ AWS.Request

Retrieves the names of all crawler resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.

This operation takes the optional Tags field, which you can use as a filter on the response so that tagged resources can be retrieved as a group. If you choose to use tags filtering, only resources with the tag are retrieved.

Service Reference:

Examples:

Calling the listCrawlers operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.listCrawlers(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • MaxResults — (Integer)

      The maximum size of a list to return.

    • NextToken — (String)

      A continuation token, if this is a continuation request.

    • Tags — (map<String>)

      Specifies to return only these tagged resources.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CrawlerNames — (Array<String>)

        The names of all crawlers in the account, or the crawlers with the specified tags.

      • NextToken — (String)

        A continuation token, if the returned list does not contain the last metric available.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listDevEndpoints(params = {}, callback) ⇒ AWS.Request

Retrieves the names of all DevEndpoint resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.

This operation takes the optional Tags field, which you can use as a filter on the response so that tagged resources can be retrieved as a group. If you choose to use tags filtering, only resources with the tag are retrieved.

Service Reference:

Examples:

Calling the listDevEndpoints operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.listDevEndpoints(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      A continuation token, if this is a continuation request.

    • MaxResults — (Integer)

      The maximum size of a list to return.

    • Tags — (map<String>)

      Specifies to return only these tagged resources.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DevEndpointNames — (Array<String>)

        The names of all the DevEndpoints in the account, or the DevEndpoints with the specified tags.

      • NextToken — (String)

        A continuation token, if the returned list does not contain the last metric available.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listJobs(params = {}, callback) ⇒ AWS.Request

Retrieves the names of all job resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.

This operation takes the optional Tags field, which you can use as a filter on the response so that tagged resources can be retrieved as a group. If you choose to use tags filtering, only resources with the tag are retrieved.

Service Reference:

Examples:

Calling the listJobs operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.listJobs(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      A continuation token, if this is a continuation request.

    • MaxResults — (Integer)

      The maximum size of a list to return.

    • Tags — (map<String>)

      Specifies to return only these tagged resources.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • JobNames — (Array<String>)

        The names of all jobs in the account, or the jobs with the specified tags.

      • NextToken — (String)

        A continuation token, if the returned list does not contain the last metric available.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listMLTransforms(params = {}, callback) ⇒ AWS.Request

Retrieves a sortable, filterable list of existing Glue machine learning transforms in this Amazon Web Services account, or the resources with the specified tag. This operation takes the optional Tags field, which you can use as a filter of the responses so that tagged resources can be retrieved as a group. If you choose to use tag filtering, only resources with the tags are retrieved.

Service Reference:

Examples:

Calling the listMLTransforms operation

var params = {
  Filter: {
    CreatedAfter: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    CreatedBefore: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    GlueVersion: 'STRING_VALUE',
    LastModifiedAfter: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    LastModifiedBefore: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    Name: 'STRING_VALUE',
    Schema: [
      {
        DataType: 'STRING_VALUE',
        Name: 'STRING_VALUE'
      },
      /* more items */
    ],
    Status: NOT_READY | READY | DELETING,
    TransformType: FIND_MATCHES
  },
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  Sort: {
    Column: NAME | TRANSFORM_TYPE | STATUS | CREATED | LAST_MODIFIED, /* required */
    SortDirection: DESCENDING | ASCENDING /* required */
  },
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.listMLTransforms(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      A continuation token, if this is a continuation request.

    • MaxResults — (Integer)

      The maximum size of a list to return.

    • Filter — (map)

      A TransformFilterCriteria used to filter the machine learning transforms.

      • Name — (String)

        A unique transform name that is used to filter the machine learning transforms.

      • TransformType — (String)

        The type of machine learning transform that is used to filter the machine learning transforms.

        Possible values include:
        • "FIND_MATCHES"
      • Status — (String)

        Filters the list of machine learning transforms by the last known status of the transforms (to indicate whether a transform can be used or not). One of "NOT_READY", "READY", or "DELETING".

        Possible values include:
        • "NOT_READY"
        • "READY"
        • "DELETING"
      • GlueVersion — (String)

        This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see Glue Versions in the developer guide.

      • CreatedBefore — (Date)

        The time and date before which the transforms were created.

      • CreatedAfter — (Date)

        The time and date after which the transforms were created.

      • LastModifiedBefore — (Date)

        Filter on transforms last modified before this date.

      • LastModifiedAfter — (Date)

        Filter on transforms last modified after this date.

      • Schema — (Array<map>)

        Filters on datasets with a specific schema. The Map<Column, Type> object is an array of key-value pairs representing the schema this transform accepts, where Column is the name of a column, and Type is the type of the data such as an integer or string. Has an upper bound of 100 columns.

        • Name — (String)

          The name of the column.

        • DataType — (String)

          The type of data in the column.

    • Sort — (map)

      A TransformSortCriteria used to sort the machine learning transforms.

      • Columnrequired — (String)

        The column to be used in the sorting criteria that are associated with the machine learning transform.

        Possible values include:
        • "NAME"
        • "TRANSFORM_TYPE"
        • "STATUS"
        • "CREATED"
        • "LAST_MODIFIED"
      • SortDirectionrequired — (String)

        The sort direction to be used in the sorting criteria that are associated with the machine learning transform.

        Possible values include:
        • "DESCENDING"
        • "ASCENDING"
    • Tags — (map<String>)

      Specifies to return only these tagged resources.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TransformIds — (Array<String>)

        The identifiers of all the machine learning transforms in the account, or the machine learning transforms with the specified tags.

      • NextToken — (String)

        A continuation token, if the returned list does not contain the last metric available.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listRegistries(params = {}, callback) ⇒ AWS.Request

Returns a list of registries that you have created, with minimal registry information. Registries in the Deleting status will not be included in the results. Empty results will be returned if there are no registries available.

Service Reference:

Examples:

Calling the listRegistries operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.listRegistries(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • MaxResults — (Integer)

      Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.

    • NextToken — (String)

      A continuation token, if this is a continuation call.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Registries — (Array<map>)

        An array of RegistryDetailedListItem objects containing minimal details of each registry.

        • RegistryName — (String)

          The name of the registry.

        • RegistryArn — (String)

          The Amazon Resource Name (ARN) of the registry.

        • Description — (String)

          A description of the registry.

        • Status — (String)

          The status of the registry.

          Possible values include:
          • "AVAILABLE"
          • "DELETING"
        • CreatedTime — (String)

          The data the registry was created.

        • UpdatedTime — (String)

          The date the registry was updated.

      • NextToken — (String)

        A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listSchemas(params = {}, callback) ⇒ AWS.Request

Returns a list of schemas with minimal details. Schemas in Deleting status will not be included in the results. Empty results will be returned if there are no schemas available.

When the RegistryId is not provided, all the schemas across registries will be part of the API response.

Service Reference:

Examples:

Calling the listSchemas operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  RegistryId: {
    RegistryArn: 'STRING_VALUE',
    RegistryName: 'STRING_VALUE'
  }
};
glue.listSchemas(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • RegistryId — (map)

      A wrapper structure that may contain the registry name and Amazon Resource Name (ARN).

      • RegistryName — (String)

        Name of the registry. Used only for lookup. One of RegistryArn or RegistryName has to be provided.

      • RegistryArn — (String)

        Arn of the registry to be updated. One of RegistryArn or RegistryName has to be provided.

    • MaxResults — (Integer)

      Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.

    • NextToken — (String)

      A continuation token, if this is a continuation call.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Schemas — (Array<map>)

        An array of SchemaListItem objects containing details of each schema.

        • RegistryName — (String)

          the name of the registry where the schema resides.

        • SchemaName — (String)

          The name of the schema.

        • SchemaArn — (String)

          The Amazon Resource Name (ARN) for the schema.

        • Description — (String)

          A description for the schema.

        • SchemaStatus — (String)

          The status of the schema.

          Possible values include:
          • "AVAILABLE"
          • "PENDING"
          • "DELETING"
        • CreatedTime — (String)

          The date and time that a schema was created.

        • UpdatedTime — (String)

          The date and time that a schema was updated.

      • NextToken — (String)

        A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listSchemaVersions(params = {}, callback) ⇒ AWS.Request

Returns a list of schema versions that you have created, with minimal information. Schema versions in Deleted status will not be included in the results. Empty results will be returned if there are no schema versions available.

Service Reference:

Examples:

Calling the listSchemaVersions operation

var params = {
  SchemaId: { /* required */
    RegistryName: 'STRING_VALUE',
    SchemaArn: 'STRING_VALUE',
    SchemaName: 'STRING_VALUE'
  },
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.listSchemaVersions(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • SchemaId — (map)

      This is a wrapper structure to contain schema identity fields. The structure contains:

      • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

      • SchemaId$SchemaName: The name of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaName — (String)

        The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • RegistryName — (String)

        The name of the schema registry that contains the schema.

    • MaxResults — (Integer)

      Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.

    • NextToken — (String)

      A continuation token, if this is a continuation call.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Schemas — (Array<map>)

        An array of SchemaVersionList objects containing details of each schema version.

        • SchemaArn — (String)

          The Amazon Resource Name (ARN) of the schema.

        • SchemaVersionId — (String)

          The unique identifier of the schema version.

        • VersionNumber — (Integer)

          The version number of the schema.

        • Status — (String)

          The status of the schema version.

          Possible values include:
          • "AVAILABLE"
          • "PENDING"
          • "FAILURE"
          • "DELETING"
        • CreatedTime — (String)

          The date and time the schema version was created.

      • NextToken — (String)

        A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listTriggers(params = {}, callback) ⇒ AWS.Request

Retrieves the names of all trigger resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.

This operation takes the optional Tags field, which you can use as a filter on the response so that tagged resources can be retrieved as a group. If you choose to use tags filtering, only resources with the tag are retrieved.

Service Reference:

Examples:

Calling the listTriggers operation

var params = {
  DependentJobName: 'STRING_VALUE',
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.listTriggers(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      A continuation token, if this is a continuation request.

    • DependentJobName — (String)

      The name of the job for which to retrieve triggers. The trigger that can start this job is returned. If there is no such trigger, all triggers are returned.

    • MaxResults — (Integer)

      The maximum size of a list to return.

    • Tags — (map<String>)

      Specifies to return only these tagged resources.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TriggerNames — (Array<String>)

        The names of all triggers in the account, or the triggers with the specified tags.

      • NextToken — (String)

        A continuation token, if the returned list does not contain the last metric available.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listWorkflows(params = {}, callback) ⇒ AWS.Request

Lists names of workflows created in the account.

Service Reference:

Examples:

Calling the listWorkflows operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
glue.listWorkflows(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      A continuation token, if this is a continuation request.

    • MaxResults — (Integer)

      The maximum size of a list to return.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Workflows — (Array<String>)

        List of names of workflows in the account.

      • NextToken — (String)

        A continuation token, if not all workflow names have been returned.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

putDataCatalogEncryptionSettings(params = {}, callback) ⇒ AWS.Request

Sets the security configuration for a specified catalog. After the configuration has been set, the specified encryption is applied to every catalog write thereafter.

Examples:

Calling the putDataCatalogEncryptionSettings operation

var params = {
  DataCatalogEncryptionSettings: { /* required */
    ConnectionPasswordEncryption: {
      ReturnConnectionPasswordEncrypted: true || false, /* required */
      AwsKmsKeyId: 'STRING_VALUE'
    },
    EncryptionAtRest: {
      CatalogEncryptionMode: DISABLED | SSE-KMS, /* required */
      SseAwsKmsKeyId: 'STRING_VALUE'
    }
  },
  CatalogId: 'STRING_VALUE'
};
glue.putDataCatalogEncryptionSettings(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog to set the security configuration for. If none is provided, the Amazon Web Services account ID is used by default.

    • DataCatalogEncryptionSettings — (map)

      The security configuration to set.

      • EncryptionAtRest — (map)

        Specifies the encryption-at-rest configuration for the Data Catalog.

        • CatalogEncryptionModerequired — (String)

          The encryption-at-rest mode for encrypting Data Catalog data.

          Possible values include:
          • "DISABLED"
          • "SSE-KMS"
        • SseAwsKmsKeyId — (String)

          The ID of the KMS key to use for encryption at rest.

      • ConnectionPasswordEncryption — (map)

        When connection password protection is enabled, the Data Catalog uses a customer-provided key to encrypt the password as part of CreateConnection or UpdateConnection and store it in the ENCRYPTED_PASSWORD field in the connection properties. You can enable catalog encryption or only password encryption.

        • ReturnConnectionPasswordEncryptedrequired — (Boolean)

          When the ReturnConnectionPasswordEncrypted flag is set to "true", passwords remain encrypted in the responses of GetConnection and GetConnections. This encryption takes effect independently from catalog encryption.

        • AwsKmsKeyId — (String)

          An KMS key that is used to encrypt the connection password.

          If connection password protection is enabled, the caller of CreateConnection and UpdateConnection needs at least kms:Encrypt permission on the specified KMS key, to encrypt passwords before storing them in the Data Catalog.

          You can set the decrypt permission to enable or restrict access on the password key according to your security requirements.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

putResourcePolicy(params = {}, callback) ⇒ AWS.Request

Sets the Data Catalog resource policy for access control.

Service Reference:

Examples:

Calling the putResourcePolicy operation

var params = {
  PolicyInJson: 'STRING_VALUE', /* required */
  EnableHybrid: TRUE | FALSE,
  PolicyExistsCondition: MUST_EXIST | NOT_EXIST | NONE,
  PolicyHashCondition: 'STRING_VALUE',
  ResourceArn: 'STRING_VALUE'
};
glue.putResourcePolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • PolicyInJson — (String)

      Contains the policy document to set, in JSON format.

    • ResourceArn — (String)

      Do not use. For internal use only.

    • PolicyHashCondition — (String)

      The hash value returned when the previous policy was set using PutResourcePolicy. Its purpose is to prevent concurrent modifications of a policy. Do not use this parameter if no previous policy has been set.

    • PolicyExistsCondition — (String)

      A value of MUST_EXIST is used to update a policy. A value of NOT_EXIST is used to create a new policy. If a value of NONE or a null value is used, the call does not depend on the existence of a policy.

      Possible values include:
      • "MUST_EXIST"
      • "NOT_EXIST"
      • "NONE"
    • EnableHybrid — (String)

      If 'TRUE', indicates that you are using both methods to grant cross-account access to Data Catalog resources:

      • By directly updating the resource policy with PutResourePolicy

      • By using the Grant permissions command on the Amazon Web Services Management Console.

      Must be set to 'TRUE' if you have already used the Management Console to grant cross-account access, otherwise the call fails. Default is 'FALSE'.

      Possible values include:
      • "TRUE"
      • "FALSE"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • PolicyHash — (String)

        A hash of the policy that has just been set. This must be included in a subsequent call that overwrites or updates this policy.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

putSchemaVersionMetadata(params = {}, callback) ⇒ AWS.Request

Puts the metadata key value pair for a specified schema version ID. A maximum of 10 key value pairs will be allowed per schema version. They can be added over one or more calls.

Service Reference:

Examples:

Calling the putSchemaVersionMetadata operation

var params = {
  MetadataKeyValue: { /* required */
    MetadataKey: 'STRING_VALUE',
    MetadataValue: 'STRING_VALUE'
  },
  SchemaId: {
    RegistryName: 'STRING_VALUE',
    SchemaArn: 'STRING_VALUE',
    SchemaName: 'STRING_VALUE'
  },
  SchemaVersionId: 'STRING_VALUE',
  SchemaVersionNumber: {
    LatestVersion: true || false,
    VersionNumber: 'NUMBER_VALUE'
  }
};
glue.putSchemaVersionMetadata(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • SchemaId — (map)

      The unique ID for the schema.

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaName — (String)

        The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • RegistryName — (String)

        The name of the schema registry that contains the schema.

    • SchemaVersionNumber — (map)

      The version number of the schema.

      • LatestVersion — (Boolean)

        The latest version available for the schema.

      • VersionNumber — (Integer)

        The version number of the schema.

    • SchemaVersionId — (String)

      The unique version ID of the schema version.

    • MetadataKeyValue — (map)

      The metadata key's corresponding value.

      • MetadataKey — (String)

        A metadata key.

      • MetadataValue — (String)

        A metadata key’s corresponding value.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) for the schema.

      • SchemaName — (String)

        The name for the schema.

      • RegistryName — (String)

        The name for the registry.

      • LatestVersion — (Boolean)

        The latest version of the schema.

      • VersionNumber — (Integer)

        The version number of the schema.

      • SchemaVersionId — (String)

        The unique version ID of the schema version.

      • MetadataKey — (String)

        The metadata key.

      • MetadataValue — (String)

        The value of the metadata key.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

putWorkflowRunProperties(params = {}, callback) ⇒ AWS.Request

Puts the specified workflow run properties for the given workflow run. If a property already exists for the specified run, then it overrides the value otherwise adds the property to existing properties.

Service Reference:

Examples:

Calling the putWorkflowRunProperties operation

var params = {
  Name: 'STRING_VALUE', /* required */
  RunId: 'STRING_VALUE', /* required */
  RunProperties: { /* required */
    '<IdString>': 'STRING_VALUE',
    /* '<IdString>': ... */
  }
};
glue.putWorkflowRunProperties(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      Name of the workflow which was run.

    • RunId — (String)

      The ID of the workflow run for which the run properties should be updated.

    • RunProperties — (map<String>)

      The properties to put for the specified run.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

querySchemaVersionMetadata(params = {}, callback) ⇒ AWS.Request

Queries for the schema version metadata information.

Service Reference:

Examples:

Calling the querySchemaVersionMetadata operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  MetadataList: [
    {
      MetadataKey: 'STRING_VALUE',
      MetadataValue: 'STRING_VALUE'
    },
    /* more items */
  ],
  NextToken: 'STRING_VALUE',
  SchemaId: {
    RegistryName: 'STRING_VALUE',
    SchemaArn: 'STRING_VALUE',
    SchemaName: 'STRING_VALUE'
  },
  SchemaVersionId: 'STRING_VALUE',
  SchemaVersionNumber: {
    LatestVersion: true || false,
    VersionNumber: 'NUMBER_VALUE'
  }
};
glue.querySchemaVersionMetadata(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • SchemaId — (map)

      A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaName — (String)

        The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • RegistryName — (String)

        The name of the schema registry that contains the schema.

    • SchemaVersionNumber — (map)

      The version number of the schema.

      • LatestVersion — (Boolean)

        The latest version available for the schema.

      • VersionNumber — (Integer)

        The version number of the schema.

    • SchemaVersionId — (String)

      The unique version ID of the schema version.

    • MetadataList — (Array<map>)

      Search key-value pairs for metadata, if they are not provided all the metadata information will be fetched.

      • MetadataKey — (String)

        A metadata key.

      • MetadataValue — (String)

        A metadata key’s corresponding value.

    • MaxResults — (Integer)

      Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.

    • NextToken — (String)

      A continuation token, if this is a continuation call.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • MetadataInfoMap — (map<map>)

        A map of a metadata key and associated values.

        • MetadataValue — (String)

          The metadata key’s corresponding value.

        • CreatedTime — (String)

          The time at which the entry was created.

        • OtherMetadataValueList — (Array<map>)

          Other metadata belonging to the same metadata key.

          • MetadataValue — (String)

            The metadata key’s corresponding value for the other metadata belonging to the same metadata key.

          • CreatedTime — (String)

            The time at which the entry was created.

      • SchemaVersionId — (String)

        The unique version ID of the schema version.

      • NextToken — (String)

        A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

registerSchemaVersion(params = {}, callback) ⇒ AWS.Request

Adds a new version to the existing schema. Returns an error if new version of schema does not meet the compatibility requirements of the schema set. This API will not create a new schema set and will return a 404 error if the schema set is not already present in the Schema Registry.

If this is the first schema definition to be registered in the Schema Registry, this API will store the schema version and return immediately. Otherwise, this call has the potential to run longer than other operations due to compatibility modes. You can call the GetSchemaVersion API with the SchemaVersionId to check compatibility modes.

If the same schema definition is already stored in Schema Registry as a version, the schema ID of the existing schema is returned to the caller.

Service Reference:

Examples:

Calling the registerSchemaVersion operation

var params = {
  SchemaDefinition: 'STRING_VALUE', /* required */
  SchemaId: { /* required */
    RegistryName: 'STRING_VALUE',
    SchemaArn: 'STRING_VALUE',
    SchemaName: 'STRING_VALUE'
  }
};
glue.registerSchemaVersion(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • SchemaId — (map)

      This is a wrapper structure to contain schema identity fields. The structure contains:

      • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

      • SchemaId$SchemaName: The name of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaName — (String)

        The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • RegistryName — (String)

        The name of the schema registry that contains the schema.

    • SchemaDefinition — (String)

      The schema definition using the DataFormat setting for the SchemaName.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • SchemaVersionId — (String)

        The unique ID that represents the version of this schema.

      • VersionNumber — (Integer)

        The version of this schema (for sync flow only, in case this is the first version).

      • Status — (String)

        The status of the schema version.

        Possible values include:
        • "AVAILABLE"
        • "PENDING"
        • "FAILURE"
        • "DELETING"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

removeSchemaVersionMetadata(params = {}, callback) ⇒ AWS.Request

Removes a key value pair from the schema version metadata for the specified schema version ID.

Service Reference:

Examples:

Calling the removeSchemaVersionMetadata operation

var params = {
  MetadataKeyValue: { /* required */
    MetadataKey: 'STRING_VALUE',
    MetadataValue: 'STRING_VALUE'
  },
  SchemaId: {
    RegistryName: 'STRING_VALUE',
    SchemaArn: 'STRING_VALUE',
    SchemaName: 'STRING_VALUE'
  },
  SchemaVersionId: 'STRING_VALUE',
  SchemaVersionNumber: {
    LatestVersion: true || false,
    VersionNumber: 'NUMBER_VALUE'
  }
};
glue.removeSchemaVersionMetadata(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • SchemaId — (map)

      A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaName — (String)

        The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • RegistryName — (String)

        The name of the schema registry that contains the schema.

    • SchemaVersionNumber — (map)

      The version number of the schema.

      • LatestVersion — (Boolean)

        The latest version available for the schema.

      • VersionNumber — (Integer)

        The version number of the schema.

    • SchemaVersionId — (String)

      The unique version ID of the schema version.

    • MetadataKeyValue — (map)

      The value of the metadata key.

      • MetadataKey — (String)

        A metadata key.

      • MetadataValue — (String)

        A metadata key’s corresponding value.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema.

      • SchemaName — (String)

        The name of the schema.

      • RegistryName — (String)

        The name of the registry.

      • LatestVersion — (Boolean)

        The latest version of the schema.

      • VersionNumber — (Integer)

        The version number of the schema.

      • SchemaVersionId — (String)

        The version ID for the schema version.

      • MetadataKey — (String)

        The metadata key.

      • MetadataValue — (String)

        The value of the metadata key.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

resetJobBookmark(params = {}, callback) ⇒ AWS.Request

Resets a bookmark entry.

Service Reference:

Examples:

Calling the resetJobBookmark operation

var params = {
  JobName: 'STRING_VALUE', /* required */
  RunId: 'STRING_VALUE'
};
glue.resetJobBookmark(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • JobName — (String)

      The name of the job in question.

    • RunId — (String)

      The unique run identifier associated with this job run.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • JobBookmarkEntry — (map)

        The reset bookmark entry.

        • JobName — (String)

          The name of the job in question.

        • Version — (Integer)

          The version of the job.

        • Run — (Integer)

          The run ID number.

        • Attempt — (Integer)

          The attempt ID number.

        • PreviousRunId — (String)

          The unique run identifier associated with the previous job run.

        • RunId — (String)

          The run ID number.

        • JobBookmark — (String)

          The bookmark itself.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

resumeWorkflowRun(params = {}, callback) ⇒ AWS.Request

Restarts selected nodes of a previous partially completed workflow run and resumes the workflow run. The selected nodes and all nodes that are downstream from the selected nodes are run.

Service Reference:

Examples:

Calling the resumeWorkflowRun operation

var params = {
  Name: 'STRING_VALUE', /* required */
  NodeIds: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  RunId: 'STRING_VALUE' /* required */
};
glue.resumeWorkflowRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the workflow to resume.

    • RunId — (String)

      The ID of the workflow run to resume.

    • NodeIds — (Array<String>)

      A list of the node IDs for the nodes you want to restart. The nodes that are to be restarted must have a run attempt in the original run.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RunId — (String)

        The new ID assigned to the resumed workflow run. Each resume of a workflow run will have a new run ID.

      • NodeIds — (Array<String>)

        A list of the node IDs for the nodes that were actually restarted.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

searchTables(params = {}, callback) ⇒ AWS.Request

Searches a set of tables based on properties in the table metadata as well as on the parent database. You can search against text or filter conditions.

You can only get tables that you have access to based on the security policies defined in Lake Formation. You need at least a read-only access to the table for it to be returned. If you do not have access to all the columns in the table, these columns will not be searched against when returning the list of tables back to you. If you have access to the columns but not the data in the columns, those columns and the associated metadata for those columns will be included in the search.

Service Reference:

Examples:

Calling the searchTables operation

var params = {
  CatalogId: 'STRING_VALUE',
  Filters: [
    {
      Comparator: EQUALS | GREATER_THAN | LESS_THAN | GREATER_THAN_EQUALS | LESS_THAN_EQUALS,
      Key: 'STRING_VALUE',
      Value: 'STRING_VALUE'
    },
    /* more items */
  ],
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  ResourceShareType: FOREIGN | ALL,
  SearchText: 'STRING_VALUE',
  SortCriteria: [
    {
      FieldName: 'STRING_VALUE',
      Sort: ASC | DESC
    },
    /* more items */
  ]
};
glue.searchTables(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      A unique identifier, consisting of account_id .

    • NextToken — (String)

      A continuation token, included if this is a continuation call.

    • Filters — (Array<map>)

      A list of key-value pairs, and a comparator used to filter the search results. Returns all entities matching the predicate.

      The Comparator member of the PropertyPredicate struct is used only for time fields, and can be omitted for other field types. Also, when comparing string values, such as when Key=Name, a fuzzy match algorithm is used. The Key field (for example, the value of the Name field) is split on certain punctuation characters, for example, -, :, #, etc. into tokens. Then each token is exact-match compared with the Value member of PropertyPredicate. For example, if Key=Name and Value=link, tables named customer-link and xx-link-yy are returned, but xxlinkyy is not returned.

      • Key — (String)

        The key of the property.

      • Value — (String)

        The value of the property.

      • Comparator — (String)

        The comparator used to compare this property to others.

        Possible values include:
        • "EQUALS"
        • "GREATER_THAN"
        • "LESS_THAN"
        • "GREATER_THAN_EQUALS"
        • "LESS_THAN_EQUALS"
    • SearchText — (String)

      A string used for a text search.

      Specifying a value in quotes filters based on an exact match to the value.

    • SortCriteria — (Array<map>)

      A list of criteria for sorting the results by a field name, in an ascending or descending order.

      • FieldName — (String)

        The name of the field on which to sort.

      • Sort — (String)

        An ascending or descending sort.

        Possible values include:
        • "ASC"
        • "DESC"
    • MaxResults — (Integer)

      The maximum number of tables to return in a single response.

    • ResourceShareType — (String)

      Allows you to specify that you want to search the tables shared with your account. The allowable values are FOREIGN or ALL.

      • If set to FOREIGN, will search the tables shared with your account.

      • If set to ALL, will search the tables shared with your account, as well as the tables in yor local account.

      Possible values include:
      • "FOREIGN"
      • "ALL"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • NextToken — (String)

        A continuation token, present if the current list segment is not the last.

      • TableList — (Array<map>)

        A list of the requested Table objects. The SearchTables response returns only the tables that you have access to.

        • Namerequired — (String)

          The table name. For Hive compatibility, this must be entirely lowercase.

        • DatabaseName — (String)

          The name of the database where the table metadata resides. For Hive compatibility, this must be all lowercase.

        • Description — (String)

          A description of the table.

        • Owner — (String)

          The owner of the table.

        • CreateTime — (Date)

          The time when the table definition was created in the Data Catalog.

        • UpdateTime — (Date)

          The last time that the table was updated.

        • LastAccessTime — (Date)

          The last time that the table was accessed. This is usually taken from HDFS, and might not be reliable.

        • LastAnalyzedTime — (Date)

          The last time that column statistics were computed for this table.

        • Retention — (Integer)

          The retention time for this table.

        • StorageDescriptor — (map)

          A storage descriptor containing information about the physical storage of this table.

          • Columns — (Array<map>)

            A list of the Columns in the table.

            • Namerequired — (String)

              The name of the Column.

            • Type — (String)

              The data type of the Column.

            • Comment — (String)

              A free-form text comment.

            • Parameters — (map<String>)

              These key-value pairs define properties associated with the column.

          • Location — (String)

            The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

          • InputFormat — (String)

            The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

          • OutputFormat — (String)

            The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

          • Compressed — (Boolean)

            True if the data in the table is compressed, or False if not.

          • NumberOfBuckets — (Integer)

            Must be specified if the table contains any dimension columns.

          • SerdeInfo — (map)

            The serialization/deserialization (SerDe) information.

            • Name — (String)

              Name of the SerDe.

            • SerializationLibrary — (String)

              Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

            • Parameters — (map<String>)

              These key-value pairs define initialization parameters for the SerDe.

          • BucketColumns — (Array<String>)

            A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

          • SortColumns — (Array<map>)

            A list specifying the sort order of each bucket in the table.

            • Columnrequired — (String)

              The name of the column.

            • SortOrderrequired — (Integer)

              Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

          • Parameters — (map<String>)

            The user-supplied properties in key-value form.

          • SkewedInfo — (map)

            The information about values that appear frequently in a column (skewed values).

            • SkewedColumnNames — (Array<String>)

              A list of names of columns that contain skewed values.

            • SkewedColumnValues — (Array<String>)

              A list of values that appear so frequently as to be considered skewed.

            • SkewedColumnValueLocationMaps — (map<String>)

              A mapping of skewed values to the columns that contain them.

          • StoredAsSubDirectories — (Boolean)

            True if the table data is stored in subdirectories, or False if not.

          • SchemaReference — (map)

            An object that references a schema stored in the Glue Schema Registry.

            When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

            • SchemaId — (map)

              A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

              • SchemaArn — (String)

                The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

              • SchemaName — (String)

                The name of the schema. One of SchemaArn or SchemaName has to be provided.

              • RegistryName — (String)

                The name of the schema registry that contains the schema.

            • SchemaVersionId — (String)

              The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

            • SchemaVersionNumber — (Integer)

              The version number of the schema.

        • PartitionKeys — (Array<map>)

          A list of columns by which the table is partitioned. Only primitive types are supported as partition keys.

          When you create a table used by Amazon Athena, and you do not specify any partitionKeys, you must at least set the value of partitionKeys to an empty list. For example:

          "PartitionKeys": []

          • Namerequired — (String)

            The name of the Column.

          • Type — (String)

            The data type of the Column.

          • Comment — (String)

            A free-form text comment.

          • Parameters — (map<String>)

            These key-value pairs define properties associated with the column.

        • ViewOriginalText — (String)

          If the table is a view, the original text of the view; otherwise null.

        • ViewExpandedText — (String)

          If the table is a view, the expanded text of the view; otherwise null.

        • TableType — (String)

          The type of this table (EXTERNAL_TABLE, VIRTUAL_VIEW, etc.).

        • Parameters — (map<String>)

          These key-value pairs define properties associated with the table.

        • CreatedBy — (String)

          The person or entity who created the table.

        • IsRegisteredWithLakeFormation — (Boolean)

          Indicates whether the table has been registered with Lake Formation.

        • TargetTable — (map)

          A TableIdentifier structure that describes a target table for resource linking.

          • CatalogId — (String)

            The ID of the Data Catalog in which the table resides.

          • DatabaseName — (String)

            The name of the catalog database that contains the target table.

          • Name — (String)

            The name of the target table.

        • CatalogId — (String)

          The ID of the Data Catalog in which the table resides.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startBlueprintRun(params = {}, callback) ⇒ AWS.Request

Starts a new run of the specified blueprint.

Service Reference:

Examples:

Calling the startBlueprintRun operation

var params = {
  BlueprintName: 'STRING_VALUE', /* required */
  RoleArn: 'STRING_VALUE', /* required */
  Parameters: 'STRING_VALUE'
};
glue.startBlueprintRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • BlueprintName — (String)

      The name of the blueprint.

    • Parameters — (String)

      Specifies the parameters as a BlueprintParameters object.

    • RoleArn — (String)

      Specifies the IAM role used to create the workflow.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RunId — (String)

        The run ID for this blueprint run.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startCrawler(params = {}, callback) ⇒ AWS.Request

Starts a crawl using the specified crawler, regardless of what is scheduled. If the crawler is already running, returns a CrawlerRunningException.

Service Reference:

Examples:

Calling the startCrawler operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.startCrawler(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      Name of the crawler to start.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startCrawlerSchedule(params = {}, callback) ⇒ AWS.Request

Changes the schedule state of the specified crawler to SCHEDULED, unless the crawler is already running or the schedule state is already SCHEDULED.

Service Reference:

Examples:

Calling the startCrawlerSchedule operation

var params = {
  CrawlerName: 'STRING_VALUE' /* required */
};
glue.startCrawlerSchedule(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CrawlerName — (String)

      Name of the crawler to schedule.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startExportLabelsTaskRun(params = {}, callback) ⇒ AWS.Request

Begins an asynchronous task to export all labeled data for a particular transform. This task is the only label-related API call that is not part of the typical active learning workflow. You typically use StartExportLabelsTaskRun when you want to work with all of your existing labels at the same time, such as when you want to remove or change labels that were previously submitted as truth. This API operation accepts the TransformId whose labels you want to export and an Amazon Simple Storage Service (Amazon S3) path to export the labels to. The operation returns a TaskRunId. You can check on the status of your task run by calling the GetMLTaskRun API.

Service Reference:

Examples:

Calling the startExportLabelsTaskRun operation

var params = {
  OutputS3Path: 'STRING_VALUE', /* required */
  TransformId: 'STRING_VALUE' /* required */
};
glue.startExportLabelsTaskRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • TransformId — (String)

      The unique identifier of the machine learning transform.

    • OutputS3Path — (String)

      The Amazon S3 path where you export the labels.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TaskRunId — (String)

        The unique identifier for the task run.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startImportLabelsTaskRun(params = {}, callback) ⇒ AWS.Request

Enables you to provide additional labels (examples of truth) to be used to teach the machine learning transform and improve its quality. This API operation is generally used as part of the active learning workflow that starts with the StartMLLabelingSetGenerationTaskRun call and that ultimately results in improving the quality of your machine learning transform.

After the StartMLLabelingSetGenerationTaskRun finishes, Glue machine learning will have generated a series of questions for humans to answer. (Answering these questions is often called 'labeling' in the machine learning workflows). In the case of the FindMatches transform, these questions are of the form, “What is the correct way to group these rows together into groups composed entirely of matching records?” After the labeling process is finished, users upload their answers/labels with a call to StartImportLabelsTaskRun. After StartImportLabelsTaskRun finishes, all future runs of the machine learning transform use the new and improved labels and perform a higher-quality transformation.

By default, StartMLLabelingSetGenerationTaskRun continually learns from and combines all labels that you upload unless you set Replace to true. If you set Replace to true, StartImportLabelsTaskRun deletes and forgets all previously uploaded labels and learns only from the exact set that you upload. Replacing labels can be helpful if you realize that you previously uploaded incorrect labels, and you believe that they are having a negative effect on your transform quality.

You can check on the status of your task run by calling the GetMLTaskRun operation.

Service Reference:

Examples:

Calling the startImportLabelsTaskRun operation

var params = {
  InputS3Path: 'STRING_VALUE', /* required */
  TransformId: 'STRING_VALUE', /* required */
  ReplaceAllLabels: true || false
};
glue.startImportLabelsTaskRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • TransformId — (String)

      The unique identifier of the machine learning transform.

    • InputS3Path — (String)

      The Amazon Simple Storage Service (Amazon S3) path from where you import the labels.

    • ReplaceAllLabels — (Boolean)

      Indicates whether to overwrite your existing labels.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TaskRunId — (String)

        The unique identifier for the task run.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startJobRun(params = {}, callback) ⇒ AWS.Request

Starts a job run using a job definition.

Service Reference:

Examples:

Calling the startJobRun operation

var params = {
  JobName: 'STRING_VALUE', /* required */
  AllocatedCapacity: 'NUMBER_VALUE',
  Arguments: {
    '<GenericString>': 'STRING_VALUE',
    /* '<GenericString>': ... */
  },
  JobRunId: 'STRING_VALUE',
  MaxCapacity: 'NUMBER_VALUE',
  NotificationProperty: {
    NotifyDelayAfter: 'NUMBER_VALUE'
  },
  NumberOfWorkers: 'NUMBER_VALUE',
  SecurityConfiguration: 'STRING_VALUE',
  Timeout: 'NUMBER_VALUE',
  WorkerType: Standard | G.1X | G.2X
};
glue.startJobRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • JobName — (String)

      The name of the job definition to use.

    • JobRunId — (String)

      The ID of a previous JobRun to retry.

    • Arguments — (map<String>)

      The job arguments specifically for this run. For this job run, they replace the default arguments set in the job definition itself.

      You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

      For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

      For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

    • AllocatedCapacity — (Integer)

      This field is deprecated. Use MaxCapacity instead.

      The number of Glue data processing units (DPUs) to allocate to this JobRun. From 2 to 100 DPUs can be allocated; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

    • Timeout — (Integer)

      The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

    • MaxCapacity — (Float)

      The number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

      Do not set Max Capacity if using WorkerType and NumberOfWorkers.

      The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job, or an Apache Spark ETL job:

      • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

      • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

    • SecurityConfiguration — (String)

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

    • NotificationProperty — (map)

      Specifies configuration properties of a job run notification.

      • NotifyDelayAfter — (Integer)

        After a job run starts, the number of minutes to wait before sending a job run delay notification.

    • WorkerType — (String)

      The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

      • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

      • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

      • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

      Possible values include:
      • "Standard"
      • "G.1X"
      • "G.2X"
    • NumberOfWorkers — (Integer)

      The number of workers of a defined workerType that are allocated when a job runs.

      The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • JobRunId — (String)

        The ID assigned to this job run.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startMLEvaluationTaskRun(params = {}, callback) ⇒ AWS.Request

Starts a task to estimate the quality of the transform.

When you provide label sets as examples of truth, Glue machine learning uses some of those examples to learn from them. The rest of the labels are used as a test to estimate quality.

Returns a unique identifier for the run. You can call GetMLTaskRun to get more information about the stats of the EvaluationTaskRun.

Service Reference:

Examples:

Calling the startMLEvaluationTaskRun operation

var params = {
  TransformId: 'STRING_VALUE' /* required */
};
glue.startMLEvaluationTaskRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • TransformId — (String)

      The unique identifier of the machine learning transform.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TaskRunId — (String)

        The unique identifier associated with this run.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startMLLabelingSetGenerationTaskRun(params = {}, callback) ⇒ AWS.Request

Starts the active learning workflow for your machine learning transform to improve the transform's quality by generating label sets and adding labels.

When the StartMLLabelingSetGenerationTaskRun finishes, Glue will have generated a "labeling set" or a set of questions for humans to answer.

In the case of the FindMatches transform, these questions are of the form, “What is the correct way to group these rows together into groups composed entirely of matching records?”

After the labeling process is finished, you can upload your labels with a call to StartImportLabelsTaskRun. After StartImportLabelsTaskRun finishes, all future runs of the machine learning transform will use the new and improved labels and perform a higher-quality transformation.

Examples:

Calling the startMLLabelingSetGenerationTaskRun operation

var params = {
  OutputS3Path: 'STRING_VALUE', /* required */
  TransformId: 'STRING_VALUE' /* required */
};
glue.startMLLabelingSetGenerationTaskRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • TransformId — (String)

      The unique identifier of the machine learning transform.

    • OutputS3Path — (String)

      The Amazon Simple Storage Service (Amazon S3) path where you generate the labeling set.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TaskRunId — (String)

        The unique run identifier that is associated with this task run.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startTrigger(params = {}, callback) ⇒ AWS.Request

Starts an existing trigger. See Triggering Jobs for information about how different types of trigger are started.

Service Reference:

Examples:

Calling the startTrigger operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.startTrigger(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the trigger to start.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Name — (String)

        The name of the trigger that was started.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startWorkflowRun(params = {}, callback) ⇒ AWS.Request

Starts a new run of the specified workflow.

Service Reference:

Examples:

Calling the startWorkflowRun operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.startWorkflowRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the workflow to start.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RunId — (String)

        An Id for the new run.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

stopCrawler(params = {}, callback) ⇒ AWS.Request

If the specified crawler is running, stops the crawl.

Service Reference:

Examples:

Calling the stopCrawler operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.stopCrawler(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      Name of the crawler to stop.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

stopCrawlerSchedule(params = {}, callback) ⇒ AWS.Request

Sets the schedule state of the specified crawler to NOT_SCHEDULED, but does not stop the crawler if it is already running.

Service Reference:

Examples:

Calling the stopCrawlerSchedule operation

var params = {
  CrawlerName: 'STRING_VALUE' /* required */
};
glue.stopCrawlerSchedule(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CrawlerName — (String)

      Name of the crawler whose schedule state to set.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

stopTrigger(params = {}, callback) ⇒ AWS.Request

Stops a specified trigger.

Service Reference:

Examples:

Calling the stopTrigger operation

var params = {
  Name: 'STRING_VALUE' /* required */
};
glue.stopTrigger(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the trigger to stop.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Name — (String)

        The name of the trigger that was stopped.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

stopWorkflowRun(params = {}, callback) ⇒ AWS.Request

Stops the execution of the specified workflow run.

Service Reference:

Examples:

Calling the stopWorkflowRun operation

var params = {
  Name: 'STRING_VALUE', /* required */
  RunId: 'STRING_VALUE' /* required */
};
glue.stopWorkflowRun(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the workflow to stop.

    • RunId — (String)

      The ID of the workflow run to stop.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

tagResource(params = {}, callback) ⇒ AWS.Request

Adds tags to a resource. A tag is a label you can assign to an Amazon Web Services resource. In Glue, you can tag only certain resources. For information about what resources you can tag, see Amazon Web Services Tags in Glue.

Service Reference:

Examples:

Calling the tagResource operation

var params = {
  ResourceArn: 'STRING_VALUE', /* required */
  TagsToAdd: { /* required */
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
glue.tagResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResourceArn — (String)

      The ARN of the Glue resource to which to add the tags. For more information about Glue resource ARNs, see the Glue ARN string pattern.

    • TagsToAdd — (map<String>)

      Tags to add to this resource.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

untagResource(params = {}, callback) ⇒ AWS.Request

Removes tags from a resource.

Service Reference:

Examples:

Calling the untagResource operation

var params = {
  ResourceArn: 'STRING_VALUE', /* required */
  TagsToRemove: [ /* required */
    'STRING_VALUE',
    /* more items */
  ]
};
glue.untagResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResourceArn — (String)

      The Amazon Resource Name (ARN) of the resource from which to remove the tags.

    • TagsToRemove — (Array<String>)

      Tags to remove from this resource.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateBlueprint(params = {}, callback) ⇒ AWS.Request

Updates a registered blueprint.

Service Reference:

Examples:

Calling the updateBlueprint operation

var params = {
  BlueprintLocation: 'STRING_VALUE', /* required */
  Name: 'STRING_VALUE', /* required */
  Description: 'STRING_VALUE'
};
glue.updateBlueprint(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the blueprint.

    • Description — (String)

      A description of the blueprint.

    • BlueprintLocation — (String)

      Specifies a path in Amazon S3 where the blueprint is published.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Name — (String)

        Returns the name of the blueprint that was updated.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateClassifier(params = {}, callback) ⇒ AWS.Request

Modifies an existing classifier (a GrokClassifier, an XMLClassifier, a JsonClassifier, or a CsvClassifier, depending on which field is present).

Service Reference:

Examples:

Calling the updateClassifier operation

var params = {
  CsvClassifier: {
    Name: 'STRING_VALUE', /* required */
    AllowSingleColumn: true || false,
    ContainsHeader: UNKNOWN | PRESENT | ABSENT,
    Delimiter: 'STRING_VALUE',
    DisableValueTrimming: true || false,
    Header: [
      'STRING_VALUE',
      /* more items */
    ],
    QuoteSymbol: 'STRING_VALUE'
  },
  GrokClassifier: {
    Name: 'STRING_VALUE', /* required */
    Classification: 'STRING_VALUE',
    CustomPatterns: 'STRING_VALUE',
    GrokPattern: 'STRING_VALUE'
  },
  JsonClassifier: {
    Name: 'STRING_VALUE', /* required */
    JsonPath: 'STRING_VALUE'
  },
  XMLClassifier: {
    Name: 'STRING_VALUE', /* required */
    Classification: 'STRING_VALUE',
    RowTag: 'STRING_VALUE'
  }
};
glue.updateClassifier(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • GrokClassifier — (map)

      A GrokClassifier object with updated fields.

      • Namerequired — (String)

        The name of the GrokClassifier.

      • Classification — (String)

        An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, Amazon CloudWatch Logs, and so on.

      • GrokPattern — (String)

        The grok pattern used by this classifier.

      • CustomPatterns — (String)

        Optional custom grok patterns used by this classifier.

    • XMLClassifier — (map)

      An XMLClassifier object with updated fields.

      • Namerequired — (String)

        The name of the classifier.

      • Classification — (String)

        An identifier of the data format that the classifier matches.

      • RowTag — (String)

        The XML tag designating the element that contains each record in an XML document being parsed. This cannot identify a self-closing element (closed by />). An empty row element that contains only attributes can be parsed as long as it ends with a closing tag (for example, <row item_a="A" item_b="B"></row> is okay, but <row item_a="A" item_b="B" /> is not).

    • JsonClassifier — (map)

      A JsonClassifier object with updated fields.

      • Namerequired — (String)

        The name of the classifier.

      • JsonPath — (String)

        A JsonPath string defining the JSON data for the classifier to classify. Glue supports a subset of JsonPath, as described in Writing JsonPath Custom Classifiers.

    • CsvClassifier — (map)

      A CsvClassifier object with updated fields.

      • Namerequired — (String)

        The name of the classifier.

      • Delimiter — (String)

        A custom symbol to denote what separates each column entry in the row.

      • QuoteSymbol — (String)

        A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.

      • ContainsHeader — (String)

        Indicates whether the CSV file contains a header.

        Possible values include:
        • "UNKNOWN"
        • "PRESENT"
        • "ABSENT"
      • Header — (Array<String>)

        A list of strings representing column names.

      • DisableValueTrimming — (Boolean)

        Specifies not to trim values before identifying the type of column values. The default value is true.

      • AllowSingleColumn — (Boolean)

        Enables the processing of files that contain only one column.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateColumnStatisticsForPartition(params = {}, callback) ⇒ AWS.Request

Creates or updates partition statistics of columns.

The Identity and Access Management (IAM) permission required for this operation is UpdatePartition.

Examples:

Calling the updateColumnStatisticsForPartition operation

var params = {
  ColumnStatisticsList: [ /* required */
    {
      AnalyzedTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789, /* required */
      ColumnName: 'STRING_VALUE', /* required */
      ColumnType: 'STRING_VALUE', /* required */
      StatisticsData: { /* required */
        Type: BOOLEAN | DATE | DECIMAL | DOUBLE | LONG | STRING | BINARY, /* required */
        BinaryColumnStatisticsData: {
          AverageLength: 'NUMBER_VALUE', /* required */
          MaximumLength: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE' /* required */
        },
        BooleanColumnStatisticsData: {
          NumberOfFalses: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE', /* required */
          NumberOfTrues: 'NUMBER_VALUE' /* required */
        },
        DateColumnStatisticsData: {
          NumberOfDistinctValues: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE', /* required */
          MaximumValue: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
          MinimumValue: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789
        },
        DecimalColumnStatisticsData: {
          NumberOfDistinctValues: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE', /* required */
          MaximumValue: {
            Scale: 'NUMBER_VALUE', /* required */
            UnscaledValue: Buffer.from('...') || 'STRING_VALUE' /* Strings will be Base-64 encoded on your behalf */ /* required */
          },
          MinimumValue: {
            Scale: 'NUMBER_VALUE', /* required */
            UnscaledValue: Buffer.from('...') || 'STRING_VALUE' /* Strings will be Base-64 encoded on your behalf */ /* required */
          }
        },
        DoubleColumnStatisticsData: {
          NumberOfDistinctValues: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE', /* required */
          MaximumValue: 'NUMBER_VALUE',
          MinimumValue: 'NUMBER_VALUE'
        },
        LongColumnStatisticsData: {
          NumberOfDistinctValues: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE', /* required */
          MaximumValue: 'NUMBER_VALUE',
          MinimumValue: 'NUMBER_VALUE'
        },
        StringColumnStatisticsData: {
          AverageLength: 'NUMBER_VALUE', /* required */
          MaximumLength: 'NUMBER_VALUE', /* required */
          NumberOfDistinctValues: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE' /* required */
        }
      }
    },
    /* more items */
  ],
  DatabaseName: 'STRING_VALUE', /* required */
  PartitionValues: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.updateColumnStatisticsForPartition(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the partitions reside.

    • TableName — (String)

      The name of the partitions' table.

    • PartitionValues — (Array<String>)

      A list of partition values identifying the partition.

    • ColumnStatisticsList — (Array<map>)

      A list of the column statistics.

      • ColumnNamerequired — (String)

        Name of column which statistics belong to.

      • ColumnTyperequired — (String)

        The data type of the column.

      • AnalyzedTimerequired — (Date)

        The timestamp of when column statistics were generated.

      • StatisticsDatarequired — (map)

        A ColumnStatisticData object that contains the statistics data values.

        • Typerequired — (String)

          The type of column statistics data.

          Possible values include:
          • "BOOLEAN"
          • "DATE"
          • "DECIMAL"
          • "DOUBLE"
          • "LONG"
          • "STRING"
          • "BINARY"
        • BooleanColumnStatisticsData — (map)

          Boolean column statistics data.

          • NumberOfTruesrequired — (Integer)

            The number of true values in the column.

          • NumberOfFalsesrequired — (Integer)

            The number of false values in the column.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

        • DateColumnStatisticsData — (map)

          Date column statistics data.

          • MinimumValue — (Date)

            The lowest value in the column.

          • MaximumValue — (Date)

            The highest value in the column.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

          • NumberOfDistinctValuesrequired — (Integer)

            The number of distinct values in a column.

        • DecimalColumnStatisticsData — (map)

          Decimal column statistics data.

          • MinimumValue — (map)

            The lowest value in the column.

            • UnscaledValuerequired — (Buffer, Typed Array, Blob, String)

              The unscaled numeric value.

            • Scalerequired — (Integer)

              The scale that determines where the decimal point falls in the unscaled value.

          • MaximumValue — (map)

            The highest value in the column.

            • UnscaledValuerequired — (Buffer, Typed Array, Blob, String)

              The unscaled numeric value.

            • Scalerequired — (Integer)

              The scale that determines where the decimal point falls in the unscaled value.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

          • NumberOfDistinctValuesrequired — (Integer)

            The number of distinct values in a column.

        • DoubleColumnStatisticsData — (map)

          Double column statistics data.

          • MinimumValue — (Float)

            The lowest value in the column.

          • MaximumValue — (Float)

            The highest value in the column.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

          • NumberOfDistinctValuesrequired — (Integer)

            The number of distinct values in a column.

        • LongColumnStatisticsData — (map)

          Long column statistics data.

          • MinimumValue — (Integer)

            The lowest value in the column.

          • MaximumValue — (Integer)

            The highest value in the column.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

          • NumberOfDistinctValuesrequired — (Integer)

            The number of distinct values in a column.

        • StringColumnStatisticsData — (map)

          String column statistics data.

          • MaximumLengthrequired — (Integer)

            The size of the longest string in the column.

          • AverageLengthrequired — (Float)

            The average string length in the column.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

          • NumberOfDistinctValuesrequired — (Integer)

            The number of distinct values in a column.

        • BinaryColumnStatisticsData — (map)

          Binary column statistics data.

          • MaximumLengthrequired — (Integer)

            The size of the longest bit sequence in the column.

          • AverageLengthrequired — (Float)

            The average bit sequence length in the column.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Errors — (Array<map>)

        Error occurred during updating column statistics data.

        • ColumnStatistics — (map)

          The ColumnStatistics of the column.

          • ColumnNamerequired — (String)

            Name of column which statistics belong to.

          • ColumnTyperequired — (String)

            The data type of the column.

          • AnalyzedTimerequired — (Date)

            The timestamp of when column statistics were generated.

          • StatisticsDatarequired — (map)

            A ColumnStatisticData object that contains the statistics data values.

            • Typerequired — (String)

              The type of column statistics data.

              Possible values include:
              • "BOOLEAN"
              • "DATE"
              • "DECIMAL"
              • "DOUBLE"
              • "LONG"
              • "STRING"
              • "BINARY"
            • BooleanColumnStatisticsData — (map)

              Boolean column statistics data.

              • NumberOfTruesrequired — (Integer)

                The number of true values in the column.

              • NumberOfFalsesrequired — (Integer)

                The number of false values in the column.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

            • DateColumnStatisticsData — (map)

              Date column statistics data.

              • MinimumValue — (Date)

                The lowest value in the column.

              • MaximumValue — (Date)

                The highest value in the column.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

              • NumberOfDistinctValuesrequired — (Integer)

                The number of distinct values in a column.

            • DecimalColumnStatisticsData — (map)

              Decimal column statistics data.

              • MinimumValue — (map)

                The lowest value in the column.

                • UnscaledValuerequired — (Buffer, Typed Array, Blob, String)

                  The unscaled numeric value.

                • Scalerequired — (Integer)

                  The scale that determines where the decimal point falls in the unscaled value.

              • MaximumValue — (map)

                The highest value in the column.

                • UnscaledValuerequired — (Buffer, Typed Array, Blob, String)

                  The unscaled numeric value.

                • Scalerequired — (Integer)

                  The scale that determines where the decimal point falls in the unscaled value.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

              • NumberOfDistinctValuesrequired — (Integer)

                The number of distinct values in a column.

            • DoubleColumnStatisticsData — (map)

              Double column statistics data.

              • MinimumValue — (Float)

                The lowest value in the column.

              • MaximumValue — (Float)

                The highest value in the column.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

              • NumberOfDistinctValuesrequired — (Integer)

                The number of distinct values in a column.

            • LongColumnStatisticsData — (map)

              Long column statistics data.

              • MinimumValue — (Integer)

                The lowest value in the column.

              • MaximumValue — (Integer)

                The highest value in the column.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

              • NumberOfDistinctValuesrequired — (Integer)

                The number of distinct values in a column.

            • StringColumnStatisticsData — (map)

              String column statistics data.

              • MaximumLengthrequired — (Integer)

                The size of the longest string in the column.

              • AverageLengthrequired — (Float)

                The average string length in the column.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

              • NumberOfDistinctValuesrequired — (Integer)

                The number of distinct values in a column.

            • BinaryColumnStatisticsData — (map)

              Binary column statistics data.

              • MaximumLengthrequired — (Integer)

                The size of the longest bit sequence in the column.

              • AverageLengthrequired — (Float)

                The average bit sequence length in the column.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

        • Error — (map)

          An error message with the reason for the failure of an operation.

          • ErrorCode — (String)

            The code associated with this error.

          • ErrorMessage — (String)

            A message describing the error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateColumnStatisticsForTable(params = {}, callback) ⇒ AWS.Request

Creates or updates table statistics of columns.

The Identity and Access Management (IAM) permission required for this operation is UpdateTable.

Service Reference:

Examples:

Calling the updateColumnStatisticsForTable operation

var params = {
  ColumnStatisticsList: [ /* required */
    {
      AnalyzedTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789, /* required */
      ColumnName: 'STRING_VALUE', /* required */
      ColumnType: 'STRING_VALUE', /* required */
      StatisticsData: { /* required */
        Type: BOOLEAN | DATE | DECIMAL | DOUBLE | LONG | STRING | BINARY, /* required */
        BinaryColumnStatisticsData: {
          AverageLength: 'NUMBER_VALUE', /* required */
          MaximumLength: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE' /* required */
        },
        BooleanColumnStatisticsData: {
          NumberOfFalses: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE', /* required */
          NumberOfTrues: 'NUMBER_VALUE' /* required */
        },
        DateColumnStatisticsData: {
          NumberOfDistinctValues: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE', /* required */
          MaximumValue: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
          MinimumValue: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789
        },
        DecimalColumnStatisticsData: {
          NumberOfDistinctValues: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE', /* required */
          MaximumValue: {
            Scale: 'NUMBER_VALUE', /* required */
            UnscaledValue: Buffer.from('...') || 'STRING_VALUE' /* Strings will be Base-64 encoded on your behalf */ /* required */
          },
          MinimumValue: {
            Scale: 'NUMBER_VALUE', /* required */
            UnscaledValue: Buffer.from('...') || 'STRING_VALUE' /* Strings will be Base-64 encoded on your behalf */ /* required */
          }
        },
        DoubleColumnStatisticsData: {
          NumberOfDistinctValues: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE', /* required */
          MaximumValue: 'NUMBER_VALUE',
          MinimumValue: 'NUMBER_VALUE'
        },
        LongColumnStatisticsData: {
          NumberOfDistinctValues: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE', /* required */
          MaximumValue: 'NUMBER_VALUE',
          MinimumValue: 'NUMBER_VALUE'
        },
        StringColumnStatisticsData: {
          AverageLength: 'NUMBER_VALUE', /* required */
          MaximumLength: 'NUMBER_VALUE', /* required */
          NumberOfDistinctValues: 'NUMBER_VALUE', /* required */
          NumberOfNulls: 'NUMBER_VALUE' /* required */
        }
      }
    },
    /* more items */
  ],
  DatabaseName: 'STRING_VALUE', /* required */
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.updateColumnStatisticsForTable(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the partitions reside.

    • TableName — (String)

      The name of the partitions' table.

    • ColumnStatisticsList — (Array<map>)

      A list of the column statistics.

      • ColumnNamerequired — (String)

        Name of column which statistics belong to.

      • ColumnTyperequired — (String)

        The data type of the column.

      • AnalyzedTimerequired — (Date)

        The timestamp of when column statistics were generated.

      • StatisticsDatarequired — (map)

        A ColumnStatisticData object that contains the statistics data values.

        • Typerequired — (String)

          The type of column statistics data.

          Possible values include:
          • "BOOLEAN"
          • "DATE"
          • "DECIMAL"
          • "DOUBLE"
          • "LONG"
          • "STRING"
          • "BINARY"
        • BooleanColumnStatisticsData — (map)

          Boolean column statistics data.

          • NumberOfTruesrequired — (Integer)

            The number of true values in the column.

          • NumberOfFalsesrequired — (Integer)

            The number of false values in the column.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

        • DateColumnStatisticsData — (map)

          Date column statistics data.

          • MinimumValue — (Date)

            The lowest value in the column.

          • MaximumValue — (Date)

            The highest value in the column.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

          • NumberOfDistinctValuesrequired — (Integer)

            The number of distinct values in a column.

        • DecimalColumnStatisticsData — (map)

          Decimal column statistics data.

          • MinimumValue — (map)

            The lowest value in the column.

            • UnscaledValuerequired — (Buffer, Typed Array, Blob, String)

              The unscaled numeric value.

            • Scalerequired — (Integer)

              The scale that determines where the decimal point falls in the unscaled value.

          • MaximumValue — (map)

            The highest value in the column.

            • UnscaledValuerequired — (Buffer, Typed Array, Blob, String)

              The unscaled numeric value.

            • Scalerequired — (Integer)

              The scale that determines where the decimal point falls in the unscaled value.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

          • NumberOfDistinctValuesrequired — (Integer)

            The number of distinct values in a column.

        • DoubleColumnStatisticsData — (map)

          Double column statistics data.

          • MinimumValue — (Float)

            The lowest value in the column.

          • MaximumValue — (Float)

            The highest value in the column.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

          • NumberOfDistinctValuesrequired — (Integer)

            The number of distinct values in a column.

        • LongColumnStatisticsData — (map)

          Long column statistics data.

          • MinimumValue — (Integer)

            The lowest value in the column.

          • MaximumValue — (Integer)

            The highest value in the column.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

          • NumberOfDistinctValuesrequired — (Integer)

            The number of distinct values in a column.

        • StringColumnStatisticsData — (map)

          String column statistics data.

          • MaximumLengthrequired — (Integer)

            The size of the longest string in the column.

          • AverageLengthrequired — (Float)

            The average string length in the column.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

          • NumberOfDistinctValuesrequired — (Integer)

            The number of distinct values in a column.

        • BinaryColumnStatisticsData — (map)

          Binary column statistics data.

          • MaximumLengthrequired — (Integer)

            The size of the longest bit sequence in the column.

          • AverageLengthrequired — (Float)

            The average bit sequence length in the column.

          • NumberOfNullsrequired — (Integer)

            The number of null values in the column.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Errors — (Array<map>)

        List of ColumnStatisticsErrors.

        • ColumnStatistics — (map)

          The ColumnStatistics of the column.

          • ColumnNamerequired — (String)

            Name of column which statistics belong to.

          • ColumnTyperequired — (String)

            The data type of the column.

          • AnalyzedTimerequired — (Date)

            The timestamp of when column statistics were generated.

          • StatisticsDatarequired — (map)

            A ColumnStatisticData object that contains the statistics data values.

            • Typerequired — (String)

              The type of column statistics data.

              Possible values include:
              • "BOOLEAN"
              • "DATE"
              • "DECIMAL"
              • "DOUBLE"
              • "LONG"
              • "STRING"
              • "BINARY"
            • BooleanColumnStatisticsData — (map)

              Boolean column statistics data.

              • NumberOfTruesrequired — (Integer)

                The number of true values in the column.

              • NumberOfFalsesrequired — (Integer)

                The number of false values in the column.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

            • DateColumnStatisticsData — (map)

              Date column statistics data.

              • MinimumValue — (Date)

                The lowest value in the column.

              • MaximumValue — (Date)

                The highest value in the column.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

              • NumberOfDistinctValuesrequired — (Integer)

                The number of distinct values in a column.

            • DecimalColumnStatisticsData — (map)

              Decimal column statistics data.

              • MinimumValue — (map)

                The lowest value in the column.

                • UnscaledValuerequired — (Buffer, Typed Array, Blob, String)

                  The unscaled numeric value.

                • Scalerequired — (Integer)

                  The scale that determines where the decimal point falls in the unscaled value.

              • MaximumValue — (map)

                The highest value in the column.

                • UnscaledValuerequired — (Buffer, Typed Array, Blob, String)

                  The unscaled numeric value.

                • Scalerequired — (Integer)

                  The scale that determines where the decimal point falls in the unscaled value.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

              • NumberOfDistinctValuesrequired — (Integer)

                The number of distinct values in a column.

            • DoubleColumnStatisticsData — (map)

              Double column statistics data.

              • MinimumValue — (Float)

                The lowest value in the column.

              • MaximumValue — (Float)

                The highest value in the column.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

              • NumberOfDistinctValuesrequired — (Integer)

                The number of distinct values in a column.

            • LongColumnStatisticsData — (map)

              Long column statistics data.

              • MinimumValue — (Integer)

                The lowest value in the column.

              • MaximumValue — (Integer)

                The highest value in the column.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

              • NumberOfDistinctValuesrequired — (Integer)

                The number of distinct values in a column.

            • StringColumnStatisticsData — (map)

              String column statistics data.

              • MaximumLengthrequired — (Integer)

                The size of the longest string in the column.

              • AverageLengthrequired — (Float)

                The average string length in the column.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

              • NumberOfDistinctValuesrequired — (Integer)

                The number of distinct values in a column.

            • BinaryColumnStatisticsData — (map)

              Binary column statistics data.

              • MaximumLengthrequired — (Integer)

                The size of the longest bit sequence in the column.

              • AverageLengthrequired — (Float)

                The average bit sequence length in the column.

              • NumberOfNullsrequired — (Integer)

                The number of null values in the column.

        • Error — (map)

          An error message with the reason for the failure of an operation.

          • ErrorCode — (String)

            The code associated with this error.

          • ErrorMessage — (String)

            A message describing the error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateConnection(params = {}, callback) ⇒ AWS.Request

Updates a connection definition in the Data Catalog.

Service Reference:

Examples:

Calling the updateConnection operation

var params = {
  ConnectionInput: { /* required */
    ConnectionProperties: { /* required */
      '<ConnectionPropertyKey>': 'STRING_VALUE',
      /* '<ConnectionPropertyKey>': ... */
    },
    ConnectionType: JDBC | SFTP | MONGODB | KAFKA | NETWORK | MARKETPLACE | CUSTOM, /* required */
    Name: 'STRING_VALUE', /* required */
    Description: 'STRING_VALUE',
    MatchCriteria: [
      'STRING_VALUE',
      /* more items */
    ],
    PhysicalConnectionRequirements: {
      AvailabilityZone: 'STRING_VALUE',
      SecurityGroupIdList: [
        'STRING_VALUE',
        /* more items */
      ],
      SubnetId: 'STRING_VALUE'
    }
  },
  Name: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.updateConnection(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog in which the connection resides. If none is provided, the Amazon Web Services account ID is used by default.

    • Name — (String)

      The name of the connection definition to update.

    • ConnectionInput — (map)

      A ConnectionInput object that redefines the connection in question.

      • Namerequired — (String)

        The name of the connection.

      • Description — (String)

        The description of the connection.

      • ConnectionTyperequired — (String)

        The type of the connection. Currently, these types are supported:

        • JDBC - Designates a connection to a database through Java Database Connectivity (JDBC).

        • KAFKA - Designates a connection to an Apache Kafka streaming platform.

        • MONGODB - Designates a connection to a MongoDB document database.

        • NETWORK - Designates a network connection to a data source within an Amazon Virtual Private Cloud environment (Amazon VPC).

        • MARKETPLACE - Uses configuration settings contained in a connector purchased from Amazon Web Services Marketplace to read from and write to data stores that are not natively supported by Glue.

        • CUSTOM - Uses configuration settings contained in a custom connector to read from and write to data stores that are not natively supported by Glue.

        SFTP is not supported.

        Possible values include:
        • "JDBC"
        • "SFTP"
        • "MONGODB"
        • "KAFKA"
        • "NETWORK"
        • "MARKETPLACE"
        • "CUSTOM"
      • MatchCriteria — (Array<String>)

        A list of criteria that can be used in selecting this connection.

      • ConnectionPropertiesrequired — (map<String>)

        These key-value pairs define parameters for the connection.

      • PhysicalConnectionRequirements — (map)

        A map of physical connection requirements, such as virtual private cloud (VPC) and SecurityGroup, that are needed to successfully make this connection.

        • SubnetId — (String)

          The subnet ID used by the connection.

        • SecurityGroupIdList — (Array<String>)

          The security group ID list used by the connection.

        • AvailabilityZone — (String)

          The connection's Availability Zone. This field is redundant because the specified subnet implies the Availability Zone to be used. Currently the field must be populated, but it will be deprecated in the future.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateCrawler(params = {}, callback) ⇒ AWS.Request

Updates a crawler. If a crawler is running, you must stop it using StopCrawler before updating it.

Service Reference:

Examples:

Calling the updateCrawler operation

var params = {
  Name: 'STRING_VALUE', /* required */
  Classifiers: [
    'STRING_VALUE',
    /* more items */
  ],
  Configuration: 'STRING_VALUE',
  CrawlerSecurityConfiguration: 'STRING_VALUE',
  DatabaseName: 'STRING_VALUE',
  Description: 'STRING_VALUE',
  LineageConfiguration: {
    CrawlerLineageSettings: ENABLE | DISABLE
  },
  RecrawlPolicy: {
    RecrawlBehavior: CRAWL_EVERYTHING | CRAWL_NEW_FOLDERS_ONLY | CRAWL_EVENT_MODE
  },
  Role: 'STRING_VALUE',
  Schedule: 'STRING_VALUE',
  SchemaChangePolicy: {
    DeleteBehavior: LOG | DELETE_FROM_DATABASE | DEPRECATE_IN_DATABASE,
    UpdateBehavior: LOG | UPDATE_IN_DATABASE
  },
  TablePrefix: 'STRING_VALUE',
  Targets: {
    CatalogTargets: [
      {
        DatabaseName: 'STRING_VALUE', /* required */
        Tables: [ /* required */
          'STRING_VALUE',
          /* more items */
        ]
      },
      /* more items */
    ],
    DynamoDBTargets: [
      {
        Path: 'STRING_VALUE',
        scanAll: true || false,
        scanRate: 'NUMBER_VALUE'
      },
      /* more items */
    ],
    JdbcTargets: [
      {
        ConnectionName: 'STRING_VALUE',
        Exclusions: [
          'STRING_VALUE',
          /* more items */
        ],
        Path: 'STRING_VALUE'
      },
      /* more items */
    ],
    MongoDBTargets: [
      {
        ConnectionName: 'STRING_VALUE',
        Path: 'STRING_VALUE',
        ScanAll: true || false
      },
      /* more items */
    ],
    S3Targets: [
      {
        ConnectionName: 'STRING_VALUE',
        DlqEventQueueArn: 'STRING_VALUE',
        EventQueueArn: 'STRING_VALUE',
        Exclusions: [
          'STRING_VALUE',
          /* more items */
        ],
        Path: 'STRING_VALUE',
        SampleSize: 'NUMBER_VALUE'
      },
      /* more items */
    ]
  }
};
glue.updateCrawler(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      Name of the new crawler.

    • Role — (String)

      The IAM role or Amazon Resource Name (ARN) of an IAM role that is used by the new crawler to access customer resources.

    • DatabaseName — (String)

      The Glue database where results are stored, such as: arn:aws:daylight:us-east-1::database/sometable/*.

    • Description — (String)

      A description of the new crawler.

    • Targets — (map)

      A list of targets to crawl.

      • S3Targets — (Array<map>)

        Specifies Amazon Simple Storage Service (Amazon S3) targets.

        • Path — (String)

          The path to the Amazon S3 target.

        • Exclusions — (Array<String>)

          A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

        • ConnectionName — (String)

          The name of a connection which allows a job or crawler to access data in Amazon S3 within an Amazon Virtual Private Cloud environment (Amazon VPC).

        • SampleSize — (Integer)

          Sets the number of files in each leaf folder to be crawled when crawling sample files in a dataset. If not set, all the files are crawled. A valid value is an integer between 1 and 249.

        • EventQueueArn — (String)

          A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.

        • DlqEventQueueArn — (String)

          A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.

      • JdbcTargets — (Array<map>)

        Specifies JDBC targets.

        • ConnectionName — (String)

          The name of the connection to use to connect to the JDBC target.

        • Path — (String)

          The path of the JDBC target.

        • Exclusions — (Array<String>)

          A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

      • MongoDBTargets — (Array<map>)

        Specifies Amazon DocumentDB or MongoDB targets.

        • ConnectionName — (String)

          The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.

        • Path — (String)

          The path of the Amazon DocumentDB or MongoDB target (database/collection).

        • ScanAll — (Boolean)

          Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.

          A value of true means to scan all records, while a value of false means to sample the records. If no value is specified, the value defaults to true.

      • DynamoDBTargets — (Array<map>)

        Specifies Amazon DynamoDB targets.

        • Path — (String)

          The name of the DynamoDB table to crawl.

        • scanAll — (Boolean)

          Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.

          A value of true means to scan all records, while a value of false means to sample the records. If no value is specified, the value defaults to true.

        • scanRate — (Float)

          The percentage of the configured read capacity units to use by the Glue crawler. Read capacity units is a term defined by DynamoDB, and is a numeric value that acts as rate limiter for the number of reads that can be performed on that table per second.

          The valid values are null or a value between 0.1 to 1.5. A null value is used when user does not provide a value, and defaults to 0.5 of the configured Read Capacity Unit (for provisioned tables), or 0.25 of the max configured Read Capacity Unit (for tables using on-demand mode).

      • CatalogTargets — (Array<map>)

        Specifies Glue Data Catalog targets.

        • DatabaseNamerequired — (String)

          The name of the database to be synchronized.

        • Tablesrequired — (Array<String>)

          A list of the tables to be synchronized.

    • Schedule — (String)

      A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

    • Classifiers — (Array<String>)

      A list of custom classifiers that the user has registered. By default, all built-in classifiers are included in a crawl, but these custom classifiers always override the default classifiers for a given classification.

    • TablePrefix — (String)

      The table prefix used for catalog tables that are created.

    • SchemaChangePolicy — (map)

      The policy for the crawler's update and deletion behavior.

      • UpdateBehavior — (String)

        The update behavior when the crawler finds a changed schema.

        Possible values include:
        • "LOG"
        • "UPDATE_IN_DATABASE"
      • DeleteBehavior — (String)

        The deletion behavior when the crawler finds a deleted object.

        Possible values include:
        • "LOG"
        • "DELETE_FROM_DATABASE"
        • "DEPRECATE_IN_DATABASE"
    • RecrawlPolicy — (map)

      A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.

      • RecrawlBehavior — (String)

        Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.

        A value of CRAWL_EVERYTHING specifies crawling the entire dataset again.

        A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that were added since the last crawler run.

        A value of CRAWL_EVENT_MODE specifies crawling only the changes identified by Amazon S3 events.

        Possible values include:
        • "CRAWL_EVERYTHING"
        • "CRAWL_NEW_FOLDERS_ONLY"
        • "CRAWL_EVENT_MODE"
    • LineageConfiguration — (map)

      Specifies data lineage configuration settings for the crawler.

      • CrawlerLineageSettings — (String)

        Specifies whether data lineage is enabled for the crawler. Valid values are:

        • ENABLE: enables data lineage for the crawler

        • DISABLE: disables data lineage for the crawler

        Possible values include:
        • "ENABLE"
        • "DISABLE"
    • Configuration — (String)

      Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Configuring a Crawler.

    • CrawlerSecurityConfiguration — (String)

      The name of the SecurityConfiguration structure to be used by this crawler.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateCrawlerSchedule(params = {}, callback) ⇒ AWS.Request

Updates the schedule of a crawler using a cron expression.

Service Reference:

Examples:

Calling the updateCrawlerSchedule operation

var params = {
  CrawlerName: 'STRING_VALUE', /* required */
  Schedule: 'STRING_VALUE'
};
glue.updateCrawlerSchedule(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CrawlerName — (String)

      The name of the crawler whose schedule to update.

    • Schedule — (String)

      The updated cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateDatabase(params = {}, callback) ⇒ AWS.Request

Updates an existing database definition in a Data Catalog.

Service Reference:

Examples:

Calling the updateDatabase operation

var params = {
  DatabaseInput: { /* required */
    Name: 'STRING_VALUE', /* required */
    CreateTableDefaultPermissions: [
      {
        Permissions: [
          ALL | SELECT | ALTER | DROP | DELETE | INSERT | CREATE_DATABASE | CREATE_TABLE | DATA_LOCATION_ACCESS,
          /* more items */
        ],
        Principal: {
          DataLakePrincipalIdentifier: 'STRING_VALUE'
        }
      },
      /* more items */
    ],
    Description: 'STRING_VALUE',
    LocationUri: 'STRING_VALUE',
    Parameters: {
      '<KeyString>': 'STRING_VALUE',
      /* '<KeyString>': ... */
    },
    TargetDatabase: {
      CatalogId: 'STRING_VALUE',
      DatabaseName: 'STRING_VALUE'
    }
  },
  Name: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.updateDatabase(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog in which the metadata database resides. If none is provided, the Amazon Web Services account ID is used by default.

    • Name — (String)

      The name of the database to update in the catalog. For Hive compatibility, this is folded to lowercase.

    • DatabaseInput — (map)

      A DatabaseInput object specifying the new definition of the metadata database in the catalog.

      • Namerequired — (String)

        The name of the database. For Hive compatibility, this is folded to lowercase when it is stored.

      • Description — (String)

        A description of the database.

      • LocationUri — (String)

        The location of the database (for example, an HDFS path).

      • Parameters — (map<String>)

        These key-value pairs define parameters and properties of the database.

        These key-value pairs define parameters and properties of the database.

      • CreateTableDefaultPermissions — (Array<map>)

        Creates a set of default permissions on the table for principals.

        • Principal — (map)

          The principal who is granted permissions.

          • DataLakePrincipalIdentifier — (String)

            An identifier for the Lake Formation principal.

        • Permissions — (Array<String>)

          The permissions that are granted to the principal.

      • TargetDatabase — (map)

        A DatabaseIdentifier structure that describes a target database for resource linking.

        • CatalogId — (String)

          The ID of the Data Catalog in which the database resides.

        • DatabaseName — (String)

          The name of the catalog database.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateDevEndpoint(params = {}, callback) ⇒ AWS.Request

Updates a specified development endpoint.

Service Reference:

Examples:

Calling the updateDevEndpoint operation

var params = {
  EndpointName: 'STRING_VALUE', /* required */
  AddArguments: {
    '<GenericString>': 'STRING_VALUE',
    /* '<GenericString>': ... */
  },
  AddPublicKeys: [
    'STRING_VALUE',
    /* more items */
  ],
  CustomLibraries: {
    ExtraJarsS3Path: 'STRING_VALUE',
    ExtraPythonLibsS3Path: 'STRING_VALUE'
  },
  DeleteArguments: [
    'STRING_VALUE',
    /* more items */
  ],
  DeletePublicKeys: [
    'STRING_VALUE',
    /* more items */
  ],
  PublicKey: 'STRING_VALUE',
  UpdateEtlLibraries: true || false
};
glue.updateDevEndpoint(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • EndpointName — (String)

      The name of the DevEndpoint to be updated.

    • PublicKey — (String)

      The public key for the DevEndpoint to use.

    • AddPublicKeys — (Array<String>)

      The list of public keys for the DevEndpoint to use.

    • DeletePublicKeys — (Array<String>)

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

    • CustomLibraries — (map)

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

      • ExtraPythonLibsS3Path — (String)

        The paths to one or more Python libraries in an Amazon Simple Storage Service (Amazon S3) bucket that should be loaded in your DevEndpoint. Multiple values must be complete paths separated by a comma.

        Note: You can only use pure Python libraries with a DevEndpoint. Libraries that rely on C extensions, such as the pandas Python data analysis library, are not currently supported.
      • ExtraJarsS3Path — (String)

        The path to one or more Java .jar files in an S3 bucket that should be loaded in your DevEndpoint.

        Note: You can only use pure Java/Scala libraries with a DevEndpoint.
    • UpdateEtlLibraries — (Boolean)

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

    • DeleteArguments — (Array<String>)

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

    • AddArguments — (map<String>)

      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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateJob(params = {}, callback) ⇒ AWS.Request

Updates an existing job definition.

Service Reference:

Examples:

Calling the updateJob operation

var params = {
  JobName: 'STRING_VALUE', /* required */
  JobUpdate: { /* required */
    AllocatedCapacity: 'NUMBER_VALUE',
    Command: {
      Name: 'STRING_VALUE',
      PythonVersion: 'STRING_VALUE',
      ScriptLocation: 'STRING_VALUE'
    },
    Connections: {
      Connections: [
        'STRING_VALUE',
        /* more items */
      ]
    },
    DefaultArguments: {
      '<GenericString>': 'STRING_VALUE',
      /* '<GenericString>': ... */
    },
    Description: 'STRING_VALUE',
    ExecutionProperty: {
      MaxConcurrentRuns: 'NUMBER_VALUE'
    },
    GlueVersion: 'STRING_VALUE',
    LogUri: 'STRING_VALUE',
    MaxCapacity: 'NUMBER_VALUE',
    MaxRetries: 'NUMBER_VALUE',
    NonOverridableArguments: {
      '<GenericString>': 'STRING_VALUE',
      /* '<GenericString>': ... */
    },
    NotificationProperty: {
      NotifyDelayAfter: 'NUMBER_VALUE'
    },
    NumberOfWorkers: 'NUMBER_VALUE',
    Role: 'STRING_VALUE',
    SecurityConfiguration: 'STRING_VALUE',
    Timeout: 'NUMBER_VALUE',
    WorkerType: Standard | G.1X | G.2X
  }
};
glue.updateJob(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • JobName — (String)

      The name of the job definition to update.

    • JobUpdate — (map)

      Specifies the values with which to update the job definition.

      • Description — (String)

        Description of the job being defined.

      • LogUri — (String)

        This field is reserved for future use.

      • Role — (String)

        The name or Amazon Resource Name (ARN) of the IAM role associated with this job (required).

      • ExecutionProperty — (map)

        An ExecutionProperty specifying the maximum number of concurrent runs allowed for this job.

        • MaxConcurrentRuns — (Integer)

          The maximum number of concurrent runs allowed for the job. The default is 1. An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit.

      • Command — (map)

        The JobCommand that runs this job (required).

        • Name — (String)

          The name of the job command. For an Apache Spark ETL job, this must be glueetl. For a Python shell job, it must be pythonshell. For an Apache Spark streaming ETL job, this must be gluestreaming.

        • ScriptLocation — (String)

          Specifies the Amazon Simple Storage Service (Amazon S3) path to a script that runs a job.

        • PythonVersion — (String)

          The Python version being used to run a Python shell job. Allowed values are 2 or 3.

      • DefaultArguments — (map<String>)

        The default arguments for this job.

        You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

        For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

        For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

      • NonOverridableArguments — (map<String>)

        Non-overridable arguments for this job, specified as name-value pairs.

      • Connections — (map)

        The connections used for this job.

        • Connections — (Array<String>)

          A list of connections used by the job.

      • MaxRetries — (Integer)

        The maximum number of times to retry this job if it fails.

      • AllocatedCapacity — (Integer)

        This field is deprecated. Use MaxCapacity instead.

        The number of Glue data processing units (DPUs) to allocate to this job. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

      • Timeout — (Integer)

        The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).

      • MaxCapacity — (Float)

        For Glue version 1.0 or earlier jobs, using the standard worker type, the number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

        Do not set Max Capacity if using WorkerType and NumberOfWorkers.

        The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job or an Apache Spark ETL job:

        • When you specify a Python shell job (JobCommand.Name="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU.

        • When you specify an Apache Spark ETL job (JobCommand.Name="glueetl") or Apache Spark streaming ETL job (JobCommand.Name="gluestreaming"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.

        For Glue version 2.0 jobs, you cannot instead specify a Maximum capacity. Instead, you should specify a Worker type and the Number of workers.

      • WorkerType — (String)

        The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.

        • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

        • For the G.1X worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

        • For the G.2X worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.

        Possible values include:
        • "Standard"
        • "G.1X"
        • "G.2X"
      • NumberOfWorkers — (Integer)

        The number of workers of a defined workerType that are allocated when a job runs.

        The maximum number of workers you can define are 299 for G.1X, and 149 for G.2X.

      • SecurityConfiguration — (String)

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

      • NotificationProperty — (map)

        Specifies the configuration properties of a job notification.

        • NotifyDelayAfter — (Integer)

          After a job run starts, the number of minutes to wait before sending a job run delay notification.

      • GlueVersion — (String)

        Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.

        For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • JobName — (String)

        Returns the name of the updated job definition.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateMLTransform(params = {}, callback) ⇒ AWS.Request

Updates an existing machine learning transform. Call this operation to tune the algorithm parameters to achieve better results.

After calling this operation, you can call the StartMLEvaluationTaskRun operation to assess how well your new parameters achieved your goals (such as improving the quality of your machine learning transform, or making it more cost-effective).

Service Reference:

Examples:

Calling the updateMLTransform operation

var params = {
  TransformId: 'STRING_VALUE', /* required */
  Description: 'STRING_VALUE',
  GlueVersion: 'STRING_VALUE',
  MaxCapacity: 'NUMBER_VALUE',
  MaxRetries: 'NUMBER_VALUE',
  Name: 'STRING_VALUE',
  NumberOfWorkers: 'NUMBER_VALUE',
  Parameters: {
    TransformType: FIND_MATCHES, /* required */
    FindMatchesParameters: {
      AccuracyCostTradeoff: 'NUMBER_VALUE',
      EnforceProvidedLabels: true || false,
      PrecisionRecallTradeoff: 'NUMBER_VALUE',
      PrimaryKeyColumnName: 'STRING_VALUE'
    }
  },
  Role: 'STRING_VALUE',
  Timeout: 'NUMBER_VALUE',
  WorkerType: Standard | G.1X | G.2X
};
glue.updateMLTransform(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • TransformId — (String)

      A unique identifier that was generated when the transform was created.

    • Name — (String)

      The unique name that you gave the transform when you created it.

    • Description — (String)

      A description of the transform. The default is an empty string.

    • Parameters — (map)

      The configuration parameters that are specific to the transform type (algorithm) used. Conditionally dependent on the transform type.

      • TransformTyperequired — (String)

        The type of machine learning transform.

        For information about the types of machine learning transforms, see Creating Machine Learning Transforms.

        Possible values include:
        • "FIND_MATCHES"
      • FindMatchesParameters — (map)

        The parameters for the find matches algorithm.

        • PrimaryKeyColumnName — (String)

          The name of a column that uniquely identifies rows in the source table. Used to help identify matching records.

        • PrecisionRecallTradeoff — (Float)

          The value selected when tuning your transform for a balance between precision and recall. A value of 0.5 means no preference; a value of 1.0 means a bias purely for precision, and a value of 0.0 means a bias for recall. Because this is a tradeoff, choosing values close to 1.0 means very low recall, and choosing values close to 0.0 results in very low precision.

          The precision metric indicates how often your model is correct when it predicts a match.

          The recall metric indicates that for an actual match, how often your model predicts the match.

        • AccuracyCostTradeoff — (Float)

          The value that is selected when tuning your transform for a balance between accuracy and cost. A value of 0.5 means that the system balances accuracy and cost concerns. A value of 1.0 means a bias purely for accuracy, which typically results in a higher cost, sometimes substantially higher. A value of 0.0 means a bias purely for cost, which results in a less accurate FindMatches transform, sometimes with unacceptable accuracy.

          Accuracy measures how well the transform finds true positives and true negatives. Increasing accuracy requires more machine resources and cost. But it also results in increased recall.

          Cost measures how many compute resources, and thus money, are consumed to run the transform.

        • EnforceProvidedLabels — (Boolean)

          The value to switch on or off to force the output to match the provided labels from users. If the value is True, the find matches transform forces the output to match the provided labels. The results override the normal conflation results. If the value is False, the find matches transform does not ensure all the labels provided are respected, and the results rely on the trained model.

          Note that setting this value to true may increase the conflation execution time.

    • Role — (String)

      The name or Amazon Resource Name (ARN) of the IAM role with the required permissions.

    • GlueVersion — (String)

      This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see Glue Versions in the developer guide.

    • MaxCapacity — (Float)

      The number of Glue data processing units (DPUs) that are allocated to task runs for this transform. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page.

      When the WorkerType field is set to a value other than Standard, the MaxCapacity field is set automatically and becomes read-only.

    • WorkerType — (String)

      The type of predefined worker that is allocated when this task runs. Accepts a value of Standard, G.1X, or G.2X.

      • For the Standard worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.

      • For the G.1X worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.

      • For the G.2X worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.

      Possible values include:
      • "Standard"
      • "G.1X"
      • "G.2X"
    • NumberOfWorkers — (Integer)

      The number of workers of a defined workerType that are allocated when this task runs.

    • Timeout — (Integer)

      The timeout for a task run for this transform in minutes. This is the maximum time that a task run for this transform can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).

    • MaxRetries — (Integer)

      The maximum number of times to retry a task for this transform after a task run fails.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • TransformId — (String)

        The unique identifier for the transform that was updated.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updatePartition(params = {}, callback) ⇒ AWS.Request

Updates a partition.

Service Reference:

Examples:

Calling the updatePartition operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  PartitionInput: { /* required */
    LastAccessTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    LastAnalyzedTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    Parameters: {
      '<KeyString>': 'STRING_VALUE',
      /* '<KeyString>': ... */
    },
    StorageDescriptor: {
      BucketColumns: [
        'STRING_VALUE',
        /* more items */
      ],
      Columns: [
        {
          Name: 'STRING_VALUE', /* required */
          Comment: 'STRING_VALUE',
          Parameters: {
            '<KeyString>': 'STRING_VALUE',
            /* '<KeyString>': ... */
          },
          Type: 'STRING_VALUE'
        },
        /* more items */
      ],
      Compressed: true || false,
      InputFormat: 'STRING_VALUE',
      Location: 'STRING_VALUE',
      NumberOfBuckets: 'NUMBER_VALUE',
      OutputFormat: 'STRING_VALUE',
      Parameters: {
        '<KeyString>': 'STRING_VALUE',
        /* '<KeyString>': ... */
      },
      SchemaReference: {
        SchemaId: {
          RegistryName: 'STRING_VALUE',
          SchemaArn: 'STRING_VALUE',
          SchemaName: 'STRING_VALUE'
        },
        SchemaVersionId: 'STRING_VALUE',
        SchemaVersionNumber: 'NUMBER_VALUE'
      },
      SerdeInfo: {
        Name: 'STRING_VALUE',
        Parameters: {
          '<KeyString>': 'STRING_VALUE',
          /* '<KeyString>': ... */
        },
        SerializationLibrary: 'STRING_VALUE'
      },
      SkewedInfo: {
        SkewedColumnNames: [
          'STRING_VALUE',
          /* more items */
        ],
        SkewedColumnValueLocationMaps: {
          '<ColumnValuesString>': 'STRING_VALUE',
          /* '<ColumnValuesString>': ... */
        },
        SkewedColumnValues: [
          'STRING_VALUE',
          /* more items */
        ]
      },
      SortColumns: [
        {
          Column: 'STRING_VALUE', /* required */
          SortOrder: 'NUMBER_VALUE' /* required */
        },
        /* more items */
      ],
      StoredAsSubDirectories: true || false
    },
    Values: [
      'STRING_VALUE',
      /* more items */
    ]
  },
  PartitionValueList: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  TableName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.updatePartition(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the partition to be updated resides. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database in which the table in question resides.

    • TableName — (String)

      The name of the table in which the partition to be updated is located.

    • PartitionValueList — (Array<String>)

      List of partition key values that define the partition to update.

    • PartitionInput — (map)

      The new partition object to update the partition to.

      The Values property can't be changed. If you want to change the partition key values for a partition, delete and recreate the partition.

      • Values — (Array<String>)

        The values of the partition. Although this parameter is not required by the SDK, you must specify this parameter for a valid input.

        The values for the keys for the new partition must be passed as an array of String objects that must be ordered in the same order as the partition keys appearing in the Amazon S3 prefix. Otherwise Glue will add the values to the wrong keys.

      • LastAccessTime — (Date)

        The last time at which the partition was accessed.

      • StorageDescriptor — (map)

        Provides information about the physical location where the partition is stored.

        • Columns — (Array<map>)

          A list of the Columns in the table.

          • Namerequired — (String)

            The name of the Column.

          • Type — (String)

            The data type of the Column.

          • Comment — (String)

            A free-form text comment.

          • Parameters — (map<String>)

            These key-value pairs define properties associated with the column.

        • Location — (String)

          The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

        • InputFormat — (String)

          The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

        • OutputFormat — (String)

          The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

        • Compressed — (Boolean)

          True if the data in the table is compressed, or False if not.

        • NumberOfBuckets — (Integer)

          Must be specified if the table contains any dimension columns.

        • SerdeInfo — (map)

          The serialization/deserialization (SerDe) information.

          • Name — (String)

            Name of the SerDe.

          • SerializationLibrary — (String)

            Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

          • Parameters — (map<String>)

            These key-value pairs define initialization parameters for the SerDe.

        • BucketColumns — (Array<String>)

          A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

        • SortColumns — (Array<map>)

          A list specifying the sort order of each bucket in the table.

          • Columnrequired — (String)

            The name of the column.

          • SortOrderrequired — (Integer)

            Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

        • Parameters — (map<String>)

          The user-supplied properties in key-value form.

        • SkewedInfo — (map)

          The information about values that appear frequently in a column (skewed values).

          • SkewedColumnNames — (Array<String>)

            A list of names of columns that contain skewed values.

          • SkewedColumnValues — (Array<String>)

            A list of values that appear so frequently as to be considered skewed.

          • SkewedColumnValueLocationMaps — (map<String>)

            A mapping of skewed values to the columns that contain them.

        • StoredAsSubDirectories — (Boolean)

          True if the table data is stored in subdirectories, or False if not.

        • SchemaReference — (map)

          An object that references a schema stored in the Glue Schema Registry.

          When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

          • SchemaId — (map)

            A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

            • SchemaArn — (String)

              The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

            • SchemaName — (String)

              The name of the schema. One of SchemaArn or SchemaName has to be provided.

            • RegistryName — (String)

              The name of the schema registry that contains the schema.

          • SchemaVersionId — (String)

            The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

          • SchemaVersionNumber — (Integer)

            The version number of the schema.

      • Parameters — (map<String>)

        These key-value pairs define partition parameters.

      • LastAnalyzedTime — (Date)

        The last time at which column statistics were computed for this partition.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateRegistry(params = {}, callback) ⇒ AWS.Request

Updates an existing registry which is used to hold a collection of schemas. The updated properties relate to the registry, and do not modify any of the schemas within the registry.

Service Reference:

Examples:

Calling the updateRegistry operation

var params = {
  Description: 'STRING_VALUE', /* required */
  RegistryId: { /* required */
    RegistryArn: 'STRING_VALUE',
    RegistryName: 'STRING_VALUE'
  }
};
glue.updateRegistry(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • RegistryId — (map)

      This is a wrapper structure that may contain the registry name and Amazon Resource Name (ARN).

      • RegistryName — (String)

        Name of the registry. Used only for lookup. One of RegistryArn or RegistryName has to be provided.

      • RegistryArn — (String)

        Arn of the registry to be updated. One of RegistryArn or RegistryName has to be provided.

    • Description — (String)

      A description of the registry. If description is not provided, this field will not be updated.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RegistryName — (String)

        The name of the updated registry.

      • RegistryArn — (String)

        The Amazon Resource name (ARN) of the updated registry.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateSchema(params = {}, callback) ⇒ AWS.Request

Updates the description, compatibility setting, or version checkpoint for a schema set.

For updating the compatibility setting, the call will not validate compatibility for the entire set of schema versions with the new compatibility setting. If the value for Compatibility is provided, the VersionNumber (a checkpoint) is also required. The API will validate the checkpoint version number for consistency.

If the value for the VersionNumber (checkpoint) is provided, Compatibility is optional and this can be used to set/reset a checkpoint for the schema.

This update will happen only if the schema is in the AVAILABLE state.

Service Reference:

Examples:

Calling the updateSchema operation

var params = {
  SchemaId: { /* required */
    RegistryName: 'STRING_VALUE',
    SchemaArn: 'STRING_VALUE',
    SchemaName: 'STRING_VALUE'
  },
  Compatibility: NONE | DISABLED | BACKWARD | BACKWARD_ALL | FORWARD | FORWARD_ALL | FULL | FULL_ALL,
  Description: 'STRING_VALUE',
  SchemaVersionNumber: {
    LatestVersion: true || false,
    VersionNumber: 'NUMBER_VALUE'
  }
};
glue.updateSchema(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • SchemaId — (map)

      This is a wrapper structure to contain schema identity fields. The structure contains:

      • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaId$SchemaName: The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

      • SchemaName — (String)

        The name of the schema. One of SchemaArn or SchemaName has to be provided.

      • RegistryName — (String)

        The name of the schema registry that contains the schema.

    • SchemaVersionNumber — (map)

      Version number required for check pointing. One of VersionNumber or Compatibility has to be provided.

      • LatestVersion — (Boolean)

        The latest version available for the schema.

      • VersionNumber — (Integer)

        The version number of the schema.

    • Compatibility — (String)

      The new compatibility setting for the schema.

      Possible values include:
      • "NONE"
      • "DISABLED"
      • "BACKWARD"
      • "BACKWARD_ALL"
      • "FORWARD"
      • "FORWARD_ALL"
      • "FULL"
      • "FULL_ALL"
    • Description — (String)

      The new description for the schema.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • SchemaArn — (String)

        The Amazon Resource Name (ARN) of the schema.

      • SchemaName — (String)

        The name of the schema.

      • RegistryName — (String)

        The name of the registry that contains the schema.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateTable(params = {}, callback) ⇒ AWS.Request

Updates a metadata table in the Data Catalog.

Service Reference:

Examples:

Calling the updateTable operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  TableInput: { /* required */
    Name: 'STRING_VALUE', /* required */
    Description: 'STRING_VALUE',
    LastAccessTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    LastAnalyzedTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
    Owner: 'STRING_VALUE',
    Parameters: {
      '<KeyString>': 'STRING_VALUE',
      /* '<KeyString>': ... */
    },
    PartitionKeys: [
      {
        Name: 'STRING_VALUE', /* required */
        Comment: 'STRING_VALUE',
        Parameters: {
          '<KeyString>': 'STRING_VALUE',
          /* '<KeyString>': ... */
        },
        Type: 'STRING_VALUE'
      },
      /* more items */
    ],
    Retention: 'NUMBER_VALUE',
    StorageDescriptor: {
      BucketColumns: [
        'STRING_VALUE',
        /* more items */
      ],
      Columns: [
        {
          Name: 'STRING_VALUE', /* required */
          Comment: 'STRING_VALUE',
          Parameters: {
            '<KeyString>': 'STRING_VALUE',
            /* '<KeyString>': ... */
          },
          Type: 'STRING_VALUE'
        },
        /* more items */
      ],
      Compressed: true || false,
      InputFormat: 'STRING_VALUE',
      Location: 'STRING_VALUE',
      NumberOfBuckets: 'NUMBER_VALUE',
      OutputFormat: 'STRING_VALUE',
      Parameters: {
        '<KeyString>': 'STRING_VALUE',
        /* '<KeyString>': ... */
      },
      SchemaReference: {
        SchemaId: {
          RegistryName: 'STRING_VALUE',
          SchemaArn: 'STRING_VALUE',
          SchemaName: 'STRING_VALUE'
        },
        SchemaVersionId: 'STRING_VALUE',
        SchemaVersionNumber: 'NUMBER_VALUE'
      },
      SerdeInfo: {
        Name: 'STRING_VALUE',
        Parameters: {
          '<KeyString>': 'STRING_VALUE',
          /* '<KeyString>': ... */
        },
        SerializationLibrary: 'STRING_VALUE'
      },
      SkewedInfo: {
        SkewedColumnNames: [
          'STRING_VALUE',
          /* more items */
        ],
        SkewedColumnValueLocationMaps: {
          '<ColumnValuesString>': 'STRING_VALUE',
          /* '<ColumnValuesString>': ... */
        },
        SkewedColumnValues: [
          'STRING_VALUE',
          /* more items */
        ]
      },
      SortColumns: [
        {
          Column: 'STRING_VALUE', /* required */
          SortOrder: 'NUMBER_VALUE' /* required */
        },
        /* more items */
      ],
      StoredAsSubDirectories: true || false
    },
    TableType: 'STRING_VALUE',
    TargetTable: {
      CatalogId: 'STRING_VALUE',
      DatabaseName: 'STRING_VALUE',
      Name: 'STRING_VALUE'
    },
    ViewExpandedText: 'STRING_VALUE',
    ViewOriginalText: 'STRING_VALUE'
  },
  CatalogId: 'STRING_VALUE',
  SkipArchive: true || false
};
glue.updateTable(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database in which the table resides. For Hive compatibility, this name is entirely lowercase.

    • TableInput — (map)

      An updated TableInput object to define the metadata table in the catalog.

      • Namerequired — (String)

        The table name. For Hive compatibility, this is folded to lowercase when it is stored.

      • Description — (String)

        A description of the table.

      • Owner — (String)

        The table owner.

      • LastAccessTime — (Date)

        The last time that the table was accessed.

      • LastAnalyzedTime — (Date)

        The last time that column statistics were computed for this table.

      • Retention — (Integer)

        The retention time for this table.

      • StorageDescriptor — (map)

        A storage descriptor containing information about the physical storage of this table.

        • Columns — (Array<map>)

          A list of the Columns in the table.

          • Namerequired — (String)

            The name of the Column.

          • Type — (String)

            The data type of the Column.

          • Comment — (String)

            A free-form text comment.

          • Parameters — (map<String>)

            These key-value pairs define properties associated with the column.

        • Location — (String)

          The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

        • InputFormat — (String)

          The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

        • OutputFormat — (String)

          The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

        • Compressed — (Boolean)

          True if the data in the table is compressed, or False if not.

        • NumberOfBuckets — (Integer)

          Must be specified if the table contains any dimension columns.

        • SerdeInfo — (map)

          The serialization/deserialization (SerDe) information.

          • Name — (String)

            Name of the SerDe.

          • SerializationLibrary — (String)

            Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

          • Parameters — (map<String>)

            These key-value pairs define initialization parameters for the SerDe.

        • BucketColumns — (Array<String>)

          A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

        • SortColumns — (Array<map>)

          A list specifying the sort order of each bucket in the table.

          • Columnrequired — (String)

            The name of the column.

          • SortOrderrequired — (Integer)

            Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).

        • Parameters — (map<String>)

          The user-supplied properties in key-value form.

        • SkewedInfo — (map)

          The information about values that appear frequently in a column (skewed values).

          • SkewedColumnNames — (Array<String>)

            A list of names of columns that contain skewed values.

          • SkewedColumnValues — (Array<String>)

            A list of values that appear so frequently as to be considered skewed.

          • SkewedColumnValueLocationMaps — (map<String>)

            A mapping of skewed values to the columns that contain them.

        • StoredAsSubDirectories — (Boolean)

          True if the table data is stored in subdirectories, or False if not.

        • SchemaReference — (map)

          An object that references a schema stored in the Glue Schema Registry.

          When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

          • SchemaId — (map)

            A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

            • SchemaArn — (String)

              The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

            • SchemaName — (String)

              The name of the schema. One of SchemaArn or SchemaName has to be provided.

            • RegistryName — (String)

              The name of the schema registry that contains the schema.

          • SchemaVersionId — (String)

            The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

          • SchemaVersionNumber — (Integer)

            The version number of the schema.

      • PartitionKeys — (Array<map>)

        A list of columns by which the table is partitioned. Only primitive types are supported as partition keys.

        When you create a table used by Amazon Athena, and you do not specify any partitionKeys, you must at least set the value of partitionKeys to an empty list. For example:

        "PartitionKeys": []

        • Namerequired — (String)

          The name of the Column.

        • Type — (String)

          The data type of the Column.

        • Comment — (String)

          A free-form text comment.

        • Parameters — (map<String>)

          These key-value pairs define properties associated with the column.

      • ViewOriginalText — (String)

        If the table is a view, the original text of the view; otherwise null.

      • ViewExpandedText — (String)

        If the table is a view, the expanded text of the view; otherwise null.

      • TableType — (String)

        The type of this table (EXTERNAL_TABLE, VIRTUAL_VIEW, etc.).

      • Parameters — (map<String>)

        These key-value pairs define properties associated with the table.

      • TargetTable — (map)

        A TableIdentifier structure that describes a target table for resource linking.

        • CatalogId — (String)

          The ID of the Data Catalog in which the table resides.

        • DatabaseName — (String)

          The name of the catalog database that contains the target table.

        • Name — (String)

          The name of the target table.

    • SkipArchive — (Boolean)

      By default, UpdateTable always creates an archived version of the table before updating it. However, if skipArchive is set to true, UpdateTable does not create the archived version.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateTrigger(params = {}, callback) ⇒ AWS.Request

Updates a trigger definition.

Service Reference:

Examples:

Calling the updateTrigger operation

var params = {
  Name: 'STRING_VALUE', /* required */
  TriggerUpdate: { /* required */
    Actions: [
      {
        Arguments: {
          '<GenericString>': 'STRING_VALUE',
          /* '<GenericString>': ... */
        },
        CrawlerName: 'STRING_VALUE',
        JobName: 'STRING_VALUE',
        NotificationProperty: {
          NotifyDelayAfter: 'NUMBER_VALUE'
        },
        SecurityConfiguration: 'STRING_VALUE',
        Timeout: 'NUMBER_VALUE'
      },
      /* more items */
    ],
    Description: 'STRING_VALUE',
    EventBatchingCondition: {
      BatchSize: 'NUMBER_VALUE', /* required */
      BatchWindow: 'NUMBER_VALUE'
    },
    Name: 'STRING_VALUE',
    Predicate: {
      Conditions: [
        {
          CrawlState: RUNNING | CANCELLING | CANCELLED | SUCCEEDED | FAILED,
          CrawlerName: 'STRING_VALUE',
          JobName: 'STRING_VALUE',
          LogicalOperator: EQUALS,
          State: STARTING | RUNNING | STOPPING | STOPPED | SUCCEEDED | FAILED | TIMEOUT
        },
        /* more items */
      ],
      Logical: AND | ANY
    },
    Schedule: 'STRING_VALUE'
  }
};
glue.updateTrigger(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the trigger to update.

    • TriggerUpdate — (map)

      The new values with which to update the trigger.

      • Name — (String)

        Reserved for future use.

      • Description — (String)

        A description of this trigger.

      • Schedule — (String)

        A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

      • Actions — (Array<map>)

        The actions initiated by this trigger.

        • JobName — (String)

          The name of a job to be run.

        • Arguments — (map<String>)

          The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

          You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

          For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

          For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

        • Timeout — (Integer)

          The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

        • SecurityConfiguration — (String)

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

        • NotificationProperty — (map)

          Specifies configuration properties of a job run notification.

          • NotifyDelayAfter — (Integer)

            After a job run starts, the number of minutes to wait before sending a job run delay notification.

        • CrawlerName — (String)

          The name of the crawler to be used with this action.

      • Predicate — (map)

        The predicate of this trigger, which defines when it will fire.

        • Logical — (String)

          An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

          Possible values include:
          • "AND"
          • "ANY"
        • Conditions — (Array<map>)

          A list of the conditions that determine when the trigger will fire.

          • LogicalOperator — (String)

            A logical operator.

            Possible values include:
            • "EQUALS"
          • JobName — (String)

            The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

          • State — (String)

            The condition state. Currently, the only job states that a trigger can listen for are SUCCEEDED, STOPPED, FAILED, and TIMEOUT. The only crawler states that a trigger can listen for are SUCCEEDED, FAILED, and CANCELLED.

            Possible values include:
            • "STARTING"
            • "RUNNING"
            • "STOPPING"
            • "STOPPED"
            • "SUCCEEDED"
            • "FAILED"
            • "TIMEOUT"
          • CrawlerName — (String)

            The name of the crawler to which this condition applies.

          • CrawlState — (String)

            The state of the crawler to which this condition applies.

            Possible values include:
            • "RUNNING"
            • "CANCELLING"
            • "CANCELLED"
            • "SUCCEEDED"
            • "FAILED"
      • EventBatchingCondition — (map)

        Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

        • BatchSizerequired — (Integer)

          Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

        • BatchWindow — (Integer)

          Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Trigger — (map)

        The resulting trigger definition.

        • Name — (String)

          The name of the trigger.

        • WorkflowName — (String)

          The name of the workflow associated with the trigger.

        • Id — (String)

          Reserved for future use.

        • Type — (String)

          The type of trigger that this is.

          Possible values include:
          • "SCHEDULED"
          • "CONDITIONAL"
          • "ON_DEMAND"
          • "EVENT"
        • State — (String)

          The current state of the trigger.

          Possible values include:
          • "CREATING"
          • "CREATED"
          • "ACTIVATING"
          • "ACTIVATED"
          • "DEACTIVATING"
          • "DEACTIVATED"
          • "DELETING"
          • "UPDATING"
        • Description — (String)

          A description of this trigger.

        • Schedule — (String)

          A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

        • Actions — (Array<map>)

          The actions initiated by this trigger.

          • JobName — (String)

            The name of a job to be run.

          • Arguments — (map<String>)

            The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.

            You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.

            For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide.

            For information about the key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.

          • Timeout — (Integer)

            The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

          • SecurityConfiguration — (String)

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

          • NotificationProperty — (map)

            Specifies configuration properties of a job run notification.

            • NotifyDelayAfter — (Integer)

              After a job run starts, the number of minutes to wait before sending a job run delay notification.

          • CrawlerName — (String)

            The name of the crawler to be used with this action.

        • Predicate — (map)

          The predicate of this trigger, which defines when it will fire.

          • Logical — (String)

            An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

            Possible values include:
            • "AND"
            • "ANY"
          • Conditions — (Array<map>)

            A list of the conditions that determine when the trigger will fire.

            • LogicalOperator — (String)

              A logical operator.

              Possible values include:
              • "EQUALS"
            • JobName — (String)

              The name of the job whose JobRuns this condition applies to, and on which this trigger waits.

            • State — (String)

              The condition state. Currently, the only job states that a trigger can listen for are SUCCEEDED, STOPPED, FAILED, and TIMEOUT. The only crawler states that a trigger can listen for are SUCCEEDED, FAILED, and CANCELLED.

              Possible values include:
              • "STARTING"
              • "RUNNING"
              • "STOPPING"
              • "STOPPED"
              • "SUCCEEDED"
              • "FAILED"
              • "TIMEOUT"
            • CrawlerName — (String)

              The name of the crawler to which this condition applies.

            • CrawlState — (String)

              The state of the crawler to which this condition applies.

              Possible values include:
              • "RUNNING"
              • "CANCELLING"
              • "CANCELLED"
              • "SUCCEEDED"
              • "FAILED"
        • EventBatchingCondition — (map)

          Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

          • BatchSizerequired — (Integer)

            Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

          • BatchWindow — (Integer)

            Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateUserDefinedFunction(params = {}, callback) ⇒ AWS.Request

Updates an existing function definition in the Data Catalog.

Service Reference:

Examples:

Calling the updateUserDefinedFunction operation

var params = {
  DatabaseName: 'STRING_VALUE', /* required */
  FunctionInput: { /* required */
    ClassName: 'STRING_VALUE',
    FunctionName: 'STRING_VALUE',
    OwnerName: 'STRING_VALUE',
    OwnerType: USER | ROLE | GROUP,
    ResourceUris: [
      {
        ResourceType: JAR | FILE | ARCHIVE,
        Uri: 'STRING_VALUE'
      },
      /* more items */
    ]
  },
  FunctionName: 'STRING_VALUE', /* required */
  CatalogId: 'STRING_VALUE'
};
glue.updateUserDefinedFunction(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CatalogId — (String)

      The ID of the Data Catalog where the function to be updated is located. If none is provided, the Amazon Web Services account ID is used by default.

    • DatabaseName — (String)

      The name of the catalog database where the function to be updated is located.

    • FunctionName — (String)

      The name of the function.

    • FunctionInput — (map)

      A FunctionInput object that redefines the function in the Data Catalog.

      • FunctionName — (String)

        The name of the function.

      • ClassName — (String)

        The Java class that contains the function code.

      • OwnerName — (String)

        The owner of the function.

      • OwnerType — (String)

        The owner type.

        Possible values include:
        • "USER"
        • "ROLE"
        • "GROUP"
      • ResourceUris — (Array<map>)

        The resource URIs for the function.

        • ResourceType — (String)

          The type of the resource.

          Possible values include:
          • "JAR"
          • "FILE"
          • "ARCHIVE"
        • Uri — (String)

          The URI for accessing the resource.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateWorkflow(params = {}, callback) ⇒ AWS.Request

Updates an existing workflow.

Service Reference:

Examples:

Calling the updateWorkflow operation

var params = {
  Name: 'STRING_VALUE', /* required */
  DefaultRunProperties: {
    '<IdString>': 'STRING_VALUE',
    /* '<IdString>': ... */
  },
  Description: 'STRING_VALUE',
  MaxConcurrentRuns: 'NUMBER_VALUE'
};
glue.updateWorkflow(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      Name of the workflow to be updated.

    • Description — (String)

      The description of the workflow.

    • DefaultRunProperties — (map<String>)

      A collection of properties to be used as part of each execution of the workflow.

    • MaxConcurrentRuns — (Integer)

      You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Name — (String)

        The name of the workflow which was specified in input.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.