:doc:`ForecastService <../../forecast>` / Paginator / ListDatasetGroups

*****************
ListDatasetGroups
*****************



.. py:class:: ForecastService.Paginator.ListDatasetGroups

  ::

    
    paginator = client.get_paginator('list_dataset_groups')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`ForecastService.Client.list_dataset_groups`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/ListDatasetGroups>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

      
    
    
    :rtype: dict
    :returns: 
      
      **Response Syntax**

      
      ::

        {
            'DatasetGroups': [
                {
                    'DatasetGroupArn': 'string',
                    'DatasetGroupName': 'string',
                    'CreationTime': datetime(2015, 1, 1),
                    'LastModificationTime': datetime(2015, 1, 1)
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **DatasetGroups** *(list) --* 

          An array of objects that summarize each dataset group's properties.

          
          

          - *(dict) --* 

            Provides a summary of the dataset group properties used in the `ListDatasetGroups <https://docs.aws.amazon.com/forecast/latest/dg/API_ListDatasetGroups.html>`__ operation. To get the complete set of properties, call the `DescribeDatasetGroup <https://docs.aws.amazon.com/forecast/latest/dg/API_DescribeDatasetGroup.html>`__ operation, and provide the ``DatasetGroupArn``.

            
            

            - **DatasetGroupArn** *(string) --* 

              The Amazon Resource Name (ARN) of the dataset group.

              
            

            - **DatasetGroupName** *(string) --* 

              The name of the dataset group.

              
            

            - **CreationTime** *(datetime) --* 

              When the dataset group was created.

              
            

            - **LastModificationTime** *(datetime) --* 

              When the dataset group was created or last updated from a call to the `UpdateDatasetGroup <https://docs.aws.amazon.com/forecast/latest/dg/API_UpdateDatasetGroup.html>`__ operation. While the dataset group is being updated, ``LastModificationTime`` is the current time of the ``ListDatasetGroups`` call.

              
        
      
    