:doc:`EMR <../../emr>` / Client / list_security_configurations

****************************
list_security_configurations
****************************



.. py:method:: EMR.Client.list_security_configurations(**kwargs)

  

  Lists all the security configurations visible to this account, providing their creation dates and times, and their names. This call returns a maximum of 50 clusters per call, but returns a marker to track the paging of the cluster list across multiple ListSecurityConfigurations calls.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListSecurityConfigurations>`_  


  **Request Syntax**
  ::

    response = client.list_security_configurations(
        Marker='string'
    )
    
  :type Marker: string
  :param Marker: 

    The pagination token that indicates the set of results to retrieve.

    

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

    
    ::

      {
          'SecurityConfigurations': [
              {
                  'Name': 'string',
                  'CreationDateTime': datetime(2015, 1, 1)
              },
          ],
          'Marker': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **SecurityConfigurations** *(list) --* 

        The creation date and time, and name, of each security configuration.

        
        

        - *(dict) --* 

          The creation date and time, and name, of a security configuration.

          
          

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

            The name of the security configuration.

            
          

          - **CreationDateTime** *(datetime) --* 

            The date and time the security configuration was created.

            
      
    
      

      - **Marker** *(string) --* 

        A pagination token that indicates the next set of results to retrieve. Include the marker in the next ListSecurityConfiguration call to retrieve the next page of results, if required.

        
  
  **Exceptions**
  
  *   :py:class:`EMR.Client.exceptions.InternalServerException`

  
  *   :py:class:`EMR.Client.exceptions.InvalidRequestException`

  