:doc:`ConfigService <../../config>` / Client / describe_conformance_pack_status

********************************
describe_conformance_pack_status
********************************



.. py:method:: ConfigService.Client.describe_conformance_pack_status(**kwargs)

  

  Provides one or more conformance packs deployment status.

   

  .. note::

    

    If there are no conformance packs then you will see an empty result.

    

  

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


  **Request Syntax**
  ::

    response = client.describe_conformance_pack_status(
        ConformancePackNames=[
            'string',
        ],
        Limit=123,
        NextToken='string'
    )
    
  :type ConformancePackNames: list
  :param ConformancePackNames: 

    Comma-separated list of conformance pack names.

    

  
    - *(string) --* 

    

  :type Limit: integer
  :param Limit: 

    The maximum number of conformance packs status returned on each page.

    

  
  :type NextToken: string
  :param NextToken: 

    The ``nextToken`` string returned in a previous request that you use to request the next page of results in a paginated 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)
              },
          ],
          'NextToken': 'string'
      }
      
    **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.

            
      
    
      

      - **NextToken** *(string) --* 

        The ``nextToken`` string returned in a previous request that you use to request the next page of results in a paginated response.

        
  
  **Exceptions**
  
  *   :py:class:`ConfigService.Client.exceptions.InvalidLimitException`

  
  *   :py:class:`ConfigService.Client.exceptions.InvalidNextTokenException`

  
  *   :py:class:`ConfigService.Client.exceptions.InvalidParameterValueException`

  