ManagedintegrationsforIoTDeviceManagement / Client / list_event_log_configurations

list_event_log_configurations#

ManagedintegrationsforIoTDeviceManagement.Client.list_event_log_configurations(**kwargs)#

List all event log configurations for an account.

See also: AWS API Documentation

Request Syntax

response = client.list_event_log_configurations(
    NextToken='string',
    MaxResults=123
)
Parameters:
  • NextToken (string) – A token that can be used to retrieve the next set of results.

  • MaxResults (integer) – The maximum number of results to return at one time.

Return type:

dict

Returns:

Response Syntax

{
    'EventLogConfigurationList': [
        {
            'Id': 'string',
            'ResourceType': 'string',
            'ResourceId': 'string',
            'EventLogLevel': 'DEBUG'|'ERROR'|'INFO'|'WARN'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • EventLogConfigurationList (list) –

      A list of each event log configuration and pertinent information.

      • (dict) –

        List of event log configurations.

        • Id (string) –

          The identifier of the event log configuration.

        • ResourceType (string) –

          The type of resource for the event log configuration.

        • ResourceId (string) –

          The identifier of the resource for the event log configuration.

        • EventLogLevel (string) –

          The logging level for the event log configuration.

    • NextToken (string) –

      A token that can be used to retrieve the next set of results.

Exceptions