GlueDataBrew / Client / describe_schedule

describe_schedule#

GlueDataBrew.Client.describe_schedule(**kwargs)#

Returns the definition of a specific DataBrew schedule.

See also: AWS API Documentation

Request Syntax

response = client.describe_schedule(
    Name='string'
)
Parameters:

Name (string) –

[REQUIRED]

The name of the schedule to be described.

Return type:

dict

Returns:

Response Syntax

{
    'CreateDate': datetime(2015, 1, 1),
    'CreatedBy': 'string',
    'JobNames': [
        'string',
    ],
    'LastModifiedBy': 'string',
    'LastModifiedDate': datetime(2015, 1, 1),
    'ResourceArn': 'string',
    'CronExpression': 'string',
    'Tags': {
        'string': 'string'
    },
    'Name': 'string'
}

Response Structure

  • (dict) –

    • CreateDate (datetime) –

      The date and time that the schedule was created.

    • CreatedBy (string) –

      The identifier (user name) of the user who created the schedule.

    • JobNames (list) –

      The name or names of one or more jobs to be run by using the schedule.

      • (string) –

    • LastModifiedBy (string) –

      The identifier (user name) of the user who last modified the schedule.

    • LastModifiedDate (datetime) –

      The date and time that the schedule was last modified.

    • ResourceArn (string) –

      The Amazon Resource Name (ARN) of the schedule.

    • CronExpression (string) –

      The date or dates and time or times when the jobs are to be run for the schedule. For more information, see Cron expressions in the Glue DataBrew Developer Guide.

    • Tags (dict) –

      Metadata tags associated with this schedule.

      • (string) –

        • (string) –

    • Name (string) –

      The name of the schedule.

Exceptions