ConfigService / Client / list_configuration_recorders
list_configuration_recorders¶
- ConfigService.Client.list_configuration_recorders(**kwargs)¶
Returns a list of configuration recorders depending on the filters you specify.
See also: AWS API Documentation
Request Syntax
response = client.list_configuration_recorders( Filters=[ { 'filterName': 'recordingScope', 'filterValue': [ 'string', ] }, ], MaxResults=123, NextToken='string' )
- Parameters:
Filters (list) –
Filters the results based on a list of
ConfigurationRecorderFilterobjects that you specify.(dict) –
Filters configuration recorders by recording scope.
filterName (string) –
The name of the type of filter. Currently, only
recordingScopeis supported.filterValue (list) –
The value of the filter. For
recordingScope, valid values include:INTERNALandPAID.INTERNALindicates that the ConfigurationItems in scope for the configuration recorder are recorded for free.PAIDindicates that the ConfigurationItems in scope for the configuration recorder impact the costs to your bill.(string) –
MaxResults (integer) – The maximum number of results to include in the response.
NextToken (string) – The
NextTokenstring returned on a previous page that you use to get the next page of results in a paginated response.
- Return type:
dict
- Returns:
Response Syntax
{ 'ConfigurationRecorderSummaries': [ { 'arn': 'string', 'name': 'string', 'servicePrincipal': 'string', 'recordingScope': 'INTERNAL'|'PAID' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
ConfigurationRecorderSummaries (list) –
A list of
ConfigurationRecorderSummaryobjects that includes.(dict) –
A summary of a configuration recorder, including the
arn,name,servicePrincipal, andrecordingScope.arn (string) –
The Amazon Resource Name (ARN) of the configuration recorder.
name (string) –
The name of the configuration recorder.
servicePrincipal (string) –
For service-linked configuration recorders, indicates which Amazon Web Services service the configuration recorder is linked to.
recordingScope (string) –
Indicates whether the ConfigurationItems in scope for the configuration recorder are recorded for free (
INTERNAL) or if you are charged a service fee for recording (PAID).
NextToken (string) –
The
NextTokenstring returned on a previous page that you use to get the next page of results in a paginated response.
Exceptions