EMR / Client / list_security_configurations

list_security_configurations#

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

Request Syntax

response = client.list_security_configurations(
    Marker='string'
)
Parameters:

Marker (string) – The pagination token that indicates the set of results to retrieve.

Return type:

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