:doc:`ConfigService <../../config>` / Paginator / DescribeConformancePackStatus

*****************************
DescribeConformancePackStatus
*****************************



.. py:class:: ConfigService.Paginator.DescribeConformancePackStatus

  ::

    
    paginator = client.get_paginator('describe_conformance_pack_status')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`ConfigService.Client.describe_conformance_pack_status`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePackStatus>`_    


    **Request Syntax**
    ::

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

      Comma-separated list of conformance pack names.

      

    
      - *(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**

      
      ::

        {
            'ConformancePackStatusDetails': [
                {
                    'ConformancePackName': 'string',
                    'ConformancePackId': 'string',
                    'ConformancePackArn': 'string',
                    'ConformancePackState': 'CREATE_IN_PROGRESS'|'CREATE_COMPLETE'|'CREATE_FAILED'|'DELETE_IN_PROGRESS'|'DELETE_FAILED',
                    'StackArn': 'string',
                    'ConformancePackStatusReason': 'string',
                    'LastUpdateRequestedTime': datetime(2015, 1, 1),
                    'LastUpdateCompletedTime': datetime(2015, 1, 1)
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **ConformancePackStatusDetails** *(list) --* 

          A list of ``ConformancePackStatusDetail`` objects.

          
          

          - *(dict) --* 

            Status details of a conformance pack.

            
            

            - **ConformancePackName** *(string) --* 

              Name of the conformance pack.

              
            

            - **ConformancePackId** *(string) --* 

              ID of the conformance pack.

              
            

            - **ConformancePackArn** *(string) --* 

              Amazon Resource Name (ARN) of comformance pack.

              
            

            - **ConformancePackState** *(string) --* 

              Indicates deployment status of conformance pack.

               

              Config sets the state of the conformance pack to:

               

              
              * CREATE_IN_PROGRESS when a conformance pack creation is in progress for an account.
               
              * CREATE_COMPLETE when a conformance pack has been successfully created in your account.
               
              * CREATE_FAILED when a conformance pack creation failed in your account.
               
              * DELETE_IN_PROGRESS when a conformance pack deletion is in progress.
               
              * DELETE_FAILED when a conformance pack deletion failed in your account.
              

              
            

            - **StackArn** *(string) --* 

              Amazon Resource Name (ARN) of CloudFormation stack.

              
            

            - **ConformancePackStatusReason** *(string) --* 

              The reason of conformance pack creation failure.

              
            

            - **LastUpdateRequestedTime** *(datetime) --* 

              Last time when conformation pack creation and update was requested.

              
            

            - **LastUpdateCompletedTime** *(datetime) --* 

              Last time when conformation pack creation and update was successful.

              
        
      
    