:doc:`GlueDataBrew <../../databrew>` / Client / describe_schedule

*****************
describe_schedule
*****************



.. py:method:: GlueDataBrew.Client.describe_schedule(**kwargs)

  

  Returns the definition of a specific DataBrew schedule.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/databrew-2017-07-25/DescribeSchedule>`_  


  **Request Syntax**
  ::

    response = client.describe_schedule(
        Name='string'
    )
    
  :type Name: string
  :param Name: **[REQUIRED]** 

    The name of the schedule to be described.

    

  
  
  :rtype: 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 <https://docs.aws.amazon.com/databrew/latest/dg/jobs.cron.html>`__ in the *Glue DataBrew Developer Guide*.

        
      

      - **Tags** *(dict) --* 

        Metadata tags associated with this schedule.

        
        

        - *(string) --* 
          

          - *(string) --* 
    
  
      

      - **Name** *(string) --* 

        The name of the schedule.

        
  
  **Exceptions**
  
  *   :py:class:`GlueDataBrew.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`GlueDataBrew.Client.exceptions.ValidationException`

  