ConfigService ************* Client ====== class ConfigService.Client A low-level client representing AWS Config (Config Service) Config provides a way to keep track of the configurations of all the Amazon Web Services resources associated with your Amazon Web Services account. You can use Config to get the current and historical configurations of each Amazon Web Services resource and also to get information about the relationship between the resources. An Amazon Web Services resource can be an Amazon Compute Cloud (Amazon EC2) instance, an Elastic Block Store (EBS) volume, an elastic network Interface (ENI), or a security group. For a complete list of resources currently supported by Config, see Supported Amazon Web Services resources. You can access and manage Config through the Amazon Web Services Management Console, the Amazon Web Services Command Line Interface (Amazon Web Services CLI), the Config API, or the Amazon Web Services SDKs for Config. This reference guide contains documentation for the Config API and the Amazon Web Services CLI commands that you can use to manage Config. The Config API uses the Signature Version 4 protocol for signing requests. For more information about how to sign a request with this protocol, see Signature Version 4 Signing Process. For detailed information about Config features and their associated actions or commands, as well as how to work with Amazon Web Services Management Console, see What Is Config in the *Config Developer Guide*. import boto3 client = boto3.client('config') These are the available methods: * associate_resource_types * batch_get_aggregate_resource_config * batch_get_resource_config * can_paginate * close * delete_aggregation_authorization * delete_config_rule * delete_configuration_aggregator * delete_configuration_recorder * delete_conformance_pack * delete_delivery_channel * delete_evaluation_results * delete_organization_config_rule * delete_organization_conformance_pack * delete_pending_aggregation_request * delete_remediation_configuration * delete_remediation_exceptions * delete_resource_config * delete_retention_configuration * delete_service_linked_configuration_recorder * delete_stored_query * deliver_config_snapshot * describe_aggregate_compliance_by_config_rules * describe_aggregate_compliance_by_conformance_packs * describe_aggregation_authorizations * describe_compliance_by_config_rule * describe_compliance_by_resource * describe_config_rule_evaluation_status * describe_config_rules * describe_configuration_aggregator_sources_status * describe_configuration_aggregators * describe_configuration_recorder_status * describe_configuration_recorders * describe_conformance_pack_compliance * describe_conformance_pack_status * describe_conformance_packs * describe_delivery_channel_status * describe_delivery_channels * describe_organization_config_rule_statuses * describe_organization_config_rules * describe_organization_conformance_pack_statuses * describe_organization_conformance_packs * describe_pending_aggregation_requests * describe_remediation_configurations * describe_remediation_exceptions * describe_remediation_execution_status * describe_retention_configurations * disassociate_resource_types * get_aggregate_compliance_details_by_config_rule * get_aggregate_config_rule_compliance_summary * get_aggregate_conformance_pack_compliance_summary * get_aggregate_discovered_resource_counts * get_aggregate_resource_config * get_compliance_details_by_config_rule * get_compliance_details_by_resource * get_compliance_summary_by_config_rule * get_compliance_summary_by_resource_type * get_conformance_pack_compliance_details * get_conformance_pack_compliance_summary * get_custom_rule_policy * get_discovered_resource_counts * get_organization_config_rule_detailed_status * get_organization_conformance_pack_detailed_status * get_organization_custom_rule_policy * get_paginator * get_resource_config_history * get_resource_evaluation_summary * get_stored_query * get_waiter * list_aggregate_discovered_resources * list_configuration_recorders * list_conformance_pack_compliance_scores * list_discovered_resources * list_resource_evaluations * list_stored_queries * list_tags_for_resource * put_aggregation_authorization * put_config_rule * put_configuration_aggregator * put_configuration_recorder * put_conformance_pack * put_delivery_channel * put_evaluations * put_external_evaluation * put_organization_config_rule * put_organization_conformance_pack * put_remediation_configurations * put_remediation_exceptions * put_resource_config * put_retention_configuration * put_service_linked_configuration_recorder * put_stored_query * select_aggregate_resource_config * select_resource_config * start_config_rules_evaluation * start_configuration_recorder * start_remediation_execution * start_resource_evaluation * stop_configuration_recorder * tag_resource * untag_resource Paginators ========== Paginators are available on a client instance via the "get_paginator" method. For more detailed instructions and examples on the usage of paginators, see the paginators user guide. The available paginators are: * DescribeAggregateComplianceByConfigRules * DescribeAggregateComplianceByConformancePacks * DescribeAggregationAuthorizations * DescribeComplianceByConfigRule * DescribeComplianceByResource * DescribeConfigRuleEvaluationStatus * DescribeConfigRules * DescribeConfigurationAggregatorSourcesStatus * DescribeConfigurationAggregators * DescribeConformancePackStatus * DescribeConformancePacks * DescribeOrganizationConfigRuleStatuses * DescribeOrganizationConfigRules * DescribeOrganizationConformancePackStatuses * DescribeOrganizationConformancePacks * DescribePendingAggregationRequests * DescribeRemediationExecutionStatus * DescribeRetentionConfigurations * GetAggregateComplianceDetailsByConfigRule * GetComplianceDetailsByConfigRule * GetComplianceDetailsByResource * GetConformancePackComplianceSummary * GetOrganizationConfigRuleDetailedStatus * GetOrganizationConformancePackDetailedStatus * GetResourceConfigHistory * ListAggregateDiscoveredResources * ListConfigurationRecorders * ListDiscoveredResources * ListResourceEvaluations * ListTagsForResource * SelectAggregateResourceConfig * SelectResourceConfig ConfigService / Paginator / SelectAggregateResourceConfig SelectAggregateResourceConfig ***************************** class ConfigService.Paginator.SelectAggregateResourceConfig paginator = client.get_paginator('select_aggregate_resource_config') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.select_aggregate_resource_config()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( Expression='string', ConfigurationAggregatorName='string', MaxResults=123, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **Expression** (*string*) -- **[REQUIRED]** The SQL query SELECT command. * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **MaxResults** (*integer*) -- The maximum number of query results returned on each page. Config also allows the Limit request parameter. * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'Results': [ 'string', ], 'QueryInfo': { 'SelectFields': [ { 'Name': 'string' }, ] }, } **Response Structure** * *(dict) --* * **Results** *(list) --* Returns the results for the SQL query. * *(string) --* * **QueryInfo** *(dict) --* Details about the query. * **SelectFields** *(list) --* Returns a "FieldInfo" object. * *(dict) --* Details about the fields such as name of the field. * **Name** *(string) --* Name of the field. ConfigService / Paginator / ListTagsForResource ListTagsForResource ******************* class ConfigService.Paginator.ListTagsForResource paginator = client.get_paginator('list_tags_for_resource') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.list_tags_for_resource()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ResourceArn='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ResourceArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. The following resources are supported: * "ConfigurationRecorder" * "ConfigRule" * "OrganizationConfigRule" * "ConformancePack" * "OrganizationConformancePack" * "ConfigurationAggregator" * "AggregationAuthorization" * "StoredQuery" * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], } **Response Structure** * *(dict) --* * **Tags** *(list) --* The tags for the resource. * *(dict) --* The tags for the resource. The metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters. * **Key** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **Value** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). ConfigService / Paginator / DescribeConfigurationAggregatorSourcesStatus DescribeConfigurationAggregatorSourcesStatus ******************************************** class ConfigService.Paginator.DescribeConfigurationAggregatorSourcesStatus paginator = client.get_paginator('describe_configuration_aggregator_sources_status') paginate(**kwargs) Creates an iterator that will paginate through responses from " ConfigService.Client.describe_configuration_aggregator_sources_ status()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConfigurationAggregatorName='string', UpdateStatus=[ 'FAILED'|'SUCCEEDED'|'OUTDATED', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **UpdateStatus** (*list*) -- Filters the status type. * Valid value FAILED indicates errors while moving data. * Valid value SUCCEEDED indicates the data was successfully moved. * Valid value OUTDATED indicates the data is not the most recent. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'AggregatedSourceStatusList': [ { 'SourceId': 'string', 'SourceType': 'ACCOUNT'|'ORGANIZATION', 'AwsRegion': 'string', 'LastUpdateStatus': 'FAILED'|'SUCCEEDED'|'OUTDATED', 'LastUpdateTime': datetime(2015, 1, 1), 'LastErrorCode': 'string', 'LastErrorMessage': 'string' }, ], } **Response Structure** * *(dict) --* * **AggregatedSourceStatusList** *(list) --* Returns an AggregatedSourceStatus object. * *(dict) --* The current sync status between the source and the aggregator account. * **SourceId** *(string) --* The source account ID or an organization. * **SourceType** *(string) --* The source account or an organization. * **AwsRegion** *(string) --* The region authorized to collect aggregated data. * **LastUpdateStatus** *(string) --* Filters the last updated status type. * Valid value FAILED indicates errors while moving data. * Valid value SUCCEEDED indicates the data was successfully moved. * Valid value OUTDATED indicates the data is not the most recent. * **LastUpdateTime** *(datetime) --* The time of the last update. * **LastErrorCode** *(string) --* The error code that Config returned when the source account aggregation last failed. * **LastErrorMessage** *(string) --* The message indicating that the source account aggregation failed due to an error. ConfigService / Paginator / DescribeConfigRuleEvaluationStatus DescribeConfigRuleEvaluationStatus ********************************** class ConfigService.Paginator.DescribeConfigRuleEvaluationStatus paginator = client.get_paginator('describe_config_rule_evaluation_status') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.describe_config_rule_evaluation_status()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConfigRuleNames=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ConfigRuleNames** (*list*) -- The name of the Config managed rules for which you want status information. If you do not specify any names, Config returns status information for all Config managed rules that you use. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'ConfigRulesEvaluationStatus': [ { 'ConfigRuleName': 'string', 'ConfigRuleArn': 'string', 'ConfigRuleId': 'string', 'LastSuccessfulInvocationTime': datetime(2015, 1, 1), 'LastFailedInvocationTime': datetime(2015, 1, 1), 'LastSuccessfulEvaluationTime': datetime(2015, 1, 1), 'LastFailedEvaluationTime': datetime(2015, 1, 1), 'FirstActivatedTime': datetime(2015, 1, 1), 'LastDeactivatedTime': datetime(2015, 1, 1), 'LastErrorCode': 'string', 'LastErrorMessage': 'string', 'FirstEvaluationStarted': True|False, 'LastDebugLogDeliveryStatus': 'string', 'LastDebugLogDeliveryStatusReason': 'string', 'LastDebugLogDeliveryTime': datetime(2015, 1, 1) }, ], } **Response Structure** * *(dict) --* * **ConfigRulesEvaluationStatus** *(list) --* Status information about your Config managed rules. * *(dict) --* Status information for your Config Managed rules and Config Custom Policy rules. The status includes information such as the last time the rule ran, the last time it failed, and the related error for the last failure. This operation does not return status information about Config Custom Lambda rules. * **ConfigRuleName** *(string) --* The name of the Config rule. * **ConfigRuleArn** *(string) --* The Amazon Resource Name (ARN) of the Config rule. * **ConfigRuleId** *(string) --* The ID of the Config rule. * **LastSuccessfulInvocationTime** *(datetime) --* The time that Config last successfully invoked the Config rule to evaluate your Amazon Web Services resources. * **LastFailedInvocationTime** *(datetime) --* The time that Config last failed to invoke the Config rule to evaluate your Amazon Web Services resources. * **LastSuccessfulEvaluationTime** *(datetime) --* The time that Config last successfully evaluated your Amazon Web Services resources against the rule. * **LastFailedEvaluationTime** *(datetime) --* The time that Config last failed to evaluate your Amazon Web Services resources against the rule. * **FirstActivatedTime** *(datetime) --* The time that you first activated the Config rule. * **LastDeactivatedTime** *(datetime) --* The time that you last turned off the Config rule. * **LastErrorCode** *(string) --* The error code that Config returned when the rule last failed. * **LastErrorMessage** *(string) --* The error message that Config returned when the rule last failed. * **FirstEvaluationStarted** *(boolean) --* Indicates whether Config has evaluated your resources against the rule at least once. * "true" - Config has evaluated your Amazon Web Services resources against the rule at least once. * "false" - Config has not finished evaluating your Amazon Web Services resources against the rule at least once. * **LastDebugLogDeliveryStatus** *(string) --* The status of the last attempted delivery of a debug log for your Config Custom Policy rules. Either "Successful" or "Failed". * **LastDebugLogDeliveryStatusReason** *(string) --* The reason Config was not able to deliver a debug log. This is for the last failed attempt to retrieve a debug log for your Config Custom Policy rules. * **LastDebugLogDeliveryTime** *(datetime) --* The time Config last attempted to deliver a debug log for your Config Custom Policy rules. ConfigService / Paginator / GetComplianceDetailsByConfigRule GetComplianceDetailsByConfigRule ******************************** class ConfigService.Paginator.GetComplianceDetailsByConfigRule paginator = client.get_paginator('get_compliance_details_by_config_rule') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.get_compliance_details_by_config_rule()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConfigRuleName='string', ComplianceTypes=[ 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule for which you want compliance information. * **ComplianceTypes** (*list*) -- Filters the results by compliance. "INSUFFICIENT_DATA" is a valid "ComplianceType" that is returned when an Config rule cannot be evaluated. However, "INSUFFICIENT_DATA" cannot be used as a "ComplianceType" for filtering results. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'EvaluationResults': [ { 'EvaluationResultIdentifier': { 'EvaluationResultQualifier': { 'ConfigRuleName': 'string', 'ResourceType': 'string', 'ResourceId': 'string', 'EvaluationMode': 'DETECTIVE'|'PROACTIVE' }, 'OrderingTimestamp': datetime(2015, 1, 1), 'ResourceEvaluationId': 'string' }, 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'ResultRecordedTime': datetime(2015, 1, 1), 'ConfigRuleInvokedTime': datetime(2015, 1, 1), 'Annotation': 'string', 'ResultToken': 'string' }, ], } **Response Structure** * *(dict) --* * **EvaluationResults** *(list) --* Indicates whether the Amazon Web Services resource complies with the specified Config rule. * *(dict) --* The details of an Config evaluation. Provides the Amazon Web Services resource that was evaluated, the compliance of the resource, related time stamps, and supplementary information. * **EvaluationResultIdentifier** *(dict) --* Uniquely identifies the evaluation result. * **EvaluationResultQualifier** *(dict) --* Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID of the evaluated resource. * **ConfigRuleName** *(string) --* The name of the Config rule that was used in the evaluation. * **ResourceType** *(string) --* The type of Amazon Web Services resource that was evaluated. * **ResourceId** *(string) --* The ID of the evaluated Amazon Web Services resource. * **EvaluationMode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. * **OrderingTimestamp** *(datetime) --* The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can indicate when Config delivered a configuration item change notification, or it can indicate when Config delivered the configuration snapshot, depending on which event triggered the evaluation. * **ResourceEvaluationId** *(string) --* A Unique ID for an evaluation result. * **ComplianceType** *(string) --* Indicates whether the Amazon Web Services resource complies with the Config rule that evaluated it. For the "EvaluationResult" data type, Config supports only the "COMPLIANT", "NON_COMPLIANT", and "NOT_APPLICABLE" values. Config does not support the "INSUFFICIENT_DATA" value for the "EvaluationResult" data type. * **ResultRecordedTime** *(datetime) --* The time when Config recorded the evaluation result. * **ConfigRuleInvokedTime** *(datetime) --* The time when the Config rule evaluated the Amazon Web Services resource. * **Annotation** *(string) --* Supplementary information about how the evaluation determined the compliance. * **ResultToken** *(string) --* An encrypted token that associates an evaluation with an Config rule. The token identifies the rule, the Amazon Web Services resource being evaluated, and the event that triggered the evaluation. ConfigService / Paginator / GetOrganizationConformancePackDetailedStatus GetOrganizationConformancePackDetailedStatus ******************************************** class ConfigService.Paginator.GetOrganizationConformancePackDetailedStatus paginator = client.get_paginator('get_organization_conformance_pack_detailed_status') paginate(**kwargs) Creates an iterator that will paginate through responses from " ConfigService.Client.get_organization_conformance_pack_detailed _status()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( OrganizationConformancePackName='string', Filters={ 'AccountId': 'string', 'Status': 'CREATE_SUCCESSFUL'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_SUCCESSFUL'|'DELETE_FAILED'|'DELETE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_IN_PROGRESS'|'UPDATE_FAILED' }, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **OrganizationConformancePackName** (*string*) -- **[REQUIRED]** The name of organization conformance pack for which you want status details for member accounts. * **Filters** (*dict*) -- An "OrganizationResourceDetailedStatusFilters" object. * **AccountId** *(string) --* The 12-digit account ID of the member account within an organization. * **Status** *(string) --* Indicates deployment status for conformance pack in a member account. When management account calls "PutOrganizationConformancePack" action for the first time, conformance pack status is created in the member account. When management account calls "PutOrganizationConformancePack" action for the second time, conformance pack status is updated in the member account. Conformance pack status is deleted when the management account deletes "OrganizationConformancePack" and disables service access for "config- multiaccountsetup.amazonaws.com". Config sets the state of the conformance pack to: * "CREATE_SUCCESSFUL" when conformance pack has been created in the member account. * "CREATE_IN_PROGRESS" when conformance pack is being created in the member account. * "CREATE_FAILED" when conformance pack creation has failed in the member account. * "DELETE_FAILED" when conformance pack deletion has failed in the member account. * "DELETE_IN_PROGRESS" when conformance pack is being deleted in the member account. * "DELETE_SUCCESSFUL" when conformance pack has been deleted in the member account. * "UPDATE_SUCCESSFUL" when conformance pack has been updated in the member account. * "UPDATE_IN_PROGRESS" when conformance pack is being updated in the member account. * "UPDATE_FAILED" when conformance pack deletion has failed in the member account. * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'OrganizationConformancePackDetailedStatuses': [ { 'AccountId': 'string', 'ConformancePackName': 'string', 'Status': 'CREATE_SUCCESSFUL'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_SUCCESSFUL'|'DELETE_FAILED'|'DELETE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_IN_PROGRESS'|'UPDATE_FAILED', 'ErrorCode': 'string', 'ErrorMessage': 'string', 'LastUpdateTime': datetime(2015, 1, 1) }, ], } **Response Structure** * *(dict) --* * **OrganizationConformancePackDetailedStatuses** *(list) --* A list of "OrganizationConformancePackDetailedStatus" objects. * *(dict) --* Organization conformance pack creation or deletion status in each member account. This includes the name of the conformance pack, the status, error code and error message when the conformance pack creation or deletion failed. * **AccountId** *(string) --* The 12-digit account ID of a member account. * **ConformancePackName** *(string) --* The name of conformance pack deployed in the member account. * **Status** *(string) --* Indicates deployment status for conformance pack in a member account. When management account calls "PutOrganizationConformancePack" action for the first time, conformance pack status is created in the member account. When management account calls "PutOrganizationConformancePack" action for the second time, conformance pack status is updated in the member account. Conformance pack status is deleted when the management account deletes "OrganizationConformancePack" and disables service access for "config-multiaccountsetup.amazonaws.com". Config sets the state of the conformance pack to: * "CREATE_SUCCESSFUL" when conformance pack has been created in the member account. * "CREATE_IN_PROGRESS" when conformance pack is being created in the member account. * "CREATE_FAILED" when conformance pack creation has failed in the member account. * "DELETE_FAILED" when conformance pack deletion has failed in the member account. * "DELETE_IN_PROGRESS" when conformance pack is being deleted in the member account. * "DELETE_SUCCESSFUL" when conformance pack has been deleted in the member account. * "UPDATE_SUCCESSFUL" when conformance pack has been updated in the member account. * "UPDATE_IN_PROGRESS" when conformance pack is being updated in the member account. * "UPDATE_FAILED" when conformance pack deletion has failed in the member account. * **ErrorCode** *(string) --* An error code that is returned when conformance pack creation or deletion failed in the member account. * **ErrorMessage** *(string) --* An error message indicating that conformance pack account creation or deletion has failed due to an error in the member account. * **LastUpdateTime** *(datetime) --* The timestamp of the last status update. ConfigService / Paginator / DescribeAggregateComplianceByConformancePacks DescribeAggregateComplianceByConformancePacks ********************************************* class ConfigService.Paginator.DescribeAggregateComplianceByConformancePacks paginator = client.get_paginator('describe_aggregate_compliance_by_conformance_packs') paginate(**kwargs) Creates an iterator that will paginate through responses from " ConfigService.Client.describe_aggregate_compliance_by_conforman ce_packs()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConfigurationAggregatorName='string', Filters={ 'ConformancePackName': 'string', 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'INSUFFICIENT_DATA', 'AccountId': 'string', 'AwsRegion': 'string' }, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **Filters** (*dict*) -- Filters the result by "AggregateConformancePackComplianceFilters" object. * **ConformancePackName** *(string) --* The name of the conformance pack. * **ComplianceType** *(string) --* The compliance status of the conformance pack. * **AccountId** *(string) --* The 12-digit Amazon Web Services account ID of the source account. * **AwsRegion** *(string) --* The source Amazon Web Services Region from where the data is aggregated. * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'AggregateComplianceByConformancePacks': [ { 'ConformancePackName': 'string', 'Compliance': { 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'INSUFFICIENT_DATA', 'CompliantRuleCount': 123, 'NonCompliantRuleCount': 123, 'TotalRuleCount': 123 }, 'AccountId': 'string', 'AwsRegion': 'string' }, ], } **Response Structure** * *(dict) --* * **AggregateComplianceByConformancePacks** *(list) --* Returns the "AggregateComplianceByConformancePack" object. * *(dict) --* Provides aggregate compliance of the conformance pack. Indicates whether a conformance pack is compliant based on the name of the conformance pack, account ID, and region. A conformance pack is compliant if all of the rules in a conformance packs are compliant. It is noncompliant if any of the rules are not compliant. The compliance status of a conformance pack is INSUFFICIENT_DATA only if all rules within a conformance pack cannot be evaluated due to insufficient data. If some of the rules in a conformance pack are compliant but the compliance status of other rules in that same conformance pack is INSUFFICIENT_DATA, the conformance pack shows compliant. * **ConformancePackName** *(string) --* The name of the conformance pack. * **Compliance** *(dict) --* The compliance status of the conformance pack. * **ComplianceType** *(string) --* The compliance status of the conformance pack. * **CompliantRuleCount** *(integer) --* The number of compliant Config Rules. * **NonCompliantRuleCount** *(integer) --* The number of noncompliant Config Rules. * **TotalRuleCount** *(integer) --* Total number of compliant rules, noncompliant rules, and the rules that do not have any applicable resources to evaluate upon resulting in insufficient data. * **AccountId** *(string) --* The 12-digit Amazon Web Services account ID of the source account. * **AwsRegion** *(string) --* The source Amazon Web Services Region from where the data is aggregated. ConfigService / Paginator / ListConfigurationRecorders ListConfigurationRecorders ************************** class ConfigService.Paginator.ListConfigurationRecorders paginator = client.get_paginator('list_configuration_recorders') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.list_configuration_recorders()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( Filters=[ { 'filterName': 'recordingScope', 'filterValue': [ 'string', ] }, ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **Filters** (*list*) -- Filters the results based on a list of "ConfigurationRecorderFilter" objects that you specify. * *(dict) --* Filters configuration recorders by recording scope. * **filterName** *(string) --* The name of the type of filter. Currently, only "recordingScope" is supported. * **filterValue** *(list) --* The value of the filter. For "recordingScope", valid values include: "INTERNAL" and "PAID". "INTERNAL" indicates that the ConfigurationItems in scope for the configuration recorder are recorded for free. "PAID" indicates that the ConfigurationItems in scope for the configuration recorder impact the costs to your bill. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'ConfigurationRecorderSummaries': [ { 'arn': 'string', 'name': 'string', 'servicePrincipal': 'string', 'recordingScope': 'INTERNAL'|'PAID' }, ], } **Response Structure** * *(dict) --* * **ConfigurationRecorderSummaries** *(list) --* A list of "ConfigurationRecorderSummary" objects that includes. * *(dict) --* A summary of a configuration recorder, including the "arn", "name", "servicePrincipal", and "recordingScope". * **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"). ConfigService / Paginator / DescribeRetentionConfigurations DescribeRetentionConfigurations ******************************* class ConfigService.Paginator.DescribeRetentionConfigurations paginator = client.get_paginator('describe_retention_configurations') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.describe_retention_configurations()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( RetentionConfigurationNames=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'StartingToken': 'string' } ) Parameters: * **RetentionConfigurationNames** (*list*) -- A list of names of retention configurations for which you want details. If you do not specify a name, Config returns details for all the retention configurations for that account. Note: Currently, Config supports only one retention configuration per region in your account. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'RetentionConfigurations': [ { 'Name': 'string', 'RetentionPeriodInDays': 123 }, ], } **Response Structure** * *(dict) --* * **RetentionConfigurations** *(list) --* Returns a retention configuration object. * *(dict) --* An object with the name of the retention configuration and the retention period in days. The object stores the configuration for data retention in Config. * **Name** *(string) --* The name of the retention configuration object. * **RetentionPeriodInDays** *(integer) --* Number of days Config stores your historical information. Note: Currently, only applicable to the configuration item history. ConfigService / Paginator / DescribePendingAggregationRequests DescribePendingAggregationRequests ********************************** class ConfigService.Paginator.DescribePendingAggregationRequests paginator = client.get_paginator('describe_pending_aggregation_requests') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.describe_pending_aggregation_requests()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max- items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'PendingAggregationRequests': [ { 'RequesterAccountId': 'string', 'RequesterAwsRegion': 'string' }, ], } **Response Structure** * *(dict) --* * **PendingAggregationRequests** *(list) --* Returns a PendingAggregationRequests object. * *(dict) --* An object that represents the account ID and region of an aggregator account that is requesting authorization but is not yet authorized. * **RequesterAccountId** *(string) --* The 12-digit account ID of the account requesting to aggregate data. * **RequesterAwsRegion** *(string) --* The region requesting to aggregate data. ConfigService / Paginator / DescribeConformancePackStatus DescribeConformancePackStatus ***************************** class ConfigService.Paginator.DescribeConformancePackStatus paginator = client.get_paginator('describe_conformance_pack_status') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.describe_conformance_pack_status()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConformancePackNames=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ConformancePackNames** (*list*) -- Comma-separated list of conformance pack names. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: 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) }, ], } **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. ConfigService / Paginator / DescribeAggregationAuthorizations DescribeAggregationAuthorizations ********************************* class ConfigService.Paginator.DescribeAggregationAuthorizations paginator = client.get_paginator('describe_aggregation_authorizations') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.describe_aggregation_authorizations()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max- items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'AggregationAuthorizations': [ { 'AggregationAuthorizationArn': 'string', 'AuthorizedAccountId': 'string', 'AuthorizedAwsRegion': 'string', 'CreationTime': datetime(2015, 1, 1) }, ], } **Response Structure** * *(dict) --* * **AggregationAuthorizations** *(list) --* Returns a list of authorizations granted to various aggregator accounts and regions. * *(dict) --* An object that represents the authorizations granted to aggregator accounts and regions. * **AggregationAuthorizationArn** *(string) --* The Amazon Resource Name (ARN) of the aggregation object. * **AuthorizedAccountId** *(string) --* The 12-digit account ID of the account authorized to aggregate data. * **AuthorizedAwsRegion** *(string) --* The region authorized to collect aggregated data. * **CreationTime** *(datetime) --* The time stamp when the aggregation authorization was created. ConfigService / Paginator / GetComplianceDetailsByResource GetComplianceDetailsByResource ****************************** class ConfigService.Paginator.GetComplianceDetailsByResource paginator = client.get_paginator('get_compliance_details_by_resource') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.get_compliance_details_by_resource()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ResourceType='string', ResourceId='string', ComplianceTypes=[ 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', ], ResourceEvaluationId='string', PaginationConfig={ 'MaxItems': 123, 'StartingToken': 'string' } ) Parameters: * **ResourceType** (*string*) -- The type of the Amazon Web Services resource for which you want compliance information. * **ResourceId** (*string*) -- The ID of the Amazon Web Services resource for which you want compliance information. * **ComplianceTypes** (*list*) -- Filters the results by compliance. "INSUFFICIENT_DATA" is a valid "ComplianceType" that is returned when an Config rule cannot be evaluated. However, "INSUFFICIENT_DATA" cannot be used as a "ComplianceType" for filtering results. * *(string) --* * **ResourceEvaluationId** (*string*) -- The unique ID of Amazon Web Services resource execution for which you want to retrieve evaluation results. Note: You need to only provide either a "ResourceEvaluationID" or a "ResourceID ``and ``ResourceType". * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'EvaluationResults': [ { 'EvaluationResultIdentifier': { 'EvaluationResultQualifier': { 'ConfigRuleName': 'string', 'ResourceType': 'string', 'ResourceId': 'string', 'EvaluationMode': 'DETECTIVE'|'PROACTIVE' }, 'OrderingTimestamp': datetime(2015, 1, 1), 'ResourceEvaluationId': 'string' }, 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'ResultRecordedTime': datetime(2015, 1, 1), 'ConfigRuleInvokedTime': datetime(2015, 1, 1), 'Annotation': 'string', 'ResultToken': 'string' }, ], } **Response Structure** * *(dict) --* * **EvaluationResults** *(list) --* Indicates whether the specified Amazon Web Services resource complies each Config rule. * *(dict) --* The details of an Config evaluation. Provides the Amazon Web Services resource that was evaluated, the compliance of the resource, related time stamps, and supplementary information. * **EvaluationResultIdentifier** *(dict) --* Uniquely identifies the evaluation result. * **EvaluationResultQualifier** *(dict) --* Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID of the evaluated resource. * **ConfigRuleName** *(string) --* The name of the Config rule that was used in the evaluation. * **ResourceType** *(string) --* The type of Amazon Web Services resource that was evaluated. * **ResourceId** *(string) --* The ID of the evaluated Amazon Web Services resource. * **EvaluationMode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. * **OrderingTimestamp** *(datetime) --* The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can indicate when Config delivered a configuration item change notification, or it can indicate when Config delivered the configuration snapshot, depending on which event triggered the evaluation. * **ResourceEvaluationId** *(string) --* A Unique ID for an evaluation result. * **ComplianceType** *(string) --* Indicates whether the Amazon Web Services resource complies with the Config rule that evaluated it. For the "EvaluationResult" data type, Config supports only the "COMPLIANT", "NON_COMPLIANT", and "NOT_APPLICABLE" values. Config does not support the "INSUFFICIENT_DATA" value for the "EvaluationResult" data type. * **ResultRecordedTime** *(datetime) --* The time when Config recorded the evaluation result. * **ConfigRuleInvokedTime** *(datetime) --* The time when the Config rule evaluated the Amazon Web Services resource. * **Annotation** *(string) --* Supplementary information about how the evaluation determined the compliance. * **ResultToken** *(string) --* An encrypted token that associates an evaluation with an Config rule. The token identifies the rule, the Amazon Web Services resource being evaluated, and the event that triggered the evaluation. ConfigService / Paginator / DescribeOrganizationConformancePackStatuses DescribeOrganizationConformancePackStatuses ******************************************* class ConfigService.Paginator.DescribeOrganizationConformancePackStatuses paginator = client.get_paginator('describe_organization_conformance_pack_statuses') paginate(**kwargs) Creates an iterator that will paginate through responses from " ConfigService.Client.describe_organization_conformance_pack_sta tuses()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( OrganizationConformancePackNames=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **OrganizationConformancePackNames** (*list*) -- The names of organization conformance packs for which you want status details. If you do not specify any names, Config returns details for all your organization conformance packs. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'OrganizationConformancePackStatuses': [ { 'OrganizationConformancePackName': 'string', 'Status': 'CREATE_SUCCESSFUL'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_SUCCESSFUL'|'DELETE_FAILED'|'DELETE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_IN_PROGRESS'|'UPDATE_FAILED', 'ErrorCode': 'string', 'ErrorMessage': 'string', 'LastUpdateTime': datetime(2015, 1, 1) }, ], } **Response Structure** * *(dict) --* * **OrganizationConformancePackStatuses** *(list) --* A list of "OrganizationConformancePackStatus" objects. * *(dict) --* Returns the status for an organization conformance pack in an organization. * **OrganizationConformancePackName** *(string) --* The name that you assign to organization conformance pack. * **Status** *(string) --* Indicates deployment status of an organization conformance pack. When management account calls PutOrganizationConformancePack for the first time, conformance pack status is created in all the member accounts. When management account calls PutOrganizationConformancePack for the second time, conformance pack status is updated in all the member accounts. Additionally, conformance pack status is updated when one or more member accounts join or leave an organization. Conformance pack status is deleted when the management account deletes OrganizationConformancePack in all the member accounts and disables service access for "config- multiaccountsetup.amazonaws.com". Config sets the state of the conformance pack to: * "CREATE_SUCCESSFUL" when an organization conformance pack has been successfully created in all the member accounts. * "CREATE_IN_PROGRESS" when an organization conformance pack creation is in progress. * "CREATE_FAILED" when an organization conformance pack creation failed in one or more member accounts within that organization. * "DELETE_FAILED" when an organization conformance pack deletion failed in one or more member accounts within that organization. * "DELETE_IN_PROGRESS" when an organization conformance pack deletion is in progress. * "DELETE_SUCCESSFUL" when an organization conformance pack has been successfully deleted from all the member accounts. * "UPDATE_SUCCESSFUL" when an organization conformance pack has been successfully updated in all the member accounts. * "UPDATE_IN_PROGRESS" when an organization conformance pack update is in progress. * "UPDATE_FAILED" when an organization conformance pack update failed in one or more member accounts within that organization. * **ErrorCode** *(string) --* An error code that is returned when organization conformance pack creation or deletion has failed in a member account. * **ErrorMessage** *(string) --* An error message indicating that organization conformance pack creation or deletion failed due to an error. * **LastUpdateTime** *(datetime) --* The timestamp of the last update. ConfigService / Paginator / ListAggregateDiscoveredResources ListAggregateDiscoveredResources ******************************** class ConfigService.Paginator.ListAggregateDiscoveredResources paginator = client.get_paginator('list_aggregate_discovered_resources') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.list_aggregate_discovered_resources()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConfigurationAggregatorName='string', ResourceType='AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', Filters={ 'AccountId': 'string', 'ResourceId': 'string', 'ResourceName': 'string', 'Region': 'string' }, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **ResourceType** (*string*) -- **[REQUIRED]** The type of resources that you want Config to list in the response. * **Filters** (*dict*) -- Filters the results based on the "ResourceFilters" object. * **AccountId** *(string) --* The 12-digit source account ID. * **ResourceId** *(string) --* The ID of the resource. * **ResourceName** *(string) --* The name of the resource. * **Region** *(string) --* The source region. * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'ResourceIdentifiers': [ { 'SourceAccountId': 'string', 'SourceRegion': 'string', 'ResourceId': 'string', 'ResourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'ResourceName': 'string' }, ], } **Response Structure** * *(dict) --* * **ResourceIdentifiers** *(list) --* Returns a list of "ResourceIdentifiers" objects. * *(dict) --* The details that identify a resource that is collected by Config aggregator, including the resource type, ID, (if available) the custom resource name, the source account, and source region. * **SourceAccountId** *(string) --* The 12-digit account ID of the source account. * **SourceRegion** *(string) --* The source region where data is aggregated. * **ResourceId** *(string) --* The ID of the Amazon Web Services resource. * **ResourceType** *(string) --* The type of the Amazon Web Services resource. * **ResourceName** *(string) --* The name of the Amazon Web Services resource. ConfigService / Paginator / DescribeRemediationExecutionStatus DescribeRemediationExecutionStatus ********************************** class ConfigService.Paginator.DescribeRemediationExecutionStatus paginator = client.get_paginator('describe_remediation_execution_status') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.describe_remediation_execution_status()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConfigRuleName='string', ResourceKeys=[ { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string' }, ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule. * **ResourceKeys** (*list*) -- A list of resource keys to be processed with the current request. Each element in the list consists of the resource type and resource ID. * *(dict) --* The details that identify a resource within Config, including the resource type and resource ID. * **resourceType** *(string) --* **[REQUIRED]** The resource type. * **resourceId** *(string) --* **[REQUIRED]** The ID of the resource (for example., sg-xxxxxx). * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'RemediationExecutionStatuses': [ { 'ResourceKey': { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string' }, 'State': 'QUEUED'|'IN_PROGRESS'|'SUCCEEDED'|'FAILED', 'StepDetails': [ { 'Name': 'string', 'State': 'SUCCEEDED'|'PENDING'|'FAILED', 'ErrorMessage': 'string', 'StartTime': datetime(2015, 1, 1), 'StopTime': datetime(2015, 1, 1) }, ], 'InvocationTime': datetime(2015, 1, 1), 'LastUpdatedTime': datetime(2015, 1, 1) }, ], } **Response Structure** * *(dict) --* * **RemediationExecutionStatuses** *(list) --* Returns a list of remediation execution statuses objects. * *(dict) --* Provides details of the current status of the invoked remediation action for that resource. * **ResourceKey** *(dict) --* The details that identify a resource within Config, including the resource type and resource ID. * **resourceType** *(string) --* The resource type. * **resourceId** *(string) --* The ID of the resource (for example., sg-xxxxxx). * **State** *(string) --* ENUM of the values. * **StepDetails** *(list) --* Details of every step. * *(dict) --* Name of the step from the SSM document. * **Name** *(string) --* The details of the step. * **State** *(string) --* The valid status of the step. * **ErrorMessage** *(string) --* An error message if the step was interrupted during execution. * **StartTime** *(datetime) --* The time when the step started. * **StopTime** *(datetime) --* The time when the step stopped. * **InvocationTime** *(datetime) --* Start time when the remediation was executed. * **LastUpdatedTime** *(datetime) --* The time when the remediation execution was last updated. ConfigService / Paginator / GetAggregateComplianceDetailsByConfigRule GetAggregateComplianceDetailsByConfigRule ***************************************** class ConfigService.Paginator.GetAggregateComplianceDetailsByConfigRule paginator = client.get_paginator('get_aggregate_compliance_details_by_config_rule') paginate(**kwargs) Creates an iterator that will paginate through responses from " ConfigService.Client.get_aggregate_compliance_details_by_config _rule()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConfigurationAggregatorName='string', ConfigRuleName='string', AccountId='string', AwsRegion='string', ComplianceType='COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule for which you want compliance information. * **AccountId** (*string*) -- **[REQUIRED]** The 12-digit account ID of the source account. * **AwsRegion** (*string*) -- **[REQUIRED]** The source region from where the data is aggregated. * **ComplianceType** (*string*) -- The resource compliance status. Note: For the "GetAggregateComplianceDetailsByConfigRuleRequest" data type, Config supports only the "COMPLIANT" and "NON_COMPLIANT". Config does not support the "NOT_APPLICABLE" and "INSUFFICIENT_DATA" values. * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'AggregateEvaluationResults': [ { 'EvaluationResultIdentifier': { 'EvaluationResultQualifier': { 'ConfigRuleName': 'string', 'ResourceType': 'string', 'ResourceId': 'string', 'EvaluationMode': 'DETECTIVE'|'PROACTIVE' }, 'OrderingTimestamp': datetime(2015, 1, 1), 'ResourceEvaluationId': 'string' }, 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'ResultRecordedTime': datetime(2015, 1, 1), 'ConfigRuleInvokedTime': datetime(2015, 1, 1), 'Annotation': 'string', 'AccountId': 'string', 'AwsRegion': 'string' }, ], } **Response Structure** * *(dict) --* * **AggregateEvaluationResults** *(list) --* Returns an AggregateEvaluationResults object. * *(dict) --* The details of an Config evaluation for an account ID and region in an aggregator. Provides the Amazon Web Services resource that was evaluated, the compliance of the resource, related time stamps, and supplementary information. * **EvaluationResultIdentifier** *(dict) --* Uniquely identifies the evaluation result. * **EvaluationResultQualifier** *(dict) --* Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID of the evaluated resource. * **ConfigRuleName** *(string) --* The name of the Config rule that was used in the evaluation. * **ResourceType** *(string) --* The type of Amazon Web Services resource that was evaluated. * **ResourceId** *(string) --* The ID of the evaluated Amazon Web Services resource. * **EvaluationMode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. * **OrderingTimestamp** *(datetime) --* The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can indicate when Config delivered a configuration item change notification, or it can indicate when Config delivered the configuration snapshot, depending on which event triggered the evaluation. * **ResourceEvaluationId** *(string) --* A Unique ID for an evaluation result. * **ComplianceType** *(string) --* The resource compliance status. For the "AggregationEvaluationResult" data type, Config supports only the "COMPLIANT" and "NON_COMPLIANT". Config does not support the "NOT_APPLICABLE" and "INSUFFICIENT_DATA" value. * **ResultRecordedTime** *(datetime) --* The time when Config recorded the aggregate evaluation result. * **ConfigRuleInvokedTime** *(datetime) --* The time when the Config rule evaluated the Amazon Web Services resource. * **Annotation** *(string) --* Supplementary information about how the agrregate evaluation determined the compliance. * **AccountId** *(string) --* The 12-digit account ID of the source account. * **AwsRegion** *(string) --* The source region from where the data is aggregated. ConfigService / Paginator / ListDiscoveredResources ListDiscoveredResources *********************** class ConfigService.Paginator.ListDiscoveredResources paginator = client.get_paginator('list_discovered_resources') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.list_discovered_resources()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( resourceType='AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', resourceIds=[ 'string', ], resourceName='string', includeDeletedResources=True|False, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **resourceType** (*string*) -- **[REQUIRED]** The type of resources that you want Config to list in the response. * **resourceIds** (*list*) -- The IDs of only those resources that you want Config to list in the response. If you do not specify this parameter, Config lists all resources of the specified type that it has discovered. You can list a minimum of 1 resourceID and a maximum of 20 resourceIds. * *(string) --* * **resourceName** (*string*) -- The custom name of only those resources that you want Config to list in the response. If you do not specify this parameter, Config lists all resources of the specified type that it has discovered. * **includeDeletedResources** (*boolean*) -- Specifies whether Config includes deleted resources in the results. By default, deleted resources are not included. * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'resourceIdentifiers': [ { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string', 'resourceName': 'string', 'resourceDeletionTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **resourceIdentifiers** *(list) --* The details that identify a resource that is discovered by Config, including the resource type, ID, and (if available) the custom resource name. * *(dict) --* The details that identify a resource that is discovered by Config, including the resource type, ID, and (if available) the custom resource name. * **resourceType** *(string) --* The type of resource. * **resourceId** *(string) --* The ID of the resource (for example, "sg-xxxxxx"). * **resourceName** *(string) --* The custom name of the resource (if available). * **resourceDeletionTime** *(datetime) --* The time that the resource was deleted. * **NextToken** *(string) --* A token to resume pagination. ConfigService / Paginator / DescribeConformancePacks DescribeConformancePacks ************************ class ConfigService.Paginator.DescribeConformancePacks paginator = client.get_paginator('describe_conformance_packs') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.describe_conformance_packs()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConformancePackNames=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ConformancePackNames** (*list*) -- Comma-separated list of conformance pack names for which you want details. If you do not specify any names, Config returns details for all your conformance packs. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'ConformancePackDetails': [ { 'ConformancePackName': 'string', 'ConformancePackArn': 'string', 'ConformancePackId': 'string', 'DeliveryS3Bucket': 'string', 'DeliveryS3KeyPrefix': 'string', 'ConformancePackInputParameters': [ { 'ParameterName': 'string', 'ParameterValue': 'string' }, ], 'LastUpdateRequestedTime': datetime(2015, 1, 1), 'CreatedBy': 'string', 'TemplateSSMDocumentDetails': { 'DocumentName': 'string', 'DocumentVersion': 'string' } }, ], } **Response Structure** * *(dict) --* * **ConformancePackDetails** *(list) --* Returns a list of "ConformancePackDetail" objects. * *(dict) --* Returns details of a conformance pack. A conformance pack is a collection of Config rules and remediation actions that can be easily deployed in an account and a region. * **ConformancePackName** *(string) --* Name of the conformance pack. * **ConformancePackArn** *(string) --* Amazon Resource Name (ARN) of the conformance pack. * **ConformancePackId** *(string) --* ID of the conformance pack. * **DeliveryS3Bucket** *(string) --* The name of the Amazon S3 bucket where Config stores conformance pack templates. Note: This field is optional. * **DeliveryS3KeyPrefix** *(string) --* The prefix for the Amazon S3 bucket. Note: This field is optional. * **ConformancePackInputParameters** *(list) --* A list of "ConformancePackInputParameter" objects. * *(dict) --* Input parameters in the form of key-value pairs for the conformance pack, both of which you define. Keys can have a maximum character length of 255 characters, and values can have a maximum length of 4096 characters. * **ParameterName** *(string) --* One part of a key-value pair. * **ParameterValue** *(string) --* Another part of the key-value pair. * **LastUpdateRequestedTime** *(datetime) --* The last time a conformation pack update was requested. * **CreatedBy** *(string) --* The Amazon Web Services service that created the conformance pack. * **TemplateSSMDocumentDetails** *(dict) --* An object that contains the name or Amazon Resource Name (ARN) of the Amazon Web Services Systems Manager document (SSM document) and the version of the SSM document that is used to create a conformance pack. * **DocumentName** *(string) --* The name or Amazon Resource Name (ARN) of the SSM document to use to create a conformance pack. If you use the document name, Config checks only your account and Amazon Web Services Region for the SSM document. * **DocumentVersion** *(string) --* The version of the SSM document to use to create a conformance pack. By default, Config uses the latest version. Note: This field is optional. ConfigService / Paginator / DescribeAggregateComplianceByConfigRules DescribeAggregateComplianceByConfigRules **************************************** class ConfigService.Paginator.DescribeAggregateComplianceByConfigRules paginator = client.get_paginator('describe_aggregate_compliance_by_config_rules') paginate(**kwargs) Creates an iterator that will paginate through responses from " ConfigService.Client.describe_aggregate_compliance_by_config_ru les()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConfigurationAggregatorName='string', Filters={ 'ConfigRuleName': 'string', 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'AccountId': 'string', 'AwsRegion': 'string' }, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **Filters** (*dict*) -- Filters the results by ConfigRuleComplianceFilters object. * **ConfigRuleName** *(string) --* The name of the Config rule. * **ComplianceType** *(string) --* The rule compliance status. For the "ConfigRuleComplianceFilters" data type, Config supports only "COMPLIANT" and "NON_COMPLIANT". Config does not support the "NOT_APPLICABLE" and the "INSUFFICIENT_DATA" values. * **AccountId** *(string) --* The 12-digit account ID of the source account. * **AwsRegion** *(string) --* The source region where the data is aggregated. * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'AggregateComplianceByConfigRules': [ { 'ConfigRuleName': 'string', 'Compliance': { 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'ComplianceContributorCount': { 'CappedCount': 123, 'CapExceeded': True|False } }, 'AccountId': 'string', 'AwsRegion': 'string' }, ], } **Response Structure** * *(dict) --* * **AggregateComplianceByConfigRules** *(list) --* Returns a list of AggregateComplianceByConfigRule object. * *(dict) --* Indicates whether an Config rule is compliant based on account ID, region, compliance, and rule name. A rule is compliant if all of the resources that the rule evaluated comply with it. It is noncompliant if any of these resources do not comply. * **ConfigRuleName** *(string) --* The name of the Config rule. * **Compliance** *(dict) --* Indicates whether an Amazon Web Services resource or Config rule is compliant and provides the number of contributors that affect the compliance. * **ComplianceType** *(string) --* Indicates whether an Amazon Web Services resource or Config rule is compliant. A resource is compliant if it complies with all of the Config rules that evaluate it. A resource is noncompliant if it does not comply with one or more of these rules. A rule is compliant if all of the resources that the rule evaluates comply with it. A rule is noncompliant if any of these resources do not comply. Config returns the "INSUFFICIENT_DATA" value when no evaluation results are available for the Amazon Web Services resource or Config rule. For the "Compliance" data type, Config supports only "COMPLIANT", "NON_COMPLIANT", and "INSUFFICIENT_DATA" values. Config does not support the "NOT_APPLICABLE" value for the "Compliance" data type. * **ComplianceContributorCount** *(dict) --* The number of Amazon Web Services resources or Config rules that cause a result of "NON_COMPLIANT", up to a maximum number. * **CappedCount** *(integer) --* The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item. * **CapExceeded** *(boolean) --* Indicates whether the maximum count is reached. * **AccountId** *(string) --* The 12-digit account ID of the source account. * **AwsRegion** *(string) --* The source region from where the data is aggregated. ConfigService / Paginator / ListResourceEvaluations ListResourceEvaluations *********************** class ConfigService.Paginator.ListResourceEvaluations paginator = client.get_paginator('list_resource_evaluations') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.list_resource_evaluations()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( Filters={ 'EvaluationMode': 'DETECTIVE'|'PROACTIVE', 'TimeWindow': { 'StartTime': datetime(2015, 1, 1), 'EndTime': datetime(2015, 1, 1) }, 'EvaluationContextIdentifier': 'string' }, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **Filters** (*dict*) -- Returns a "ResourceEvaluationFilters" object. * **EvaluationMode** *(string) --* Filters all resource evaluations results based on an evaluation mode. Warning: Currently, "DECTECTIVE" is not supported as a valid value. Ignore other documentation stating otherwise. * **TimeWindow** *(dict) --* Returns a "TimeWindow" object. * **StartTime** *(datetime) --* The start time of an execution. * **EndTime** *(datetime) --* The end time of an execution. The end time must be after the start date. * **EvaluationContextIdentifier** *(string) --* Filters evaluations for a given infrastructure deployment. For example: CFN Stack. * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'ResourceEvaluations': [ { 'ResourceEvaluationId': 'string', 'EvaluationMode': 'DETECTIVE'|'PROACTIVE', 'EvaluationStartTimestamp': datetime(2015, 1, 1) }, ], } **Response Structure** * *(dict) --* * **ResourceEvaluations** *(list) --* Returns a "ResourceEvaluations" object. * *(dict) --* Returns details of a resource evaluation. * **ResourceEvaluationId** *(string) --* The ResourceEvaluationId of a evaluation. * **EvaluationMode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. * **EvaluationStartTimestamp** *(datetime) --* The starting time of an execution. ConfigService / Paginator / DescribeConfigRules DescribeConfigRules ******************* class ConfigService.Paginator.DescribeConfigRules paginator = client.get_paginator('describe_config_rules') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.describe_config_rules()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConfigRuleNames=[ 'string', ], Filters={ 'EvaluationMode': 'DETECTIVE'|'PROACTIVE' }, PaginationConfig={ 'MaxItems': 123, 'StartingToken': 'string' } ) Parameters: * **ConfigRuleNames** (*list*) -- The names of the Config rules for which you want details. If you do not specify any names, Config returns details for all your rules. * *(string) --* * **Filters** (*dict*) -- Returns a list of Detective or Proactive Config rules. By default, this API returns an unfiltered list. For more information on Detective or Proactive Config rules, see **Evaluation Mode** in the *Config Developer Guide*. * **EvaluationMode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'ConfigRules': [ { 'ConfigRuleName': 'string', 'ConfigRuleArn': 'string', 'ConfigRuleId': 'string', 'Description': 'string', 'Scope': { 'ComplianceResourceTypes': [ 'string', ], 'TagKey': 'string', 'TagValue': 'string', 'ComplianceResourceId': 'string' }, 'Source': { 'Owner': 'CUSTOM_LAMBDA'|'AWS'|'CUSTOM_POLICY', 'SourceIdentifier': 'string', 'SourceDetails': [ { 'EventSource': 'aws.config', 'MessageType': 'ConfigurationItemChangeNotification'|'ConfigurationSnapshotDeliveryCompleted'|'ScheduledNotification'|'OversizedConfigurationItemChangeNotification', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours' }, ], 'CustomPolicyDetails': { 'PolicyRuntime': 'string', 'PolicyText': 'string', 'EnableDebugLogDelivery': True|False } }, 'InputParameters': 'string', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours', 'ConfigRuleState': 'ACTIVE'|'DELETING'|'DELETING_RESULTS'|'EVALUATING', 'CreatedBy': 'string', 'EvaluationModes': [ { 'Mode': 'DETECTIVE'|'PROACTIVE' }, ] }, ], } **Response Structure** * *(dict) --* * **ConfigRules** *(list) --* The details about your Config rules. * *(dict) --* Config rules evaluate the configuration settings of your Amazon Web Services resources. A rule can run when Config detects a configuration change to an Amazon Web Services resource or at a periodic frequency that you choose (for example, every 24 hours). There are two types of rules: *Config Managed Rules* and *Config Custom Rules*. Config Managed Rules are predefined, customizable rules created by Config. For a list of managed rules, see List of Config Managed Rules. Config Custom Rules are rules that you create from scratch. There are two ways to create Config custom rules: with Lambda functions ( Lambda Developer Guide) and with Guard ( Guard GitHub Repository), a policy-as- code language. Config custom rules created with Lambda are called *Config Custom Lambda Rules* and Config custom rules created with Guard are called *Config Custom Policy Rules*. For more information about developing and using Config rules, see Evaluating Resource with Config Rules in the *Config Developer Guide*. Note: You can use the Amazon Web Services CLI and Amazon Web Services SDKs if you want to create a rule that triggers evaluations for your resources when Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties. * **ConfigRuleName** *(string) --* The name that you assign to the Config rule. The name is required if you are adding a new rule. * **ConfigRuleArn** *(string) --* The Amazon Resource Name (ARN) of the Config rule. * **ConfigRuleId** *(string) --* The ID of the Config rule. * **Description** *(string) --* The description that you provide for the Config rule. * **Scope** *(dict) --* Defines which resources can trigger an evaluation for the rule. The scope can include one or more resource types, a combination of one resource type and one resource ID, or a combination of a tag key and value. Specify a scope to constrain the resources that can trigger an evaluation for the rule. If you do not specify a scope, evaluations are triggered when any resource in the recording group changes. * **ComplianceResourceTypes** *(list) --* The resource types of only those Amazon Web Services resources that you want to trigger an evaluation for the rule. You can only specify one type if you also specify a resource ID for "ComplianceResourceId". * *(string) --* * **TagKey** *(string) --* The tag key that is applied to only those Amazon Web Services resources that you want to trigger an evaluation for the rule. * **TagValue** *(string) --* The tag value applied to only those Amazon Web Services resources that you want to trigger an evaluation for the rule. If you specify a value for "TagValue", you must also specify a value for "TagKey". * **ComplianceResourceId** *(string) --* The ID of the only Amazon Web Services resource that you want to trigger an evaluation for the rule. If you specify a resource ID, you must specify one resource type for "ComplianceResourceTypes". * **Source** *(dict) --* Provides the rule owner ( "Amazon Web Services" for managed rules, "CUSTOM_POLICY" for Custom Policy rules, and "CUSTOM_LAMBDA" for Custom Lambda rules), the rule identifier, and the notifications that cause the function to evaluate your Amazon Web Services resources. * **Owner** *(string) --* Indicates whether Amazon Web Services or the customer owns and manages the Config rule. Config Managed Rules are predefined rules owned by Amazon Web Services. For more information, see Config Managed Rules in the *Config developer guide*. Config Custom Rules are rules that you can develop either with Guard ( "CUSTOM_POLICY") or Lambda ( "CUSTOM_LAMBDA"). For more information, see Config Custom Rules in the *Config developer guide*. * **SourceIdentifier** *(string) --* For Config Managed rules, a predefined identifier from a list. For example, "IAM_PASSWORD_POLICY" is a managed rule. To reference a managed rule, see List of Config Managed Rules. For Config Custom Lambda rules, the identifier is the Amazon Resource Name (ARN) of the rule's Lambda function, such as "arn:aws:lambda:us- east-2:123456789012:function:custom_rule_name". For Config Custom Policy rules, this field will be ignored. * **SourceDetails** *(list) --* Provides the source and the message types that cause Config to evaluate your Amazon Web Services resources against a rule. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic. If the owner is set to "CUSTOM_POLICY", the only acceptable values for the Config rule trigger message type are "ConfigurationItemChangeNotification" and "OversizedConfigurationItemChangeNotification". * *(dict) --* Provides the source and the message types that trigger Config to evaluate your Amazon Web Services resources against a rule. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic. You can specify the parameter values for "SourceDetail" only for custom rules. * **EventSource** *(string) --* The source of the event, such as an Amazon Web Services service, that triggers Config to evaluate your Amazon Web Services resources. * **MessageType** *(string) --* The type of notification that triggers Config to run an evaluation for a rule. You can specify the following notification types: * "ConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers a configuration item as a result of a resource change. * "OversizedConfigurationItemChangeNotificatio n" - Triggers an evaluation when Config delivers an oversized configuration item. Config may generate this notification type when a resource changes and the notification exceeds the maximum size allowed by Amazon SNS. * "ScheduledNotification" - Triggers a periodic evaluation at the frequency specified for "MaximumExecutionFrequency". * "ConfigurationSnapshotDeliveryCompleted" - Triggers a periodic evaluation when Config delivers a configuration snapshot. If you want your custom rule to be triggered by configuration changes, specify two SourceDetail objects, one for "ConfigurationItemChangeNotification" and one for "OversizedConfigurationItemChangeNotification". * **MaximumExecutionFrequency** *(string) --* The frequency at which you want Config to run evaluations for a custom rule with a periodic trigger. If you specify a value for "MaximumExecutionFrequency", then "MessageType" must use the "ScheduledNotification" value. Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the "MaximumExecutionFrequency" parameter.Based on the valid value you choose, Config runs evaluations once for each valid value. For example, if you choose "Three_Hours", Config runs evaluations once every three hours. In this case, "Three_Hours" is the frequency of this rule. * **CustomPolicyDetails** *(dict) --* Provides the runtime system, policy definition, and whether debug logging is enabled. Required when owner is set to "CUSTOM_POLICY". * **PolicyRuntime** *(string) --* The runtime system for your Config Custom Policy rule. Guard is a policy-as-code language that allows you to write policies that are enforced by Config Custom Policy rules. For more information about Guard, see the Guard GitHub Repository. * **PolicyText** *(string) --* The policy definition containing the logic for your Config Custom Policy rule. * **EnableDebugLogDelivery** *(boolean) --* The boolean expression for enabling debug logging for your Config Custom Policy rule. The default value is "false". * **InputParameters** *(string) --* A string, in JSON format, that is passed to the Config rule Lambda function. * **MaximumExecutionFrequency** *(string) --* The maximum frequency with which Config runs evaluations for a rule. You can specify a value for "MaximumExecutionFrequency" when: * This is for an Config managed rule that is triggered at a periodic frequency. * Your custom rule is triggered when Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties. Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the "MaximumExecutionFrequency" parameter. * **ConfigRuleState** *(string) --* Indicates whether the Config rule is active or is currently being deleted by Config. It can also indicate the evaluation status for the Config rule. Config sets the state of the rule to "EVALUATING" temporarily after you use the "StartConfigRulesEvaluation" request to evaluate your resources against the Config rule. Config sets the state of the rule to "DELETING_RESULTS" temporarily after you use the "DeleteEvaluationResults" request to delete the current evaluation results for the Config rule. Config temporarily sets the state of a rule to "DELETING" after you use the "DeleteConfigRule" request to delete the rule. After Config deletes the rule, the rule and all of its evaluations are erased and are no longer available. * **CreatedBy** *(string) --* Service principal name of the service that created the rule. Note: The field is populated only if the service-linked rule is created by a service. The field is empty if you create your own rule. * **EvaluationModes** *(list) --* The modes the Config rule can be evaluated in. The valid values are distinct objects. By default, the value is Detective evaluation mode only. * *(dict) --* The configuration object for Config rule evaluation mode. The supported valid values are Detective or Proactive. * **Mode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. ConfigService / Paginator / DescribeComplianceByResource DescribeComplianceByResource **************************** class ConfigService.Paginator.DescribeComplianceByResource paginator = client.get_paginator('describe_compliance_by_resource') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.describe_compliance_by_resource()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ResourceType='string', ResourceId='string', ComplianceTypes=[ 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ResourceType** (*string*) -- The types of Amazon Web Services resources for which you want compliance information (for example, "AWS::EC2::Instance"). For this operation, you can specify that the resource type is an Amazon Web Services account by specifying "AWS::::Account". * **ResourceId** (*string*) -- The ID of the Amazon Web Services resource for which you want compliance information. You can specify only one resource ID. If you specify a resource ID, you must also specify a type for "ResourceType". * **ComplianceTypes** (*list*) -- Filters the results by compliance. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'ComplianceByResources': [ { 'ResourceType': 'string', 'ResourceId': 'string', 'Compliance': { 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'ComplianceContributorCount': { 'CappedCount': 123, 'CapExceeded': True|False } } }, ], } **Response Structure** * *(dict) --* * **ComplianceByResources** *(list) --* Indicates whether the specified Amazon Web Services resource complies with all of the Config rules that evaluate it. * *(dict) --* Indicates whether an Amazon Web Services resource that is evaluated according to one or more Config rules is compliant. A resource is compliant if it complies with all of the rules that evaluate it. A resource is noncompliant if it does not comply with one or more of these rules. * **ResourceType** *(string) --* The type of the Amazon Web Services resource that was evaluated. * **ResourceId** *(string) --* The ID of the Amazon Web Services resource that was evaluated. * **Compliance** *(dict) --* Indicates whether the Amazon Web Services resource complies with all of the Config rules that evaluated it. * **ComplianceType** *(string) --* Indicates whether an Amazon Web Services resource or Config rule is compliant. A resource is compliant if it complies with all of the Config rules that evaluate it. A resource is noncompliant if it does not comply with one or more of these rules. A rule is compliant if all of the resources that the rule evaluates comply with it. A rule is noncompliant if any of these resources do not comply. Config returns the "INSUFFICIENT_DATA" value when no evaluation results are available for the Amazon Web Services resource or Config rule. For the "Compliance" data type, Config supports only "COMPLIANT", "NON_COMPLIANT", and "INSUFFICIENT_DATA" values. Config does not support the "NOT_APPLICABLE" value for the "Compliance" data type. * **ComplianceContributorCount** *(dict) --* The number of Amazon Web Services resources or Config rules that cause a result of "NON_COMPLIANT", up to a maximum number. * **CappedCount** *(integer) --* The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item. * **CapExceeded** *(boolean) --* Indicates whether the maximum count is reached. ConfigService / Paginator / GetOrganizationConfigRuleDetailedStatus GetOrganizationConfigRuleDetailedStatus *************************************** class ConfigService.Paginator.GetOrganizationConfigRuleDetailedStatus paginator = client.get_paginator('get_organization_config_rule_detailed_status') paginate(**kwargs) Creates an iterator that will paginate through responses from " ConfigService.Client.get_organization_config_rule_detailed_stat us()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( OrganizationConfigRuleName='string', Filters={ 'AccountId': 'string', 'MemberAccountRuleStatus': 'CREATE_SUCCESSFUL'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_SUCCESSFUL'|'DELETE_FAILED'|'DELETE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_IN_PROGRESS'|'UPDATE_FAILED' }, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **OrganizationConfigRuleName** (*string*) -- **[REQUIRED]** The name of your organization Config rule for which you want status details for member accounts. * **Filters** (*dict*) -- A "StatusDetailFilters" object. * **AccountId** *(string) --* The 12-digit account ID of the member account within an organization. * **MemberAccountRuleStatus** *(string) --* Indicates deployment status for Config rule in the member account. When management account calls "PutOrganizationConfigRule" action for the first time, Config rule status is created in the member account. When management account calls "PutOrganizationConfigRule" action for the second time, Config rule status is updated in the member account. Config rule status is deleted when the management account deletes "OrganizationConfigRule" and disables service access for "config- multiaccountsetup.amazonaws.com". Config sets the state of the rule to: * "CREATE_SUCCESSFUL" when Config rule has been created in the member account. * "CREATE_IN_PROGRESS" when Config rule is being created in the member account. * "CREATE_FAILED" when Config rule creation has failed in the member account. * "DELETE_FAILED" when Config rule deletion has failed in the member account. * "DELETE_IN_PROGRESS" when Config rule is being deleted in the member account. * "DELETE_SUCCESSFUL" when Config rule has been deleted in the member account. * "UPDATE_SUCCESSFUL" when Config rule has been updated in the member account. * "UPDATE_IN_PROGRESS" when Config rule is being updated in the member account. * "UPDATE_FAILED" when Config rule deletion has failed in the member account. * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'OrganizationConfigRuleDetailedStatus': [ { 'AccountId': 'string', 'ConfigRuleName': 'string', 'MemberAccountRuleStatus': 'CREATE_SUCCESSFUL'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_SUCCESSFUL'|'DELETE_FAILED'|'DELETE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_IN_PROGRESS'|'UPDATE_FAILED', 'ErrorCode': 'string', 'ErrorMessage': 'string', 'LastUpdateTime': datetime(2015, 1, 1) }, ], } **Response Structure** * *(dict) --* * **OrganizationConfigRuleDetailedStatus** *(list) --* A list of "MemberAccountStatus" objects. * *(dict) --* Organization Config rule creation or deletion status in each member account. This includes the name of the rule, the status, error code and error message when the rule creation or deletion failed. * **AccountId** *(string) --* The 12-digit account ID of a member account. * **ConfigRuleName** *(string) --* The name of Config rule deployed in the member account. * **MemberAccountRuleStatus** *(string) --* Indicates deployment status for Config rule in the member account. When management account calls "PutOrganizationConfigRule" action for the first time, Config rule status is created in the member account. When management account calls "PutOrganizationConfigRule" action for the second time, Config rule status is updated in the member account. Config rule status is deleted when the management account deletes "OrganizationConfigRule" and disables service access for "config- multiaccountsetup.amazonaws.com". Config sets the state of the rule to: * "CREATE_SUCCESSFUL" when Config rule has been created in the member account. * "CREATE_IN_PROGRESS" when Config rule is being created in the member account. * "CREATE_FAILED" when Config rule creation has failed in the member account. * "DELETE_FAILED" when Config rule deletion has failed in the member account. * "DELETE_IN_PROGRESS" when Config rule is being deleted in the member account. * "DELETE_SUCCESSFUL" when Config rule has been deleted in the member account. * "UPDATE_SUCCESSFUL" when Config rule has been updated in the member account. * "UPDATE_IN_PROGRESS" when Config rule is being updated in the member account. * "UPDATE_FAILED" when Config rule deletion has failed in the member account. * **ErrorCode** *(string) --* An error code that is returned when Config rule creation or deletion failed in the member account. * **ErrorMessage** *(string) --* An error message indicating that Config rule account creation or deletion has failed due to an error in the member account. * **LastUpdateTime** *(datetime) --* The timestamp of the last status update. ConfigService / Paginator / DescribeConfigurationAggregators DescribeConfigurationAggregators ******************************** class ConfigService.Paginator.DescribeConfigurationAggregators paginator = client.get_paginator('describe_configuration_aggregators') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.describe_configuration_aggregators()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConfigurationAggregatorNames=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ConfigurationAggregatorNames** (*list*) -- The name of the configuration aggregators. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'ConfigurationAggregators': [ { 'ConfigurationAggregatorName': 'string', 'ConfigurationAggregatorArn': 'string', 'AccountAggregationSources': [ { 'AccountIds': [ 'string', ], 'AllAwsRegions': True|False, 'AwsRegions': [ 'string', ] }, ], 'OrganizationAggregationSource': { 'RoleArn': 'string', 'AwsRegions': [ 'string', ], 'AllAwsRegions': True|False }, 'CreationTime': datetime(2015, 1, 1), 'LastUpdatedTime': datetime(2015, 1, 1), 'CreatedBy': 'string', 'AggregatorFilters': { 'ResourceType': { 'Type': 'INCLUDE', 'Value': [ 'string', ] }, 'ServicePrincipal': { 'Type': 'INCLUDE', 'Value': [ 'string', ] } } }, ], } **Response Structure** * *(dict) --* * **ConfigurationAggregators** *(list) --* Returns a ConfigurationAggregators object. * *(dict) --* The details about the configuration aggregator, including information about source accounts, regions, and metadata of the aggregator. * **ConfigurationAggregatorName** *(string) --* The name of the aggregator. * **ConfigurationAggregatorArn** *(string) --* The Amazon Resource Name (ARN) of the aggregator. * **AccountAggregationSources** *(list) --* Provides a list of source accounts and regions to be aggregated. * *(dict) --* A collection of accounts and regions. * **AccountIds** *(list) --* The 12-digit account ID of the account being aggregated. * *(string) --* * **AllAwsRegions** *(boolean) --* If true, aggregate existing Config regions and future regions. * **AwsRegions** *(list) --* The source regions being aggregated. * *(string) --* * **OrganizationAggregationSource** *(dict) --* Provides an organization and list of regions to be aggregated. * **RoleArn** *(string) --* ARN of the IAM role used to retrieve Amazon Web Services Organization details associated with the aggregator account. * **AwsRegions** *(list) --* The source regions being aggregated. * *(string) --* * **AllAwsRegions** *(boolean) --* If true, aggregate existing Config regions and future regions. * **CreationTime** *(datetime) --* The time stamp when the configuration aggregator was created. * **LastUpdatedTime** *(datetime) --* The time of the last update. * **CreatedBy** *(string) --* Amazon Web Services service that created the configuration aggregator. * **AggregatorFilters** *(dict) --* An object to filter the data you specify for an aggregator. * **ResourceType** *(dict) --* An object to filter the configuration recorders based on the resource types in scope for recording. * **Type** *(string) --* The type of resource type filter to apply. "INCLUDE" specifies that the list of resource types in the "Value" field will be aggregated and no other resource types will be filtered. * **Value** *(list) --* Comma-separate list of resource types to filter your aggregated configuration recorders. * *(string) --* * **ServicePrincipal** *(dict) --* An object to filter service-linked configuration recorders in an aggregator based on the linked Amazon Web Services service. * **Type** *(string) --* The type of service principal filter to apply. "INCLUDE" specifies that the list of service principals in the "Value" field will be aggregated and no other service principals will be filtered. * **Value** *(list) --* Comma-separated list of service principals for the linked Amazon Web Services services to filter your aggregated service-linked configuration recorders. * *(string) --* ConfigService / Paginator / GetConformancePackComplianceSummary GetConformancePackComplianceSummary *********************************** class ConfigService.Paginator.GetConformancePackComplianceSummary paginator = client.get_paginator('get_conformance_pack_compliance_summary') paginate(**kwargs) Creates an iterator that will paginate through responses from " ConfigService.Client.get_conformance_pack_compliance_summary()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConformancePackNames=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ConformancePackNames** (*list*) -- **[REQUIRED]** Names of conformance packs. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'ConformancePackComplianceSummaryList': [ { 'ConformancePackName': 'string', 'ConformancePackComplianceStatus': 'COMPLIANT'|'NON_COMPLIANT'|'INSUFFICIENT_DATA' }, ], } **Response Structure** * *(dict) --* * **ConformancePackComplianceSummaryList** *(list) --* A list of "ConformancePackComplianceSummary" objects. * *(dict) --* Summary includes the name and status of the conformance pack. * **ConformancePackName** *(string) --* The name of the conformance pack name. * **ConformancePackComplianceStatus** *(string) --* The status of the conformance pack. ConfigService / Paginator / DescribeOrganizationConformancePacks DescribeOrganizationConformancePacks ************************************ class ConfigService.Paginator.DescribeOrganizationConformancePacks paginator = client.get_paginator('describe_organization_conformance_packs') paginate(**kwargs) Creates an iterator that will paginate through responses from " ConfigService.Client.describe_organization_conformance_packs()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( OrganizationConformancePackNames=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **OrganizationConformancePackNames** (*list*) -- The name that you assign to an organization conformance pack. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'OrganizationConformancePacks': [ { 'OrganizationConformancePackName': 'string', 'OrganizationConformancePackArn': 'string', 'DeliveryS3Bucket': 'string', 'DeliveryS3KeyPrefix': 'string', 'ConformancePackInputParameters': [ { 'ParameterName': 'string', 'ParameterValue': 'string' }, ], 'ExcludedAccounts': [ 'string', ], 'LastUpdateTime': datetime(2015, 1, 1) }, ], } **Response Structure** * *(dict) --* * **OrganizationConformancePacks** *(list) --* Returns a list of OrganizationConformancePacks objects. * *(dict) --* An organization conformance pack that has information about conformance packs that Config creates in member accounts. * **OrganizationConformancePackName** *(string) --* The name you assign to an organization conformance pack. * **OrganizationConformancePackArn** *(string) --* Amazon Resource Name (ARN) of organization conformance pack. * **DeliveryS3Bucket** *(string) --* The name of the Amazon S3 bucket where Config stores conformance pack templates. Note: This field is optional. * **DeliveryS3KeyPrefix** *(string) --* Any folder structure you want to add to an Amazon S3 bucket. Note: This field is optional. * **ConformancePackInputParameters** *(list) --* A list of "ConformancePackInputParameter" objects. * *(dict) --* Input parameters in the form of key-value pairs for the conformance pack, both of which you define. Keys can have a maximum character length of 255 characters, and values can have a maximum length of 4096 characters. * **ParameterName** *(string) --* One part of a key-value pair. * **ParameterValue** *(string) --* Another part of the key-value pair. * **ExcludedAccounts** *(list) --* A comma-separated list of accounts excluded from organization conformance pack. * *(string) --* * **LastUpdateTime** *(datetime) --* Last time when organization conformation pack was updated. ConfigService / Paginator / GetResourceConfigHistory GetResourceConfigHistory ************************ class ConfigService.Paginator.GetResourceConfigHistory paginator = client.get_paginator('get_resource_config_history') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.get_resource_config_history()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( resourceType='AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', resourceId='string', laterTime=datetime(2015, 1, 1), earlierTime=datetime(2015, 1, 1), chronologicalOrder='Reverse'|'Forward', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **resourceType** (*string*) -- **[REQUIRED]** The resource type. * **resourceId** (*string*) -- **[REQUIRED]** The ID of the resource (for example., "sg-xxxxxx"). * **laterTime** (*datetime*) -- The chronologically latest time in the time range for which the history requested. If not specified, current time is taken. * **earlierTime** (*datetime*) -- The chronologically earliest time in the time range for which the history requested. If not specified, the action returns paginated results that contain configuration items that start when the first configuration item was recorded. * **chronologicalOrder** (*string*) -- The chronological order for configuration items listed. By default, the results are listed in reverse chronological order. * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'configurationItems': [ { 'version': 'string', 'accountId': 'string', 'configurationItemCaptureTime': datetime(2015, 1, 1), 'configurationItemStatus': 'OK'|'ResourceDiscovered'|'ResourceNotRecorded'|'ResourceDeleted'|'ResourceDeletedNotRecorded', 'configurationStateId': 'string', 'configurationItemMD5Hash': 'string', 'arn': 'string', 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string', 'resourceName': 'string', 'awsRegion': 'string', 'availabilityZone': 'string', 'resourceCreationTime': datetime(2015, 1, 1), 'tags': { 'string': 'string' }, 'relatedEvents': [ 'string', ], 'relationships': [ { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string', 'resourceName': 'string', 'relationshipName': 'string' }, ], 'configuration': 'string', 'supplementaryConfiguration': { 'string': 'string' }, 'recordingFrequency': 'CONTINUOUS'|'DAILY', 'configurationItemDeliveryTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* The output for the GetResourceConfigHistory action. * **configurationItems** *(list) --* An array of "ConfigurationItems" Objects. Contatins the configuration history for one or more resources. * *(dict) --* A list that contains detailed configurations of a specified resource. * **version** *(string) --* The version number of the resource configuration. * **accountId** *(string) --* The 12-digit Amazon Web Services account ID associated with the resource. * **configurationItemCaptureTime** *(datetime) --* The time when the recording of configuration changes was initiated for the resource. * **configurationItemStatus** *(string) --* The configuration item status. Valid values include: * OK – The resource configuration has been updated * ResourceDiscovered – The resource was newly discovered * ResourceNotRecorded – The resource was discovered but its configuration was not recorded since the recorder doesn't record resources of this type * ResourceDeleted – The resource was deleted * ResourceDeletedNotRecorded – The resource was deleted but its configuration was not recorded since the recorder doesn't record resources of this type * **configurationStateId** *(string) --* An identifier that indicates the ordering of the configuration items of a resource. * **configurationItemMD5Hash** *(string) --* Unique MD5 hash that represents the configuration item's state. You can use MD5 hash to compare the states of two or more configuration items that are associated with the same resource. * **arn** *(string) --* Amazon Resource Name (ARN) associated with the resource. * **resourceType** *(string) --* The type of Amazon Web Services resource. * **resourceId** *(string) --* The ID of the resource (for example, "sg-xxxxxx"). * **resourceName** *(string) --* The custom name of the resource, if available. * **awsRegion** *(string) --* The region where the resource resides. * **availabilityZone** *(string) --* The Availability Zone associated with the resource. * **resourceCreationTime** *(datetime) --* The time stamp when the resource was created. * **tags** *(dict) --* A mapping of key value tags associated with the resource. * *(string) --* * *(string) --* * **relatedEvents** *(list) --* A list of CloudTrail event IDs. A populated field indicates that the current configuration was initiated by the events recorded in the CloudTrail log. For more information about CloudTrail, see What Is CloudTrail. An empty field indicates that the current configuration was not initiated by any event. As of Version 1.3, the relatedEvents field is empty. You can access the LookupEvents API in the *CloudTrail API Reference* to retrieve the events for the resource. * *(string) --* * **relationships** *(list) --* A list of related Amazon Web Services resources. * *(dict) --* The relationship of the related resource to the main resource. * **resourceType** *(string) --* The resource type of the related resource. * **resourceId** *(string) --* The ID of the related resource (for example, "sg- xxxxxx"). * **resourceName** *(string) --* The custom name of the related resource, if available. * **relationshipName** *(string) --* The type of relationship with the related resource. * **configuration** *(string) --* A JSON-encoded string that contains the contents for the resource configuration. This string needs to be deserialized using "json.loads()" before you can access the contents. * **supplementaryConfiguration** *(dict) --* A string to string map that contains additional contents for the resource configuration.Config returns this field for certain resource types to supplement the information returned for the "configuration" field. This string to string map needs to be deserialized using "json.loads()" before you can accessing the contents. * *(string) --* * *(string) --* * **recordingFrequency** *(string) --* The recording frequency that Config uses to record configuration changes for the resource. Note: This field only appears in the API response when "DAILY" recording is enabled for a resource type. If this field is not present, "CONTINUOUS" recording is enabled for that resource type. For more information on daily recording and continuous recording, see Recording Frequency in the *Config Developer Guide*. * **configurationItemDeliveryTime** *(datetime) --* The time when configuration changes for the resource were delivered. Note: This field is optional and is not guaranteed to be present in a configuration item (CI). If you are using daily recording, this field will be populated. However, if you are using continuous recording, this field will be omitted since the delivery time is instantaneous as the CI is available right away.For more information on daily recording and continuous recording, see Recording Frequency in the *Config Developer Guide*. * **NextToken** *(string) --* A token to resume pagination. ConfigService / Paginator / DescribeOrganizationConfigRuleStatuses DescribeOrganizationConfigRuleStatuses ************************************** class ConfigService.Paginator.DescribeOrganizationConfigRuleStatuses paginator = client.get_paginator('describe_organization_config_rule_statuses') paginate(**kwargs) Creates an iterator that will paginate through responses from " ConfigService.Client.describe_organization_config_rule_statuses ()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( OrganizationConfigRuleNames=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **OrganizationConfigRuleNames** (*list*) -- The names of organization Config rules for which you want status details. If you do not specify any names, Config returns details for all your organization Config rules. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'OrganizationConfigRuleStatuses': [ { 'OrganizationConfigRuleName': 'string', 'OrganizationRuleStatus': 'CREATE_SUCCESSFUL'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_SUCCESSFUL'|'DELETE_FAILED'|'DELETE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_IN_PROGRESS'|'UPDATE_FAILED', 'ErrorCode': 'string', 'ErrorMessage': 'string', 'LastUpdateTime': datetime(2015, 1, 1) }, ], } **Response Structure** * *(dict) --* * **OrganizationConfigRuleStatuses** *(list) --* A list of "OrganizationConfigRuleStatus" objects. * *(dict) --* Returns the status for an organization Config rule in an organization. * **OrganizationConfigRuleName** *(string) --* The name that you assign to organization Config rule. * **OrganizationRuleStatus** *(string) --* Indicates deployment status of an organization Config rule. When management account calls PutOrganizationConfigRule action for the first time, Config rule status is created in all the member accounts. When management account calls PutOrganizationConfigRule action for the second time, Config rule status is updated in all the member accounts. Additionally, Config rule status is updated when one or more member accounts join or leave an organization. Config rule status is deleted when the management account deletes OrganizationConfigRule in all the member accounts and disables service access for "config-multiaccountsetup.amazonaws.com". Config sets the state of the rule to: * "CREATE_SUCCESSFUL" when an organization Config rule has been successfully created in all the member accounts. * "CREATE_IN_PROGRESS" when an organization Config rule creation is in progress. * "CREATE_FAILED" when an organization Config rule creation failed in one or more member accounts within that organization. * "DELETE_FAILED" when an organization Config rule deletion failed in one or more member accounts within that organization. * "DELETE_IN_PROGRESS" when an organization Config rule deletion is in progress. * "DELETE_SUCCESSFUL" when an organization Config rule has been successfully deleted from all the member accounts. * "UPDATE_SUCCESSFUL" when an organization Config rule has been successfully updated in all the member accounts. * "UPDATE_IN_PROGRESS" when an organization Config rule update is in progress. * "UPDATE_FAILED" when an organization Config rule update failed in one or more member accounts within that organization. * **ErrorCode** *(string) --* An error code that is returned when organization Config rule creation or deletion has failed. * **ErrorMessage** *(string) --* An error message indicating that organization Config rule creation or deletion failed due to an error. * **LastUpdateTime** *(datetime) --* The timestamp of the last update. ConfigService / Paginator / SelectResourceConfig SelectResourceConfig ******************** class ConfigService.Paginator.SelectResourceConfig paginator = client.get_paginator('select_resource_config') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.select_resource_config()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( Expression='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **Expression** (*string*) -- **[REQUIRED]** The SQL query "SELECT" command. * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'Results': [ 'string', ], 'QueryInfo': { 'SelectFields': [ { 'Name': 'string' }, ] }, } **Response Structure** * *(dict) --* * **Results** *(list) --* Returns the results for the SQL query. * *(string) --* * **QueryInfo** *(dict) --* Returns the "QueryInfo" object. * **SelectFields** *(list) --* Returns a "FieldInfo" object. * *(dict) --* Details about the fields such as name of the field. * **Name** *(string) --* Name of the field. ConfigService / Paginator / DescribeOrganizationConfigRules DescribeOrganizationConfigRules ******************************* class ConfigService.Paginator.DescribeOrganizationConfigRules paginator = client.get_paginator('describe_organization_config_rules') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.describe_organization_config_rules()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( OrganizationConfigRuleNames=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **OrganizationConfigRuleNames** (*list*) -- The names of organization Config rules for which you want details. If you do not specify any names, Config returns details for all your organization Config rules. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **PageSize** *(integer) --* The size of each page. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'OrganizationConfigRules': [ { 'OrganizationConfigRuleName': 'string', 'OrganizationConfigRuleArn': 'string', 'OrganizationManagedRuleMetadata': { 'Description': 'string', 'RuleIdentifier': 'string', 'InputParameters': 'string', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours', 'ResourceTypesScope': [ 'string', ], 'ResourceIdScope': 'string', 'TagKeyScope': 'string', 'TagValueScope': 'string' }, 'OrganizationCustomRuleMetadata': { 'Description': 'string', 'LambdaFunctionArn': 'string', 'OrganizationConfigRuleTriggerTypes': [ 'ConfigurationItemChangeNotification'|'OversizedConfigurationItemChangeNotification'|'ScheduledNotification', ], 'InputParameters': 'string', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours', 'ResourceTypesScope': [ 'string', ], 'ResourceIdScope': 'string', 'TagKeyScope': 'string', 'TagValueScope': 'string' }, 'ExcludedAccounts': [ 'string', ], 'LastUpdateTime': datetime(2015, 1, 1), 'OrganizationCustomPolicyRuleMetadata': { 'Description': 'string', 'OrganizationConfigRuleTriggerTypes': [ 'ConfigurationItemChangeNotification'|'OversizedConfigurationItemChangeNotification', ], 'InputParameters': 'string', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours', 'ResourceTypesScope': [ 'string', ], 'ResourceIdScope': 'string', 'TagKeyScope': 'string', 'TagValueScope': 'string', 'PolicyRuntime': 'string', 'DebugLogDeliveryAccounts': [ 'string', ] } }, ], } **Response Structure** * *(dict) --* * **OrganizationConfigRules** *(list) --* Returns a list of "OrganizationConfigRule" objects. * *(dict) --* An organization Config rule that has information about Config rules that Config creates in member accounts. * **OrganizationConfigRuleName** *(string) --* The name that you assign to organization Config rule. * **OrganizationConfigRuleArn** *(string) --* Amazon Resource Name (ARN) of organization Config rule. * **OrganizationManagedRuleMetadata** *(dict) --* An "OrganizationManagedRuleMetadata" object. * **Description** *(string) --* The description that you provide for your organization Config rule. * **RuleIdentifier** *(string) --* For organization config managed rules, a predefined identifier from a list. For example, "IAM_PASSWORD_POLICY" is a managed rule. To reference a managed rule, see Using Config managed rules. * **InputParameters** *(string) --* A string, in JSON format, that is passed to your organization Config rule Lambda function. * **MaximumExecutionFrequency** *(string) --* The maximum frequency with which Config runs evaluations for a rule. This is for an Config managed rule that is triggered at a periodic frequency. Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the "MaximumExecutionFrequency" parameter. * **ResourceTypesScope** *(list) --* The type of the Amazon Web Services resource that was evaluated. * *(string) --* * **ResourceIdScope** *(string) --* The ID of the Amazon Web Services resource that was evaluated. * **TagKeyScope** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **TagValueScope** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). * **OrganizationCustomRuleMetadata** *(dict) --* An "OrganizationCustomRuleMetadata" object. * **Description** *(string) --* The description that you provide for your organization Config rule. * **LambdaFunctionArn** *(string) --* The lambda function ARN. * **OrganizationConfigRuleTriggerTypes** *(list) --* The type of notification that triggers Config to run an evaluation for a rule. You can specify the following notification types: * "ConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers a configuration item as a result of a resource change. * "OversizedConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers an oversized configuration item. Config may generate this notification type when a resource changes and the notification exceeds the maximum size allowed by Amazon SNS. * "ScheduledNotification" - Triggers a periodic evaluation at the frequency specified for "MaximumExecutionFrequency". * *(string) --* * **InputParameters** *(string) --* A string, in JSON format, that is passed to your organization Config rule Lambda function. * **MaximumExecutionFrequency** *(string) --* The maximum frequency with which Config runs evaluations for a rule. Your custom rule is triggered when Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties. Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the "MaximumExecutionFrequency" parameter. * **ResourceTypesScope** *(list) --* The type of the Amazon Web Services resource that was evaluated. * *(string) --* * **ResourceIdScope** *(string) --* The ID of the Amazon Web Services resource that was evaluated. * **TagKeyScope** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **TagValueScope** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). * **ExcludedAccounts** *(list) --* A comma-separated list of accounts excluded from organization Config rule. * *(string) --* * **LastUpdateTime** *(datetime) --* The timestamp of the last update. * **OrganizationCustomPolicyRuleMetadata** *(dict) --* An object that specifies metadata for your organization's Config Custom Policy rule. The metadata includes the runtime system in use, which accounts have debug logging enabled, and other custom rule metadata, such as resource type, resource ID of Amazon Web Services resource, and organization trigger types that initiate Config to evaluate Amazon Web Services resources against a rule. * **Description** *(string) --* The description that you provide for your organization Config Custom Policy rule. * **OrganizationConfigRuleTriggerTypes** *(list) --* The type of notification that triggers Config to run an evaluation for a rule. For Config Custom Policy rules, Config supports change triggered notification types: * "ConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers a configuration item as a result of a resource change. * "OversizedConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers an oversized configuration item. Config may generate this notification type when a resource changes and the notification exceeds the maximum size allowed by Amazon SNS. * *(string) --* * **InputParameters** *(string) --* A string, in JSON format, that is passed to your organization Config Custom Policy rule. * **MaximumExecutionFrequency** *(string) --* The maximum frequency with which Config runs evaluations for a rule. Your Config Custom Policy rule is triggered when Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties. * **ResourceTypesScope** *(list) --* The type of the Amazon Web Services resource that was evaluated. * *(string) --* * **ResourceIdScope** *(string) --* The ID of the Amazon Web Services resource that was evaluated. * **TagKeyScope** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **TagValueScope** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). * **PolicyRuntime** *(string) --* The runtime system for your organization Config Custom Policy rules. Guard is a policy-as-code language that allows you to write policies that are enforced by Config Custom Policy rules. For more information about Guard, see the Guard GitHub Repository. * **DebugLogDeliveryAccounts** *(list) --* A list of accounts that you can enable debug logging for your organization Config Custom Policy rule. List is null when debug logging is enabled for all accounts. * *(string) --* ConfigService / Paginator / DescribeComplianceByConfigRule DescribeComplianceByConfigRule ****************************** class ConfigService.Paginator.DescribeComplianceByConfigRule paginator = client.get_paginator('describe_compliance_by_config_rule') paginate(**kwargs) Creates an iterator that will paginate through responses from "ConfigService.Client.describe_compliance_by_config_rule()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ConfigRuleNames=[ 'string', ], ComplianceTypes=[ 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', ], PaginationConfig={ 'MaxItems': 123, 'StartingToken': 'string' } ) Parameters: * **ConfigRuleNames** (*list*) -- Specify one or more Config rule names to filter the results by rule. * *(string) --* * **ComplianceTypes** (*list*) -- Filters the results by compliance. * *(string) --* * **PaginationConfig** (*dict*) -- A dictionary that provides parameters to control pagination. * **MaxItems** *(integer) --* The total number of items to return. If the total number of items available is more than the value specified in max-items then a "NextToken" will be provided in the output that you can use to resume pagination. * **StartingToken** *(string) --* A token to specify where to start paginating. This is the "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'ComplianceByConfigRules': [ { 'ConfigRuleName': 'string', 'Compliance': { 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'ComplianceContributorCount': { 'CappedCount': 123, 'CapExceeded': True|False } } }, ], } **Response Structure** * *(dict) --* * **ComplianceByConfigRules** *(list) --* Indicates whether each of the specified Config rules is compliant. * *(dict) --* Indicates whether an Config rule is compliant. A rule is compliant if all of the resources that the rule evaluated comply with it. A rule is noncompliant if any of these resources do not comply. * **ConfigRuleName** *(string) --* The name of the Config rule. * **Compliance** *(dict) --* Indicates whether the Config rule is compliant. * **ComplianceType** *(string) --* Indicates whether an Amazon Web Services resource or Config rule is compliant. A resource is compliant if it complies with all of the Config rules that evaluate it. A resource is noncompliant if it does not comply with one or more of these rules. A rule is compliant if all of the resources that the rule evaluates comply with it. A rule is noncompliant if any of these resources do not comply. Config returns the "INSUFFICIENT_DATA" value when no evaluation results are available for the Amazon Web Services resource or Config rule. For the "Compliance" data type, Config supports only "COMPLIANT", "NON_COMPLIANT", and "INSUFFICIENT_DATA" values. Config does not support the "NOT_APPLICABLE" value for the "Compliance" data type. * **ComplianceContributorCount** *(dict) --* The number of Amazon Web Services resources or Config rules that cause a result of "NON_COMPLIANT", up to a maximum number. * **CappedCount** *(integer) --* The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item. * **CapExceeded** *(boolean) --* Indicates whether the maximum count is reached. ConfigService / Client / describe_aggregation_authorizations describe_aggregation_authorizations *********************************** ConfigService.Client.describe_aggregation_authorizations(**kwargs) Returns a list of authorizations granted to various aggregator accounts and regions. See also: AWS API Documentation **Request Syntax** response = client.describe_aggregation_authorizations( Limit=123, NextToken='string' ) Parameters: * **Limit** (*integer*) -- The maximum number of AggregationAuthorizations returned on each page. The default is maximum. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'AggregationAuthorizations': [ { 'AggregationAuthorizationArn': 'string', 'AuthorizedAccountId': 'string', 'AuthorizedAwsRegion': 'string', 'CreationTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **AggregationAuthorizations** *(list) --* Returns a list of authorizations granted to various aggregator accounts and regions. * *(dict) --* An object that represents the authorizations granted to aggregator accounts and regions. * **AggregationAuthorizationArn** *(string) --* The Amazon Resource Name (ARN) of the aggregation object. * **AuthorizedAccountId** *(string) --* The 12-digit account ID of the account authorized to aggregate data. * **AuthorizedAwsRegion** *(string) --* The region authorized to collect aggregated data. * **CreationTime** *(datetime) --* The time stamp when the aggregation authorization was created. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidLimitException" ConfigService / Client / delete_aggregation_authorization delete_aggregation_authorization ******************************** ConfigService.Client.delete_aggregation_authorization(**kwargs) Deletes the authorization granted to the specified configuration aggregator account in a specified region. See also: AWS API Documentation **Request Syntax** response = client.delete_aggregation_authorization( AuthorizedAccountId='string', AuthorizedAwsRegion='string' ) Parameters: * **AuthorizedAccountId** (*string*) -- **[REQUIRED]** The 12-digit account ID of the account authorized to aggregate data. * **AuthorizedAwsRegion** (*string*) -- **[REQUIRED]** The region authorized to collect aggregated data. Returns: None **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" ConfigService / Client / get_organization_conformance_pack_detailed_status get_organization_conformance_pack_detailed_status ************************************************* ConfigService.Client.get_organization_conformance_pack_detailed_status(**kwargs) Returns detailed status for each member account within an organization for a given organization conformance pack. See also: AWS API Documentation **Request Syntax** response = client.get_organization_conformance_pack_detailed_status( OrganizationConformancePackName='string', Filters={ 'AccountId': 'string', 'Status': 'CREATE_SUCCESSFUL'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_SUCCESSFUL'|'DELETE_FAILED'|'DELETE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_IN_PROGRESS'|'UPDATE_FAILED' }, Limit=123, NextToken='string' ) Parameters: * **OrganizationConformancePackName** (*string*) -- **[REQUIRED]** The name of organization conformance pack for which you want status details for member accounts. * **Filters** (*dict*) -- An "OrganizationResourceDetailedStatusFilters" object. * **AccountId** *(string) --* The 12-digit account ID of the member account within an organization. * **Status** *(string) --* Indicates deployment status for conformance pack in a member account. When management account calls "PutOrganizationConformancePack" action for the first time, conformance pack status is created in the member account. When management account calls "PutOrganizationConformancePack" action for the second time, conformance pack status is updated in the member account. Conformance pack status is deleted when the management account deletes "OrganizationConformancePack" and disables service access for "config-multiaccountsetup.amazonaws.com". Config sets the state of the conformance pack to: * "CREATE_SUCCESSFUL" when conformance pack has been created in the member account. * "CREATE_IN_PROGRESS" when conformance pack is being created in the member account. * "CREATE_FAILED" when conformance pack creation has failed in the member account. * "DELETE_FAILED" when conformance pack deletion has failed in the member account. * "DELETE_IN_PROGRESS" when conformance pack is being deleted in the member account. * "DELETE_SUCCESSFUL" when conformance pack has been deleted in the member account. * "UPDATE_SUCCESSFUL" when conformance pack has been updated in the member account. * "UPDATE_IN_PROGRESS" when conformance pack is being updated in the member account. * "UPDATE_FAILED" when conformance pack deletion has failed in the member account. * **Limit** (*integer*) -- The maximum number of "OrganizationConformancePackDetailedStatuses" returned on each page. If you do not specify a number, Config uses the default. The default is 100. * **NextToken** (*string*) -- The nextToken string 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** { 'OrganizationConformancePackDetailedStatuses': [ { 'AccountId': 'string', 'ConformancePackName': 'string', 'Status': 'CREATE_SUCCESSFUL'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_SUCCESSFUL'|'DELETE_FAILED'|'DELETE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_IN_PROGRESS'|'UPDATE_FAILED', 'ErrorCode': 'string', 'ErrorMessage': 'string', 'LastUpdateTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **OrganizationConformancePackDetailedStatuses** *(list) --* A list of "OrganizationConformancePackDetailedStatus" objects. * *(dict) --* Organization conformance pack creation or deletion status in each member account. This includes the name of the conformance pack, the status, error code and error message when the conformance pack creation or deletion failed. * **AccountId** *(string) --* The 12-digit account ID of a member account. * **ConformancePackName** *(string) --* The name of conformance pack deployed in the member account. * **Status** *(string) --* Indicates deployment status for conformance pack in a member account. When management account calls "PutOrganizationConformancePack" action for the first time, conformance pack status is created in the member account. When management account calls "PutOrganizationConformancePack" action for the second time, conformance pack status is updated in the member account. Conformance pack status is deleted when the management account deletes "OrganizationConformancePack" and disables service access for "config- multiaccountsetup.amazonaws.com". Config sets the state of the conformance pack to: * "CREATE_SUCCESSFUL" when conformance pack has been created in the member account. * "CREATE_IN_PROGRESS" when conformance pack is being created in the member account. * "CREATE_FAILED" when conformance pack creation has failed in the member account. * "DELETE_FAILED" when conformance pack deletion has failed in the member account. * "DELETE_IN_PROGRESS" when conformance pack is being deleted in the member account. * "DELETE_SUCCESSFUL" when conformance pack has been deleted in the member account. * "UPDATE_SUCCESSFUL" when conformance pack has been updated in the member account. * "UPDATE_IN_PROGRESS" when conformance pack is being updated in the member account. * "UPDATE_FAILED" when conformance pack deletion has failed in the member account. * **ErrorCode** *(string) --* An error code that is returned when conformance pack creation or deletion failed in the member account. * **ErrorMessage** *(string) --* An error message indicating that conformance pack account creation or deletion has failed due to an error in the member account. * **LastUpdateTime** *(datetime) --* The timestamp of the last status update. * **NextToken** *(string) --* The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.NoSuchOrganizationConformancePa ckException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.OrganizationAccessDeniedExcepti on" ConfigService / Client / associate_resource_types associate_resource_types ************************ ConfigService.Client.associate_resource_types(**kwargs) Adds all resource types specified in the "ResourceTypes" list to the RecordingGroup of specified configuration recorder and includes those resource types when recording. For this operation, the specified configuration recorder must use a RecordingStrategy that is either "INCLUSION_BY_RESOURCE_TYPES" or "EXCLUSION_BY_RESOURCE_TYPES". See also: AWS API Documentation **Request Syntax** response = client.associate_resource_types( ConfigurationRecorderArn='string', ResourceTypes=[ 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', ] ) Parameters: * **ConfigurationRecorderArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the specified configuration recorder. * **ResourceTypes** (*list*) -- **[REQUIRED]** The list of resource types you want to add to the recording group of the specified configuration recorder. * *(string) --* Return type: dict Returns: **Response Syntax** { 'ConfigurationRecorder': { 'arn': 'string', 'name': 'string', 'roleARN': 'string', 'recordingGroup': { 'allSupported': True|False, 'includeGlobalResourceTypes': True|False, 'resourceTypes': [ 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', ], 'exclusionByResourceTypes': { 'resourceTypes': [ 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', ] }, 'recordingStrategy': { 'useOnly': 'ALL_SUPPORTED_RESOURCE_TYPES'|'INCLUSION_BY_RESOURCE_TYPES'|'EXCLUSION_BY_RESOURCE_TYPES' } }, 'recordingMode': { 'recordingFrequency': 'CONTINUOUS'|'DAILY', 'recordingModeOverrides': [ { 'description': 'string', 'resourceTypes': [ 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', ], 'recordingFrequency': 'CONTINUOUS'|'DAILY' }, ] }, 'recordingScope': 'INTERNAL'|'PAID', 'servicePrincipal': 'string' } } **Response Structure** * *(dict) --* * **ConfigurationRecorder** *(dict) --* Records configuration changes to the resource types in scope. For more information about the configuration recorder, see **Working with the Configuration Recorder** in the *Config Developer Guide*. * **arn** *(string) --* The Amazon Resource Name (ARN) of the specified configuration recorder. * **name** *(string) --* The name of the configuration recorder. For customer managed configuration recorders, Config automatically assigns the name of "default" when creating a configuration recorder if you do not specify a name at creation time. For service-linked configuration recorders, Config automatically assigns a name that has the prefix " "AWSConfigurationRecorderFor"" to a new service-linked configuration recorder. Note: **Changing the name of a configuration recorder**To change the name of the customer managed configuration recorder, you must delete it and create a new customer managed configuration recorder with a new name.You cannot change the name of a service-linked configuration recorder. * **roleARN** *(string) --* The Amazon Resource Name (ARN) of the IAM role assumed by Config and used by the specified configuration recorder. Note: The server will reject a request without a defined "roleARN" for the configuration recorderWhile the API model does not require this field, the server will reject a request without a defined "roleARN" for the configuration recorder.**Policies and compliance results**IAM policies and other policies managed in Organizations can impact whether Config has permissions to record configuration changes for your resources. Additionally, rules directly evaluate the configuration of a resource and rules don't take into account these policies when running evaluations. Make sure that the policies in effect align with how you intend to use Config.**Keep Minimum Permisions When Reusing an IAM role**If you use an Amazon Web Services service that uses Config, such as Security Hub or Control Tower, and an IAM role has already been created, make sure that the IAM role that you use when setting up Config keeps the same minimum permissions as the pre-existing IAM role. You must do this to ensure that the other Amazon Web Services service continues to run as expected.For example, if Control Tower has an IAM role that allows Config to read S3 objects, make sure that the same permissions are granted to the IAM role you use when setting up Config. Otherwise, it may interfere with how Control Tower operates.**The service-linked IAM role for Config must be used for service-linked configuration recorders**For service-linked configuration recorders, you must use the service-linked IAM role for Config: AWSServiceRoleForConfig. * **recordingGroup** *(dict) --* Specifies which resource types are in scope for the configuration recorder to record. Note: **High Number of Config Evaluations**You might notice increased activity in your account during your initial month recording with Config when compared to subsequent months. During the initial bootstrapping process, Config runs evaluations on all the resources in your account that you have selected for Config to record.If you are running ephemeral workloads, you may see increased activity from Config as it records configuration changes associated with creating and deleting these temporary resources. An *ephemeral workload* is a temporary use of computing resources that are loaded and run when needed. Examples include Amazon Elastic Compute Cloud (Amazon EC2) Spot Instances, Amazon EMR jobs, and Auto Scaling.If you want to avoid the increased activity from running ephemeral workloads, you can set up the configuration recorder to exclude these resource types from being recorded, or run these types of workloads in a separate account with Config turned off to avoid increased configuration recording and rule evaluations. * **allSupported** *(boolean) --* Specifies whether Config records configuration changes for all supported resource types, excluding the global IAM resource types. If you set this field to "true", when Config adds support for a new resource type, Config starts recording resources of that type automatically. If you set this field to "true", you cannot enumerate specific resource types to record in the "resourceTypes" field of RecordingGroup, or to exclude in the "resourceTypes" field of ExclusionByResourceTypes. Note: **Region availability**Check Resource Coverage by Region Availability to see if a resource type is supported in the Amazon Web Services Region where you set up Config. * **includeGlobalResourceTypes** *(boolean) --* This option is a bundle which only applies to the global IAM resource types: IAM users, groups, roles, and customer managed policies. These global IAM resource types can only be recorded by Config in Regions where Config was available before February 2022. You cannot be record the global IAM resouce types in Regions supported by Config after February 2022. For a list of those Regions, see Recording Amazon Web Services Resources | Global Resources. Warning: **Aurora global clusters are recorded in all enabled Regions**The "AWS::RDS::GlobalCluster" resource type will be recorded in all supported Config Regions where the configuration recorder is enabled, even if "includeGlobalResourceTypes" is set "false". The "includeGlobalResourceTypes" option is a bundle which only applies to IAM users, groups, roles, and customer managed policies.If you do not want to record "AWS::RDS::GlobalCluster" in all enabled Regions, use one of the following recording strategies: * **Record all current and future resource types with exclusions** ( "EXCLUSION_BY_RESOURCE_TYPES"), or * **Record specific resource types** ( "INCLUSION_BY_RESOURCE_TYPES"). For more information, see Selecting Which Resources are Recorded in the *Config developer guide*. Warning: **includeGlobalResourceTypes and the exclusion recording strategy**The "includeGlobalResourceTypes" field has no impact on the "EXCLUSION_BY_RESOURCE_TYPES" recording strategy. This means that the global IAM resource types (IAM users, groups, roles, and customer managed policies) will not be automatically added as exclusions for "exclusionByResourceTypes" when "includeGlobalResourceTypes" is set to "false".The "includeGlobalResourceTypes" field should only be used to modify the "AllSupported" field, as the default for the "AllSupported" field is to record configuration changes for all supported resource types excluding the global IAM resource types. To include the global IAM resource types when "AllSupported" is set to "true", make sure to set "includeGlobalResourceTypes" to "true".To exclude the global IAM resource types for the "EXCLUSION_BY_RESOURCE_TYPES" recording strategy, you need to manually add them to the "resourceTypes" field of "exclusionByResourceTypes". Note: **Required and optional fields**Before you set this field to "true", set the "allSupported" field of RecordingGroup to "true". Optionally, you can set the "useOnly" field of RecordingStrategy to "ALL_SUPPORTED_RESOURCE_TYPES". Note: **Overriding fields**If you set this field to "false" but list global IAM resource types in the "resourceTypes" field of RecordingGroup, Config will still record configuration changes for those specified resource types *regardless* of if you set the "includeGlobalResourceTypes" field to false.If you do not want to record configuration changes to the global IAM resource types (IAM users, groups, roles, and customer managed policies), make sure to not list them in the "resourceTypes" field in addition to setting the "includeGlobalResourceTypes" field to false. * **resourceTypes** *(list) --* A comma-separated list that specifies which resource types Config records. For a list of valid "resourceTypes" values, see the **Resource Type Value** column in Supported Amazon Web Services resource Types in the *Config developer guide*. Note: **Required and optional fields**Optionally, you can set the "useOnly" field of RecordingStrategy to "INCLUSION_BY_RESOURCE_TYPES".To record all configuration changes, set the "allSupported" field of RecordingGroup to "true", and either omit this field or don't specify any resource types in this field. If you set the "allSupported" field to "false" and specify values for "resourceTypes", when Config adds support for a new type of resource, it will not record resources of that type unless you manually add that type to your recording group. Note: **Region availability**Before specifying a resource type for Config to track, check Resource Coverage by Region Availability to see if the resource type is supported in the Amazon Web Services Region where you set up Config. If a resource type is supported by Config in at least one Region, you can enable the recording of that resource type in all Regions supported by Config, even if the specified resource type is not supported in the Amazon Web Services Region where you set up Config. * *(string) --* * **exclusionByResourceTypes** *(dict) --* An object that specifies how Config excludes resource types from being recorded by the configuration recorder. Note: **Required fields**To use this option, you must set the "useOnly" field of RecordingStrategy to "EXCLUSION_BY_RESOURCE_TYPES". * **resourceTypes** *(list) --* A comma-separated list of resource types to exclude from recording by the configuration recorder. * *(string) --* * **recordingStrategy** *(dict) --* An object that specifies the recording strategy for the configuration recorder. * If you set the "useOnly" field of RecordingStrategy to "ALL_SUPPORTED_RESOURCE_TYPES", Config records configuration changes for all supported resource types, excluding the global IAM resource types. You also must set the "allSupported" field of RecordingGroup to "true". When Config adds support for a new resource type, Config automatically starts recording resources of that type. * If you set the "useOnly" field of RecordingStrategy to "INCLUSION_BY_RESOURCE_TYPES", Config records configuration changes for only the resource types you specify in the "resourceTypes" field of RecordingGroup. * If you set the "useOnly" field of RecordingStrategy to "EXCLUSION_BY_RESOURCE_TYPES", Config records configuration changes for all supported resource types except the resource types that you specify to exclude from being recorded in the "resourceTypes" field of ExclusionByResourceTypes. Note: **Required and optional fields**The "recordingStrategy" field is optional when you set the "allSupported" field of RecordingGroup to "true".The "recordingStrategy" field is optional when you list resource types in the "resourceTypes" field of RecordingGroup.The "recordingStrategy" field is required if you list resource types to exclude from recording in the "resourceTypes" field of ExclusionByResourceTypes. Note: **Overriding fields**If you choose "EXCLUSION_BY_RESOURCE_TYPES" for the recording strategy, the "exclusionByResourceTypes" field will override other properties in the request.For example, even if you set "includeGlobalResourceTypes" to false, global IAM resource types will still be automatically recorded in this option unless those resource types are specifically listed as exclusions in the "resourceTypes" field of "exclusionByResourceTypes". Note: **Global resources types and the resource exclusion recording strategy**By default, if you choose the "EXCLUSION_BY_RESOURCE_TYPES" recording strategy, when Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types, Config starts recording resources of that type automatically.Unless specifically listed as exclusions, "AWS::RDS::GlobalCluster" will be recorded automatically in all supported Config Regions were the configuration recorder is enabled.IAM users, groups, roles, and customer managed policies will be recorded in the Region where you set up the configuration recorder if that is a Region where Config was available before February 2022. You cannot be record the global IAM resouce types in Regions supported by Config after February 2022. For a list of those Regions, see Recording Amazon Web Services Resources | Global Resources. * **useOnly** *(string) --* The recording strategy for the configuration recorder. * If you set this option to "ALL_SUPPORTED_RESOURCE_TYPES", Config records configuration changes for all supported resource types, excluding the global IAM resource types. You also must set the "allSupported" field of RecordingGroup to "true". When Config adds support for a new resource type, Config automatically starts recording resources of that type. For a list of supported resource types, see Supported Resource Types in the *Config developer guide*. * If you set this option to "INCLUSION_BY_RESOURCE_TYPES", Config records configuration changes for only the resource types that you specify in the "resourceTypes" field of RecordingGroup. * If you set this option to "EXCLUSION_BY_RESOURCE_TYPES", Config records configuration changes for all supported resource types, except the resource types that you specify to exclude from being recorded in the "resourceTypes" field of ExclusionByResourceTypes. Note: **Required and optional fields**The "recordingStrategy" field is optional when you set the "allSupported" field of RecordingGroup to "true".The "recordingStrategy" field is optional when you list resource types in the "resourceTypes" field of RecordingGroup.The "recordingStrategy" field is required if you list resource types to exclude from recording in the "resourceTypes" field of ExclusionByResourceTypes. Note: **Overriding fields**If you choose "EXCLUSION_BY_RESOURCE_TYPES" for the recording strategy, the "exclusionByResourceTypes" field will override other properties in the request.For example, even if you set "includeGlobalResourceTypes" to false, global IAM resource types will still be automatically recorded in this option unless those resource types are specifically listed as exclusions in the "resourceTypes" field of "exclusionByResourceTypes". Note: **Global resource types and the exclusion recording strategy**By default, if you choose the "EXCLUSION_BY_RESOURCE_TYPES" recording strategy, when Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types, Config starts recording resources of that type automatically.Unless specifically listed as exclusions, "AWS::RDS::GlobalCluster" will be recorded automatically in all supported Config Regions were the configuration recorder is enabled.IAM users, groups, roles, and customer managed policies will be recorded in the Region where you set up the configuration recorder if that is a Region where Config was available before February 2022. You cannot be record the global IAM resouce types in Regions supported by Config after February 2022. This list where you cannot record the global IAM resource types includes the following Regions: * Asia Pacific (Hyderabad) * Asia Pacific (Melbourne) * Canada West (Calgary) * Europe (Spain) * Europe (Zurich) * Israel (Tel Aviv) * Middle East (UAE) * **recordingMode** *(dict) --* Specifies the default recording frequency for the configuration recorder. Config supports *Continuous recording* and *Daily recording*. * Continuous recording allows you to record configuration changes continuously whenever a change occurs. * Daily recording allows you to receive a configuration item (CI) representing the most recent state of your resources over the last 24-hour period, only if it’s different from the previous CI recorded. Note: **Some resource types require continuous recording**Firewall Manager depends on continuous recording to monitor your resources. If you are using Firewall Manager, it is recommended that you set the recording frequency to Continuous. You can also override the recording frequency for specific resource types. * **recordingFrequency** *(string) --* The default recording frequency that Config uses to record configuration changes. Warning: Daily recording cannot be specified for the following resource types: * "AWS::Config::ResourceCompliance" * "AWS::Config::ConformancePackCompliance" * "AWS::Config::ConfigurationRecorder" For the **allSupported** ( "ALL_SUPPORTED_RESOURCE_TYPES") recording strategy, these resource types will be set to Continuous recording. * **recordingModeOverrides** *(list) --* An array of "recordingModeOverride" objects for you to specify your overrides for the recording mode. The "recordingModeOverride" object in the "recordingModeOverrides" array consists of three fields: a "description", the new "recordingFrequency", and an array of "resourceTypes" to override. * *(dict) --* An object for you to specify your overrides for the recording mode. * **description** *(string) --* A description that you provide for the override. * **resourceTypes** *(list) --* A comma-separated list that specifies which resource types Config includes in the override. Warning: Daily recording cannot be specified for the following resource types: * "AWS::Config::ResourceCompliance" * "AWS::Config::ConformancePackCompliance" * "AWS::Config::ConfigurationRecorder" * *(string) --* * **recordingFrequency** *(string) --* The recording frequency that will be applied to all the resource types specified in the override. * Continuous recording allows you to record configuration changes continuously whenever a change occurs. * Daily recording allows you to receive a configuration item (CI) representing the most recent state of your resources over the last 24-hour period, only if it’s different from the previous CI recorded. Note: Firewall Manager depends on continuous recording to monitor your resources. If you are using Firewall Manager, it is recommended that you set the recording frequency to Continuous. * **recordingScope** *(string) --* Specifies whether the ConfigurationItems in scope for the specified configuration recorder are recorded for free ( "INTERNAL") or if it impacts the costs to your bill ( "PAID"). * **servicePrincipal** *(string) --* For service-linked configuration recorders, specifies the linked Amazon Web Services service for the configuration recorder. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.ConflictException" * "ConfigService.Client.exceptions.NoSuchConfigurationRecorderExce ption" ConfigService / Client / describe_compliance_by_config_rule describe_compliance_by_config_rule ********************************** ConfigService.Client.describe_compliance_by_config_rule(**kwargs) Indicates whether the specified Config rules are compliant. If a rule is noncompliant, this operation returns the number of Amazon Web Services resources that do not comply with the rule. A rule is compliant if all of the evaluated resources comply with it. It is noncompliant if any of these resources do not comply. If Config has no current evaluation results for the rule, it returns "INSUFFICIENT_DATA". This result might indicate one of the following conditions: * Config has never invoked an evaluation for the rule. To check whether it has, use the "DescribeConfigRuleEvaluationStatus" action to get the "LastSuccessfulInvocationTime" and "LastFailedInvocationTime". * The rule's Lambda function is failing to send evaluation results to Config. Verify that the role you assigned to your configuration recorder includes the "config:PutEvaluations" permission. If the rule is a custom rule, verify that the Lambda execution role includes the "config:PutEvaluations" permission. * The rule's Lambda function has returned "NOT_APPLICABLE" for all evaluation results. This can occur if the resources were deleted or removed from the rule's scope. See also: AWS API Documentation **Request Syntax** response = client.describe_compliance_by_config_rule( ConfigRuleNames=[ 'string', ], ComplianceTypes=[ 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', ], NextToken='string' ) Parameters: * **ConfigRuleNames** (*list*) -- Specify one or more Config rule names to filter the results by rule. * *(string) --* * **ComplianceTypes** (*list*) -- Filters the results by compliance. * *(string) --* * **NextToken** (*string*) -- The "nextToken" string 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** { 'ComplianceByConfigRules': [ { 'ConfigRuleName': 'string', 'Compliance': { 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'ComplianceContributorCount': { 'CappedCount': 123, 'CapExceeded': True|False } } }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **ComplianceByConfigRules** *(list) --* Indicates whether each of the specified Config rules is compliant. * *(dict) --* Indicates whether an Config rule is compliant. A rule is compliant if all of the resources that the rule evaluated comply with it. A rule is noncompliant if any of these resources do not comply. * **ConfigRuleName** *(string) --* The name of the Config rule. * **Compliance** *(dict) --* Indicates whether the Config rule is compliant. * **ComplianceType** *(string) --* Indicates whether an Amazon Web Services resource or Config rule is compliant. A resource is compliant if it complies with all of the Config rules that evaluate it. A resource is noncompliant if it does not comply with one or more of these rules. A rule is compliant if all of the resources that the rule evaluates comply with it. A rule is noncompliant if any of these resources do not comply. Config returns the "INSUFFICIENT_DATA" value when no evaluation results are available for the Amazon Web Services resource or Config rule. For the "Compliance" data type, Config supports only "COMPLIANT", "NON_COMPLIANT", and "INSUFFICIENT_DATA" values. Config does not support the "NOT_APPLICABLE" value for the "Compliance" data type. * **ComplianceContributorCount** *(dict) --* The number of Amazon Web Services resources or Config rules that cause a result of "NON_COMPLIANT", up to a maximum number. * **CappedCount** *(integer) --* The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item. * **CapExceeded** *(boolean) --* Indicates whether the maximum count is reached. * **NextToken** *(string) --* The string that you use in a subsequent request to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.NoSuchConfigRuleException" * "ConfigService.Client.exceptions.InvalidNextTokenException" ConfigService / Client / get_paginator get_paginator ************* ConfigService.Client.get_paginator(operation_name) Create a paginator for an operation. Parameters: **operation_name** (*string*) -- The operation name. This is the same name as the method name on the client. For example, if the method name is "create_foo", and you'd normally invoke the operation as "client.create_foo(**kwargs)", if the "create_foo" operation can be paginated, you can use the call "client.get_paginator("create_foo")". Raises: **OperationNotPageableError** -- Raised if the operation is not pageable. You can use the "client.can_paginate" method to check if an operation is pageable. Return type: "botocore.paginate.Paginator" Returns: A paginator object. ConfigService / Client / put_configuration_aggregator put_configuration_aggregator **************************** ConfigService.Client.put_configuration_aggregator(**kwargs) Creates and updates the configuration aggregator with the selected source accounts and regions. The source account can be individual account(s) or an organization. "accountIds" that are passed will be replaced with existing accounts. If you want to add additional accounts into the aggregator, call "DescribeConfigurationAggregators" to get the previous accounts and then append new ones. Note: Config should be enabled in source accounts and regions you want to aggregate.If your source type is an organization, you must be signed in to the management account or a registered delegated administrator and all the features must be enabled in your organization. If the caller is a management account, Config calls "EnableAwsServiceAccess" API to enable integration between Config and Organizations. If the caller is a registered delegated administrator, Config calls "ListDelegatedAdministrators" API to verify whether the caller is a valid delegated administrator.To register a delegated administrator, see Register a Delegated Administrator in the *Config developer guide*. Note: **Tags are added at creation and cannot be updated with this operation**"PutConfigurationAggregator" is an idempotent API. Subsequent requests won’t create a duplicate resource if one was already created. If a following request has different "tags" values, Config will ignore these differences and treat it as an idempotent request of the previous. In this case, "tags" will not be updated, even if they are different.Use TagResource and UntagResource to update tags after creation. See also: AWS API Documentation **Request Syntax** response = client.put_configuration_aggregator( ConfigurationAggregatorName='string', AccountAggregationSources=[ { 'AccountIds': [ 'string', ], 'AllAwsRegions': True|False, 'AwsRegions': [ 'string', ] }, ], OrganizationAggregationSource={ 'RoleArn': 'string', 'AwsRegions': [ 'string', ], 'AllAwsRegions': True|False }, Tags=[ { 'Key': 'string', 'Value': 'string' }, ], AggregatorFilters={ 'ResourceType': { 'Type': 'INCLUDE', 'Value': [ 'string', ] }, 'ServicePrincipal': { 'Type': 'INCLUDE', 'Value': [ 'string', ] } } ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **AccountAggregationSources** (*list*) -- A list of AccountAggregationSource object. * *(dict) --* A collection of accounts and regions. * **AccountIds** *(list) --* **[REQUIRED]** The 12-digit account ID of the account being aggregated. * *(string) --* * **AllAwsRegions** *(boolean) --* If true, aggregate existing Config regions and future regions. * **AwsRegions** *(list) --* The source regions being aggregated. * *(string) --* * **OrganizationAggregationSource** (*dict*) -- An OrganizationAggregationSource object. * **RoleArn** *(string) --* **[REQUIRED]** ARN of the IAM role used to retrieve Amazon Web Services Organization details associated with the aggregator account. * **AwsRegions** *(list) --* The source regions being aggregated. * *(string) --* * **AllAwsRegions** *(boolean) --* If true, aggregate existing Config regions and future regions. * **Tags** (*list*) -- An array of tag object. * *(dict) --* The tags for the resource. The metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters. * **Key** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **Value** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). * **AggregatorFilters** (*dict*) -- An object to filter configuration recorders in an aggregator. Either "ResourceType" or "ServicePrincipal" is required. * **ResourceType** *(dict) --* An object to filter the configuration recorders based on the resource types in scope for recording. * **Type** *(string) --* The type of resource type filter to apply. "INCLUDE" specifies that the list of resource types in the "Value" field will be aggregated and no other resource types will be filtered. * **Value** *(list) --* Comma-separate list of resource types to filter your aggregated configuration recorders. * *(string) --* * **ServicePrincipal** *(dict) --* An object to filter service-linked configuration recorders in an aggregator based on the linked Amazon Web Services service. * **Type** *(string) --* The type of service principal filter to apply. "INCLUDE" specifies that the list of service principals in the "Value" field will be aggregated and no other service principals will be filtered. * **Value** *(list) --* Comma-separated list of service principals for the linked Amazon Web Services services to filter your aggregated service-linked configuration recorders. * *(string) --* Return type: dict Returns: **Response Syntax** { 'ConfigurationAggregator': { 'ConfigurationAggregatorName': 'string', 'ConfigurationAggregatorArn': 'string', 'AccountAggregationSources': [ { 'AccountIds': [ 'string', ], 'AllAwsRegions': True|False, 'AwsRegions': [ 'string', ] }, ], 'OrganizationAggregationSource': { 'RoleArn': 'string', 'AwsRegions': [ 'string', ], 'AllAwsRegions': True|False }, 'CreationTime': datetime(2015, 1, 1), 'LastUpdatedTime': datetime(2015, 1, 1), 'CreatedBy': 'string', 'AggregatorFilters': { 'ResourceType': { 'Type': 'INCLUDE', 'Value': [ 'string', ] }, 'ServicePrincipal': { 'Type': 'INCLUDE', 'Value': [ 'string', ] } } } } **Response Structure** * *(dict) --* * **ConfigurationAggregator** *(dict) --* Returns a ConfigurationAggregator object. * **ConfigurationAggregatorName** *(string) --* The name of the aggregator. * **ConfigurationAggregatorArn** *(string) --* The Amazon Resource Name (ARN) of the aggregator. * **AccountAggregationSources** *(list) --* Provides a list of source accounts and regions to be aggregated. * *(dict) --* A collection of accounts and regions. * **AccountIds** *(list) --* The 12-digit account ID of the account being aggregated. * *(string) --* * **AllAwsRegions** *(boolean) --* If true, aggregate existing Config regions and future regions. * **AwsRegions** *(list) --* The source regions being aggregated. * *(string) --* * **OrganizationAggregationSource** *(dict) --* Provides an organization and list of regions to be aggregated. * **RoleArn** *(string) --* ARN of the IAM role used to retrieve Amazon Web Services Organization details associated with the aggregator account. * **AwsRegions** *(list) --* The source regions being aggregated. * *(string) --* * **AllAwsRegions** *(boolean) --* If true, aggregate existing Config regions and future regions. * **CreationTime** *(datetime) --* The time stamp when the configuration aggregator was created. * **LastUpdatedTime** *(datetime) --* The time of the last update. * **CreatedBy** *(string) --* Amazon Web Services service that created the configuration aggregator. * **AggregatorFilters** *(dict) --* An object to filter the data you specify for an aggregator. * **ResourceType** *(dict) --* An object to filter the configuration recorders based on the resource types in scope for recording. * **Type** *(string) --* The type of resource type filter to apply. "INCLUDE" specifies that the list of resource types in the "Value" field will be aggregated and no other resource types will be filtered. * **Value** *(list) --* Comma-separate list of resource types to filter your aggregated configuration recorders. * *(string) --* * **ServicePrincipal** *(dict) --* An object to filter service-linked configuration recorders in an aggregator based on the linked Amazon Web Services service. * **Type** *(string) --* The type of service principal filter to apply. "INCLUDE" specifies that the list of service principals in the "Value" field will be aggregated and no other service principals will be filtered. * **Value** *(list) --* Comma-separated list of service principals for the linked Amazon Web Services services to filter your aggregated service-linked configuration recorders. * *(string) --* **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.LimitExceededException" * "ConfigService.Client.exceptions.InvalidRoleException" * "ConfigService.Client.exceptions.OrganizationAccessDeniedExcepti on" * "ConfigService.Client.exceptions.NoAvailableOrganizationExceptio n" * "ConfigService.Client.exceptions.OrganizationAllFeaturesNotEnabl edException" ConfigService / Client / get_compliance_details_by_config_rule get_compliance_details_by_config_rule ************************************* ConfigService.Client.get_compliance_details_by_config_rule(**kwargs) Returns the evaluation results for the specified Config rule. The results indicate which Amazon Web Services resources were evaluated by the rule, when each resource was last evaluated, and whether each resource complies with the rule. See also: AWS API Documentation **Request Syntax** response = client.get_compliance_details_by_config_rule( ConfigRuleName='string', ComplianceTypes=[ 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', ], Limit=123, NextToken='string' ) Parameters: * **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule for which you want compliance information. * **ComplianceTypes** (*list*) -- Filters the results by compliance. "INSUFFICIENT_DATA" is a valid "ComplianceType" that is returned when an Config rule cannot be evaluated. However, "INSUFFICIENT_DATA" cannot be used as a "ComplianceType" for filtering results. * *(string) --* * **Limit** (*integer*) -- The maximum number of evaluation results returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'EvaluationResults': [ { 'EvaluationResultIdentifier': { 'EvaluationResultQualifier': { 'ConfigRuleName': 'string', 'ResourceType': 'string', 'ResourceId': 'string', 'EvaluationMode': 'DETECTIVE'|'PROACTIVE' }, 'OrderingTimestamp': datetime(2015, 1, 1), 'ResourceEvaluationId': 'string' }, 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'ResultRecordedTime': datetime(2015, 1, 1), 'ConfigRuleInvokedTime': datetime(2015, 1, 1), 'Annotation': 'string', 'ResultToken': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **EvaluationResults** *(list) --* Indicates whether the Amazon Web Services resource complies with the specified Config rule. * *(dict) --* The details of an Config evaluation. Provides the Amazon Web Services resource that was evaluated, the compliance of the resource, related time stamps, and supplementary information. * **EvaluationResultIdentifier** *(dict) --* Uniquely identifies the evaluation result. * **EvaluationResultQualifier** *(dict) --* Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID of the evaluated resource. * **ConfigRuleName** *(string) --* The name of the Config rule that was used in the evaluation. * **ResourceType** *(string) --* The type of Amazon Web Services resource that was evaluated. * **ResourceId** *(string) --* The ID of the evaluated Amazon Web Services resource. * **EvaluationMode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. * **OrderingTimestamp** *(datetime) --* The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can indicate when Config delivered a configuration item change notification, or it can indicate when Config delivered the configuration snapshot, depending on which event triggered the evaluation. * **ResourceEvaluationId** *(string) --* A Unique ID for an evaluation result. * **ComplianceType** *(string) --* Indicates whether the Amazon Web Services resource complies with the Config rule that evaluated it. For the "EvaluationResult" data type, Config supports only the "COMPLIANT", "NON_COMPLIANT", and "NOT_APPLICABLE" values. Config does not support the "INSUFFICIENT_DATA" value for the "EvaluationResult" data type. * **ResultRecordedTime** *(datetime) --* The time when Config recorded the evaluation result. * **ConfigRuleInvokedTime** *(datetime) --* The time when the Config rule evaluated the Amazon Web Services resource. * **Annotation** *(string) --* Supplementary information about how the evaluation determined the compliance. * **ResultToken** *(string) --* An encrypted token that associates an evaluation with an Config rule. The token identifies the rule, the Amazon Web Services resource being evaluated, and the event that triggered the evaluation. * **NextToken** *(string) --* The string that you use in a subsequent request to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.NoSuchConfigRuleException" ConfigService / Client / describe_remediation_execution_status describe_remediation_execution_status ************************************* ConfigService.Client.describe_remediation_execution_status(**kwargs) Provides a detailed view of a Remediation Execution for a set of resources including state, timestamps for when steps for the remediation execution occur, and any error messages for steps that have failed. When you specify the limit and the next token, you receive a paginated response. See also: AWS API Documentation **Request Syntax** response = client.describe_remediation_execution_status( ConfigRuleName='string', ResourceKeys=[ { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string' }, ], Limit=123, NextToken='string' ) Parameters: * **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule. * **ResourceKeys** (*list*) -- A list of resource keys to be processed with the current request. Each element in the list consists of the resource type and resource ID. * *(dict) --* The details that identify a resource within Config, including the resource type and resource ID. * **resourceType** *(string) --* **[REQUIRED]** The resource type. * **resourceId** *(string) --* **[REQUIRED]** The ID of the resource (for example., sg-xxxxxx). * **Limit** (*integer*) -- The maximum number of RemediationExecutionStatuses returned on each page. The default is maximum. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'RemediationExecutionStatuses': [ { 'ResourceKey': { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string' }, 'State': 'QUEUED'|'IN_PROGRESS'|'SUCCEEDED'|'FAILED', 'StepDetails': [ { 'Name': 'string', 'State': 'SUCCEEDED'|'PENDING'|'FAILED', 'ErrorMessage': 'string', 'StartTime': datetime(2015, 1, 1), 'StopTime': datetime(2015, 1, 1) }, ], 'InvocationTime': datetime(2015, 1, 1), 'LastUpdatedTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **RemediationExecutionStatuses** *(list) --* Returns a list of remediation execution statuses objects. * *(dict) --* Provides details of the current status of the invoked remediation action for that resource. * **ResourceKey** *(dict) --* The details that identify a resource within Config, including the resource type and resource ID. * **resourceType** *(string) --* The resource type. * **resourceId** *(string) --* The ID of the resource (for example., sg-xxxxxx). * **State** *(string) --* ENUM of the values. * **StepDetails** *(list) --* Details of every step. * *(dict) --* Name of the step from the SSM document. * **Name** *(string) --* The details of the step. * **State** *(string) --* The valid status of the step. * **ErrorMessage** *(string) --* An error message if the step was interrupted during execution. * **StartTime** *(datetime) --* The time when the step started. * **StopTime** *(datetime) --* The time when the step stopped. * **InvocationTime** *(datetime) --* Start time when the remediation was executed. * **LastUpdatedTime** *(datetime) --* The time when the remediation execution was last updated. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.NoSuchRemediationConfigurationE xception" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidParameterValueException" ConfigService / Client / get_aggregate_compliance_details_by_config_rule get_aggregate_compliance_details_by_config_rule *********************************************** ConfigService.Client.get_aggregate_compliance_details_by_config_rule(**kwargs) Returns the evaluation results for the specified Config rule for a specific resource in a rule. The results indicate which Amazon Web Services resources were evaluated by the rule, when each resource was last evaluated, and whether each resource complies with the rule. Note: The results can return an empty result page. But if you have a "nextToken", the results are displayed on the next page. See also: AWS API Documentation **Request Syntax** response = client.get_aggregate_compliance_details_by_config_rule( ConfigurationAggregatorName='string', ConfigRuleName='string', AccountId='string', AwsRegion='string', ComplianceType='COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', Limit=123, NextToken='string' ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule for which you want compliance information. * **AccountId** (*string*) -- **[REQUIRED]** The 12-digit account ID of the source account. * **AwsRegion** (*string*) -- **[REQUIRED]** The source region from where the data is aggregated. * **ComplianceType** (*string*) -- The resource compliance status. Note: For the "GetAggregateComplianceDetailsByConfigRuleRequest" data type, Config supports only the "COMPLIANT" and "NON_COMPLIANT". Config does not support the "NOT_APPLICABLE" and "INSUFFICIENT_DATA" values. * **Limit** (*integer*) -- The maximum number of evaluation results returned on each page. The default is 50. You cannot specify a number greater than 100. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'AggregateEvaluationResults': [ { 'EvaluationResultIdentifier': { 'EvaluationResultQualifier': { 'ConfigRuleName': 'string', 'ResourceType': 'string', 'ResourceId': 'string', 'EvaluationMode': 'DETECTIVE'|'PROACTIVE' }, 'OrderingTimestamp': datetime(2015, 1, 1), 'ResourceEvaluationId': 'string' }, 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'ResultRecordedTime': datetime(2015, 1, 1), 'ConfigRuleInvokedTime': datetime(2015, 1, 1), 'Annotation': 'string', 'AccountId': 'string', 'AwsRegion': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **AggregateEvaluationResults** *(list) --* Returns an AggregateEvaluationResults object. * *(dict) --* The details of an Config evaluation for an account ID and region in an aggregator. Provides the Amazon Web Services resource that was evaluated, the compliance of the resource, related time stamps, and supplementary information. * **EvaluationResultIdentifier** *(dict) --* Uniquely identifies the evaluation result. * **EvaluationResultQualifier** *(dict) --* Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID of the evaluated resource. * **ConfigRuleName** *(string) --* The name of the Config rule that was used in the evaluation. * **ResourceType** *(string) --* The type of Amazon Web Services resource that was evaluated. * **ResourceId** *(string) --* The ID of the evaluated Amazon Web Services resource. * **EvaluationMode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. * **OrderingTimestamp** *(datetime) --* The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can indicate when Config delivered a configuration item change notification, or it can indicate when Config delivered the configuration snapshot, depending on which event triggered the evaluation. * **ResourceEvaluationId** *(string) --* A Unique ID for an evaluation result. * **ComplianceType** *(string) --* The resource compliance status. For the "AggregationEvaluationResult" data type, Config supports only the "COMPLIANT" and "NON_COMPLIANT". Config does not support the "NOT_APPLICABLE" and "INSUFFICIENT_DATA" value. * **ResultRecordedTime** *(datetime) --* The time when Config recorded the aggregate evaluation result. * **ConfigRuleInvokedTime** *(datetime) --* The time when the Config rule evaluated the Amazon Web Services resource. * **Annotation** *(string) --* Supplementary information about how the agrregate evaluation determined the compliance. * **AccountId** *(string) --* The 12-digit account ID of the source account. * **AwsRegion** *(string) --* The source region from where the data is aggregated. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.NoSuchConfigurationAggregatorEx ception" ConfigService / Client / put_external_evaluation put_external_evaluation *********************** ConfigService.Client.put_external_evaluation(**kwargs) Add or updates the evaluations for process checks. This API checks if the rule is a process check when the name of the Config rule is provided. See also: AWS API Documentation **Request Syntax** response = client.put_external_evaluation( ConfigRuleName='string', ExternalEvaluation={ 'ComplianceResourceType': 'string', 'ComplianceResourceId': 'string', 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'Annotation': 'string', 'OrderingTimestamp': datetime(2015, 1, 1) } ) Parameters: * **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule. * **ExternalEvaluation** (*dict*) -- **[REQUIRED]** An "ExternalEvaluation" object that provides details about compliance. * **ComplianceResourceType** *(string) --* **[REQUIRED]** The evaluated compliance resource type. Config accepts "AWS::::Account" resource type. * **ComplianceResourceId** *(string) --* **[REQUIRED]** The evaluated compliance resource ID. Config accepts only Amazon Web Services account ID. * **ComplianceType** *(string) --* **[REQUIRED]** The compliance of the Amazon Web Services resource. The valid values are "COMPLIANT, NON_COMPLIANT," and "NOT_APPLICABLE". * **Annotation** *(string) --* Supplementary information about the reason of compliance. For example, this task was completed on a specific date. * **OrderingTimestamp** *(datetime) --* **[REQUIRED]** The time when the compliance was recorded. Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "ConfigService.Client.exceptions.NoSuchConfigRuleException" * "ConfigService.Client.exceptions.InvalidParameterValueException" ConfigService / Client / describe_configuration_aggregators describe_configuration_aggregators ********************************** ConfigService.Client.describe_configuration_aggregators(**kwargs) Returns the details of one or more configuration aggregators. If the configuration aggregator is not specified, this operation returns the details for all the configuration aggregators associated with the account. See also: AWS API Documentation **Request Syntax** response = client.describe_configuration_aggregators( ConfigurationAggregatorNames=[ 'string', ], NextToken='string', Limit=123 ) Parameters: * **ConfigurationAggregatorNames** (*list*) -- The name of the configuration aggregators. * *(string) --* * **NextToken** (*string*) -- The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. * **Limit** (*integer*) -- The maximum number of configuration aggregators returned on each page. The default is maximum. If you specify 0, Config uses the default. Return type: dict Returns: **Response Syntax** { 'ConfigurationAggregators': [ { 'ConfigurationAggregatorName': 'string', 'ConfigurationAggregatorArn': 'string', 'AccountAggregationSources': [ { 'AccountIds': [ 'string', ], 'AllAwsRegions': True|False, 'AwsRegions': [ 'string', ] }, ], 'OrganizationAggregationSource': { 'RoleArn': 'string', 'AwsRegions': [ 'string', ], 'AllAwsRegions': True|False }, 'CreationTime': datetime(2015, 1, 1), 'LastUpdatedTime': datetime(2015, 1, 1), 'CreatedBy': 'string', 'AggregatorFilters': { 'ResourceType': { 'Type': 'INCLUDE', 'Value': [ 'string', ] }, 'ServicePrincipal': { 'Type': 'INCLUDE', 'Value': [ 'string', ] } } }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **ConfigurationAggregators** *(list) --* Returns a ConfigurationAggregators object. * *(dict) --* The details about the configuration aggregator, including information about source accounts, regions, and metadata of the aggregator. * **ConfigurationAggregatorName** *(string) --* The name of the aggregator. * **ConfigurationAggregatorArn** *(string) --* The Amazon Resource Name (ARN) of the aggregator. * **AccountAggregationSources** *(list) --* Provides a list of source accounts and regions to be aggregated. * *(dict) --* A collection of accounts and regions. * **AccountIds** *(list) --* The 12-digit account ID of the account being aggregated. * *(string) --* * **AllAwsRegions** *(boolean) --* If true, aggregate existing Config regions and future regions. * **AwsRegions** *(list) --* The source regions being aggregated. * *(string) --* * **OrganizationAggregationSource** *(dict) --* Provides an organization and list of regions to be aggregated. * **RoleArn** *(string) --* ARN of the IAM role used to retrieve Amazon Web Services Organization details associated with the aggregator account. * **AwsRegions** *(list) --* The source regions being aggregated. * *(string) --* * **AllAwsRegions** *(boolean) --* If true, aggregate existing Config regions and future regions. * **CreationTime** *(datetime) --* The time stamp when the configuration aggregator was created. * **LastUpdatedTime** *(datetime) --* The time of the last update. * **CreatedBy** *(string) --* Amazon Web Services service that created the configuration aggregator. * **AggregatorFilters** *(dict) --* An object to filter the data you specify for an aggregator. * **ResourceType** *(dict) --* An object to filter the configuration recorders based on the resource types in scope for recording. * **Type** *(string) --* The type of resource type filter to apply. "INCLUDE" specifies that the list of resource types in the "Value" field will be aggregated and no other resource types will be filtered. * **Value** *(list) --* Comma-separate list of resource types to filter your aggregated configuration recorders. * *(string) --* * **ServicePrincipal** *(dict) --* An object to filter service-linked configuration recorders in an aggregator based on the linked Amazon Web Services service. * **Type** *(string) --* The type of service principal filter to apply. "INCLUDE" specifies that the list of service principals in the "Value" field will be aggregated and no other service principals will be filtered. * **Value** *(list) --* Comma-separated list of service principals for the linked Amazon Web Services services to filter your aggregated service-linked configuration recorders. * *(string) --* * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.NoSuchConfigurationAggregatorEx ception" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidLimitException" ConfigService / Client / describe_configuration_recorder_status describe_configuration_recorder_status ************************************** ConfigService.Client.describe_configuration_recorder_status(**kwargs) Returns the current status of the configuration recorder you specify as well as the status of the last recording event for the configuration recorders. For a detailed status of recording events over time, add your Config events to Amazon CloudWatch metrics and use CloudWatch metrics. If a configuration recorder is not specified, this operation returns the status for the customer managed configuration recorder configured for the account, if applicable. Note: When making a request to this operation, you can only specify one configuration recorder. See also: AWS API Documentation **Request Syntax** response = client.describe_configuration_recorder_status( ConfigurationRecorderNames=[ 'string', ], ServicePrincipal='string', Arn='string' ) Parameters: * **ConfigurationRecorderNames** (*list*) -- The name of the configuration recorder. If the name is not specified, the operation returns the status for the customer managed configuration recorder configured for the account, if applicable. Note: When making a request to this operation, you can only specify one configuration recorder. * *(string) --* * **ServicePrincipal** (*string*) -- For service-linked configuration recorders, you can use the service principal of the linked Amazon Web Services service to specify the configuration recorder. * **Arn** (*string*) -- The Amazon Resource Name (ARN) of the configuration recorder that you want to specify. Return type: dict Returns: **Response Syntax** { 'ConfigurationRecordersStatus': [ { 'arn': 'string', 'name': 'string', 'lastStartTime': datetime(2015, 1, 1), 'lastStopTime': datetime(2015, 1, 1), 'recording': True|False, 'lastStatus': 'Pending'|'Success'|'Failure'|'NotApplicable', 'lastErrorCode': 'string', 'lastErrorMessage': 'string', 'lastStatusChangeTime': datetime(2015, 1, 1), 'servicePrincipal': 'string' }, ] } **Response Structure** * *(dict) --* The output for the DescribeConfigurationRecorderStatus action, in JSON format. * **ConfigurationRecordersStatus** *(list) --* A list that contains status of the specified recorders. * *(dict) --* The current status of the configuration recorder. For a detailed status of recording events over time, add your Config events to CloudWatch metrics and use CloudWatch metrics. * **arn** *(string) --* The Amazon Resource Name (ARN) of the configuration recorder. * **name** *(string) --* The name of the configuration recorder. * **lastStartTime** *(datetime) --* The time the recorder was last started. * **lastStopTime** *(datetime) --* The time the recorder was last stopped. * **recording** *(boolean) --* Specifies whether or not the recorder is currently recording. * **lastStatus** *(string) --* The status of the latest recording event processed by the recorder. * **lastErrorCode** *(string) --* The latest error code from when the recorder last failed. * **lastErrorMessage** *(string) --* The latest error message from when the recorder last failed. * **lastStatusChangeTime** *(datetime) --* The time of the latest change in status of an recording event processed by the recorder. * **servicePrincipal** *(string) --* For service-linked configuration recorders, the service principal of the linked Amazon Web Services service. **Exceptions** * "ConfigService.Client.exceptions.NoSuchConfigurationRecorderExce ption" * "ConfigService.Client.exceptions.ValidationException" ConfigService / Client / stop_configuration_recorder stop_configuration_recorder *************************** ConfigService.Client.stop_configuration_recorder(**kwargs) Stops the customer managed configuration recorder. The customer managed configuration recorder will stop recording configuration changes for the resource types you have specified. See also: AWS API Documentation **Request Syntax** response = client.stop_configuration_recorder( ConfigurationRecorderName='string' ) Parameters: **ConfigurationRecorderName** (*string*) -- **[REQUIRED]** The name of the customer managed configuration recorder that you want to stop. Returns: None **Exceptions** * "ConfigService.Client.exceptions.NoSuchConfigurationRecorderExce ption" * "ConfigService.Client.exceptions.UnmodifiableEntityException" ConfigService / Client / can_paginate can_paginate ************ ConfigService.Client.can_paginate(operation_name) Check if an operation can be paginated. Parameters: **operation_name** (*string*) -- The operation name. This is the same name as the method name on the client. For example, if the method name is "create_foo", and you'd normally invoke the operation as "client.create_foo(**kwargs)", if the "create_foo" operation can be paginated, you can use the call "client.get_paginator("create_foo")". Returns: "True" if the operation can be paginated, "False" otherwise. ConfigService / Client / describe_conformance_pack_compliance describe_conformance_pack_compliance ************************************ ConfigService.Client.describe_conformance_pack_compliance(**kwargs) Returns compliance details for each rule in that conformance pack. Note: You must provide exact rule names. See also: AWS API Documentation **Request Syntax** response = client.describe_conformance_pack_compliance( ConformancePackName='string', Filters={ 'ConfigRuleNames': [ 'string', ], 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'INSUFFICIENT_DATA' }, Limit=123, NextToken='string' ) Parameters: * **ConformancePackName** (*string*) -- **[REQUIRED]** Name of the conformance pack. * **Filters** (*dict*) -- A "ConformancePackComplianceFilters" object. * **ConfigRuleNames** *(list) --* Filters the results by Config rule names. * *(string) --* * **ComplianceType** *(string) --* Filters the results by compliance. The allowed values are "COMPLIANT" and "NON_COMPLIANT". "INSUFFICIENT_DATA" is not supported. * **Limit** (*integer*) -- The maximum number of Config rules within a conformance pack are returned on each page. * **NextToken** (*string*) -- The "nextToken" string returned in a previous request that you use to request the next page of results in a paginated response. Return type: dict Returns: **Response Syntax** { 'ConformancePackName': 'string', 'ConformancePackRuleComplianceList': [ { 'ConfigRuleName': 'string', 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'INSUFFICIENT_DATA', 'Controls': [ 'string', ] }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **ConformancePackName** *(string) --* Name of the conformance pack. * **ConformancePackRuleComplianceList** *(list) --* Returns a list of "ConformancePackRuleCompliance" objects. * *(dict) --* Compliance information of one or more Config rules within a conformance pack. You can filter using Config rule names and compliance types. * **ConfigRuleName** *(string) --* Name of the Config rule. * **ComplianceType** *(string) --* Compliance of the Config rule. * **Controls** *(list) --* Controls for the conformance pack. A control is a process to prevent or detect problems while meeting objectives. A control can align with a specific compliance regime or map to internal controls defined by an organization. * *(string) --* * **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** * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.NoSuchConfigRuleInConformancePa ckException" * "ConfigService.Client.exceptions.NoSuchConformancePackException" ConfigService / Client / get_aggregate_resource_config get_aggregate_resource_config ***************************** ConfigService.Client.get_aggregate_resource_config(**kwargs) Returns configuration item that is aggregated for your specific resource in a specific source account and region. Note: The API does not return results for deleted resources. See also: AWS API Documentation **Request Syntax** response = client.get_aggregate_resource_config( ConfigurationAggregatorName='string', ResourceIdentifier={ 'SourceAccountId': 'string', 'SourceRegion': 'string', 'ResourceId': 'string', 'ResourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'ResourceName': 'string' } ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **ResourceIdentifier** (*dict*) -- **[REQUIRED]** An object that identifies aggregate resource. * **SourceAccountId** *(string) --* **[REQUIRED]** The 12-digit account ID of the source account. * **SourceRegion** *(string) --* **[REQUIRED]** The source region where data is aggregated. * **ResourceId** *(string) --* **[REQUIRED]** The ID of the Amazon Web Services resource. * **ResourceType** *(string) --* **[REQUIRED]** The type of the Amazon Web Services resource. * **ResourceName** *(string) --* The name of the Amazon Web Services resource. Return type: dict Returns: **Response Syntax** { 'ConfigurationItem': { 'version': 'string', 'accountId': 'string', 'configurationItemCaptureTime': datetime(2015, 1, 1), 'configurationItemStatus': 'OK'|'ResourceDiscovered'|'ResourceNotRecorded'|'ResourceDeleted'|'ResourceDeletedNotRecorded', 'configurationStateId': 'string', 'configurationItemMD5Hash': 'string', 'arn': 'string', 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string', 'resourceName': 'string', 'awsRegion': 'string', 'availabilityZone': 'string', 'resourceCreationTime': datetime(2015, 1, 1), 'tags': { 'string': 'string' }, 'relatedEvents': [ 'string', ], 'relationships': [ { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string', 'resourceName': 'string', 'relationshipName': 'string' }, ], 'configuration': 'string', 'supplementaryConfiguration': { 'string': 'string' }, 'recordingFrequency': 'CONTINUOUS'|'DAILY', 'configurationItemDeliveryTime': datetime(2015, 1, 1) } } **Response Structure** * *(dict) --* * **ConfigurationItem** *(dict) --* Returns a "ConfigurationItem" object. * **version** *(string) --* The version number of the resource configuration. * **accountId** *(string) --* The 12-digit Amazon Web Services account ID associated with the resource. * **configurationItemCaptureTime** *(datetime) --* The time when the recording of configuration changes was initiated for the resource. * **configurationItemStatus** *(string) --* The configuration item status. Valid values include: * OK – The resource configuration has been updated * ResourceDiscovered – The resource was newly discovered * ResourceNotRecorded – The resource was discovered but its configuration was not recorded since the recorder doesn't record resources of this type * ResourceDeleted – The resource was deleted * ResourceDeletedNotRecorded – The resource was deleted but its configuration was not recorded since the recorder doesn't record resources of this type * **configurationStateId** *(string) --* An identifier that indicates the ordering of the configuration items of a resource. * **configurationItemMD5Hash** *(string) --* Unique MD5 hash that represents the configuration item's state. You can use MD5 hash to compare the states of two or more configuration items that are associated with the same resource. * **arn** *(string) --* Amazon Resource Name (ARN) associated with the resource. * **resourceType** *(string) --* The type of Amazon Web Services resource. * **resourceId** *(string) --* The ID of the resource (for example, "sg-xxxxxx"). * **resourceName** *(string) --* The custom name of the resource, if available. * **awsRegion** *(string) --* The region where the resource resides. * **availabilityZone** *(string) --* The Availability Zone associated with the resource. * **resourceCreationTime** *(datetime) --* The time stamp when the resource was created. * **tags** *(dict) --* A mapping of key value tags associated with the resource. * *(string) --* * *(string) --* * **relatedEvents** *(list) --* A list of CloudTrail event IDs. A populated field indicates that the current configuration was initiated by the events recorded in the CloudTrail log. For more information about CloudTrail, see What Is CloudTrail. An empty field indicates that the current configuration was not initiated by any event. As of Version 1.3, the relatedEvents field is empty. You can access the LookupEvents API in the *CloudTrail API Reference* to retrieve the events for the resource. * *(string) --* * **relationships** *(list) --* A list of related Amazon Web Services resources. * *(dict) --* The relationship of the related resource to the main resource. * **resourceType** *(string) --* The resource type of the related resource. * **resourceId** *(string) --* The ID of the related resource (for example, "sg- xxxxxx"). * **resourceName** *(string) --* The custom name of the related resource, if available. * **relationshipName** *(string) --* The type of relationship with the related resource. * **configuration** *(string) --* A JSON-encoded string that contains the contents for the resource configuration. This string needs to be deserialized using "json.loads()" before you can access the contents. * **supplementaryConfiguration** *(dict) --* A string to string map that contains additional contents for the resource configuration.Config returns this field for certain resource types to supplement the information returned for the "configuration" field. This string to string map needs to be deserialized using "json.loads()" before you can accessing the contents. * *(string) --* * *(string) --* * **recordingFrequency** *(string) --* The recording frequency that Config uses to record configuration changes for the resource. Note: This field only appears in the API response when "DAILY" recording is enabled for a resource type. If this field is not present, "CONTINUOUS" recording is enabled for that resource type. For more information on daily recording and continuous recording, see Recording Frequency in the *Config Developer Guide*. * **configurationItemDeliveryTime** *(datetime) --* The time when configuration changes for the resource were delivered. Note: This field is optional and is not guaranteed to be present in a configuration item (CI). If you are using daily recording, this field will be populated. However, if you are using continuous recording, this field will be omitted since the delivery time is instantaneous as the CI is available right away.For more information on daily recording and continuous recording, see Recording Frequency in the *Config Developer Guide*. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.NoSuchConfigurationAggregatorEx ception" * "ConfigService.Client.exceptions.OversizedConfigurationItemExcep tion" * "ConfigService.Client.exceptions.ResourceNotDiscoveredException" ConfigService / Client / delete_remediation_exceptions delete_remediation_exceptions ***************************** ConfigService.Client.delete_remediation_exceptions(**kwargs) Deletes one or more remediation exceptions mentioned in the resource keys. Note: Config generates a remediation exception when a problem occurs executing a remediation action to a specific resource. Remediation exceptions blocks auto-remediation until the exception is cleared. See also: AWS API Documentation **Request Syntax** response = client.delete_remediation_exceptions( ConfigRuleName='string', ResourceKeys=[ { 'ResourceType': 'string', 'ResourceId': 'string' }, ] ) Parameters: * **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule for which you want to delete remediation exception configuration. * **ResourceKeys** (*list*) -- **[REQUIRED]** An exception list of resource exception keys to be processed with the current request. Config adds exception for each resource key. For example, Config adds 3 exceptions for 3 resource keys. * *(dict) --* The details that identify a resource within Config, including the resource type and resource ID. * **ResourceType** *(string) --* The type of a resource. * **ResourceId** *(string) --* The ID of the resource (for example., sg-xxxxxx). Return type: dict Returns: **Response Syntax** { 'FailedBatches': [ { 'FailureMessage': 'string', 'FailedItems': [ { 'ResourceType': 'string', 'ResourceId': 'string' }, ] }, ] } **Response Structure** * *(dict) --* * **FailedBatches** *(list) --* Returns a list of failed delete remediation exceptions batch objects. Each object in the batch consists of a list of failed items and failure messages. * *(dict) --* List of each of the failed delete remediation exceptions with specific reasons. * **FailureMessage** *(string) --* Returns a failure message for delete remediation exception. For example, Config creates an exception due to an internal error. * **FailedItems** *(list) --* Returns remediation exception resource key object of the failed items. * *(dict) --* The details that identify a resource within Config, including the resource type and resource ID. * **ResourceType** *(string) --* The type of a resource. * **ResourceId** *(string) --* The ID of the resource (for example., sg-xxxxxx). **Exceptions** * "ConfigService.Client.exceptions.NoSuchRemediationExceptionExcep tion" ConfigService / Client / describe_config_rules describe_config_rules ********************* ConfigService.Client.describe_config_rules(**kwargs) Returns details about your Config rules. See also: AWS API Documentation **Request Syntax** response = client.describe_config_rules( ConfigRuleNames=[ 'string', ], NextToken='string', Filters={ 'EvaluationMode': 'DETECTIVE'|'PROACTIVE' } ) Parameters: * **ConfigRuleNames** (*list*) -- The names of the Config rules for which you want details. If you do not specify any names, Config returns details for all your rules. * *(string) --* * **NextToken** (*string*) -- The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. * **Filters** (*dict*) -- Returns a list of Detective or Proactive Config rules. By default, this API returns an unfiltered list. For more information on Detective or Proactive Config rules, see **Evaluation Mode** in the *Config Developer Guide*. * **EvaluationMode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. Return type: dict Returns: **Response Syntax** { 'ConfigRules': [ { 'ConfigRuleName': 'string', 'ConfigRuleArn': 'string', 'ConfigRuleId': 'string', 'Description': 'string', 'Scope': { 'ComplianceResourceTypes': [ 'string', ], 'TagKey': 'string', 'TagValue': 'string', 'ComplianceResourceId': 'string' }, 'Source': { 'Owner': 'CUSTOM_LAMBDA'|'AWS'|'CUSTOM_POLICY', 'SourceIdentifier': 'string', 'SourceDetails': [ { 'EventSource': 'aws.config', 'MessageType': 'ConfigurationItemChangeNotification'|'ConfigurationSnapshotDeliveryCompleted'|'ScheduledNotification'|'OversizedConfigurationItemChangeNotification', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours' }, ], 'CustomPolicyDetails': { 'PolicyRuntime': 'string', 'PolicyText': 'string', 'EnableDebugLogDelivery': True|False } }, 'InputParameters': 'string', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours', 'ConfigRuleState': 'ACTIVE'|'DELETING'|'DELETING_RESULTS'|'EVALUATING', 'CreatedBy': 'string', 'EvaluationModes': [ { 'Mode': 'DETECTIVE'|'PROACTIVE' }, ] }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **ConfigRules** *(list) --* The details about your Config rules. * *(dict) --* Config rules evaluate the configuration settings of your Amazon Web Services resources. A rule can run when Config detects a configuration change to an Amazon Web Services resource or at a periodic frequency that you choose (for example, every 24 hours). There are two types of rules: *Config Managed Rules* and *Config Custom Rules*. Config Managed Rules are predefined, customizable rules created by Config. For a list of managed rules, see List of Config Managed Rules. Config Custom Rules are rules that you create from scratch. There are two ways to create Config custom rules: with Lambda functions ( Lambda Developer Guide) and with Guard ( Guard GitHub Repository), a policy-as-code language. Config custom rules created with Lambda are called *Config Custom Lambda Rules* and Config custom rules created with Guard are called *Config Custom Policy Rules*. For more information about developing and using Config rules, see Evaluating Resource with Config Rules in the *Config Developer Guide*. Note: You can use the Amazon Web Services CLI and Amazon Web Services SDKs if you want to create a rule that triggers evaluations for your resources when Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties. * **ConfigRuleName** *(string) --* The name that you assign to the Config rule. The name is required if you are adding a new rule. * **ConfigRuleArn** *(string) --* The Amazon Resource Name (ARN) of the Config rule. * **ConfigRuleId** *(string) --* The ID of the Config rule. * **Description** *(string) --* The description that you provide for the Config rule. * **Scope** *(dict) --* Defines which resources can trigger an evaluation for the rule. The scope can include one or more resource types, a combination of one resource type and one resource ID, or a combination of a tag key and value. Specify a scope to constrain the resources that can trigger an evaluation for the rule. If you do not specify a scope, evaluations are triggered when any resource in the recording group changes. * **ComplianceResourceTypes** *(list) --* The resource types of only those Amazon Web Services resources that you want to trigger an evaluation for the rule. You can only specify one type if you also specify a resource ID for "ComplianceResourceId". * *(string) --* * **TagKey** *(string) --* The tag key that is applied to only those Amazon Web Services resources that you want to trigger an evaluation for the rule. * **TagValue** *(string) --* The tag value applied to only those Amazon Web Services resources that you want to trigger an evaluation for the rule. If you specify a value for "TagValue", you must also specify a value for "TagKey". * **ComplianceResourceId** *(string) --* The ID of the only Amazon Web Services resource that you want to trigger an evaluation for the rule. If you specify a resource ID, you must specify one resource type for "ComplianceResourceTypes". * **Source** *(dict) --* Provides the rule owner ( "Amazon Web Services" for managed rules, "CUSTOM_POLICY" for Custom Policy rules, and "CUSTOM_LAMBDA" for Custom Lambda rules), the rule identifier, and the notifications that cause the function to evaluate your Amazon Web Services resources. * **Owner** *(string) --* Indicates whether Amazon Web Services or the customer owns and manages the Config rule. Config Managed Rules are predefined rules owned by Amazon Web Services. For more information, see Config Managed Rules in the *Config developer guide*. Config Custom Rules are rules that you can develop either with Guard ( "CUSTOM_POLICY") or Lambda ( "CUSTOM_LAMBDA"). For more information, see Config Custom Rules in the *Config developer guide*. * **SourceIdentifier** *(string) --* For Config Managed rules, a predefined identifier from a list. For example, "IAM_PASSWORD_POLICY" is a managed rule. To reference a managed rule, see List of Config Managed Rules. For Config Custom Lambda rules, the identifier is the Amazon Resource Name (ARN) of the rule's Lambda function, such as "arn:aws:lambda:us- east-2:123456789012:function:custom_rule_name". For Config Custom Policy rules, this field will be ignored. * **SourceDetails** *(list) --* Provides the source and the message types that cause Config to evaluate your Amazon Web Services resources against a rule. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic. If the owner is set to "CUSTOM_POLICY", the only acceptable values for the Config rule trigger message type are "ConfigurationItemChangeNotification" and "OversizedConfigurationItemChangeNotification". * *(dict) --* Provides the source and the message types that trigger Config to evaluate your Amazon Web Services resources against a rule. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic. You can specify the parameter values for "SourceDetail" only for custom rules. * **EventSource** *(string) --* The source of the event, such as an Amazon Web Services service, that triggers Config to evaluate your Amazon Web Services resources. * **MessageType** *(string) --* The type of notification that triggers Config to run an evaluation for a rule. You can specify the following notification types: * "ConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers a configuration item as a result of a resource change. * "OversizedConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers an oversized configuration item. Config may generate this notification type when a resource changes and the notification exceeds the maximum size allowed by Amazon SNS. * "ScheduledNotification" - Triggers a periodic evaluation at the frequency specified for "MaximumExecutionFrequency". * "ConfigurationSnapshotDeliveryCompleted" - Triggers a periodic evaluation when Config delivers a configuration snapshot. If you want your custom rule to be triggered by configuration changes, specify two SourceDetail objects, one for "ConfigurationItemChangeNotification" and one for "OversizedConfigurationItemChangeNotification". * **MaximumExecutionFrequency** *(string) --* The frequency at which you want Config to run evaluations for a custom rule with a periodic trigger. If you specify a value for "MaximumExecutionFrequency", then "MessageType" must use the "ScheduledNotification" value. Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the "MaximumExecutionFrequency" parameter.Based on the valid value you choose, Config runs evaluations once for each valid value. For example, if you choose "Three_Hours", Config runs evaluations once every three hours. In this case, "Three_Hours" is the frequency of this rule. * **CustomPolicyDetails** *(dict) --* Provides the runtime system, policy definition, and whether debug logging is enabled. Required when owner is set to "CUSTOM_POLICY". * **PolicyRuntime** *(string) --* The runtime system for your Config Custom Policy rule. Guard is a policy-as-code language that allows you to write policies that are enforced by Config Custom Policy rules. For more information about Guard, see the Guard GitHub Repository. * **PolicyText** *(string) --* The policy definition containing the logic for your Config Custom Policy rule. * **EnableDebugLogDelivery** *(boolean) --* The boolean expression for enabling debug logging for your Config Custom Policy rule. The default value is "false". * **InputParameters** *(string) --* A string, in JSON format, that is passed to the Config rule Lambda function. * **MaximumExecutionFrequency** *(string) --* The maximum frequency with which Config runs evaluations for a rule. You can specify a value for "MaximumExecutionFrequency" when: * This is for an Config managed rule that is triggered at a periodic frequency. * Your custom rule is triggered when Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties. Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the "MaximumExecutionFrequency" parameter. * **ConfigRuleState** *(string) --* Indicates whether the Config rule is active or is currently being deleted by Config. It can also indicate the evaluation status for the Config rule. Config sets the state of the rule to "EVALUATING" temporarily after you use the "StartConfigRulesEvaluation" request to evaluate your resources against the Config rule. Config sets the state of the rule to "DELETING_RESULTS" temporarily after you use the "DeleteEvaluationResults" request to delete the current evaluation results for the Config rule. Config temporarily sets the state of a rule to "DELETING" after you use the "DeleteConfigRule" request to delete the rule. After Config deletes the rule, the rule and all of its evaluations are erased and are no longer available. * **CreatedBy** *(string) --* Service principal name of the service that created the rule. Note: The field is populated only if the service-linked rule is created by a service. The field is empty if you create your own rule. * **EvaluationModes** *(list) --* The modes the Config rule can be evaluated in. The valid values are distinct objects. By default, the value is Detective evaluation mode only. * *(dict) --* The configuration object for Config rule evaluation mode. The supported valid values are Detective or Proactive. * **Mode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. * **NextToken** *(string) --* The string that you use in a subsequent request to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.NoSuchConfigRuleException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidParameterValueException" ConfigService / Client / get_aggregate_conformance_pack_compliance_summary get_aggregate_conformance_pack_compliance_summary ************************************************* ConfigService.Client.get_aggregate_conformance_pack_compliance_summary(**kwargs) Returns the count of compliant and noncompliant conformance packs across all Amazon Web Services accounts and Amazon Web Services Regions in an aggregator. You can filter based on Amazon Web Services account ID or Amazon Web Services Region. Note: The results can return an empty result page, but if you have a nextToken, the results are displayed on the next page. See also: AWS API Documentation **Request Syntax** response = client.get_aggregate_conformance_pack_compliance_summary( ConfigurationAggregatorName='string', Filters={ 'AccountId': 'string', 'AwsRegion': 'string' }, GroupByKey='ACCOUNT_ID'|'AWS_REGION', Limit=123, NextToken='string' ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **Filters** (*dict*) -- Filters the results based on the "AggregateConformancePackComplianceSummaryFilters" object. * **AccountId** *(string) --* The 12-digit Amazon Web Services account ID of the source account. * **AwsRegion** *(string) --* The source Amazon Web Services Region from where the data is aggregated. * **GroupByKey** (*string*) -- Groups the result based on Amazon Web Services account ID or Amazon Web Services Region. * **Limit** (*integer*) -- The maximum number of results returned on each page. The default is maximum. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'AggregateConformancePackComplianceSummaries': [ { 'ComplianceSummary': { 'CompliantConformancePackCount': 123, 'NonCompliantConformancePackCount': 123 }, 'GroupName': 'string' }, ], 'GroupByKey': 'string', 'NextToken': 'string' } **Response Structure** * *(dict) --* * **AggregateConformancePackComplianceSummaries** *(list) --* Returns a list of "AggregateConformancePackComplianceSummary" object. * *(dict) --* Provides a summary of compliance based on either account ID or region. * **ComplianceSummary** *(dict) --* Returns an "AggregateConformancePackComplianceCount" object. * **CompliantConformancePackCount** *(integer) --* Number of compliant conformance packs. * **NonCompliantConformancePackCount** *(integer) --* Number of noncompliant conformance packs. * **GroupName** *(string) --* Groups the result based on Amazon Web Services account ID or Amazon Web Services Region. * **GroupByKey** *(string) --* Groups the result based on Amazon Web Services account ID or Amazon Web Services Region. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.NoSuchConfigurationAggregatorEx ception" ConfigService / Client / describe_organization_conformance_packs describe_organization_conformance_packs *************************************** ConfigService.Client.describe_organization_conformance_packs(**kwargs) Returns a list of organization conformance packs. Note: When you specify the limit and the next token, you receive a paginated response.Limit and next token are not applicable if you specify organization conformance packs names. They are only applicable, when you request all the organization conformance packs.*For accounts within an organization*If you deploy an organizational rule or conformance pack in an organization administrator account, and then establish a delegated administrator and deploy an organizational rule or conformance pack in the delegated administrator account, you won't be able to see the organizational rule or conformance pack in the organization administrator account from the delegated administrator account or see the organizational rule or conformance pack in the delegated administrator account from organization administrator account. The "DescribeOrganizationConfigRules" and "DescribeOrganizationConformancePacks" APIs can only see and interact with the organization-related resource that were deployed from within the account calling those APIs. See also: AWS API Documentation **Request Syntax** response = client.describe_organization_conformance_packs( OrganizationConformancePackNames=[ 'string', ], Limit=123, NextToken='string' ) Parameters: * **OrganizationConformancePackNames** (*list*) -- The name that you assign to an organization conformance pack. * *(string) --* * **Limit** (*integer*) -- The maximum number of organization config packs returned on each page. If you do no specify a number, Config uses the default. The default is 100. * **NextToken** (*string*) -- The nextToken string 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** { 'OrganizationConformancePacks': [ { 'OrganizationConformancePackName': 'string', 'OrganizationConformancePackArn': 'string', 'DeliveryS3Bucket': 'string', 'DeliveryS3KeyPrefix': 'string', 'ConformancePackInputParameters': [ { 'ParameterName': 'string', 'ParameterValue': 'string' }, ], 'ExcludedAccounts': [ 'string', ], 'LastUpdateTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **OrganizationConformancePacks** *(list) --* Returns a list of OrganizationConformancePacks objects. * *(dict) --* An organization conformance pack that has information about conformance packs that Config creates in member accounts. * **OrganizationConformancePackName** *(string) --* The name you assign to an organization conformance pack. * **OrganizationConformancePackArn** *(string) --* Amazon Resource Name (ARN) of organization conformance pack. * **DeliveryS3Bucket** *(string) --* The name of the Amazon S3 bucket where Config stores conformance pack templates. Note: This field is optional. * **DeliveryS3KeyPrefix** *(string) --* Any folder structure you want to add to an Amazon S3 bucket. Note: This field is optional. * **ConformancePackInputParameters** *(list) --* A list of "ConformancePackInputParameter" objects. * *(dict) --* Input parameters in the form of key-value pairs for the conformance pack, both of which you define. Keys can have a maximum character length of 255 characters, and values can have a maximum length of 4096 characters. * **ParameterName** *(string) --* One part of a key-value pair. * **ParameterValue** *(string) --* Another part of the key-value pair. * **ExcludedAccounts** *(list) --* A comma-separated list of accounts excluded from organization conformance pack. * *(string) --* * **LastUpdateTime** *(datetime) --* Last time when organization conformation pack was updated. * **NextToken** *(string) --* The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.NoSuchOrganizationConformancePa ckException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.OrganizationAccessDeniedExcepti on" ConfigService / Client / batch_get_resource_config batch_get_resource_config ************************* ConfigService.Client.batch_get_resource_config(**kwargs) Returns the "BaseConfigurationItem" for one or more requested resources. The operation also returns a list of resources that are not processed in the current request. If there are no unprocessed resources, the operation returns an empty unprocessedResourceKeys list. Note: * The API does not return results for deleted resources. * The API does not return any tags for the requested resources. This information is filtered out of the supplementaryConfiguration section of the API response. See also: AWS API Documentation **Request Syntax** response = client.batch_get_resource_config( resourceKeys=[ { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string' }, ] ) Parameters: **resourceKeys** (*list*) -- **[REQUIRED]** A list of resource keys to be processed with the current request. Each element in the list consists of the resource type and resource ID. * *(dict) --* The details that identify a resource within Config, including the resource type and resource ID. * **resourceType** *(string) --* **[REQUIRED]** The resource type. * **resourceId** *(string) --* **[REQUIRED]** The ID of the resource (for example., sg-xxxxxx). Return type: dict Returns: **Response Syntax** { 'baseConfigurationItems': [ { 'version': 'string', 'accountId': 'string', 'configurationItemCaptureTime': datetime(2015, 1, 1), 'configurationItemStatus': 'OK'|'ResourceDiscovered'|'ResourceNotRecorded'|'ResourceDeleted'|'ResourceDeletedNotRecorded', 'configurationStateId': 'string', 'arn': 'string', 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string', 'resourceName': 'string', 'awsRegion': 'string', 'availabilityZone': 'string', 'resourceCreationTime': datetime(2015, 1, 1), 'configuration': 'string', 'supplementaryConfiguration': { 'string': 'string' }, 'recordingFrequency': 'CONTINUOUS'|'DAILY', 'configurationItemDeliveryTime': datetime(2015, 1, 1) }, ], 'unprocessedResourceKeys': [ { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string' }, ] } **Response Structure** * *(dict) --* * **baseConfigurationItems** *(list) --* A list that contains the current configuration of one or more resources. * *(dict) --* The detailed configurations of a specified resource. * **version** *(string) --* The version number of the resource configuration. * **accountId** *(string) --* The 12-digit Amazon Web Services account ID associated with the resource. * **configurationItemCaptureTime** *(datetime) --* The time when the recording of configuration changes was initiated for the resource. * **configurationItemStatus** *(string) --* The configuration item status. Valid values include: * OK – The resource configuration has been updated. * ResourceDiscovered – The resource was newly discovered. * ResourceNotRecorded – The resource was discovered, but its configuration was not recorded since the recorder doesn't record resources of this type. * ResourceDeleted – The resource was deleted * ResourceDeletedNotRecorded – The resource was deleted, but its configuration was not recorded since the recorder doesn't record resources of this type. * **configurationStateId** *(string) --* An identifier that indicates the ordering of the configuration items of a resource. * **arn** *(string) --* The Amazon Resource Name (ARN) of the resource. * **resourceType** *(string) --* The type of Amazon Web Services resource. * **resourceId** *(string) --* The ID of the resource (for example., sg-xxxxxx). * **resourceName** *(string) --* The custom name of the resource, if available. * **awsRegion** *(string) --* The region where the resource resides. * **availabilityZone** *(string) --* The Availability Zone associated with the resource. * **resourceCreationTime** *(datetime) --* The time stamp when the resource was created. * **configuration** *(string) --* A JSON-encoded string that contains the contents for the resource configuration. This string needs to be deserialized using "json.loads()" before you can access the contents. * **supplementaryConfiguration** *(dict) --* A string to string map that contains additional contents for the resource configuration.Config returns this field for certain resource types to supplement the information returned for the "configuration" field. This string needs to be deserialized using "json.loads()" before you can access the contents. * *(string) --* * *(string) --* * **recordingFrequency** *(string) --* The recording frequency that Config uses to record configuration changes for the resource. Note: This field only appears in the API response when "DAILY" recording is enabled for a resource type. If this field is not present, "CONTINUOUS" recording is enabled for that resource type. For more information on daily recording and continuous recording, see Recording Frequency in the *Config Developer Guide*. * **configurationItemDeliveryTime** *(datetime) --* The time when configuration changes for the resource were delivered. Note: This field is optional and is not guaranteed to be present in a configuration item (CI). If you are using daily recording, this field will be populated. However, if you are using continuous recording, this field will be omitted since the delivery time is instantaneous as the CI is available right away. For more information on daily recording and continuous recording, see Recording Frequency in the *Config Developer Guide*. * **unprocessedResourceKeys** *(list) --* A list of resource keys that were not processed with the current response. The unprocessesResourceKeys value is in the same form as ResourceKeys, so the value can be directly provided to a subsequent BatchGetResourceConfig operation. If there are no unprocessed resource keys, the response contains an empty unprocessedResourceKeys list. * *(dict) --* The details that identify a resource within Config, including the resource type and resource ID. * **resourceType** *(string) --* The resource type. * **resourceId** *(string) --* The ID of the resource (for example., sg-xxxxxx). **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.NoAvailableConfigurationRecorde rException" ConfigService / Client / disassociate_resource_types disassociate_resource_types *************************** ConfigService.Client.disassociate_resource_types(**kwargs) Removes all resource types specified in the "ResourceTypes" list from the RecordingGroup of configuration recorder and excludes these resource types when recording. For this operation, the configuration recorder must use a RecordingStrategy that is either "INCLUSION_BY_RESOURCE_TYPES" or "EXCLUSION_BY_RESOURCE_TYPES". See also: AWS API Documentation **Request Syntax** response = client.disassociate_resource_types( ConfigurationRecorderArn='string', ResourceTypes=[ 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', ] ) Parameters: * **ConfigurationRecorderArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the specified configuration recorder. * **ResourceTypes** (*list*) -- **[REQUIRED]** The list of resource types you want to remove from the recording group of the specified configuration recorder. * *(string) --* Return type: dict Returns: **Response Syntax** { 'ConfigurationRecorder': { 'arn': 'string', 'name': 'string', 'roleARN': 'string', 'recordingGroup': { 'allSupported': True|False, 'includeGlobalResourceTypes': True|False, 'resourceTypes': [ 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', ], 'exclusionByResourceTypes': { 'resourceTypes': [ 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', ] }, 'recordingStrategy': { 'useOnly': 'ALL_SUPPORTED_RESOURCE_TYPES'|'INCLUSION_BY_RESOURCE_TYPES'|'EXCLUSION_BY_RESOURCE_TYPES' } }, 'recordingMode': { 'recordingFrequency': 'CONTINUOUS'|'DAILY', 'recordingModeOverrides': [ { 'description': 'string', 'resourceTypes': [ 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', ], 'recordingFrequency': 'CONTINUOUS'|'DAILY' }, ] }, 'recordingScope': 'INTERNAL'|'PAID', 'servicePrincipal': 'string' } } **Response Structure** * *(dict) --* * **ConfigurationRecorder** *(dict) --* Records configuration changes to the resource types in scope. For more information about the configuration recorder, see **Working with the Configuration Recorder** in the *Config Developer Guide*. * **arn** *(string) --* The Amazon Resource Name (ARN) of the specified configuration recorder. * **name** *(string) --* The name of the configuration recorder. For customer managed configuration recorders, Config automatically assigns the name of "default" when creating a configuration recorder if you do not specify a name at creation time. For service-linked configuration recorders, Config automatically assigns a name that has the prefix " "AWSConfigurationRecorderFor"" to a new service-linked configuration recorder. Note: **Changing the name of a configuration recorder**To change the name of the customer managed configuration recorder, you must delete it and create a new customer managed configuration recorder with a new name.You cannot change the name of a service-linked configuration recorder. * **roleARN** *(string) --* The Amazon Resource Name (ARN) of the IAM role assumed by Config and used by the specified configuration recorder. Note: The server will reject a request without a defined "roleARN" for the configuration recorderWhile the API model does not require this field, the server will reject a request without a defined "roleARN" for the configuration recorder.**Policies and compliance results**IAM policies and other policies managed in Organizations can impact whether Config has permissions to record configuration changes for your resources. Additionally, rules directly evaluate the configuration of a resource and rules don't take into account these policies when running evaluations. Make sure that the policies in effect align with how you intend to use Config.**Keep Minimum Permisions When Reusing an IAM role**If you use an Amazon Web Services service that uses Config, such as Security Hub or Control Tower, and an IAM role has already been created, make sure that the IAM role that you use when setting up Config keeps the same minimum permissions as the pre-existing IAM role. You must do this to ensure that the other Amazon Web Services service continues to run as expected.For example, if Control Tower has an IAM role that allows Config to read S3 objects, make sure that the same permissions are granted to the IAM role you use when setting up Config. Otherwise, it may interfere with how Control Tower operates.**The service-linked IAM role for Config must be used for service-linked configuration recorders**For service-linked configuration recorders, you must use the service-linked IAM role for Config: AWSServiceRoleForConfig. * **recordingGroup** *(dict) --* Specifies which resource types are in scope for the configuration recorder to record. Note: **High Number of Config Evaluations**You might notice increased activity in your account during your initial month recording with Config when compared to subsequent months. During the initial bootstrapping process, Config runs evaluations on all the resources in your account that you have selected for Config to record.If you are running ephemeral workloads, you may see increased activity from Config as it records configuration changes associated with creating and deleting these temporary resources. An *ephemeral workload* is a temporary use of computing resources that are loaded and run when needed. Examples include Amazon Elastic Compute Cloud (Amazon EC2) Spot Instances, Amazon EMR jobs, and Auto Scaling.If you want to avoid the increased activity from running ephemeral workloads, you can set up the configuration recorder to exclude these resource types from being recorded, or run these types of workloads in a separate account with Config turned off to avoid increased configuration recording and rule evaluations. * **allSupported** *(boolean) --* Specifies whether Config records configuration changes for all supported resource types, excluding the global IAM resource types. If you set this field to "true", when Config adds support for a new resource type, Config starts recording resources of that type automatically. If you set this field to "true", you cannot enumerate specific resource types to record in the "resourceTypes" field of RecordingGroup, or to exclude in the "resourceTypes" field of ExclusionByResourceTypes. Note: **Region availability**Check Resource Coverage by Region Availability to see if a resource type is supported in the Amazon Web Services Region where you set up Config. * **includeGlobalResourceTypes** *(boolean) --* This option is a bundle which only applies to the global IAM resource types: IAM users, groups, roles, and customer managed policies. These global IAM resource types can only be recorded by Config in Regions where Config was available before February 2022. You cannot be record the global IAM resouce types in Regions supported by Config after February 2022. For a list of those Regions, see Recording Amazon Web Services Resources | Global Resources. Warning: **Aurora global clusters are recorded in all enabled Regions**The "AWS::RDS::GlobalCluster" resource type will be recorded in all supported Config Regions where the configuration recorder is enabled, even if "includeGlobalResourceTypes" is set "false". The "includeGlobalResourceTypes" option is a bundle which only applies to IAM users, groups, roles, and customer managed policies.If you do not want to record "AWS::RDS::GlobalCluster" in all enabled Regions, use one of the following recording strategies: * **Record all current and future resource types with exclusions** ( "EXCLUSION_BY_RESOURCE_TYPES"), or * **Record specific resource types** ( "INCLUSION_BY_RESOURCE_TYPES"). For more information, see Selecting Which Resources are Recorded in the *Config developer guide*. Warning: **includeGlobalResourceTypes and the exclusion recording strategy**The "includeGlobalResourceTypes" field has no impact on the "EXCLUSION_BY_RESOURCE_TYPES" recording strategy. This means that the global IAM resource types (IAM users, groups, roles, and customer managed policies) will not be automatically added as exclusions for "exclusionByResourceTypes" when "includeGlobalResourceTypes" is set to "false".The "includeGlobalResourceTypes" field should only be used to modify the "AllSupported" field, as the default for the "AllSupported" field is to record configuration changes for all supported resource types excluding the global IAM resource types. To include the global IAM resource types when "AllSupported" is set to "true", make sure to set "includeGlobalResourceTypes" to "true".To exclude the global IAM resource types for the "EXCLUSION_BY_RESOURCE_TYPES" recording strategy, you need to manually add them to the "resourceTypes" field of "exclusionByResourceTypes". Note: **Required and optional fields**Before you set this field to "true", set the "allSupported" field of RecordingGroup to "true". Optionally, you can set the "useOnly" field of RecordingStrategy to "ALL_SUPPORTED_RESOURCE_TYPES". Note: **Overriding fields**If you set this field to "false" but list global IAM resource types in the "resourceTypes" field of RecordingGroup, Config will still record configuration changes for those specified resource types *regardless* of if you set the "includeGlobalResourceTypes" field to false.If you do not want to record configuration changes to the global IAM resource types (IAM users, groups, roles, and customer managed policies), make sure to not list them in the "resourceTypes" field in addition to setting the "includeGlobalResourceTypes" field to false. * **resourceTypes** *(list) --* A comma-separated list that specifies which resource types Config records. For a list of valid "resourceTypes" values, see the **Resource Type Value** column in Supported Amazon Web Services resource Types in the *Config developer guide*. Note: **Required and optional fields**Optionally, you can set the "useOnly" field of RecordingStrategy to "INCLUSION_BY_RESOURCE_TYPES".To record all configuration changes, set the "allSupported" field of RecordingGroup to "true", and either omit this field or don't specify any resource types in this field. If you set the "allSupported" field to "false" and specify values for "resourceTypes", when Config adds support for a new type of resource, it will not record resources of that type unless you manually add that type to your recording group. Note: **Region availability**Before specifying a resource type for Config to track, check Resource Coverage by Region Availability to see if the resource type is supported in the Amazon Web Services Region where you set up Config. If a resource type is supported by Config in at least one Region, you can enable the recording of that resource type in all Regions supported by Config, even if the specified resource type is not supported in the Amazon Web Services Region where you set up Config. * *(string) --* * **exclusionByResourceTypes** *(dict) --* An object that specifies how Config excludes resource types from being recorded by the configuration recorder. Note: **Required fields**To use this option, you must set the "useOnly" field of RecordingStrategy to "EXCLUSION_BY_RESOURCE_TYPES". * **resourceTypes** *(list) --* A comma-separated list of resource types to exclude from recording by the configuration recorder. * *(string) --* * **recordingStrategy** *(dict) --* An object that specifies the recording strategy for the configuration recorder. * If you set the "useOnly" field of RecordingStrategy to "ALL_SUPPORTED_RESOURCE_TYPES", Config records configuration changes for all supported resource types, excluding the global IAM resource types. You also must set the "allSupported" field of RecordingGroup to "true". When Config adds support for a new resource type, Config automatically starts recording resources of that type. * If you set the "useOnly" field of RecordingStrategy to "INCLUSION_BY_RESOURCE_TYPES", Config records configuration changes for only the resource types you specify in the "resourceTypes" field of RecordingGroup. * If you set the "useOnly" field of RecordingStrategy to "EXCLUSION_BY_RESOURCE_TYPES", Config records configuration changes for all supported resource types except the resource types that you specify to exclude from being recorded in the "resourceTypes" field of ExclusionByResourceTypes. Note: **Required and optional fields**The "recordingStrategy" field is optional when you set the "allSupported" field of RecordingGroup to "true".The "recordingStrategy" field is optional when you list resource types in the "resourceTypes" field of RecordingGroup.The "recordingStrategy" field is required if you list resource types to exclude from recording in the "resourceTypes" field of ExclusionByResourceTypes. Note: **Overriding fields**If you choose "EXCLUSION_BY_RESOURCE_TYPES" for the recording strategy, the "exclusionByResourceTypes" field will override other properties in the request.For example, even if you set "includeGlobalResourceTypes" to false, global IAM resource types will still be automatically recorded in this option unless those resource types are specifically listed as exclusions in the "resourceTypes" field of "exclusionByResourceTypes". Note: **Global resources types and the resource exclusion recording strategy**By default, if you choose the "EXCLUSION_BY_RESOURCE_TYPES" recording strategy, when Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types, Config starts recording resources of that type automatically.Unless specifically listed as exclusions, "AWS::RDS::GlobalCluster" will be recorded automatically in all supported Config Regions were the configuration recorder is enabled.IAM users, groups, roles, and customer managed policies will be recorded in the Region where you set up the configuration recorder if that is a Region where Config was available before February 2022. You cannot be record the global IAM resouce types in Regions supported by Config after February 2022. For a list of those Regions, see Recording Amazon Web Services Resources | Global Resources. * **useOnly** *(string) --* The recording strategy for the configuration recorder. * If you set this option to "ALL_SUPPORTED_RESOURCE_TYPES", Config records configuration changes for all supported resource types, excluding the global IAM resource types. You also must set the "allSupported" field of RecordingGroup to "true". When Config adds support for a new resource type, Config automatically starts recording resources of that type. For a list of supported resource types, see Supported Resource Types in the *Config developer guide*. * If you set this option to "INCLUSION_BY_RESOURCE_TYPES", Config records configuration changes for only the resource types that you specify in the "resourceTypes" field of RecordingGroup. * If you set this option to "EXCLUSION_BY_RESOURCE_TYPES", Config records configuration changes for all supported resource types, except the resource types that you specify to exclude from being recorded in the "resourceTypes" field of ExclusionByResourceTypes. Note: **Required and optional fields**The "recordingStrategy" field is optional when you set the "allSupported" field of RecordingGroup to "true".The "recordingStrategy" field is optional when you list resource types in the "resourceTypes" field of RecordingGroup.The "recordingStrategy" field is required if you list resource types to exclude from recording in the "resourceTypes" field of ExclusionByResourceTypes. Note: **Overriding fields**If you choose "EXCLUSION_BY_RESOURCE_TYPES" for the recording strategy, the "exclusionByResourceTypes" field will override other properties in the request.For example, even if you set "includeGlobalResourceTypes" to false, global IAM resource types will still be automatically recorded in this option unless those resource types are specifically listed as exclusions in the "resourceTypes" field of "exclusionByResourceTypes". Note: **Global resource types and the exclusion recording strategy**By default, if you choose the "EXCLUSION_BY_RESOURCE_TYPES" recording strategy, when Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types, Config starts recording resources of that type automatically.Unless specifically listed as exclusions, "AWS::RDS::GlobalCluster" will be recorded automatically in all supported Config Regions were the configuration recorder is enabled.IAM users, groups, roles, and customer managed policies will be recorded in the Region where you set up the configuration recorder if that is a Region where Config was available before February 2022. You cannot be record the global IAM resouce types in Regions supported by Config after February 2022. This list where you cannot record the global IAM resource types includes the following Regions: * Asia Pacific (Hyderabad) * Asia Pacific (Melbourne) * Canada West (Calgary) * Europe (Spain) * Europe (Zurich) * Israel (Tel Aviv) * Middle East (UAE) * **recordingMode** *(dict) --* Specifies the default recording frequency for the configuration recorder. Config supports *Continuous recording* and *Daily recording*. * Continuous recording allows you to record configuration changes continuously whenever a change occurs. * Daily recording allows you to receive a configuration item (CI) representing the most recent state of your resources over the last 24-hour period, only if it’s different from the previous CI recorded. Note: **Some resource types require continuous recording**Firewall Manager depends on continuous recording to monitor your resources. If you are using Firewall Manager, it is recommended that you set the recording frequency to Continuous. You can also override the recording frequency for specific resource types. * **recordingFrequency** *(string) --* The default recording frequency that Config uses to record configuration changes. Warning: Daily recording cannot be specified for the following resource types: * "AWS::Config::ResourceCompliance" * "AWS::Config::ConformancePackCompliance" * "AWS::Config::ConfigurationRecorder" For the **allSupported** ( "ALL_SUPPORTED_RESOURCE_TYPES") recording strategy, these resource types will be set to Continuous recording. * **recordingModeOverrides** *(list) --* An array of "recordingModeOverride" objects for you to specify your overrides for the recording mode. The "recordingModeOverride" object in the "recordingModeOverrides" array consists of three fields: a "description", the new "recordingFrequency", and an array of "resourceTypes" to override. * *(dict) --* An object for you to specify your overrides for the recording mode. * **description** *(string) --* A description that you provide for the override. * **resourceTypes** *(list) --* A comma-separated list that specifies which resource types Config includes in the override. Warning: Daily recording cannot be specified for the following resource types: * "AWS::Config::ResourceCompliance" * "AWS::Config::ConformancePackCompliance" * "AWS::Config::ConfigurationRecorder" * *(string) --* * **recordingFrequency** *(string) --* The recording frequency that will be applied to all the resource types specified in the override. * Continuous recording allows you to record configuration changes continuously whenever a change occurs. * Daily recording allows you to receive a configuration item (CI) representing the most recent state of your resources over the last 24-hour period, only if it’s different from the previous CI recorded. Note: Firewall Manager depends on continuous recording to monitor your resources. If you are using Firewall Manager, it is recommended that you set the recording frequency to Continuous. * **recordingScope** *(string) --* Specifies whether the ConfigurationItems in scope for the specified configuration recorder are recorded for free ( "INTERNAL") or if it impacts the costs to your bill ( "PAID"). * **servicePrincipal** *(string) --* For service-linked configuration recorders, specifies the linked Amazon Web Services service for the configuration recorder. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.ConflictException" * "ConfigService.Client.exceptions.NoSuchConfigurationRecorderExce ption" ConfigService / Client / get_conformance_pack_compliance_details get_conformance_pack_compliance_details *************************************** ConfigService.Client.get_conformance_pack_compliance_details(**kwargs) Returns compliance details of a conformance pack for all Amazon Web Services resources that are monitered by conformance pack. See also: AWS API Documentation **Request Syntax** response = client.get_conformance_pack_compliance_details( ConformancePackName='string', Filters={ 'ConfigRuleNames': [ 'string', ], 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'INSUFFICIENT_DATA', 'ResourceType': 'string', 'ResourceIds': [ 'string', ] }, Limit=123, NextToken='string' ) Parameters: * **ConformancePackName** (*string*) -- **[REQUIRED]** Name of the conformance pack. * **Filters** (*dict*) -- A "ConformancePackEvaluationFilters" object. * **ConfigRuleNames** *(list) --* Filters the results by Config rule names. * *(string) --* * **ComplianceType** *(string) --* Filters the results by compliance. The allowed values are "COMPLIANT" and "NON_COMPLIANT". "INSUFFICIENT_DATA" is not supported. * **ResourceType** *(string) --* Filters the results by the resource type (for example, ""AWS::EC2::Instance""). * **ResourceIds** *(list) --* Filters the results by resource IDs. Note: This is valid only when you provide resource type. If there is no resource type, you will see an error. * *(string) --* * **Limit** (*integer*) -- The maximum number of evaluation results returned on each page. If you do no specify a number, Config uses the default. The default is 100. * **NextToken** (*string*) -- The "nextToken" string returned in a previous request that you use to request the next page of results in a paginated response. Return type: dict Returns: **Response Syntax** { 'ConformancePackName': 'string', 'ConformancePackRuleEvaluationResults': [ { 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'INSUFFICIENT_DATA', 'EvaluationResultIdentifier': { 'EvaluationResultQualifier': { 'ConfigRuleName': 'string', 'ResourceType': 'string', 'ResourceId': 'string', 'EvaluationMode': 'DETECTIVE'|'PROACTIVE' }, 'OrderingTimestamp': datetime(2015, 1, 1), 'ResourceEvaluationId': 'string' }, 'ConfigRuleInvokedTime': datetime(2015, 1, 1), 'ResultRecordedTime': datetime(2015, 1, 1), 'Annotation': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **ConformancePackName** *(string) --* Name of the conformance pack. * **ConformancePackRuleEvaluationResults** *(list) --* Returns a list of "ConformancePackEvaluationResult" objects. * *(dict) --* The details of a conformance pack evaluation. Provides Config rule and Amazon Web Services resource type that was evaluated, the compliance of the conformance pack, related time stamps, and supplementary information. * **ComplianceType** *(string) --* The compliance type. The allowed values are "COMPLIANT" and "NON_COMPLIANT". "INSUFFICIENT_DATA" is not supported. * **EvaluationResultIdentifier** *(dict) --* Uniquely identifies an evaluation result. * **EvaluationResultQualifier** *(dict) --* Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID of the evaluated resource. * **ConfigRuleName** *(string) --* The name of the Config rule that was used in the evaluation. * **ResourceType** *(string) --* The type of Amazon Web Services resource that was evaluated. * **ResourceId** *(string) --* The ID of the evaluated Amazon Web Services resource. * **EvaluationMode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. * **OrderingTimestamp** *(datetime) --* The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can indicate when Config delivered a configuration item change notification, or it can indicate when Config delivered the configuration snapshot, depending on which event triggered the evaluation. * **ResourceEvaluationId** *(string) --* A Unique ID for an evaluation result. * **ConfigRuleInvokedTime** *(datetime) --* The time when Config rule evaluated Amazon Web Services resource. * **ResultRecordedTime** *(datetime) --* The time when Config recorded the evaluation result. * **Annotation** *(string) --* Supplementary information about how the evaluation determined the compliance. * **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** * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.NoSuchConformancePackException" * "ConfigService.Client.exceptions.NoSuchConfigRuleInConformancePa ckException" * "ConfigService.Client.exceptions.InvalidParameterValueException" ConfigService / Client / delete_service_linked_configuration_recorder delete_service_linked_configuration_recorder ******************************************** ConfigService.Client.delete_service_linked_configuration_recorder(**kwargs) Deletes an existing service-linked configuration recorder. This operation does not delete the configuration information that was previously recorded. You will be able to access the previously recorded information by using the GetResourceConfigHistory operation, but you will not be able to access this information in the Config console until you have created a new service-linked configuration recorder for the same service. Note: **The recording scope determines if you receive configuration items**The recording scope is set by the service that is linked to the configuration recorder and determines whether you receive configuration items (CIs) in the delivery channel. If the recording scope is internal, you will not receive CIs in the delivery channel. See also: AWS API Documentation **Request Syntax** response = client.delete_service_linked_configuration_recorder( ServicePrincipal='string' ) Parameters: **ServicePrincipal** (*string*) -- **[REQUIRED]** The service principal of the Amazon Web Services service for the service-linked configuration recorder that you want to delete. Return type: dict Returns: **Response Syntax** { 'Arn': 'string', 'Name': 'string' } **Response Structure** * *(dict) --* * **Arn** *(string) --* The Amazon Resource Name (ARN) of the specified configuration recorder. * **Name** *(string) --* The name of the specified configuration recorder. **Exceptions** * "ConfigService.Client.exceptions.NoSuchConfigurationRecorderExce ption" * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.ConflictException" ConfigService / Client / list_discovered_resources list_discovered_resources ************************* ConfigService.Client.list_discovered_resources(**kwargs) Returns a list of resource resource identifiers for the specified resource types for the resources of that type. A *resource identifier* includes the resource type, ID, and (if available) the custom resource name. The results consist of resources that Config has *discovered*, including those that Config is not currently recording. You can narrow the results to include only resources that have specific resource IDs or a resource name. Note: You can specify either resource IDs or a resource name, but not both, in the same request. Warning: *CloudFormation stack recording behavior in Config*When a CloudFormation stack fails to create (for example, it enters the "ROLLBACK_FAILED" state), Config does not record a configuration item (CI) for that stack. Configuration items are only recorded for stacks that reach the following states: * "CREATE_COMPLETE" * "UPDATE_COMPLETE" * "UPDATE_ROLLBACK_COMPLETE" * "UPDATE_ROLLBACK_FAILED" * "DELETE_FAILED" * "DELETE_COMPLETE" Because no CI is created for a failed stack creation, you won't see configuration history for that stack in Config, even after the stack is deleted. This helps make sure that Config only tracks resources that were successfully provisioned. See also: AWS API Documentation **Request Syntax** response = client.list_discovered_resources( resourceType='AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', resourceIds=[ 'string', ], resourceName='string', limit=123, includeDeletedResources=True|False, nextToken='string' ) Parameters: * **resourceType** (*string*) -- **[REQUIRED]** The type of resources that you want Config to list in the response. * **resourceIds** (*list*) -- The IDs of only those resources that you want Config to list in the response. If you do not specify this parameter, Config lists all resources of the specified type that it has discovered. You can list a minimum of 1 resourceID and a maximum of 20 resourceIds. * *(string) --* * **resourceName** (*string*) -- The custom name of only those resources that you want Config to list in the response. If you do not specify this parameter, Config lists all resources of the specified type that it has discovered. * **limit** (*integer*) -- The maximum number of resource identifiers returned on each page. The default is 100. You cannot specify a number greater than 100. If you specify 0, Config uses the default. * **includeDeletedResources** (*boolean*) -- Specifies whether Config includes deleted resources in the results. By default, deleted resources are not included. * **nextToken** (*string*) -- The "nextToken" string 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** { 'resourceIdentifiers': [ { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string', 'resourceName': 'string', 'resourceDeletionTime': datetime(2015, 1, 1) }, ], 'nextToken': 'string' } **Response Structure** * *(dict) --* * **resourceIdentifiers** *(list) --* The details that identify a resource that is discovered by Config, including the resource type, ID, and (if available) the custom resource name. * *(dict) --* The details that identify a resource that is discovered by Config, including the resource type, ID, and (if available) the custom resource name. * **resourceType** *(string) --* The type of resource. * **resourceId** *(string) --* The ID of the resource (for example, "sg-xxxxxx"). * **resourceName** *(string) --* The custom name of the resource (if available). * **resourceDeletionTime** *(datetime) --* The time that the resource was deleted. * **nextToken** *(string) --* The string that you use in a subsequent request to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.NoAvailableConfigurationRecorde rException" ConfigService / Client / get_resource_config_history get_resource_config_history *************************** ConfigService.Client.get_resource_config_history(**kwargs) Warning: For accurate reporting on the compliance status, you must record the "AWS::Config::ResourceCompliance" resource type.For more information, see Recording Amazon Web Services Resources in the *Config Resources Developer Guide*. Returns a list of configurations items (CIs) for the specified resource. **Contents** The list contains details about each state of the resource during the specified time interval. If you specified a retention period to retain your CIs between a minimum of 30 days and a maximum of 7 years (2557 days), Config returns the CIs for the specified retention period. **Pagination** The response is paginated. By default, Config returns a limit of 10 configuration items per page. You can customize this number with the "limit" parameter. The response includes a "nextToken" string. To get the next page of results, run the request again and specify the string for the "nextToken" parameter. Note: Each call to the API is limited to span a duration of seven days. It is likely that the number of records returned is smaller than the specified "limit". In such cases, you can make another call, using the "nextToken". See also: AWS API Documentation **Request Syntax** response = client.get_resource_config_history( resourceType='AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', resourceId='string', laterTime=datetime(2015, 1, 1), earlierTime=datetime(2015, 1, 1), chronologicalOrder='Reverse'|'Forward', limit=123, nextToken='string' ) Parameters: * **resourceType** (*string*) -- **[REQUIRED]** The resource type. * **resourceId** (*string*) -- **[REQUIRED]** The ID of the resource (for example., "sg-xxxxxx"). * **laterTime** (*datetime*) -- The chronologically latest time in the time range for which the history requested. If not specified, current time is taken. * **earlierTime** (*datetime*) -- The chronologically earliest time in the time range for which the history requested. If not specified, the action returns paginated results that contain configuration items that start when the first configuration item was recorded. * **chronologicalOrder** (*string*) -- The chronological order for configuration items listed. By default, the results are listed in reverse chronological order. * **limit** (*integer*) -- The maximum number of configuration items returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, Config uses the default. * **nextToken** (*string*) -- The "nextToken" string 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** { 'configurationItems': [ { 'version': 'string', 'accountId': 'string', 'configurationItemCaptureTime': datetime(2015, 1, 1), 'configurationItemStatus': 'OK'|'ResourceDiscovered'|'ResourceNotRecorded'|'ResourceDeleted'|'ResourceDeletedNotRecorded', 'configurationStateId': 'string', 'configurationItemMD5Hash': 'string', 'arn': 'string', 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string', 'resourceName': 'string', 'awsRegion': 'string', 'availabilityZone': 'string', 'resourceCreationTime': datetime(2015, 1, 1), 'tags': { 'string': 'string' }, 'relatedEvents': [ 'string', ], 'relationships': [ { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string', 'resourceName': 'string', 'relationshipName': 'string' }, ], 'configuration': 'string', 'supplementaryConfiguration': { 'string': 'string' }, 'recordingFrequency': 'CONTINUOUS'|'DAILY', 'configurationItemDeliveryTime': datetime(2015, 1, 1) }, ], 'nextToken': 'string' } **Response Structure** * *(dict) --* The output for the GetResourceConfigHistory action. * **configurationItems** *(list) --* An array of "ConfigurationItems" Objects. Contatins the configuration history for one or more resources. * *(dict) --* A list that contains detailed configurations of a specified resource. * **version** *(string) --* The version number of the resource configuration. * **accountId** *(string) --* The 12-digit Amazon Web Services account ID associated with the resource. * **configurationItemCaptureTime** *(datetime) --* The time when the recording of configuration changes was initiated for the resource. * **configurationItemStatus** *(string) --* The configuration item status. Valid values include: * OK – The resource configuration has been updated * ResourceDiscovered – The resource was newly discovered * ResourceNotRecorded – The resource was discovered but its configuration was not recorded since the recorder doesn't record resources of this type * ResourceDeleted – The resource was deleted * ResourceDeletedNotRecorded – The resource was deleted but its configuration was not recorded since the recorder doesn't record resources of this type * **configurationStateId** *(string) --* An identifier that indicates the ordering of the configuration items of a resource. * **configurationItemMD5Hash** *(string) --* Unique MD5 hash that represents the configuration item's state. You can use MD5 hash to compare the states of two or more configuration items that are associated with the same resource. * **arn** *(string) --* Amazon Resource Name (ARN) associated with the resource. * **resourceType** *(string) --* The type of Amazon Web Services resource. * **resourceId** *(string) --* The ID of the resource (for example, "sg-xxxxxx"). * **resourceName** *(string) --* The custom name of the resource, if available. * **awsRegion** *(string) --* The region where the resource resides. * **availabilityZone** *(string) --* The Availability Zone associated with the resource. * **resourceCreationTime** *(datetime) --* The time stamp when the resource was created. * **tags** *(dict) --* A mapping of key value tags associated with the resource. * *(string) --* * *(string) --* * **relatedEvents** *(list) --* A list of CloudTrail event IDs. A populated field indicates that the current configuration was initiated by the events recorded in the CloudTrail log. For more information about CloudTrail, see What Is CloudTrail. An empty field indicates that the current configuration was not initiated by any event. As of Version 1.3, the relatedEvents field is empty. You can access the LookupEvents API in the *CloudTrail API Reference* to retrieve the events for the resource. * *(string) --* * **relationships** *(list) --* A list of related Amazon Web Services resources. * *(dict) --* The relationship of the related resource to the main resource. * **resourceType** *(string) --* The resource type of the related resource. * **resourceId** *(string) --* The ID of the related resource (for example, "sg- xxxxxx"). * **resourceName** *(string) --* The custom name of the related resource, if available. * **relationshipName** *(string) --* The type of relationship with the related resource. * **configuration** *(string) --* A JSON-encoded string that contains the contents for the resource configuration. This string needs to be deserialized using "json.loads()" before you can access the contents. * **supplementaryConfiguration** *(dict) --* A string to string map that contains additional contents for the resource configuration.Config returns this field for certain resource types to supplement the information returned for the "configuration" field. This string to string map needs to be deserialized using "json.loads()" before you can accessing the contents. * *(string) --* * *(string) --* * **recordingFrequency** *(string) --* The recording frequency that Config uses to record configuration changes for the resource. Note: This field only appears in the API response when "DAILY" recording is enabled for a resource type. If this field is not present, "CONTINUOUS" recording is enabled for that resource type. For more information on daily recording and continuous recording, see Recording Frequency in the *Config Developer Guide*. * **configurationItemDeliveryTime** *(datetime) --* The time when configuration changes for the resource were delivered. Note: This field is optional and is not guaranteed to be present in a configuration item (CI). If you are using daily recording, this field will be populated. However, if you are using continuous recording, this field will be omitted since the delivery time is instantaneous as the CI is available right away.For more information on daily recording and continuous recording, see Recording Frequency in the *Config Developer Guide*. * **nextToken** *(string) --* The string that you use in a subsequent request to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.InvalidTimeRangeException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.NoAvailableConfigurationRecorde rException" * "ConfigService.Client.exceptions.ResourceNotDiscoveredException" ConfigService / Client / put_stored_query put_stored_query **************** ConfigService.Client.put_stored_query(**kwargs) Saves a new query or updates an existing saved query. The "QueryName" must be unique for a single Amazon Web Services account and a single Amazon Web Services Region. You can create upto 300 queries in a single Amazon Web Services account and a single Amazon Web Services Region. Note: **Tags are added at creation and cannot be updated**"PutStoredQuery" is an idempotent API. Subsequent requests won’t create a duplicate resource if one was already created. If a following request has different "tags" values, Config will ignore these differences and treat it as an idempotent request of the previous. In this case, "tags" will not be updated, even if they are different. See also: AWS API Documentation **Request Syntax** response = client.put_stored_query( StoredQuery={ 'QueryId': 'string', 'QueryArn': 'string', 'QueryName': 'string', 'Description': 'string', 'Expression': 'string' }, Tags=[ { 'Key': 'string', 'Value': 'string' }, ] ) Parameters: * **StoredQuery** (*dict*) -- **[REQUIRED]** A list of "StoredQuery" objects. The mandatory fields are "QueryName" and "Expression". Note: When you are creating a query, you must provide a query name and an expression. When you are updating a query, you must provide a query name but updating the description is optional. * **QueryId** *(string) --* The ID of the query. * **QueryArn** *(string) --* Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type /resource-name/resource-id. * **QueryName** *(string) --* **[REQUIRED]** The name of the query. * **Description** *(string) --* A unique description for the query. * **Expression** *(string) --* The expression of the query. For example, "SELECT resourceId, resourceType, supplementaryConfiguration.Bucket VersioningConfiguration.status WHERE resourceType = 'AWS::S3::Bucket' AND supplementaryConfiguration.BucketVers ioningConfiguration.status = 'Off'." * **Tags** (*list*) -- A list of "Tags" object. * *(dict) --* The tags for the resource. The metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters. * **Key** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **Value** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). Return type: dict Returns: **Response Syntax** { 'QueryArn': 'string' } **Response Structure** * *(dict) --* * **QueryArn** *(string) --* Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type /resource-name/resource-id. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.TooManyTagsException" * "ConfigService.Client.exceptions.ResourceConcurrentModificationE xception" ConfigService / Client / start_resource_evaluation start_resource_evaluation ************************* ConfigService.Client.start_resource_evaluation(**kwargs) Runs an on-demand evaluation for the specified resource to determine whether the resource details will comply with configured Config rules. You can also use it for evaluation purposes. Config recommends using an evaluation context. It runs an execution against the resource details with all of the Config rules in your account that match with the specified proactive mode and resource type. Note: Ensure you have the "cloudformation:DescribeType" role setup to validate the resource type schema.You can find the Resource type schema in "*Amazon Web Services public extensions*" within the CloudFormation registry or with the following CLI commmand: "aws cloudformation describe-type --type-name "AWS::S3::Bucket" --type RESOURCE".For more information, see Managing extensions through the CloudFormation registry and Amazon Web Services resource and property types reference in the CloudFormation User Guide. See also: AWS API Documentation **Request Syntax** response = client.start_resource_evaluation( ResourceDetails={ 'ResourceId': 'string', 'ResourceType': 'string', 'ResourceConfiguration': 'string', 'ResourceConfigurationSchemaType': 'CFN_RESOURCE_SCHEMA' }, EvaluationContext={ 'EvaluationContextIdentifier': 'string' }, EvaluationMode='DETECTIVE'|'PROACTIVE', EvaluationTimeout=123, ClientToken='string' ) Parameters: * **ResourceDetails** (*dict*) -- **[REQUIRED]** Returns a "ResourceDetails" object. * **ResourceId** *(string) --* **[REQUIRED]** A unique resource ID for an evaluation. * **ResourceType** *(string) --* **[REQUIRED]** The type of resource being evaluated. * **ResourceConfiguration** *(string) --* **[REQUIRED]** The resource definition to be evaluated as per the resource configuration schema type. * **ResourceConfigurationSchemaType** *(string) --* The schema type of the resource configuration. Note: You can find the Resource type schema, or "CFN_RESOURCE_SCHEMA", in "*Amazon Web Services public extensions*" within the CloudFormation registry or with the following CLI commmand: "aws cloudformation describe- type --type-name "AWS::S3::Bucket" --type RESOURCE".For more information, see Managing extensions through the CloudFormation registry and Amazon Web Services resource and property types reference in the CloudFormation User Guide. * **EvaluationContext** (*dict*) -- Returns an "EvaluationContext" object. * **EvaluationContextIdentifier** *(string) --* A unique EvaluationContextIdentifier ID for an EvaluationContext. * **EvaluationMode** (*string*) -- **[REQUIRED]** The mode of an evaluation. Note: The only valid value for this API is "PROACTIVE". * **EvaluationTimeout** (*integer*) -- The timeout for an evaluation. The default is 900 seconds. You cannot specify a number greater than 3600. If you specify 0, Config uses the default. * **ClientToken** (*string*) -- A client token is a unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request using one of these actions, specify a client token in the request. Note: Avoid reusing the same client token for other API requests. If you retry a request that completed successfully using the same client token and the same parameters, the retry succeeds without performing any further actions. If you retry a successful request using the same client token, but one or more of the parameters are different, other than the Region or Availability Zone, the retry fails with an IdempotentParameterMismatch error. Return type: dict Returns: **Response Syntax** { 'ResourceEvaluationId': 'string' } **Response Structure** * *(dict) --* * **ResourceEvaluationId** *(string) --* A unique ResourceEvaluationId that is associated with a single execution. **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.IdempotentParameterMismatch" ConfigService / Client / describe_conformance_pack_status describe_conformance_pack_status ******************************** 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 **Request Syntax** response = client.describe_conformance_pack_status( ConformancePackNames=[ 'string', ], Limit=123, NextToken='string' ) Parameters: * **ConformancePackNames** (*list*) -- Comma-separated list of conformance pack names. * *(string) --* * **Limit** (*integer*) -- The maximum number of conformance packs status returned on each page. * **NextToken** (*string*) -- The "nextToken" string returned in a previous request that you use to request the next page of results in a paginated response. Return type: 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** * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidParameterValueException" ConfigService / Client / get_aggregate_config_rule_compliance_summary get_aggregate_config_rule_compliance_summary ******************************************** ConfigService.Client.get_aggregate_config_rule_compliance_summary(**kwargs) Returns the number of compliant and noncompliant rules for one or more accounts and regions in an aggregator. Note: The results can return an empty result page, but if you have a nextToken, the results are displayed on the next page. See also: AWS API Documentation **Request Syntax** response = client.get_aggregate_config_rule_compliance_summary( ConfigurationAggregatorName='string', Filters={ 'AccountId': 'string', 'AwsRegion': 'string' }, GroupByKey='ACCOUNT_ID'|'AWS_REGION', Limit=123, NextToken='string' ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **Filters** (*dict*) -- Filters the results based on the ConfigRuleComplianceSummaryFilters object. * **AccountId** *(string) --* The 12-digit account ID of the source account. * **AwsRegion** *(string) --* The source region where the data is aggregated. * **GroupByKey** (*string*) -- Groups the result based on ACCOUNT_ID or AWS_REGION. * **Limit** (*integer*) -- The maximum number of evaluation results returned on each page. The default is 1000. You cannot specify a number greater than 1000. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'GroupByKey': 'string', 'AggregateComplianceCounts': [ { 'GroupName': 'string', 'ComplianceSummary': { 'CompliantResourceCount': { 'CappedCount': 123, 'CapExceeded': True|False }, 'NonCompliantResourceCount': { 'CappedCount': 123, 'CapExceeded': True|False }, 'ComplianceSummaryTimestamp': datetime(2015, 1, 1) } }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **GroupByKey** *(string) --* Groups the result based on ACCOUNT_ID or AWS_REGION. * **AggregateComplianceCounts** *(list) --* Returns a list of AggregateComplianceCounts object. * *(dict) --* Returns the number of compliant and noncompliant rules for one or more accounts and regions in an aggregator. * **GroupName** *(string) --* The 12-digit account ID or region based on the GroupByKey value. * **ComplianceSummary** *(dict) --* The number of compliant and noncompliant Config rules. * **CompliantResourceCount** *(dict) --* The number of Config rules or Amazon Web Services resources that are compliant, up to a maximum of 25 for rules and 100 for resources. * **CappedCount** *(integer) --* The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item. * **CapExceeded** *(boolean) --* Indicates whether the maximum count is reached. * **NonCompliantResourceCount** *(dict) --* The number of Config rules or Amazon Web Services resources that are noncompliant, up to a maximum of 25 for rules and 100 for resources. * **CappedCount** *(integer) --* The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item. * **CapExceeded** *(boolean) --* Indicates whether the maximum count is reached. * **ComplianceSummaryTimestamp** *(datetime) --* The time that Config created the compliance summary. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.NoSuchConfigurationAggregatorEx ception" ConfigService / Client / describe_retention_configurations describe_retention_configurations ********************************* ConfigService.Client.describe_retention_configurations(**kwargs) Returns the details of one or more retention configurations. If the retention configuration name is not specified, this operation returns the details for all the retention configurations for that account. Note: Currently, Config supports only one retention configuration per region in your account. See also: AWS API Documentation **Request Syntax** response = client.describe_retention_configurations( RetentionConfigurationNames=[ 'string', ], NextToken='string' ) Parameters: * **RetentionConfigurationNames** (*list*) -- A list of names of retention configurations for which you want details. If you do not specify a name, Config returns details for all the retention configurations for that account. Note: Currently, Config supports only one retention configuration per region in your account. * *(string) --* * **NextToken** (*string*) -- The "nextToken" string 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** { 'RetentionConfigurations': [ { 'Name': 'string', 'RetentionPeriodInDays': 123 }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **RetentionConfigurations** *(list) --* Returns a retention configuration object. * *(dict) --* An object with the name of the retention configuration and the retention period in days. The object stores the configuration for data retention in Config. * **Name** *(string) --* The name of the retention configuration object. * **RetentionPeriodInDays** *(integer) --* Number of days Config stores your historical information. Note: Currently, only applicable to the configuration item history. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.NoSuchRetentionConfigurationExc eption" * "ConfigService.Client.exceptions.InvalidNextTokenException" ConfigService / Client / describe_organization_config_rules describe_organization_config_rules ********************************** ConfigService.Client.describe_organization_config_rules(**kwargs) Returns a list of organization Config rules. Note: When you specify the limit and the next token, you receive a paginated response.Limit and next token are not applicable if you specify organization Config rule names. It is only applicable, when you request all the organization Config rules.*For accounts within an organization*If you deploy an organizational rule or conformance pack in an organization administrator account, and then establish a delegated administrator and deploy an organizational rule or conformance pack in the delegated administrator account, you won't be able to see the organizational rule or conformance pack in the organization administrator account from the delegated administrator account or see the organizational rule or conformance pack in the delegated administrator account from organization administrator account. The "DescribeOrganizationConfigRules" and "DescribeOrganizationConformancePacks" APIs can only see and interact with the organization-related resource that were deployed from within the account calling those APIs. See also: AWS API Documentation **Request Syntax** response = client.describe_organization_config_rules( OrganizationConfigRuleNames=[ 'string', ], Limit=123, NextToken='string' ) Parameters: * **OrganizationConfigRuleNames** (*list*) -- The names of organization Config rules for which you want details. If you do not specify any names, Config returns details for all your organization Config rules. * *(string) --* * **Limit** (*integer*) -- The maximum number of organization Config rules returned on each page. If you do no specify a number, Config uses the default. The default is 100. * **NextToken** (*string*) -- The "nextToken" string 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** { 'OrganizationConfigRules': [ { 'OrganizationConfigRuleName': 'string', 'OrganizationConfigRuleArn': 'string', 'OrganizationManagedRuleMetadata': { 'Description': 'string', 'RuleIdentifier': 'string', 'InputParameters': 'string', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours', 'ResourceTypesScope': [ 'string', ], 'ResourceIdScope': 'string', 'TagKeyScope': 'string', 'TagValueScope': 'string' }, 'OrganizationCustomRuleMetadata': { 'Description': 'string', 'LambdaFunctionArn': 'string', 'OrganizationConfigRuleTriggerTypes': [ 'ConfigurationItemChangeNotification'|'OversizedConfigurationItemChangeNotification'|'ScheduledNotification', ], 'InputParameters': 'string', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours', 'ResourceTypesScope': [ 'string', ], 'ResourceIdScope': 'string', 'TagKeyScope': 'string', 'TagValueScope': 'string' }, 'ExcludedAccounts': [ 'string', ], 'LastUpdateTime': datetime(2015, 1, 1), 'OrganizationCustomPolicyRuleMetadata': { 'Description': 'string', 'OrganizationConfigRuleTriggerTypes': [ 'ConfigurationItemChangeNotification'|'OversizedConfigurationItemChangeNotification', ], 'InputParameters': 'string', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours', 'ResourceTypesScope': [ 'string', ], 'ResourceIdScope': 'string', 'TagKeyScope': 'string', 'TagValueScope': 'string', 'PolicyRuntime': 'string', 'DebugLogDeliveryAccounts': [ 'string', ] } }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **OrganizationConfigRules** *(list) --* Returns a list of "OrganizationConfigRule" objects. * *(dict) --* An organization Config rule that has information about Config rules that Config creates in member accounts. * **OrganizationConfigRuleName** *(string) --* The name that you assign to organization Config rule. * **OrganizationConfigRuleArn** *(string) --* Amazon Resource Name (ARN) of organization Config rule. * **OrganizationManagedRuleMetadata** *(dict) --* An "OrganizationManagedRuleMetadata" object. * **Description** *(string) --* The description that you provide for your organization Config rule. * **RuleIdentifier** *(string) --* For organization config managed rules, a predefined identifier from a list. For example, "IAM_PASSWORD_POLICY" is a managed rule. To reference a managed rule, see Using Config managed rules. * **InputParameters** *(string) --* A string, in JSON format, that is passed to your organization Config rule Lambda function. * **MaximumExecutionFrequency** *(string) --* The maximum frequency with which Config runs evaluations for a rule. This is for an Config managed rule that is triggered at a periodic frequency. Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the "MaximumExecutionFrequency" parameter. * **ResourceTypesScope** *(list) --* The type of the Amazon Web Services resource that was evaluated. * *(string) --* * **ResourceIdScope** *(string) --* The ID of the Amazon Web Services resource that was evaluated. * **TagKeyScope** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **TagValueScope** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). * **OrganizationCustomRuleMetadata** *(dict) --* An "OrganizationCustomRuleMetadata" object. * **Description** *(string) --* The description that you provide for your organization Config rule. * **LambdaFunctionArn** *(string) --* The lambda function ARN. * **OrganizationConfigRuleTriggerTypes** *(list) --* The type of notification that triggers Config to run an evaluation for a rule. You can specify the following notification types: * "ConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers a configuration item as a result of a resource change. * "OversizedConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers an oversized configuration item. Config may generate this notification type when a resource changes and the notification exceeds the maximum size allowed by Amazon SNS. * "ScheduledNotification" - Triggers a periodic evaluation at the frequency specified for "MaximumExecutionFrequency". * *(string) --* * **InputParameters** *(string) --* A string, in JSON format, that is passed to your organization Config rule Lambda function. * **MaximumExecutionFrequency** *(string) --* The maximum frequency with which Config runs evaluations for a rule. Your custom rule is triggered when Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties. Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the "MaximumExecutionFrequency" parameter. * **ResourceTypesScope** *(list) --* The type of the Amazon Web Services resource that was evaluated. * *(string) --* * **ResourceIdScope** *(string) --* The ID of the Amazon Web Services resource that was evaluated. * **TagKeyScope** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **TagValueScope** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). * **ExcludedAccounts** *(list) --* A comma-separated list of accounts excluded from organization Config rule. * *(string) --* * **LastUpdateTime** *(datetime) --* The timestamp of the last update. * **OrganizationCustomPolicyRuleMetadata** *(dict) --* An object that specifies metadata for your organization's Config Custom Policy rule. The metadata includes the runtime system in use, which accounts have debug logging enabled, and other custom rule metadata, such as resource type, resource ID of Amazon Web Services resource, and organization trigger types that initiate Config to evaluate Amazon Web Services resources against a rule. * **Description** *(string) --* The description that you provide for your organization Config Custom Policy rule. * **OrganizationConfigRuleTriggerTypes** *(list) --* The type of notification that triggers Config to run an evaluation for a rule. For Config Custom Policy rules, Config supports change triggered notification types: * "ConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers a configuration item as a result of a resource change. * "OversizedConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers an oversized configuration item. Config may generate this notification type when a resource changes and the notification exceeds the maximum size allowed by Amazon SNS. * *(string) --* * **InputParameters** *(string) --* A string, in JSON format, that is passed to your organization Config Custom Policy rule. * **MaximumExecutionFrequency** *(string) --* The maximum frequency with which Config runs evaluations for a rule. Your Config Custom Policy rule is triggered when Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties. * **ResourceTypesScope** *(list) --* The type of the Amazon Web Services resource that was evaluated. * *(string) --* * **ResourceIdScope** *(string) --* The ID of the Amazon Web Services resource that was evaluated. * **TagKeyScope** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **TagValueScope** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). * **PolicyRuntime** *(string) --* The runtime system for your organization Config Custom Policy rules. Guard is a policy-as-code language that allows you to write policies that are enforced by Config Custom Policy rules. For more information about Guard, see the Guard GitHub Repository. * **DebugLogDeliveryAccounts** *(list) --* A list of accounts that you can enable debug logging for your organization Config Custom Policy rule. List is null when debug logging is enabled for all accounts. * *(string) --* * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.NoSuchOrganizationConfigRuleExc eption" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.OrganizationAccessDeniedExcepti on" ConfigService / Client / delete_pending_aggregation_request delete_pending_aggregation_request ********************************** ConfigService.Client.delete_pending_aggregation_request(**kwargs) Deletes pending authorization requests for a specified aggregator account in a specified region. See also: AWS API Documentation **Request Syntax** response = client.delete_pending_aggregation_request( RequesterAccountId='string', RequesterAwsRegion='string' ) Parameters: * **RequesterAccountId** (*string*) -- **[REQUIRED]** The 12-digit account ID of the account requesting to aggregate data. * **RequesterAwsRegion** (*string*) -- **[REQUIRED]** The region requesting to aggregate data. Returns: None **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" ConfigService / Client / describe_aggregate_compliance_by_config_rules describe_aggregate_compliance_by_config_rules ********************************************* ConfigService.Client.describe_aggregate_compliance_by_config_rules(**kwargs) Returns a list of compliant and noncompliant rules with the number of resources for compliant and noncompliant rules. Does not display rules that do not have compliance results. Note: The results can return an empty result page, but if you have a "nextToken", the results are displayed on the next page. See also: AWS API Documentation **Request Syntax** response = client.describe_aggregate_compliance_by_config_rules( ConfigurationAggregatorName='string', Filters={ 'ConfigRuleName': 'string', 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'AccountId': 'string', 'AwsRegion': 'string' }, Limit=123, NextToken='string' ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **Filters** (*dict*) -- Filters the results by ConfigRuleComplianceFilters object. * **ConfigRuleName** *(string) --* The name of the Config rule. * **ComplianceType** *(string) --* The rule compliance status. For the "ConfigRuleComplianceFilters" data type, Config supports only "COMPLIANT" and "NON_COMPLIANT". Config does not support the "NOT_APPLICABLE" and the "INSUFFICIENT_DATA" values. * **AccountId** *(string) --* The 12-digit account ID of the source account. * **AwsRegion** *(string) --* The source region where the data is aggregated. * **Limit** (*integer*) -- The maximum number of evaluation results returned on each page. The default is maximum. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'AggregateComplianceByConfigRules': [ { 'ConfigRuleName': 'string', 'Compliance': { 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'ComplianceContributorCount': { 'CappedCount': 123, 'CapExceeded': True|False } }, 'AccountId': 'string', 'AwsRegion': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **AggregateComplianceByConfigRules** *(list) --* Returns a list of AggregateComplianceByConfigRule object. * *(dict) --* Indicates whether an Config rule is compliant based on account ID, region, compliance, and rule name. A rule is compliant if all of the resources that the rule evaluated comply with it. It is noncompliant if any of these resources do not comply. * **ConfigRuleName** *(string) --* The name of the Config rule. * **Compliance** *(dict) --* Indicates whether an Amazon Web Services resource or Config rule is compliant and provides the number of contributors that affect the compliance. * **ComplianceType** *(string) --* Indicates whether an Amazon Web Services resource or Config rule is compliant. A resource is compliant if it complies with all of the Config rules that evaluate it. A resource is noncompliant if it does not comply with one or more of these rules. A rule is compliant if all of the resources that the rule evaluates comply with it. A rule is noncompliant if any of these resources do not comply. Config returns the "INSUFFICIENT_DATA" value when no evaluation results are available for the Amazon Web Services resource or Config rule. For the "Compliance" data type, Config supports only "COMPLIANT", "NON_COMPLIANT", and "INSUFFICIENT_DATA" values. Config does not support the "NOT_APPLICABLE" value for the "Compliance" data type. * **ComplianceContributorCount** *(dict) --* The number of Amazon Web Services resources or Config rules that cause a result of "NON_COMPLIANT", up to a maximum number. * **CappedCount** *(integer) --* The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item. * **CapExceeded** *(boolean) --* Indicates whether the maximum count is reached. * **AccountId** *(string) --* The 12-digit account ID of the source account. * **AwsRegion** *(string) --* The source region from where the data is aggregated. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.NoSuchConfigurationAggregatorEx ception" ConfigService / Client / put_remediation_exceptions put_remediation_exceptions ************************** ConfigService.Client.put_remediation_exceptions(**kwargs) A remediation exception is when a specified resource is no longer considered for auto-remediation. This API adds a new exception or updates an existing exception for a specified resource with a specified Config rule. Note: **Exceptions block auto remediation**Config generates a remediation exception when a problem occurs running a remediation action for a specified resource. Remediation exceptions blocks auto-remediation until the exception is cleared. Note: **Manual remediation is recommended when placing an exception**When placing an exception on an Amazon Web Services resource, it is recommended that remediation is set as manual remediation until the given Config rule for the specified resource evaluates the resource as "NON_COMPLIANT". Once the resource has been evaluated as "NON_COMPLIANT", you can add remediation exceptions and change the remediation type back from Manual to Auto if you want to use auto-remediation. Otherwise, using auto-remediation before a "NON_COMPLIANT" evaluation result can delete resources before the exception is applied. Note: **Exceptions can only be performed on non-compliant resources**Placing an exception can only be performed on resources that are "NON_COMPLIANT". If you use this API for "COMPLIANT" resources or resources that are "NOT_APPLICABLE", a remediation exception will not be generated. For more information on the conditions that initiate the possible Config evaluation results, see Concepts | Config Rules in the *Config Developer Guide*. Note: **Exceptions cannot be placed on service-linked remediation actions**You cannot place an exception on service-linked remediation actions, such as remediation actions put by an organizational conformance pack. Note: **Auto remediation can be initiated even for compliant resources**If you enable auto remediation for a specific Config rule using the PutRemediationConfigurations API or the Config console, it initiates the remediation process for all non- compliant resources for that specific rule. The auto remediation process relies on the compliance data snapshot which is captured on a periodic basis. Any non-compliant resource that is updated between the snapshot schedule will continue to be remediated based on the last known compliance data snapshot.This means that in some cases auto remediation can be initiated even for compliant resources, since the bootstrap processor uses a database that can have stale evaluation results based on the last known compliance data snapshot. See also: AWS API Documentation **Request Syntax** response = client.put_remediation_exceptions( ConfigRuleName='string', ResourceKeys=[ { 'ResourceType': 'string', 'ResourceId': 'string' }, ], Message='string', ExpirationTime=datetime(2015, 1, 1) ) Parameters: * **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule for which you want to create remediation exception. * **ResourceKeys** (*list*) -- **[REQUIRED]** An exception list of resource exception keys to be processed with the current request. Config adds exception for each resource key. For example, Config adds 3 exceptions for 3 resource keys. * *(dict) --* The details that identify a resource within Config, including the resource type and resource ID. * **ResourceType** *(string) --* The type of a resource. * **ResourceId** *(string) --* The ID of the resource (for example., sg-xxxxxx). * **Message** (*string*) -- The message contains an explanation of the exception. * **ExpirationTime** (*datetime*) -- The exception is automatically deleted after the expiration date. Return type: dict Returns: **Response Syntax** { 'FailedBatches': [ { 'FailureMessage': 'string', 'FailedItems': [ { 'ConfigRuleName': 'string', 'ResourceType': 'string', 'ResourceId': 'string', 'Message': 'string', 'ExpirationTime': datetime(2015, 1, 1) }, ] }, ] } **Response Structure** * *(dict) --* * **FailedBatches** *(list) --* Returns a list of failed remediation exceptions batch objects. Each object in the batch consists of a list of failed items and failure messages. * *(dict) --* List of each of the failed remediation exceptions with specific reasons. * **FailureMessage** *(string) --* Returns a failure message. For example, the auto- remediation has failed. * **FailedItems** *(list) --* Returns remediation exception resource key object of the failed items. * *(dict) --* An object that represents the details about the remediation exception. The details include the rule name, an explanation of an exception, the time when the exception will be deleted, the resource ID, and resource type. * **ConfigRuleName** *(string) --* The name of the Config rule. * **ResourceType** *(string) --* The type of a resource. * **ResourceId** *(string) --* The ID of the resource (for example., sg-xxxxxx). * **Message** *(string) --* An explanation of an remediation exception. * **ExpirationTime** *(datetime) --* The time when the remediation exception will be deleted. **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.InsufficientPermissionsExceptio n" ConfigService / Client / put_organization_conformance_pack put_organization_conformance_pack ********************************* ConfigService.Client.put_organization_conformance_pack(**kwargs) Deploys conformance packs across member accounts in an Amazon Web Services Organization. For information on how many organization conformance packs and how many Config rules you can have per account, see **Service Limits** in the *Config Developer Guide*. Only a management account and a delegated administrator can call this API. When calling this API with a delegated administrator, you must ensure Organizations "ListDelegatedAdministrator" permissions are added. An organization can have up to 3 delegated administrators. Warning: When you use "PutOrganizationConformancePack" to deploy conformance packs across member accounts, the operation can create Config rules and remediation actions without requiring "config:PutConfigRule" or "config:PutRemediationConfigurations" permissions in member account IAM policies.This API uses the "AWSServiceRoleForConfigConforms" service-linked role in each member account to create conformance pack resources. This service-linked role includes the permissions to create Config rules and remediation configurations, even if member account IAM policies explicitly deny these actions. This API enables organization service access for "config- multiaccountsetup.amazonaws.com" through the "EnableAWSServiceAccess" action and creates a service-linked role "AWSServiceRoleForConfigMultiAccountSetup" in the management or delegated administrator account of your organization. The service- linked role is created only when the role does not exist in the caller account. To use this API with delegated administrator, register a delegated administrator by calling Amazon Web Services Organization "register-delegate-admin" for "config- multiaccountsetup.amazonaws.com". Note: Prerequisite: Ensure you call "EnableAllFeatures" API to enable all features in an organization.You must specify either the "TemplateS3Uri" or the "TemplateBody" parameter, but not both. If you provide both Config uses the "TemplateS3Uri" parameter and ignores the "TemplateBody" parameter.Config sets the state of a conformance pack to CREATE_IN_PROGRESS and UPDATE_IN_PROGRESS until the conformance pack is created or updated. You cannot update a conformance pack while it is in this state. See also: AWS API Documentation **Request Syntax** response = client.put_organization_conformance_pack( OrganizationConformancePackName='string', TemplateS3Uri='string', TemplateBody='string', DeliveryS3Bucket='string', DeliveryS3KeyPrefix='string', ConformancePackInputParameters=[ { 'ParameterName': 'string', 'ParameterValue': 'string' }, ], ExcludedAccounts=[ 'string', ] ) Parameters: * **OrganizationConformancePackName** (*string*) -- **[REQUIRED]** Name of the organization conformance pack you want to create. * **TemplateS3Uri** (*string*) -- Location of file containing the template body. The uri must point to the conformance pack template (max size: 300 KB). Note: You must have access to read Amazon S3 bucket. In addition, in order to ensure a successful deployment, the template object must not be in an archived storage class if this parameter is passed. * **TemplateBody** (*string*) -- A string that contains the full conformance pack template body. Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. * **DeliveryS3Bucket** (*string*) -- The name of the Amazon S3 bucket where Config stores conformance pack templates. Note: This field is optional. If used, it must be prefixed with "awsconfigconforms". * **DeliveryS3KeyPrefix** (*string*) -- The prefix for the Amazon S3 bucket. Note: This field is optional. * **ConformancePackInputParameters** (*list*) -- A list of "ConformancePackInputParameter" objects. * *(dict) --* Input parameters in the form of key-value pairs for the conformance pack, both of which you define. Keys can have a maximum character length of 255 characters, and values can have a maximum length of 4096 characters. * **ParameterName** *(string) --* **[REQUIRED]** One part of a key-value pair. * **ParameterValue** *(string) --* **[REQUIRED]** Another part of the key-value pair. * **ExcludedAccounts** (*list*) -- A list of Amazon Web Services accounts to be excluded from an organization conformance pack while deploying a conformance pack. * *(string) --* Return type: dict Returns: **Response Syntax** { 'OrganizationConformancePackArn': 'string' } **Response Structure** * *(dict) --* * **OrganizationConformancePackArn** *(string) --* ARN of the organization conformance pack. **Exceptions** * "ConfigService.Client.exceptions.MaxNumberOfOrganizationConforma ncePacksExceededException" * "ConfigService.Client.exceptions.ResourceInUseException" * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.OrganizationAccessDeniedExcepti on" * "ConfigService.Client.exceptions.InsufficientPermissionsExceptio n" * "ConfigService.Client.exceptions.OrganizationConformancePackTemp lateValidationException" * "ConfigService.Client.exceptions.OrganizationAllFeaturesNotEnabl edException" * "ConfigService.Client.exceptions.NoAvailableOrganizationExceptio n" ConfigService / Client / list_tags_for_resource list_tags_for_resource ********************** ConfigService.Client.list_tags_for_resource(**kwargs) List the tags for Config resource. See also: AWS API Documentation **Request Syntax** response = client.list_tags_for_resource( ResourceArn='string', Limit=123, NextToken='string' ) Parameters: * **ResourceArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. The following resources are supported: * "ConfigurationRecorder" * "ConfigRule" * "OrganizationConfigRule" * "ConformancePack" * "OrganizationConformancePack" * "ConfigurationAggregator" * "AggregationAuthorization" * "StoredQuery" * **Limit** (*integer*) -- The maximum number of tags returned on each page. The limit maximum is 50. You cannot specify a number greater than 50. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **Tags** *(list) --* The tags for the resource. * *(dict) --* The tags for the resource. The metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters. * **Key** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **Value** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.ResourceNotFoundException" * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" ConfigService / Client / delete_stored_query delete_stored_query ******************* ConfigService.Client.delete_stored_query(**kwargs) Deletes the stored query for a single Amazon Web Services account and a single Amazon Web Services Region. See also: AWS API Documentation **Request Syntax** response = client.delete_stored_query( QueryName='string' ) Parameters: **QueryName** (*string*) -- **[REQUIRED]** The name of the query that you want to delete. Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.ResourceNotFoundException" ConfigService / Client / get_organization_config_rule_detailed_status get_organization_config_rule_detailed_status ******************************************** ConfigService.Client.get_organization_config_rule_detailed_status(**kwargs) Returns detailed status for each member account within an organization for a given organization Config rule. See also: AWS API Documentation **Request Syntax** response = client.get_organization_config_rule_detailed_status( OrganizationConfigRuleName='string', Filters={ 'AccountId': 'string', 'MemberAccountRuleStatus': 'CREATE_SUCCESSFUL'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_SUCCESSFUL'|'DELETE_FAILED'|'DELETE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_IN_PROGRESS'|'UPDATE_FAILED' }, Limit=123, NextToken='string' ) Parameters: * **OrganizationConfigRuleName** (*string*) -- **[REQUIRED]** The name of your organization Config rule for which you want status details for member accounts. * **Filters** (*dict*) -- A "StatusDetailFilters" object. * **AccountId** *(string) --* The 12-digit account ID of the member account within an organization. * **MemberAccountRuleStatus** *(string) --* Indicates deployment status for Config rule in the member account. When management account calls "PutOrganizationConfigRule" action for the first time, Config rule status is created in the member account. When management account calls "PutOrganizationConfigRule" action for the second time, Config rule status is updated in the member account. Config rule status is deleted when the management account deletes "OrganizationConfigRule" and disables service access for "config- multiaccountsetup.amazonaws.com". Config sets the state of the rule to: * "CREATE_SUCCESSFUL" when Config rule has been created in the member account. * "CREATE_IN_PROGRESS" when Config rule is being created in the member account. * "CREATE_FAILED" when Config rule creation has failed in the member account. * "DELETE_FAILED" when Config rule deletion has failed in the member account. * "DELETE_IN_PROGRESS" when Config rule is being deleted in the member account. * "DELETE_SUCCESSFUL" when Config rule has been deleted in the member account. * "UPDATE_SUCCESSFUL" when Config rule has been updated in the member account. * "UPDATE_IN_PROGRESS" when Config rule is being updated in the member account. * "UPDATE_FAILED" when Config rule deletion has failed in the member account. * **Limit** (*integer*) -- The maximum number of "OrganizationConfigRuleDetailedStatus" returned on each page. If you do not specify a number, Config uses the default. The default is 100. * **NextToken** (*string*) -- The "nextToken" string 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** { 'OrganizationConfigRuleDetailedStatus': [ { 'AccountId': 'string', 'ConfigRuleName': 'string', 'MemberAccountRuleStatus': 'CREATE_SUCCESSFUL'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_SUCCESSFUL'|'DELETE_FAILED'|'DELETE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_IN_PROGRESS'|'UPDATE_FAILED', 'ErrorCode': 'string', 'ErrorMessage': 'string', 'LastUpdateTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **OrganizationConfigRuleDetailedStatus** *(list) --* A list of "MemberAccountStatus" objects. * *(dict) --* Organization Config rule creation or deletion status in each member account. This includes the name of the rule, the status, error code and error message when the rule creation or deletion failed. * **AccountId** *(string) --* The 12-digit account ID of a member account. * **ConfigRuleName** *(string) --* The name of Config rule deployed in the member account. * **MemberAccountRuleStatus** *(string) --* Indicates deployment status for Config rule in the member account. When management account calls "PutOrganizationConfigRule" action for the first time, Config rule status is created in the member account. When management account calls "PutOrganizationConfigRule" action for the second time, Config rule status is updated in the member account. Config rule status is deleted when the management account deletes "OrganizationConfigRule" and disables service access for "config- multiaccountsetup.amazonaws.com". Config sets the state of the rule to: * "CREATE_SUCCESSFUL" when Config rule has been created in the member account. * "CREATE_IN_PROGRESS" when Config rule is being created in the member account. * "CREATE_FAILED" when Config rule creation has failed in the member account. * "DELETE_FAILED" when Config rule deletion has failed in the member account. * "DELETE_IN_PROGRESS" when Config rule is being deleted in the member account. * "DELETE_SUCCESSFUL" when Config rule has been deleted in the member account. * "UPDATE_SUCCESSFUL" when Config rule has been updated in the member account. * "UPDATE_IN_PROGRESS" when Config rule is being updated in the member account. * "UPDATE_FAILED" when Config rule deletion has failed in the member account. * **ErrorCode** *(string) --* An error code that is returned when Config rule creation or deletion failed in the member account. * **ErrorMessage** *(string) --* An error message indicating that Config rule account creation or deletion has failed due to an error in the member account. * **LastUpdateTime** *(datetime) --* The timestamp of the last status update. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.NoSuchOrganizationConfigRuleExc eption" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.OrganizationAccessDeniedExcepti on" ConfigService / Client / untag_resource untag_resource ************** ConfigService.Client.untag_resource(**kwargs) Deletes specified tags from a resource. See also: AWS API Documentation **Request Syntax** response = client.untag_resource( ResourceArn='string', TagKeys=[ 'string', ] ) Parameters: * **ResourceArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. The following resources are supported: * "ConfigurationRecorder" * "ConfigRule" * "OrganizationConfigRule" * "ConformancePack" * "OrganizationConformancePack" * "ConfigurationAggregator" * "AggregationAuthorization" * "StoredQuery" * **TagKeys** (*list*) -- **[REQUIRED]** The keys of the tags to be removed. * *(string) --* Returns: None **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.ResourceNotFoundException" ConfigService / Client / delete_organization_config_rule delete_organization_config_rule ******************************* ConfigService.Client.delete_organization_config_rule(**kwargs) Deletes the specified organization Config rule and all of its evaluation results from all member accounts in that organization. Only a management account and a delegated administrator account can delete an organization Config rule. When calling this API with a delegated administrator, you must ensure Organizations "ListDelegatedAdministrator" permissions are added. Config sets the state of a rule to DELETE_IN_PROGRESS until the deletion is complete. You cannot update a rule while it is in this state. Note: Recommendation: Consider excluding the "AWS::Config::ResourceCompliance" resource type from recording before deleting rulesDeleting rules creates configuration items (CIs) for "AWS::Config::ResourceCompliance" that can affect your costs for the configuration recorder. If you are deleting rules which evaluate a large number of resource types, this can lead to a spike in the number of CIs recorded.To avoid the associated costs, you can opt to disable recording for the "AWS::Config::ResourceCompliance" resource type before deleting rules, and re-enable recording after the rules have been deleted.However, since deleting rules is an asynchronous process, it might take an hour or more to complete. During the time when recording is disabled for "AWS::Config::ResourceCompliance", rule evaluations will not be recorded in the associated resource’s history. See also: AWS API Documentation **Request Syntax** response = client.delete_organization_config_rule( OrganizationConfigRuleName='string' ) Parameters: **OrganizationConfigRuleName** (*string*) -- **[REQUIRED]** The name of organization Config rule that you want to delete. Returns: None **Exceptions** * "ConfigService.Client.exceptions.NoSuchOrganizationConfigRuleExc eption" * "ConfigService.Client.exceptions.ResourceInUseException" * "ConfigService.Client.exceptions.OrganizationAccessDeniedExcepti on" ConfigService / Client / describe_delivery_channel_status describe_delivery_channel_status ******************************** ConfigService.Client.describe_delivery_channel_status(**kwargs) Returns the current status of the specified delivery channel. If a delivery channel is not specified, this operation returns the current status of all delivery channels associated with the account. Note: Currently, you can specify only one delivery channel per region in your account. See also: AWS API Documentation **Request Syntax** response = client.describe_delivery_channel_status( DeliveryChannelNames=[ 'string', ] ) Parameters: **DeliveryChannelNames** (*list*) -- A list of delivery channel names. * *(string) --* Return type: dict Returns: **Response Syntax** { 'DeliveryChannelsStatus': [ { 'name': 'string', 'configSnapshotDeliveryInfo': { 'lastStatus': 'Success'|'Failure'|'Not_Applicable', 'lastErrorCode': 'string', 'lastErrorMessage': 'string', 'lastAttemptTime': datetime(2015, 1, 1), 'lastSuccessfulTime': datetime(2015, 1, 1), 'nextDeliveryTime': datetime(2015, 1, 1) }, 'configHistoryDeliveryInfo': { 'lastStatus': 'Success'|'Failure'|'Not_Applicable', 'lastErrorCode': 'string', 'lastErrorMessage': 'string', 'lastAttemptTime': datetime(2015, 1, 1), 'lastSuccessfulTime': datetime(2015, 1, 1), 'nextDeliveryTime': datetime(2015, 1, 1) }, 'configStreamDeliveryInfo': { 'lastStatus': 'Success'|'Failure'|'Not_Applicable', 'lastErrorCode': 'string', 'lastErrorMessage': 'string', 'lastStatusChangeTime': datetime(2015, 1, 1) } }, ] } **Response Structure** * *(dict) --* The output for the DescribeDeliveryChannelStatus action. * **DeliveryChannelsStatus** *(list) --* A list that contains the status of a specified delivery channel. * *(dict) --* The status of a specified delivery channel. Valid values: "Success" | "Failure" * **name** *(string) --* The name of the delivery channel. * **configSnapshotDeliveryInfo** *(dict) --* A list containing the status of the delivery of the snapshot to the specified Amazon S3 bucket. * **lastStatus** *(string) --* Status of the last attempted delivery. * **lastErrorCode** *(string) --* The error code from the last attempted delivery. * **lastErrorMessage** *(string) --* The error message from the last attempted delivery. * **lastAttemptTime** *(datetime) --* The time of the last attempted delivery. * **lastSuccessfulTime** *(datetime) --* The time of the last successful delivery. * **nextDeliveryTime** *(datetime) --* The time that the next delivery occurs. * **configHistoryDeliveryInfo** *(dict) --* A list that contains the status of the delivery of the configuration history to the specified Amazon S3 bucket. * **lastStatus** *(string) --* Status of the last attempted delivery. * **lastErrorCode** *(string) --* The error code from the last attempted delivery. * **lastErrorMessage** *(string) --* The error message from the last attempted delivery. * **lastAttemptTime** *(datetime) --* The time of the last attempted delivery. * **lastSuccessfulTime** *(datetime) --* The time of the last successful delivery. * **nextDeliveryTime** *(datetime) --* The time that the next delivery occurs. * **configStreamDeliveryInfo** *(dict) --* A list containing the status of the delivery of the configuration stream notification to the specified Amazon SNS topic. * **lastStatus** *(string) --* Status of the last attempted delivery. **Note** Providing an SNS topic on a DeliveryChannel for Config is optional. If the SNS delivery is turned off, the last status will be **Not_Applicable**. * **lastErrorCode** *(string) --* The error code from the last attempted delivery. * **lastErrorMessage** *(string) --* The error message from the last attempted delivery. * **lastStatusChangeTime** *(datetime) --* The time from the last status change. **Exceptions** * "ConfigService.Client.exceptions.NoSuchDeliveryChannelException" ConfigService / Client / describe_organization_conformance_pack_statuses describe_organization_conformance_pack_statuses *********************************************** ConfigService.Client.describe_organization_conformance_pack_statuses(**kwargs) Provides organization conformance pack deployment status for an organization. Note: The status is not considered successful until organization conformance pack is successfully deployed in all the member accounts with an exception of excluded accounts.When you specify the limit and the next token, you receive a paginated response. Limit and next token are not applicable if you specify organization conformance pack names. They are only applicable, when you request all the organization conformance packs. See also: AWS API Documentation **Request Syntax** response = client.describe_organization_conformance_pack_statuses( OrganizationConformancePackNames=[ 'string', ], Limit=123, NextToken='string' ) Parameters: * **OrganizationConformancePackNames** (*list*) -- The names of organization conformance packs for which you want status details. If you do not specify any names, Config returns details for all your organization conformance packs. * *(string) --* * **Limit** (*integer*) -- The maximum number of OrganizationConformancePackStatuses returned on each page. If you do no specify a number, Config uses the default. The default is 100. * **NextToken** (*string*) -- The nextToken string 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** { 'OrganizationConformancePackStatuses': [ { 'OrganizationConformancePackName': 'string', 'Status': 'CREATE_SUCCESSFUL'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_SUCCESSFUL'|'DELETE_FAILED'|'DELETE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_IN_PROGRESS'|'UPDATE_FAILED', 'ErrorCode': 'string', 'ErrorMessage': 'string', 'LastUpdateTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **OrganizationConformancePackStatuses** *(list) --* A list of "OrganizationConformancePackStatus" objects. * *(dict) --* Returns the status for an organization conformance pack in an organization. * **OrganizationConformancePackName** *(string) --* The name that you assign to organization conformance pack. * **Status** *(string) --* Indicates deployment status of an organization conformance pack. When management account calls PutOrganizationConformancePack for the first time, conformance pack status is created in all the member accounts. When management account calls PutOrganizationConformancePack for the second time, conformance pack status is updated in all the member accounts. Additionally, conformance pack status is updated when one or more member accounts join or leave an organization. Conformance pack status is deleted when the management account deletes OrganizationConformancePack in all the member accounts and disables service access for "config- multiaccountsetup.amazonaws.com". Config sets the state of the conformance pack to: * "CREATE_SUCCESSFUL" when an organization conformance pack has been successfully created in all the member accounts. * "CREATE_IN_PROGRESS" when an organization conformance pack creation is in progress. * "CREATE_FAILED" when an organization conformance pack creation failed in one or more member accounts within that organization. * "DELETE_FAILED" when an organization conformance pack deletion failed in one or more member accounts within that organization. * "DELETE_IN_PROGRESS" when an organization conformance pack deletion is in progress. * "DELETE_SUCCESSFUL" when an organization conformance pack has been successfully deleted from all the member accounts. * "UPDATE_SUCCESSFUL" when an organization conformance pack has been successfully updated in all the member accounts. * "UPDATE_IN_PROGRESS" when an organization conformance pack update is in progress. * "UPDATE_FAILED" when an organization conformance pack update failed in one or more member accounts within that organization. * **ErrorCode** *(string) --* An error code that is returned when organization conformance pack creation or deletion has failed in a member account. * **ErrorMessage** *(string) --* An error message indicating that organization conformance pack creation or deletion failed due to an error. * **LastUpdateTime** *(datetime) --* The timestamp of the last update. * **NextToken** *(string) --* The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.NoSuchOrganizationConformancePa ckException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.OrganizationAccessDeniedExcepti on" ConfigService / Client / delete_remediation_configuration delete_remediation_configuration ******************************** ConfigService.Client.delete_remediation_configuration(**kwargs) Deletes the remediation configuration. See also: AWS API Documentation **Request Syntax** response = client.delete_remediation_configuration( ConfigRuleName='string', ResourceType='string' ) Parameters: * **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule for which you want to delete remediation configuration. * **ResourceType** (*string*) -- The type of a resource. Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "ConfigService.Client.exceptions.NoSuchRemediationConfigurationE xception" * "ConfigService.Client.exceptions.RemediationInProgressException" * "ConfigService.Client.exceptions.InsufficientPermissionsExceptio n" * "ConfigService.Client.exceptions.InvalidParameterValueException" ConfigService / Client / get_waiter get_waiter ********** ConfigService.Client.get_waiter(waiter_name) Returns an object that can wait for some condition. Parameters: **waiter_name** (*str*) -- The name of the waiter to get. See the waiters section of the service docs for a list of available waiters. Returns: The specified waiter object. Return type: "botocore.waiter.Waiter" ConfigService / Client / describe_aggregate_compliance_by_conformance_packs describe_aggregate_compliance_by_conformance_packs ************************************************** ConfigService.Client.describe_aggregate_compliance_by_conformance_packs(**kwargs) Returns a list of the existing and deleted conformance packs and their associated compliance status with the count of compliant and noncompliant Config rules within each conformance pack. Also returns the total rule count which includes compliant rules, noncompliant rules, and rules that cannot be evaluated due to insufficient data. Note: The results can return an empty result page, but if you have a "nextToken", the results are displayed on the next page. See also: AWS API Documentation **Request Syntax** response = client.describe_aggregate_compliance_by_conformance_packs( ConfigurationAggregatorName='string', Filters={ 'ConformancePackName': 'string', 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'INSUFFICIENT_DATA', 'AccountId': 'string', 'AwsRegion': 'string' }, Limit=123, NextToken='string' ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **Filters** (*dict*) -- Filters the result by "AggregateConformancePackComplianceFilters" object. * **ConformancePackName** *(string) --* The name of the conformance pack. * **ComplianceType** *(string) --* The compliance status of the conformance pack. * **AccountId** *(string) --* The 12-digit Amazon Web Services account ID of the source account. * **AwsRegion** *(string) --* The source Amazon Web Services Region from where the data is aggregated. * **Limit** (*integer*) -- The maximum number of conformance packs compliance details returned on each page. The default is maximum. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'AggregateComplianceByConformancePacks': [ { 'ConformancePackName': 'string', 'Compliance': { 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'INSUFFICIENT_DATA', 'CompliantRuleCount': 123, 'NonCompliantRuleCount': 123, 'TotalRuleCount': 123 }, 'AccountId': 'string', 'AwsRegion': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **AggregateComplianceByConformancePacks** *(list) --* Returns the "AggregateComplianceByConformancePack" object. * *(dict) --* Provides aggregate compliance of the conformance pack. Indicates whether a conformance pack is compliant based on the name of the conformance pack, account ID, and region. A conformance pack is compliant if all of the rules in a conformance packs are compliant. It is noncompliant if any of the rules are not compliant. The compliance status of a conformance pack is INSUFFICIENT_DATA only if all rules within a conformance pack cannot be evaluated due to insufficient data. If some of the rules in a conformance pack are compliant but the compliance status of other rules in that same conformance pack is INSUFFICIENT_DATA, the conformance pack shows compliant. * **ConformancePackName** *(string) --* The name of the conformance pack. * **Compliance** *(dict) --* The compliance status of the conformance pack. * **ComplianceType** *(string) --* The compliance status of the conformance pack. * **CompliantRuleCount** *(integer) --* The number of compliant Config Rules. * **NonCompliantRuleCount** *(integer) --* The number of noncompliant Config Rules. * **TotalRuleCount** *(integer) --* Total number of compliant rules, noncompliant rules, and the rules that do not have any applicable resources to evaluate upon resulting in insufficient data. * **AccountId** *(string) --* The 12-digit Amazon Web Services account ID of the source account. * **AwsRegion** *(string) --* The source Amazon Web Services Region from where the data is aggregated. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.NoSuchConfigurationAggregatorEx ception" ConfigService / Client / start_remediation_execution start_remediation_execution *************************** ConfigService.Client.start_remediation_execution(**kwargs) Runs an on-demand remediation for the specified Config rules against the last known remediation configuration. It runs an execution against the current state of your resources. Remediation execution is asynchronous. You can specify up to 100 resource keys per request. An existing StartRemediationExecution call for the specified resource keys must complete before you can call the API again. See also: AWS API Documentation **Request Syntax** response = client.start_remediation_execution( ConfigRuleName='string', ResourceKeys=[ { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string' }, ] ) Parameters: * **ConfigRuleName** (*string*) -- **[REQUIRED]** The list of names of Config rules that you want to run remediation execution for. * **ResourceKeys** (*list*) -- **[REQUIRED]** A list of resource keys to be processed with the current request. Each element in the list consists of the resource type and resource ID. * *(dict) --* The details that identify a resource within Config, including the resource type and resource ID. * **resourceType** *(string) --* **[REQUIRED]** The resource type. * **resourceId** *(string) --* **[REQUIRED]** The ID of the resource (for example., sg-xxxxxx). Return type: dict Returns: **Response Syntax** { 'FailureMessage': 'string', 'FailedItems': [ { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string' }, ] } **Response Structure** * *(dict) --* * **FailureMessage** *(string) --* Returns a failure message. For example, the resource is already compliant. * **FailedItems** *(list) --* For resources that have failed to start execution, the API returns a resource key object. * *(dict) --* The details that identify a resource within Config, including the resource type and resource ID. * **resourceType** *(string) --* The resource type. * **resourceId** *(string) --* The ID of the resource (for example., sg-xxxxxx). **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.InsufficientPermissionsExceptio n" * "ConfigService.Client.exceptions.NoSuchRemediationConfigurationE xception" ConfigService / Client / delete_organization_conformance_pack delete_organization_conformance_pack ************************************ ConfigService.Client.delete_organization_conformance_pack(**kwargs) Deletes the specified organization conformance pack and all of the Config rules and remediation actions from all member accounts in that organization. Only a management account or a delegated administrator account can delete an organization conformance pack. When calling this API with a delegated administrator, you must ensure Organizations "ListDelegatedAdministrator" permissions are added. Config sets the state of a conformance pack to DELETE_IN_PROGRESS until the deletion is complete. You cannot update a conformance pack while it is in this state. Note: Recommendation: Consider excluding the "AWS::Config::ResourceCompliance" resource type from recording before deleting rulesDeleting rules creates configuration items (CIs) for "AWS::Config::ResourceCompliance" that can affect your costs for the configuration recorder. If you are deleting rules which evaluate a large number of resource types, this can lead to a spike in the number of CIs recorded.To avoid the associated costs, you can opt to disable recording for the "AWS::Config::ResourceCompliance" resource type before deleting rules, and re-enable recording after the rules have been deleted.However, since deleting rules is an asynchronous process, it might take an hour or more to complete. During the time when recording is disabled for "AWS::Config::ResourceCompliance", rule evaluations will not be recorded in the associated resource’s history. See also: AWS API Documentation **Request Syntax** response = client.delete_organization_conformance_pack( OrganizationConformancePackName='string' ) Parameters: **OrganizationConformancePackName** (*string*) -- **[REQUIRED]** The name of organization conformance pack that you want to delete. Returns: None **Exceptions** * "ConfigService.Client.exceptions.NoSuchOrganizationConformancePa ckException" * "ConfigService.Client.exceptions.ResourceInUseException" * "ConfigService.Client.exceptions.OrganizationAccessDeniedExcepti on" ConfigService / Client / batch_get_aggregate_resource_config batch_get_aggregate_resource_config *********************************** ConfigService.Client.batch_get_aggregate_resource_config(**kwargs) Returns the current configuration items for resources that are present in your Config aggregator. The operation also returns a list of resources that are not processed in the current request. If there are no unprocessed resources, the operation returns an empty "unprocessedResourceIdentifiers" list. Note: * The API does not return results for deleted resources. * The API does not return tags and relationships. See also: AWS API Documentation **Request Syntax** response = client.batch_get_aggregate_resource_config( ConfigurationAggregatorName='string', ResourceIdentifiers=[ { 'SourceAccountId': 'string', 'SourceRegion': 'string', 'ResourceId': 'string', 'ResourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'ResourceName': 'string' }, ] ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **ResourceIdentifiers** (*list*) -- **[REQUIRED]** A list of aggregate ResourceIdentifiers objects. * *(dict) --* The details that identify a resource that is collected by Config aggregator, including the resource type, ID, (if available) the custom resource name, the source account, and source region. * **SourceAccountId** *(string) --* **[REQUIRED]** The 12-digit account ID of the source account. * **SourceRegion** *(string) --* **[REQUIRED]** The source region where data is aggregated. * **ResourceId** *(string) --* **[REQUIRED]** The ID of the Amazon Web Services resource. * **ResourceType** *(string) --* **[REQUIRED]** The type of the Amazon Web Services resource. * **ResourceName** *(string) --* The name of the Amazon Web Services resource. Return type: dict Returns: **Response Syntax** { 'BaseConfigurationItems': [ { 'version': 'string', 'accountId': 'string', 'configurationItemCaptureTime': datetime(2015, 1, 1), 'configurationItemStatus': 'OK'|'ResourceDiscovered'|'ResourceNotRecorded'|'ResourceDeleted'|'ResourceDeletedNotRecorded', 'configurationStateId': 'string', 'arn': 'string', 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'resourceId': 'string', 'resourceName': 'string', 'awsRegion': 'string', 'availabilityZone': 'string', 'resourceCreationTime': datetime(2015, 1, 1), 'configuration': 'string', 'supplementaryConfiguration': { 'string': 'string' }, 'recordingFrequency': 'CONTINUOUS'|'DAILY', 'configurationItemDeliveryTime': datetime(2015, 1, 1) }, ], 'UnprocessedResourceIdentifiers': [ { 'SourceAccountId': 'string', 'SourceRegion': 'string', 'ResourceId': 'string', 'ResourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'ResourceName': 'string' }, ] } **Response Structure** * *(dict) --* * **BaseConfigurationItems** *(list) --* A list that contains the current configuration of one or more resources. * *(dict) --* The detailed configurations of a specified resource. * **version** *(string) --* The version number of the resource configuration. * **accountId** *(string) --* The 12-digit Amazon Web Services account ID associated with the resource. * **configurationItemCaptureTime** *(datetime) --* The time when the recording of configuration changes was initiated for the resource. * **configurationItemStatus** *(string) --* The configuration item status. Valid values include: * OK – The resource configuration has been updated. * ResourceDiscovered – The resource was newly discovered. * ResourceNotRecorded – The resource was discovered, but its configuration was not recorded since the recorder doesn't record resources of this type. * ResourceDeleted – The resource was deleted * ResourceDeletedNotRecorded – The resource was deleted, but its configuration was not recorded since the recorder doesn't record resources of this type. * **configurationStateId** *(string) --* An identifier that indicates the ordering of the configuration items of a resource. * **arn** *(string) --* The Amazon Resource Name (ARN) of the resource. * **resourceType** *(string) --* The type of Amazon Web Services resource. * **resourceId** *(string) --* The ID of the resource (for example., sg-xxxxxx). * **resourceName** *(string) --* The custom name of the resource, if available. * **awsRegion** *(string) --* The region where the resource resides. * **availabilityZone** *(string) --* The Availability Zone associated with the resource. * **resourceCreationTime** *(datetime) --* The time stamp when the resource was created. * **configuration** *(string) --* A JSON-encoded string that contains the contents for the resource configuration. This string needs to be deserialized using "json.loads()" before you can access the contents. * **supplementaryConfiguration** *(dict) --* A string to string map that contains additional contents for the resource configuration.Config returns this field for certain resource types to supplement the information returned for the "configuration" field. This string needs to be deserialized using "json.loads()" before you can access the contents. * *(string) --* * *(string) --* * **recordingFrequency** *(string) --* The recording frequency that Config uses to record configuration changes for the resource. Note: This field only appears in the API response when "DAILY" recording is enabled for a resource type. If this field is not present, "CONTINUOUS" recording is enabled for that resource type. For more information on daily recording and continuous recording, see Recording Frequency in the *Config Developer Guide*. * **configurationItemDeliveryTime** *(datetime) --* The time when configuration changes for the resource were delivered. Note: This field is optional and is not guaranteed to be present in a configuration item (CI). If you are using daily recording, this field will be populated. However, if you are using continuous recording, this field will be omitted since the delivery time is instantaneous as the CI is available right away. For more information on daily recording and continuous recording, see Recording Frequency in the *Config Developer Guide*. * **UnprocessedResourceIdentifiers** *(list) --* A list of resource identifiers that were not processed with current scope. The list is empty if all the resources are processed. * *(dict) --* The details that identify a resource that is collected by Config aggregator, including the resource type, ID, (if available) the custom resource name, the source account, and source region. * **SourceAccountId** *(string) --* The 12-digit account ID of the source account. * **SourceRegion** *(string) --* The source region where data is aggregated. * **ResourceId** *(string) --* The ID of the Amazon Web Services resource. * **ResourceType** *(string) --* The type of the Amazon Web Services resource. * **ResourceName** *(string) --* The name of the Amazon Web Services resource. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.NoSuchConfigurationAggregatorEx ception" ConfigService / Client / put_config_rule put_config_rule *************** ConfigService.Client.put_config_rule(**kwargs) Adds or updates an Config rule to evaluate if your Amazon Web Services resources comply with your desired configurations. For information on how many Config rules you can have per account, see **Service Limits** in the *Config Developer Guide*. There are two types of rules: *Config Managed Rules* and *Config Custom Rules*. You can use "PutConfigRule" to create both Config Managed Rules and Config Custom Rules. Config Managed Rules are predefined, customizable rules created by Config. For a list of managed rules, see List of Config Managed Rules. If you are adding an Config managed rule, you must specify the rule's identifier for the "SourceIdentifier" key. Config Custom Rules are rules that you create from scratch. There are two ways to create Config custom rules: with Lambda functions ( Lambda Developer Guide) and with Guard ( Guard GitHub Repository), a policy-as-code language. Config custom rules created with Lambda are called *Config Custom Lambda Rules* and Config custom rules created with Guard are called *Config Custom Policy Rules*. If you are adding a new Config Custom Lambda rule, you first need to create an Lambda function that the rule invokes to evaluate your resources. When you use "PutConfigRule" to add a Custom Lambda rule to Config, you must specify the Amazon Resource Name (ARN) that Lambda assigns to the function. You specify the ARN in the "SourceIdentifier" key. This key is part of the "Source" object, which is part of the "ConfigRule" object. For any new Config rule that you add, specify the "ConfigRuleName" in the "ConfigRule" object. Do not specify the "ConfigRuleArn" or the "ConfigRuleId". These values are generated by Config for new rules. If you are updating a rule that you added previously, you can specify the rule by "ConfigRuleName", "ConfigRuleId", or "ConfigRuleArn" in the "ConfigRule" data type that you use in this request. For more information about developing and using Config rules, see Evaluating Resources with Config Rules in the *Config Developer Guide*. Note: **Tags are added at creation and cannot be updated with this operation**"PutConfigRule" is an idempotent API. Subsequent requests won’t create a duplicate resource if one was already created. If a following request has different "tags" values, Config will ignore these differences and treat it as an idempotent request of the previous. In this case, "tags" will not be updated, even if they are different.Use TagResource and UntagResource to update tags after creation. See also: AWS API Documentation **Request Syntax** response = client.put_config_rule( ConfigRule={ 'ConfigRuleName': 'string', 'ConfigRuleArn': 'string', 'ConfigRuleId': 'string', 'Description': 'string', 'Scope': { 'ComplianceResourceTypes': [ 'string', ], 'TagKey': 'string', 'TagValue': 'string', 'ComplianceResourceId': 'string' }, 'Source': { 'Owner': 'CUSTOM_LAMBDA'|'AWS'|'CUSTOM_POLICY', 'SourceIdentifier': 'string', 'SourceDetails': [ { 'EventSource': 'aws.config', 'MessageType': 'ConfigurationItemChangeNotification'|'ConfigurationSnapshotDeliveryCompleted'|'ScheduledNotification'|'OversizedConfigurationItemChangeNotification', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours' }, ], 'CustomPolicyDetails': { 'PolicyRuntime': 'string', 'PolicyText': 'string', 'EnableDebugLogDelivery': True|False } }, 'InputParameters': 'string', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours', 'ConfigRuleState': 'ACTIVE'|'DELETING'|'DELETING_RESULTS'|'EVALUATING', 'CreatedBy': 'string', 'EvaluationModes': [ { 'Mode': 'DETECTIVE'|'PROACTIVE' }, ] }, Tags=[ { 'Key': 'string', 'Value': 'string' }, ] ) Parameters: * **ConfigRule** (*dict*) -- **[REQUIRED]** The rule that you want to add to your account. * **ConfigRuleName** *(string) --* The name that you assign to the Config rule. The name is required if you are adding a new rule. * **ConfigRuleArn** *(string) --* The Amazon Resource Name (ARN) of the Config rule. * **ConfigRuleId** *(string) --* The ID of the Config rule. * **Description** *(string) --* The description that you provide for the Config rule. * **Scope** *(dict) --* Defines which resources can trigger an evaluation for the rule. The scope can include one or more resource types, a combination of one resource type and one resource ID, or a combination of a tag key and value. Specify a scope to constrain the resources that can trigger an evaluation for the rule. If you do not specify a scope, evaluations are triggered when any resource in the recording group changes. * **ComplianceResourceTypes** *(list) --* The resource types of only those Amazon Web Services resources that you want to trigger an evaluation for the rule. You can only specify one type if you also specify a resource ID for "ComplianceResourceId". * *(string) --* * **TagKey** *(string) --* The tag key that is applied to only those Amazon Web Services resources that you want to trigger an evaluation for the rule. * **TagValue** *(string) --* The tag value applied to only those Amazon Web Services resources that you want to trigger an evaluation for the rule. If you specify a value for "TagValue", you must also specify a value for "TagKey". * **ComplianceResourceId** *(string) --* The ID of the only Amazon Web Services resource that you want to trigger an evaluation for the rule. If you specify a resource ID, you must specify one resource type for "ComplianceResourceTypes". * **Source** *(dict) --* **[REQUIRED]** Provides the rule owner ( "Amazon Web Services" for managed rules, "CUSTOM_POLICY" for Custom Policy rules, and "CUSTOM_LAMBDA" for Custom Lambda rules), the rule identifier, and the notifications that cause the function to evaluate your Amazon Web Services resources. * **Owner** *(string) --* **[REQUIRED]** Indicates whether Amazon Web Services or the customer owns and manages the Config rule. Config Managed Rules are predefined rules owned by Amazon Web Services. For more information, see Config Managed Rules in the *Config developer guide*. Config Custom Rules are rules that you can develop either with Guard ( "CUSTOM_POLICY") or Lambda ( "CUSTOM_LAMBDA"). For more information, see Config Custom Rules in the *Config developer guide*. * **SourceIdentifier** *(string) --* For Config Managed rules, a predefined identifier from a list. For example, "IAM_PASSWORD_POLICY" is a managed rule. To reference a managed rule, see List of Config Managed Rules. For Config Custom Lambda rules, the identifier is the Amazon Resource Name (ARN) of the rule's Lambda function, such as "arn:aws:lambda:us- east-2:123456789012:function:custom_rule_name". For Config Custom Policy rules, this field will be ignored. * **SourceDetails** *(list) --* Provides the source and the message types that cause Config to evaluate your Amazon Web Services resources against a rule. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic. If the owner is set to "CUSTOM_POLICY", the only acceptable values for the Config rule trigger message type are "ConfigurationItemChangeNotification" and "OversizedConfigurationItemChangeNotification". * *(dict) --* Provides the source and the message types that trigger Config to evaluate your Amazon Web Services resources against a rule. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic. You can specify the parameter values for "SourceDetail" only for custom rules. * **EventSource** *(string) --* The source of the event, such as an Amazon Web Services service, that triggers Config to evaluate your Amazon Web Services resources. * **MessageType** *(string) --* The type of notification that triggers Config to run an evaluation for a rule. You can specify the following notification types: * "ConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers a configuration item as a result of a resource change. * "OversizedConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers an oversized configuration item. Config may generate this notification type when a resource changes and the notification exceeds the maximum size allowed by Amazon SNS. * "ScheduledNotification" - Triggers a periodic evaluation at the frequency specified for "MaximumExecutionFrequency". * "ConfigurationSnapshotDeliveryCompleted" - Triggers a periodic evaluation when Config delivers a configuration snapshot. If you want your custom rule to be triggered by configuration changes, specify two SourceDetail objects, one for "ConfigurationItemChangeNotification" and one for "OversizedConfigurationItemChangeNotification". * **MaximumExecutionFrequency** *(string) --* The frequency at which you want Config to run evaluations for a custom rule with a periodic trigger. If you specify a value for "MaximumExecutionFrequency", then "MessageType" must use the "ScheduledNotification" value. Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the "MaximumExecutionFrequency" parameter.Based on the valid value you choose, Config runs evaluations once for each valid value. For example, if you choose "Three_Hours", Config runs evaluations once every three hours. In this case, "Three_Hours" is the frequency of this rule. * **CustomPolicyDetails** *(dict) --* Provides the runtime system, policy definition, and whether debug logging is enabled. Required when owner is set to "CUSTOM_POLICY". * **PolicyRuntime** *(string) --* **[REQUIRED]** The runtime system for your Config Custom Policy rule. Guard is a policy-as-code language that allows you to write policies that are enforced by Config Custom Policy rules. For more information about Guard, see the Guard GitHub Repository. * **PolicyText** *(string) --* **[REQUIRED]** The policy definition containing the logic for your Config Custom Policy rule. * **EnableDebugLogDelivery** *(boolean) --* The boolean expression for enabling debug logging for your Config Custom Policy rule. The default value is "false". * **InputParameters** *(string) --* A string, in JSON format, that is passed to the Config rule Lambda function. * **MaximumExecutionFrequency** *(string) --* The maximum frequency with which Config runs evaluations for a rule. You can specify a value for "MaximumExecutionFrequency" when: * This is for an Config managed rule that is triggered at a periodic frequency. * Your custom rule is triggered when Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties. Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the "MaximumExecutionFrequency" parameter. * **ConfigRuleState** *(string) --* Indicates whether the Config rule is active or is currently being deleted by Config. It can also indicate the evaluation status for the Config rule. Config sets the state of the rule to "EVALUATING" temporarily after you use the "StartConfigRulesEvaluation" request to evaluate your resources against the Config rule. Config sets the state of the rule to "DELETING_RESULTS" temporarily after you use the "DeleteEvaluationResults" request to delete the current evaluation results for the Config rule. Config temporarily sets the state of a rule to "DELETING" after you use the "DeleteConfigRule" request to delete the rule. After Config deletes the rule, the rule and all of its evaluations are erased and are no longer available. * **CreatedBy** *(string) --* Service principal name of the service that created the rule. Note: The field is populated only if the service-linked rule is created by a service. The field is empty if you create your own rule. * **EvaluationModes** *(list) --* The modes the Config rule can be evaluated in. The valid values are distinct objects. By default, the value is Detective evaluation mode only. * *(dict) --* The configuration object for Config rule evaluation mode. The supported valid values are Detective or Proactive. * **Mode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. * **Tags** (*list*) -- An array of tag object. * *(dict) --* The tags for the resource. The metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters. * **Key** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **Value** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). Returns: None **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.MaxNumberOfConfigRulesExceededE xception" * "ConfigService.Client.exceptions.ResourceInUseException" * "ConfigService.Client.exceptions.InsufficientPermissionsExceptio n" * "ConfigService.Client.exceptions.NoAvailableConfigurationRecorde rException" ConfigService / Client / get_discovered_resource_counts get_discovered_resource_counts ****************************** ConfigService.Client.get_discovered_resource_counts(**kwargs) Returns the resource types, the number of each resource type, and the total number of resources that Config is recording in this region for your Amazon Web Services account. **Example** * Config is recording three resource types in the US East (Ohio) Region for your account: 25 EC2 instances, 20 IAM users, and 15 S3 buckets. * You make a call to the "GetDiscoveredResourceCounts" action and specify that you want all resource types. * Config returns the following: * The resource types (EC2 instances, IAM users, and S3 buckets). * The number of each resource type (25, 20, and 15). * The total number of all resources (60). The response is paginated. By default, Config lists 100 ResourceCount objects on each page. You can customize this number with the "limit" parameter. The response includes a "nextToken" string. To get the next page of results, run the request again and specify the string for the "nextToken" parameter. Note: If you make a call to the GetDiscoveredResourceCounts action, you might not immediately receive resource counts in the following situations: * You are a new Config customer. * You just enabled resource recording. It might take a few minutes for Config to record and count your resources. Wait a few minutes and then retry the GetDiscoveredResourceCounts action. See also: AWS API Documentation **Request Syntax** response = client.get_discovered_resource_counts( resourceTypes=[ 'string', ], limit=123, nextToken='string' ) Parameters: * **resourceTypes** (*list*) -- The comma-separated list that specifies the resource types that you want Config to return (for example, ""AWS::EC2::Instance"", ""AWS::IAM::User""). If a value for "resourceTypes" is not specified, Config returns all resource types that Config is recording in the region for your account. Note: If the configuration recorder is turned off, Config returns an empty list of ResourceCount objects. If the configuration recorder is not recording a specific resource type (for example, S3 buckets), that resource type is not returned in the list of ResourceCount objects. * *(string) --* * **limit** (*integer*) -- The maximum number of ResourceCount objects returned on each page. The default is 100. You cannot specify a number greater than 100. If you specify 0, Config uses the default. * **nextToken** (*string*) -- The "nextToken" string 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** { 'totalDiscoveredResources': 123, 'resourceCounts': [ { 'resourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'count': 123 }, ], 'nextToken': 'string' } **Response Structure** * *(dict) --* * **totalDiscoveredResources** *(integer) --* The total number of resources that Config is recording in the region for your account. If you specify resource types in the request, Config returns only the total number of resources for those resource types. **Example** * Config is recording three resource types in the US East (Ohio) Region for your account: 25 EC2 instances, 20 IAM users, and 15 S3 buckets, for a total of 60 resources. * You make a call to the "GetDiscoveredResourceCounts" action and specify the resource type, ""AWS::EC2::Instances"", in the request. * Config returns 25 for "totalDiscoveredResources". * **resourceCounts** *(list) --* The list of "ResourceCount" objects. Each object is listed in descending order by the number of resources. * *(dict) --* An object that contains the resource type and the number of resources. * **resourceType** *(string) --* The resource type (for example, ""AWS::EC2::Instance""). * **count** *(integer) --* The number of resources. * **nextToken** *(string) --* The string that you use in a subsequent request to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" ConfigService / Client / list_stored_queries list_stored_queries ******************* ConfigService.Client.list_stored_queries(**kwargs) Lists the stored queries for a single Amazon Web Services account and a single Amazon Web Services Region. The default is 100. See also: AWS API Documentation **Request Syntax** response = client.list_stored_queries( NextToken='string', MaxResults=123 ) Parameters: * **NextToken** (*string*) -- The nextToken string returned in a previous request that you use to request the next page of results in a paginated response. * **MaxResults** (*integer*) -- The maximum number of results to be returned with a single call. Return type: dict Returns: **Response Syntax** { 'StoredQueryMetadata': [ { 'QueryId': 'string', 'QueryArn': 'string', 'QueryName': 'string', 'Description': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **StoredQueryMetadata** *(list) --* A list of "StoredQueryMetadata" objects. * *(dict) --* Returns details of a specific query. * **QueryId** *(string) --* The ID of the query. * **QueryArn** *(string) --* Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type /resource-name/resource-id. * **QueryName** *(string) --* The name of the query. * **Description** *(string) --* A unique description for the query. * **NextToken** *(string) --* If the previous paginated request didn't return all of the remaining results, the response object's "NextToken" parameter value is set to a token. To retrieve the next set of results, call this operation again and assign that token to the request object's "NextToken" parameter. If there are no remaining results, the previous response object's "NextToken" parameter is set to "null". **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.InvalidNextTokenException" ConfigService / Client / describe_remediation_exceptions describe_remediation_exceptions ******************************* ConfigService.Client.describe_remediation_exceptions(**kwargs) Returns the details of one or more remediation exceptions. A detailed view of a remediation exception for a set of resources that includes an explanation of an exception and the time when the exception will be deleted. When you specify the limit and the next token, you receive a paginated response. Note: Config generates a remediation exception when a problem occurs executing a remediation action to a specific resource. Remediation exceptions blocks auto-remediation until the exception is cleared.When you specify the limit and the next token, you receive a paginated response.Limit and next token are not applicable if you request resources in batch. It is only applicable, when you request all resources. See also: AWS API Documentation **Request Syntax** response = client.describe_remediation_exceptions( ConfigRuleName='string', ResourceKeys=[ { 'ResourceType': 'string', 'ResourceId': 'string' }, ], Limit=123, NextToken='string' ) Parameters: * **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule. * **ResourceKeys** (*list*) -- An exception list of resource exception keys to be processed with the current request. Config adds exception for each resource key. For example, Config adds 3 exceptions for 3 resource keys. * *(dict) --* The details that identify a resource within Config, including the resource type and resource ID. * **ResourceType** *(string) --* The type of a resource. * **ResourceId** *(string) --* The ID of the resource (for example., sg-xxxxxx). * **Limit** (*integer*) -- The maximum number of RemediationExceptionResourceKey returned on each page. The default is 25. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string returned in a previous request that you use to request the next page of results in a paginated response. Return type: dict Returns: **Response Syntax** { 'RemediationExceptions': [ { 'ConfigRuleName': 'string', 'ResourceType': 'string', 'ResourceId': 'string', 'Message': 'string', 'ExpirationTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **RemediationExceptions** *(list) --* Returns a list of remediation exception objects. * *(dict) --* An object that represents the details about the remediation exception. The details include the rule name, an explanation of an exception, the time when the exception will be deleted, the resource ID, and resource type. * **ConfigRuleName** *(string) --* The name of the Config rule. * **ResourceType** *(string) --* The type of a resource. * **ResourceId** *(string) --* The ID of the resource (for example., sg-xxxxxx). * **Message** *(string) --* An explanation of an remediation exception. * **ExpirationTime** *(datetime) --* The time when the remediation exception will be deleted. * **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** * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidParameterValueException" ConfigService / Client / delete_retention_configuration delete_retention_configuration ****************************** ConfigService.Client.delete_retention_configuration(**kwargs) Deletes the retention configuration. See also: AWS API Documentation **Request Syntax** response = client.delete_retention_configuration( RetentionConfigurationName='string' ) Parameters: **RetentionConfigurationName** (*string*) -- **[REQUIRED]** The name of the retention configuration to delete. Returns: None **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.NoSuchRetentionConfigurationExc eption" ConfigService / Client / put_service_linked_configuration_recorder put_service_linked_configuration_recorder ***************************************** ConfigService.Client.put_service_linked_configuration_recorder(**kwargs) Creates a service-linked configuration recorder that is linked to a specific Amazon Web Services service based on the "ServicePrincipal" you specify. The configuration recorder's "name", "recordingGroup", "recordingMode", and "recordingScope" is set by the service that is linked to the configuration recorder. For more information and a list of supported services/service principals, see **Working with the Configuration Recorder** in the *Config Developer Guide*. This API creates a service-linked role "AWSServiceRoleForConfig" in your account. The service-linked role is created only when the role does not exist in your account. Note: **The recording scope determines if you receive configuration items**The recording scope is set by the service that is linked to the configuration recorder and determines whether you receive configuration items (CIs) in the delivery channel. If the recording scope is internal, you will not receive CIs in the delivery channel.**Tags are added at creation and cannot be updated with this operation**Use TagResource and UntagResource to update tags after creation. See also: AWS API Documentation **Request Syntax** response = client.put_service_linked_configuration_recorder( ServicePrincipal='string', Tags=[ { 'Key': 'string', 'Value': 'string' }, ] ) Parameters: * **ServicePrincipal** (*string*) -- **[REQUIRED]** The service principal of the Amazon Web Services service for the service-linked configuration recorder that you want to create. * **Tags** (*list*) -- The tags for a service-linked configuration recorder. Each tag consists of a key and an optional value, both of which you define. * *(dict) --* The tags for the resource. The metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters. * **Key** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **Value** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). Return type: dict Returns: **Response Syntax** { 'Arn': 'string', 'Name': 'string' } **Response Structure** * *(dict) --* * **Arn** *(string) --* The Amazon Resource Name (ARN) of the specified configuration recorder. * **Name** *(string) --* The name of the specified configuration recorder. For service-linked configuration recorders, Config automatically assigns a name that has the prefix " "AWSConfigurationRecorderFor"" to the new service-linked configuration recorder. **Exceptions** * "ConfigService.Client.exceptions.ConflictException" * "ConfigService.Client.exceptions.InsufficientPermissionsExceptio n" * "ConfigService.Client.exceptions.LimitExceededException" * "ConfigService.Client.exceptions.ValidationException" ConfigService / Client / describe_remediation_configurations describe_remediation_configurations *********************************** ConfigService.Client.describe_remediation_configurations(**kwargs) Returns the details of one or more remediation configurations. See also: AWS API Documentation **Request Syntax** response = client.describe_remediation_configurations( ConfigRuleNames=[ 'string', ] ) Parameters: **ConfigRuleNames** (*list*) -- **[REQUIRED]** A list of Config rule names of remediation configurations for which you want details. * *(string) --* Return type: dict Returns: **Response Syntax** { 'RemediationConfigurations': [ { 'ConfigRuleName': 'string', 'TargetType': 'SSM_DOCUMENT', 'TargetId': 'string', 'TargetVersion': 'string', 'Parameters': { 'string': { 'ResourceValue': { 'Value': 'RESOURCE_ID' }, 'StaticValue': { 'Values': [ 'string', ] } } }, 'ResourceType': 'string', 'Automatic': True|False, 'ExecutionControls': { 'SsmControls': { 'ConcurrentExecutionRatePercentage': 123, 'ErrorPercentage': 123 } }, 'MaximumAutomaticAttempts': 123, 'RetryAttemptSeconds': 123, 'Arn': 'string', 'CreatedByService': 'string' }, ] } **Response Structure** * *(dict) --* * **RemediationConfigurations** *(list) --* Returns a remediation configuration object. * *(dict) --* An object that represents the details about the remediation configuration that includes the remediation action, parameters, and data to execute the action. * **ConfigRuleName** *(string) --* The name of the Config rule. * **TargetType** *(string) --* The type of the target. Target executes remediation. For example, SSM document. * **TargetId** *(string) --* Target ID is the name of the SSM document. * **TargetVersion** *(string) --* Version of the target. For example, version of the SSM document. Note: If you make backward incompatible changes to the SSM document, you must call PutRemediationConfiguration API again to ensure the remediations can run. * **Parameters** *(dict) --* An object of the RemediationParameterValue. * *(string) --* * *(dict) --* The value is either a dynamic (resource) value or a static value. You must select either a dynamic value or a static value. * **ResourceValue** *(dict) --* The value is dynamic and changes at run-time. * **Value** *(string) --* The value is a resource ID. * **StaticValue** *(dict) --* The value is static and does not change at run- time. * **Values** *(list) --* A list of values. For example, the ARN of the assumed role. * *(string) --* * **ResourceType** *(string) --* The type of a resource. * **Automatic** *(boolean) --* The remediation is triggered automatically. * **ExecutionControls** *(dict) --* An ExecutionControls object. * **SsmControls** *(dict) --* A SsmControls object. * **ConcurrentExecutionRatePercentage** *(integer) --* The maximum percentage of remediation actions allowed to run in parallel on the non-compliant resources for that specific rule. You can specify a percentage, such as 10%. The default value is 10. * **ErrorPercentage** *(integer) --* The percentage of errors that are allowed before SSM stops running automations on non-compliant resources for that specific rule. You can specify a percentage of errors, for example 10%. If you do not specifiy a percentage, the default is 50%. For example, if you set the ErrorPercentage to 40% for 10 non-compliant resources, then SSM stops running the automations when the fifth error is received. * **MaximumAutomaticAttempts** *(integer) --* The maximum number of failed attempts for auto- remediation. If you do not select a number, the default is 5. For example, if you specify MaximumAutomaticAttempts as 5 with RetryAttemptSeconds as 50 seconds, Config will put a RemediationException on your behalf for the failing resource after the 5th failed attempt within 50 seconds. * **RetryAttemptSeconds** *(integer) --* Time window to determine whether or not to add a remediation exception to prevent infinite remediation attempts. If "MaximumAutomaticAttempts" remediation attempts have been made under "RetryAttemptSeconds", a remediation exception will be added to the resource. If you do not select a number, the default is 60 seconds. For example, if you specify "RetryAttemptSeconds" as 50 seconds and "MaximumAutomaticAttempts" as 5, Config will run auto-remediations 5 times within 50 seconds before adding a remediation exception to the resource. * **Arn** *(string) --* Amazon Resource Name (ARN) of remediation configuration. * **CreatedByService** *(string) --* Name of the service that owns the service-linked rule, if applicable. ConfigService / Client / get_custom_rule_policy get_custom_rule_policy ********************** ConfigService.Client.get_custom_rule_policy(**kwargs) Returns the policy definition containing the logic for your Config Custom Policy rule. See also: AWS API Documentation **Request Syntax** response = client.get_custom_rule_policy( ConfigRuleName='string' ) Parameters: **ConfigRuleName** (*string*) -- The name of your Config Custom Policy rule. Return type: dict Returns: **Response Syntax** { 'PolicyText': 'string' } **Response Structure** * *(dict) --* * **PolicyText** *(string) --* The policy definition containing the logic for your Config Custom Policy rule. **Exceptions** * "ConfigService.Client.exceptions.NoSuchConfigRuleException" 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 "ConfigurationRecorderFilter" objects that you specify. * *(dict) --* Filters configuration recorders by recording scope. * **filterName** *(string) --* The name of the type of filter. Currently, only "recordingScope" is supported. * **filterValue** *(list) --* The value of the filter. For "recordingScope", valid values include: "INTERNAL" and "PAID". "INTERNAL" indicates that the ConfigurationItems in scope for the configuration recorder are recorded for free. "PAID" indicates 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 "NextToken" string 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 "ConfigurationRecorderSummary" objects that includes. * *(dict) --* A summary of a configuration recorder, including the "arn", "name", "servicePrincipal", and "recordingScope". * **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 "NextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" ConfigService / Client / get_organization_custom_rule_policy get_organization_custom_rule_policy *********************************** ConfigService.Client.get_organization_custom_rule_policy(**kwargs) Returns the policy definition containing the logic for your organization Config Custom Policy rule. See also: AWS API Documentation **Request Syntax** response = client.get_organization_custom_rule_policy( OrganizationConfigRuleName='string' ) Parameters: **OrganizationConfigRuleName** (*string*) -- **[REQUIRED]** The name of your organization Config Custom Policy rule. Return type: dict Returns: **Response Syntax** { 'PolicyText': 'string' } **Response Structure** * *(dict) --* * **PolicyText** *(string) --* The policy definition containing the logic for your organization Config Custom Policy rule. **Exceptions** * "ConfigService.Client.exceptions.NoSuchOrganizationConfigRuleExc eption" * "ConfigService.Client.exceptions.OrganizationAccessDeniedExcepti on" ConfigService / Client / get_compliance_summary_by_config_rule get_compliance_summary_by_config_rule ************************************* ConfigService.Client.get_compliance_summary_by_config_rule() Returns the number of Config rules that are compliant and noncompliant, up to a maximum of 25 for each. See also: AWS API Documentation **Request Syntax** response = client.get_compliance_summary_by_config_rule() Return type: dict Returns: **Response Syntax** { 'ComplianceSummary': { 'CompliantResourceCount': { 'CappedCount': 123, 'CapExceeded': True|False }, 'NonCompliantResourceCount': { 'CappedCount': 123, 'CapExceeded': True|False }, 'ComplianceSummaryTimestamp': datetime(2015, 1, 1) } } **Response Structure** * *(dict) --* * **ComplianceSummary** *(dict) --* The number of Config rules that are compliant and the number that are noncompliant, up to a maximum of 25 for each. * **CompliantResourceCount** *(dict) --* The number of Config rules or Amazon Web Services resources that are compliant, up to a maximum of 25 for rules and 100 for resources. * **CappedCount** *(integer) --* The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item. * **CapExceeded** *(boolean) --* Indicates whether the maximum count is reached. * **NonCompliantResourceCount** *(dict) --* The number of Config rules or Amazon Web Services resources that are noncompliant, up to a maximum of 25 for rules and 100 for resources. * **CappedCount** *(integer) --* The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item. * **CapExceeded** *(boolean) --* Indicates whether the maximum count is reached. * **ComplianceSummaryTimestamp** *(datetime) --* The time that Config created the compliance summary. ConfigService / Client / list_resource_evaluations list_resource_evaluations ************************* ConfigService.Client.list_resource_evaluations(**kwargs) Returns a list of proactive resource evaluations. See also: AWS API Documentation **Request Syntax** response = client.list_resource_evaluations( Filters={ 'EvaluationMode': 'DETECTIVE'|'PROACTIVE', 'TimeWindow': { 'StartTime': datetime(2015, 1, 1), 'EndTime': datetime(2015, 1, 1) }, 'EvaluationContextIdentifier': 'string' }, Limit=123, NextToken='string' ) Parameters: * **Filters** (*dict*) -- Returns a "ResourceEvaluationFilters" object. * **EvaluationMode** *(string) --* Filters all resource evaluations results based on an evaluation mode. Warning: Currently, "DECTECTIVE" is not supported as a valid value. Ignore other documentation stating otherwise. * **TimeWindow** *(dict) --* Returns a "TimeWindow" object. * **StartTime** *(datetime) --* The start time of an execution. * **EndTime** *(datetime) --* The end time of an execution. The end time must be after the start date. * **EvaluationContextIdentifier** *(string) --* Filters evaluations for a given infrastructure deployment. For example: CFN Stack. * **Limit** (*integer*) -- The maximum number of evaluations returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'ResourceEvaluations': [ { 'ResourceEvaluationId': 'string', 'EvaluationMode': 'DETECTIVE'|'PROACTIVE', 'EvaluationStartTimestamp': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **ResourceEvaluations** *(list) --* Returns a "ResourceEvaluations" object. * *(dict) --* Returns details of a resource evaluation. * **ResourceEvaluationId** *(string) --* The ResourceEvaluationId of a evaluation. * **EvaluationMode** *(string) --* The mode of an evaluation. The valid values are Detective or Proactive. * **EvaluationStartTimestamp** *(datetime) --* The starting time of an execution. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.InvalidTimeRangeException" ConfigService / Client / delete_configuration_recorder delete_configuration_recorder ***************************** ConfigService.Client.delete_configuration_recorder(**kwargs) Deletes the customer managed configuration recorder. This operation does not delete the configuration information that was previously recorded. You will be able to access the previously recorded information by using the GetResourceConfigHistory operation, but you will not be able to access this information in the Config console until you have created a new customer managed configuration recorder. See also: AWS API Documentation **Request Syntax** response = client.delete_configuration_recorder( ConfigurationRecorderName='string' ) Parameters: **ConfigurationRecorderName** (*string*) -- **[REQUIRED]** The name of the customer managed configuration recorder that you want to delete. You can retrieve the name of your configuration recorders by using the DescribeConfigurationRecorders operation. Returns: None **Exceptions** * "ConfigService.Client.exceptions.NoSuchConfigurationRecorderExce ption" * "ConfigService.Client.exceptions.UnmodifiableEntityException" ConfigService / Client / delete_config_rule delete_config_rule ****************** ConfigService.Client.delete_config_rule(**kwargs) Deletes the specified Config rule and all of its evaluation results. Config sets the state of a rule to "DELETING" until the deletion is complete. You cannot update a rule while it is in this state. If you make a "PutConfigRule" or "DeleteConfigRule" request for the rule, you will receive a "ResourceInUseException". You can check the state of a rule by using the "DescribeConfigRules" request. Note: Recommendation: Consider excluding the "AWS::Config::ResourceCompliance" resource type from recording before deleting rulesDeleting rules creates configuration items (CIs) for "AWS::Config::ResourceCompliance" that can affect your costs for the configuration recorder. If you are deleting rules which evaluate a large number of resource types, this can lead to a spike in the number of CIs recorded.To avoid the associated costs, you can opt to disable recording for the "AWS::Config::ResourceCompliance" resource type before deleting rules, and re-enable recording after the rules have been deleted.However, since deleting rules is an asynchronous process, it might take an hour or more to complete. During the time when recording is disabled for "AWS::Config::ResourceCompliance", rule evaluations will not be recorded in the associated resource’s history. See also: AWS API Documentation **Request Syntax** response = client.delete_config_rule( ConfigRuleName='string' ) Parameters: **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule that you want to delete. Returns: None **Exceptions** * "ConfigService.Client.exceptions.NoSuchConfigRuleException" * "ConfigService.Client.exceptions.ResourceInUseException" ConfigService / Client / get_stored_query get_stored_query **************** ConfigService.Client.get_stored_query(**kwargs) Returns the details of a specific stored query. See also: AWS API Documentation **Request Syntax** response = client.get_stored_query( QueryName='string' ) Parameters: **QueryName** (*string*) -- **[REQUIRED]** The name of the query. Return type: dict Returns: **Response Syntax** { 'StoredQuery': { 'QueryId': 'string', 'QueryArn': 'string', 'QueryName': 'string', 'Description': 'string', 'Expression': 'string' } } **Response Structure** * *(dict) --* * **StoredQuery** *(dict) --* Returns a "StoredQuery" object. * **QueryId** *(string) --* The ID of the query. * **QueryArn** *(string) --* Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type /resource-name/resource-id. * **QueryName** *(string) --* The name of the query. * **Description** *(string) --* A unique description for the query. * **Expression** *(string) --* The expression of the query. For example, "SELECT resourceId, resourceType, supplementaryConfiguration.Buck etVersioningConfiguration.status WHERE resourceType = 'AWS::S3::Bucket' AND supplementaryConfiguration.BucketVe rsioningConfiguration.status = 'Off'." **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.ResourceNotFoundException" ConfigService / Client / get_aggregate_discovered_resource_counts get_aggregate_discovered_resource_counts **************************************** ConfigService.Client.get_aggregate_discovered_resource_counts(**kwargs) Returns the resource counts across accounts and regions that are present in your Config aggregator. You can request the resource counts by providing filters and GroupByKey. For example, if the input contains accountID 12345678910 and region us-east-1 in filters, the API returns the count of resources in account ID 12345678910 and region us-east-1. If the input contains ACCOUNT_ID as a GroupByKey, the API returns resource counts for all source accounts that are present in your aggregator. See also: AWS API Documentation **Request Syntax** response = client.get_aggregate_discovered_resource_counts( ConfigurationAggregatorName='string', Filters={ 'ResourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'AccountId': 'string', 'Region': 'string' }, GroupByKey='RESOURCE_TYPE'|'ACCOUNT_ID'|'AWS_REGION', Limit=123, NextToken='string' ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **Filters** (*dict*) -- Filters the results based on the "ResourceCountFilters" object. * **ResourceType** *(string) --* The type of the Amazon Web Services resource. * **AccountId** *(string) --* The 12-digit ID of the account. * **Region** *(string) --* The region where the account is located. * **GroupByKey** (*string*) -- The key to group the resource counts. * **Limit** (*integer*) -- The maximum number of GroupedResourceCount objects returned on each page. The default is 1000. You cannot specify a number greater than 1000. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'TotalDiscoveredResources': 123, 'GroupByKey': 'string', 'GroupedResourceCounts': [ { 'GroupName': 'string', 'ResourceCount': 123 }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **TotalDiscoveredResources** *(integer) --* The total number of resources that are present in an aggregator with the filters that you provide. * **GroupByKey** *(string) --* The key passed into the request object. If "GroupByKey" is not provided, the result will be empty. * **GroupedResourceCounts** *(list) --* Returns a list of GroupedResourceCount objects. * *(dict) --* The count of resources that are grouped by the group name. * **GroupName** *(string) --* The name of the group that can be region, account ID, or resource type. For example, region1, region2 if the region was chosen as "GroupByKey". * **ResourceCount** *(integer) --* The number of resources in the group. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.NoSuchConfigurationAggregatorEx ception" ConfigService / Client / describe_configuration_aggregator_sources_status describe_configuration_aggregator_sources_status ************************************************ ConfigService.Client.describe_configuration_aggregator_sources_status(**kwargs) Returns status information for sources within an aggregator. The status includes information about the last time Config verified authorization between the source account and an aggregator account. In case of a failure, the status contains the related error code or message. See also: AWS API Documentation **Request Syntax** response = client.describe_configuration_aggregator_sources_status( ConfigurationAggregatorName='string', UpdateStatus=[ 'FAILED'|'SUCCEEDED'|'OUTDATED', ], NextToken='string', Limit=123 ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **UpdateStatus** (*list*) -- Filters the status type. * Valid value FAILED indicates errors while moving data. * Valid value SUCCEEDED indicates the data was successfully moved. * Valid value OUTDATED indicates the data is not the most recent. * *(string) --* * **NextToken** (*string*) -- The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. * **Limit** (*integer*) -- The maximum number of AggregatorSourceStatus returned on each page. The default is maximum. If you specify 0, Config uses the default. Return type: dict Returns: **Response Syntax** { 'AggregatedSourceStatusList': [ { 'SourceId': 'string', 'SourceType': 'ACCOUNT'|'ORGANIZATION', 'AwsRegion': 'string', 'LastUpdateStatus': 'FAILED'|'SUCCEEDED'|'OUTDATED', 'LastUpdateTime': datetime(2015, 1, 1), 'LastErrorCode': 'string', 'LastErrorMessage': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **AggregatedSourceStatusList** *(list) --* Returns an AggregatedSourceStatus object. * *(dict) --* The current sync status between the source and the aggregator account. * **SourceId** *(string) --* The source account ID or an organization. * **SourceType** *(string) --* The source account or an organization. * **AwsRegion** *(string) --* The region authorized to collect aggregated data. * **LastUpdateStatus** *(string) --* Filters the last updated status type. * Valid value FAILED indicates errors while moving data. * Valid value SUCCEEDED indicates the data was successfully moved. * Valid value OUTDATED indicates the data is not the most recent. * **LastUpdateTime** *(datetime) --* The time of the last update. * **LastErrorCode** *(string) --* The error code that Config returned when the source account aggregation last failed. * **LastErrorMessage** *(string) --* The message indicating that the source account aggregation failed due to an error. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.NoSuchConfigurationAggregatorEx ception" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidLimitException" ConfigService / Client / select_aggregate_resource_config select_aggregate_resource_config ******************************** ConfigService.Client.select_aggregate_resource_config(**kwargs) Accepts a structured query language (SQL) SELECT command and an aggregator to query configuration state of Amazon Web Services resources across multiple accounts and regions, performs the corresponding search, and returns resource configurations matching the properties. For more information about query components, see the **Query Components** section in the *Config Developer Guide*. Note: If you run an aggregation query (i.e., using "GROUP BY" or using aggregate functions such as "COUNT"; e.g., "SELECT resourceId, COUNT(*) WHERE resourceType = 'AWS::IAM::Role' GROUP BY resourceId") and do not specify the "MaxResults" or the "Limit" query parameters, the default page size is set to 500.If you run a non-aggregation query (i.e., not using "GROUP BY" or aggregate function; e.g., "SELECT * WHERE resourceType = 'AWS::IAM::Role'") and do not specify the "MaxResults" or the "Limit" query parameters, the default page size is set to 25. See also: AWS API Documentation **Request Syntax** response = client.select_aggregate_resource_config( Expression='string', ConfigurationAggregatorName='string', Limit=123, MaxResults=123, NextToken='string' ) Parameters: * **Expression** (*string*) -- **[REQUIRED]** The SQL query SELECT command. * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **Limit** (*integer*) -- The maximum number of query results returned on each page. * **MaxResults** (*integer*) -- The maximum number of query results returned on each page. Config also allows the Limit request parameter. * **NextToken** (*string*) -- The nextToken string returned in a previous request that you use to request the next page of results in a paginated response. Return type: dict Returns: **Response Syntax** { 'Results': [ 'string', ], 'QueryInfo': { 'SelectFields': [ { 'Name': 'string' }, ] }, 'NextToken': 'string' } **Response Structure** * *(dict) --* * **Results** *(list) --* Returns the results for the SQL query. * *(string) --* * **QueryInfo** *(dict) --* Details about the query. * **SelectFields** *(list) --* Returns a "FieldInfo" object. * *(dict) --* Details about the fields such as name of the field. * **Name** *(string) --* Name of the field. * **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** * "ConfigService.Client.exceptions.InvalidExpressionException" * "ConfigService.Client.exceptions.NoSuchConfigurationAggregatorEx ception" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" ConfigService / Client / delete_evaluation_results delete_evaluation_results ************************* ConfigService.Client.delete_evaluation_results(**kwargs) Deletes the evaluation results for the specified Config rule. You can specify one Config rule per request. After you delete the evaluation results, you can call the StartConfigRulesEvaluation API to start evaluating your Amazon Web Services resources against the rule. See also: AWS API Documentation **Request Syntax** response = client.delete_evaluation_results( ConfigRuleName='string' ) Parameters: **ConfigRuleName** (*string*) -- **[REQUIRED]** The name of the Config rule for which you want to delete the evaluation results. Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* The output when you delete the evaluation results for the specified Config rule. **Exceptions** * "ConfigService.Client.exceptions.NoSuchConfigRuleException" * "ConfigService.Client.exceptions.ResourceInUseException" ConfigService / Client / start_config_rules_evaluation start_config_rules_evaluation ***************************** ConfigService.Client.start_config_rules_evaluation(**kwargs) Runs an on-demand evaluation for the specified Config rules against the last known configuration state of the resources. Use "StartConfigRulesEvaluation" when you want to test that a rule you updated is working as expected. "StartConfigRulesEvaluation" does not re-record the latest configuration state for your resources. It re-runs an evaluation against the last known state of your resources. You can specify up to 25 Config rules per request. An existing "StartConfigRulesEvaluation" call for the specified rules must complete before you can call the API again. If you chose to have Config stream to an Amazon SNS topic, you will receive a "ConfigRuleEvaluationStarted" notification when the evaluation starts. Note: You don't need to call the "StartConfigRulesEvaluation" API to run an evaluation for a new rule. When you create a rule, Config evaluates your resources against the rule automatically. The "StartConfigRulesEvaluation" API is useful if you want to run on-demand evaluations, such as the following example: * You have a custom rule that evaluates your IAM resources every 24 hours. * You update your Lambda function to add additional conditions to your rule. * Instead of waiting for the next periodic evaluation, you call the "StartConfigRulesEvaluation" API. * Config invokes your Lambda function and evaluates your IAM resources. * Your custom rule will still run periodic evaluations every 24 hours. See also: AWS API Documentation **Request Syntax** response = client.start_config_rules_evaluation( ConfigRuleNames=[ 'string', ] ) Parameters: **ConfigRuleNames** (*list*) -- The list of names of Config rules that you want to run evaluations for. * *(string) --* Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* The output when you start the evaluation for the specified Config rule. **Exceptions** * "ConfigService.Client.exceptions.NoSuchConfigRuleException" * "ConfigService.Client.exceptions.LimitExceededException" * "ConfigService.Client.exceptions.ResourceInUseException" * "ConfigService.Client.exceptions.InvalidParameterValueException" ConfigService / Client / put_conformance_pack put_conformance_pack ******************** ConfigService.Client.put_conformance_pack(**kwargs) Creates or updates a conformance pack. A conformance pack is a collection of Config rules that can be easily deployed in an account and a region and across an organization. For information on how many conformance packs you can have per account, see **Service Limits** in the *Config Developer Guide*. Warning: When you use "PutConformancePack" to deploy conformance packs in your account, the operation can create Config rules and remediation actions without requiring "config:PutConfigRule" or "config:PutRemediationConfigurations" permissions in your account IAM policies.This API uses the "AWSServiceRoleForConfigConforms" service-linked role in your account to create conformance pack resources. This service-linked role includes the permissions to create Config rules and remediation configurations, even if your account IAM policies explicitly deny these actions. This API creates a service-linked role "AWSServiceRoleForConfigConforms" in your account. The service- linked role is created only when the role does not exist in your account. Note: You must specify only one of the follow parameters: "TemplateS3Uri", "TemplateBody" or "TemplateSSMDocumentDetails". See also: AWS API Documentation **Request Syntax** response = client.put_conformance_pack( ConformancePackName='string', TemplateS3Uri='string', TemplateBody='string', DeliveryS3Bucket='string', DeliveryS3KeyPrefix='string', ConformancePackInputParameters=[ { 'ParameterName': 'string', 'ParameterValue': 'string' }, ], TemplateSSMDocumentDetails={ 'DocumentName': 'string', 'DocumentVersion': 'string' } ) Parameters: * **ConformancePackName** (*string*) -- **[REQUIRED]** The unique name of the conformance pack you want to deploy. * **TemplateS3Uri** (*string*) -- The location of the file containing the template body ( "s3://bucketname/prefix"). The uri must point to a conformance pack template (max size: 300 KB) that is located in an Amazon S3 bucket in the same Region as the conformance pack. Note: You must have access to read Amazon S3 bucket. In addition, in order to ensure a successful deployment, the template object must not be in an archived storage class if this parameter is passed. * **TemplateBody** (*string*) -- A string that contains the full conformance pack template body. The structure containing the template body has a minimum length of 1 byte and a maximum length of 51,200 bytes. Note: You can use a YAML template with two resource types: Config rule ( "AWS::Config::ConfigRule") and remediation action ( "AWS::Config::RemediationConfiguration"). * **DeliveryS3Bucket** (*string*) -- The name of the Amazon S3 bucket where Config stores conformance pack templates. Note: This field is optional. * **DeliveryS3KeyPrefix** (*string*) -- The prefix for the Amazon S3 bucket. Note: This field is optional. * **ConformancePackInputParameters** (*list*) -- A list of "ConformancePackInputParameter" objects. * *(dict) --* Input parameters in the form of key-value pairs for the conformance pack, both of which you define. Keys can have a maximum character length of 255 characters, and values can have a maximum length of 4096 characters. * **ParameterName** *(string) --* **[REQUIRED]** One part of a key-value pair. * **ParameterValue** *(string) --* **[REQUIRED]** Another part of the key-value pair. * **TemplateSSMDocumentDetails** (*dict*) -- An object of type "TemplateSSMDocumentDetails", which contains the name or the Amazon Resource Name (ARN) of the Amazon Web Services Systems Manager document (SSM document) and the version of the SSM document that is used to create a conformance pack. * **DocumentName** *(string) --* **[REQUIRED]** The name or Amazon Resource Name (ARN) of the SSM document to use to create a conformance pack. If you use the document name, Config checks only your account and Amazon Web Services Region for the SSM document. * **DocumentVersion** *(string) --* The version of the SSM document to use to create a conformance pack. By default, Config uses the latest version. Note: This field is optional. Return type: dict Returns: **Response Syntax** { 'ConformancePackArn': 'string' } **Response Structure** * *(dict) --* * **ConformancePackArn** *(string) --* ARN of the conformance pack. **Exceptions** * "ConfigService.Client.exceptions.InsufficientPermissionsExceptio n" * "ConfigService.Client.exceptions.ConformancePackTemplateValidati onException" * "ConfigService.Client.exceptions.ResourceInUseException" * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.MaxNumberOfConformancePacksExce ededException" ConfigService / Client / delete_conformance_pack delete_conformance_pack *********************** ConfigService.Client.delete_conformance_pack(**kwargs) Deletes the specified conformance pack and all the Config rules, remediation actions, and all evaluation results within that conformance pack. Config sets the conformance pack to "DELETE_IN_PROGRESS" until the deletion is complete. You cannot update a conformance pack while it is in this state. Note: Recommendation: Consider excluding the "AWS::Config::ResourceCompliance" resource type from recording before deleting rulesDeleting rules creates configuration items (CIs) for "AWS::Config::ResourceCompliance" that can affect your costs for the configuration recorder. If you are deleting rules which evaluate a large number of resource types, this can lead to a spike in the number of CIs recorded.To avoid the associated costs, you can opt to disable recording for the "AWS::Config::ResourceCompliance" resource type before deleting rules, and re-enable recording after the rules have been deleted.However, since deleting rules is an asynchronous process, it might take an hour or more to complete. During the time when recording is disabled for "AWS::Config::ResourceCompliance", rule evaluations will not be recorded in the associated resource’s history. See also: AWS API Documentation **Request Syntax** response = client.delete_conformance_pack( ConformancePackName='string' ) Parameters: **ConformancePackName** (*string*) -- **[REQUIRED]** Name of the conformance pack you want to delete. Returns: None **Exceptions** * "ConfigService.Client.exceptions.NoSuchConformancePackException" * "ConfigService.Client.exceptions.ResourceInUseException" ConfigService / Client / put_organization_config_rule put_organization_config_rule **************************** ConfigService.Client.put_organization_config_rule(**kwargs) Adds or updates an Config rule for your entire organization to evaluate if your Amazon Web Services resources comply with your desired configurations. For information on how many organization Config rules you can have per account, see **Service Limits** in the *Config Developer Guide*. Only a management account and a delegated administrator can create or update an organization Config rule. When calling this API with a delegated administrator, you must ensure Organizations "ListDelegatedAdministrator" permissions are added. An organization can have up to 3 delegated administrators. This API enables organization service access through the "EnableAWSServiceAccess" action and creates a service-linked role "AWSServiceRoleForConfigMultiAccountSetup" in the management or delegated administrator account of your organization. The service- linked role is created only when the role does not exist in the caller account. Config verifies the existence of role with "GetRole" action. To use this API with delegated administrator, register a delegated administrator by calling Amazon Web Services Organization "register-delegated-administrator" for "config- multiaccountsetup.amazonaws.com". There are two types of rules: *Config Managed Rules* and *Config Custom Rules*. You can use "PutOrganizationConfigRule" to create both Config Managed Rules and Config Custom Rules. Config Managed Rules are predefined, customizable rules created by Config. For a list of managed rules, see List of Config Managed Rules. If you are adding an Config managed rule, you must specify the rule's identifier for the "RuleIdentifier" key. Config Custom Rules are rules that you create from scratch. There are two ways to create Config custom rules: with Lambda functions ( Lambda Developer Guide) and with Guard ( Guard GitHub Repository), a policy-as-code language. Config custom rules created with Lambda are called *Config Custom Lambda Rules* and Config custom rules created with Guard are called *Config Custom Policy Rules*. If you are adding a new Config Custom Lambda rule, you first need to create an Lambda function in the management account or a delegated administrator that the rule invokes to evaluate your resources. You also need to create an IAM role in the managed account that can be assumed by the Lambda function. When you use "PutOrganizationConfigRule" to add a Custom Lambda rule to Config, you must specify the Amazon Resource Name (ARN) that Lambda assigns to the function. Note: Prerequisite: Ensure you call "EnableAllFeatures" API to enable all features in an organization.Make sure to specify one of either "OrganizationCustomPolicyRuleMetadata" for Custom Policy rules, "OrganizationCustomRuleMetadata" for Custom Lambda rules, or "OrganizationManagedRuleMetadata" for managed rules. See also: AWS API Documentation **Request Syntax** response = client.put_organization_config_rule( OrganizationConfigRuleName='string', OrganizationManagedRuleMetadata={ 'Description': 'string', 'RuleIdentifier': 'string', 'InputParameters': 'string', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours', 'ResourceTypesScope': [ 'string', ], 'ResourceIdScope': 'string', 'TagKeyScope': 'string', 'TagValueScope': 'string' }, OrganizationCustomRuleMetadata={ 'Description': 'string', 'LambdaFunctionArn': 'string', 'OrganizationConfigRuleTriggerTypes': [ 'ConfigurationItemChangeNotification'|'OversizedConfigurationItemChangeNotification'|'ScheduledNotification', ], 'InputParameters': 'string', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours', 'ResourceTypesScope': [ 'string', ], 'ResourceIdScope': 'string', 'TagKeyScope': 'string', 'TagValueScope': 'string' }, ExcludedAccounts=[ 'string', ], OrganizationCustomPolicyRuleMetadata={ 'Description': 'string', 'OrganizationConfigRuleTriggerTypes': [ 'ConfigurationItemChangeNotification'|'OversizedConfigurationItemChangeNotification', ], 'InputParameters': 'string', 'MaximumExecutionFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours', 'ResourceTypesScope': [ 'string', ], 'ResourceIdScope': 'string', 'TagKeyScope': 'string', 'TagValueScope': 'string', 'PolicyRuntime': 'string', 'PolicyText': 'string', 'DebugLogDeliveryAccounts': [ 'string', ] } ) Parameters: * **OrganizationConfigRuleName** (*string*) -- **[REQUIRED]** The name that you assign to an organization Config rule. * **OrganizationManagedRuleMetadata** (*dict*) -- An "OrganizationManagedRuleMetadata" object. This object specifies organization managed rule metadata such as resource type and ID of Amazon Web Services resource along with the rule identifier. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic. * **Description** *(string) --* The description that you provide for your organization Config rule. * **RuleIdentifier** *(string) --* **[REQUIRED]** For organization config managed rules, a predefined identifier from a list. For example, "IAM_PASSWORD_POLICY" is a managed rule. To reference a managed rule, see Using Config managed rules. * **InputParameters** *(string) --* A string, in JSON format, that is passed to your organization Config rule Lambda function. * **MaximumExecutionFrequency** *(string) --* The maximum frequency with which Config runs evaluations for a rule. This is for an Config managed rule that is triggered at a periodic frequency. Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the "MaximumExecutionFrequency" parameter. * **ResourceTypesScope** *(list) --* The type of the Amazon Web Services resource that was evaluated. * *(string) --* * **ResourceIdScope** *(string) --* The ID of the Amazon Web Services resource that was evaluated. * **TagKeyScope** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **TagValueScope** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). * **OrganizationCustomRuleMetadata** (*dict*) -- An "OrganizationCustomRuleMetadata" object. This object specifies organization custom rule metadata such as resource type, resource ID of Amazon Web Services resource, Lambda function ARN, and organization trigger types that trigger Config to evaluate your Amazon Web Services resources against a rule. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic. * **Description** *(string) --* The description that you provide for your organization Config rule. * **LambdaFunctionArn** *(string) --* **[REQUIRED]** The lambda function ARN. * **OrganizationConfigRuleTriggerTypes** *(list) --* **[REQUIRED]** The type of notification that triggers Config to run an evaluation for a rule. You can specify the following notification types: * "ConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers a configuration item as a result of a resource change. * "OversizedConfigurationItemChangeNotification" - Triggers an evaluation when Config delivers an oversized configuration item. Config may generate this notification type when a resource changes and the notification exceeds the maximum size allowed by Amazon SNS. * "ScheduledNotification" - Triggers a periodic evaluation at the frequency specified for "MaximumExecutionFrequency". * *(string) --* * **InputParameters** *(string) --* A string, in JSON format, that is passed to your organization Config rule Lambda function. * **MaximumExecutionFrequency** *(string) --* The maximum frequency with which Config runs evaluations for a rule. Your custom rule is triggered when Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties. Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the "MaximumExecutionFrequency" parameter. * **ResourceTypesScope** *(list) --* The type of the Amazon Web Services resource that was evaluated. * *(string) --* * **ResourceIdScope** *(string) --* The ID of the Amazon Web Services resource that was evaluated. * **TagKeyScope** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **TagValueScope** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). * **ExcludedAccounts** (*list*) -- A comma-separated list of accounts that you want to exclude from an organization Config rule. * *(string) --* * **OrganizationCustomPolicyRuleMetadata** (*dict*) -- An "OrganizationCustomPolicyRuleMetadata" object. This object specifies metadata for your organization's Config Custom Policy rule. The metadata includes the runtime system in use, which accounts have debug logging enabled, and other custom rule metadata, such as resource type, resource ID of Amazon Web Services resource, and organization trigger types that initiate Config to evaluate Amazon Web Services resources against a rule. * **Description** *(string) --* The description that you provide for your organization Config Custom Policy rule. * **OrganizationConfigRuleTriggerTypes** *(list) --* The type of notification that initiates Config to run an evaluation for a rule. For Config Custom Policy rules, Config supports change-initiated notification types: * "ConfigurationItemChangeNotification" - Initiates an evaluation when Config delivers a configuration item as a result of a resource change. * "OversizedConfigurationItemChangeNotification" - Initiates an evaluation when Config delivers an oversized configuration item. Config may generate this notification type when a resource changes and the notification exceeds the maximum size allowed by Amazon SNS. * *(string) --* * **InputParameters** *(string) --* A string, in JSON format, that is passed to your organization Config Custom Policy rule. * **MaximumExecutionFrequency** *(string) --* The maximum frequency with which Config runs evaluations for a rule. Your Config Custom Policy rule is triggered when Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties. * **ResourceTypesScope** *(list) --* The type of the Amazon Web Services resource that was evaluated. * *(string) --* * **ResourceIdScope** *(string) --* The ID of the Amazon Web Services resource that was evaluated. * **TagKeyScope** *(string) --* One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values. * **TagValueScope** *(string) --* The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key). * **PolicyRuntime** *(string) --* **[REQUIRED]** The runtime system for your organization Config Custom Policy rules. Guard is a policy-as-code language that allows you to write policies that are enforced by Config Custom Policy rules. For more information about Guard, see the Guard GitHub Repository. * **PolicyText** *(string) --* **[REQUIRED]** The policy definition containing the logic for your organization Config Custom Policy rule. * **DebugLogDeliveryAccounts** *(list) --* A list of accounts that you can enable debug logging for your organization Config Custom Policy rule. List is null when debug logging is enabled for all accounts. * *(string) --* Return type: dict Returns: **Response Syntax** { 'OrganizationConfigRuleArn': 'string' } **Response Structure** * *(dict) --* * **OrganizationConfigRuleArn** *(string) --* The Amazon Resource Name (ARN) of an organization Config rule. **Exceptions** * "ConfigService.Client.exceptions.MaxNumberOfOrganizationConfigRu lesExceededException" * "ConfigService.Client.exceptions.ResourceInUseException" * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.OrganizationAccessDeniedExcepti on" * "ConfigService.Client.exceptions.NoAvailableOrganizationExceptio n" * "ConfigService.Client.exceptions.OrganizationAllFeaturesNotEnabl edException" * "ConfigService.Client.exceptions.InsufficientPermissionsExceptio n" ConfigService / Client / close close ***** ConfigService.Client.close() Closes underlying endpoint connections. ConfigService / Client / start_configuration_recorder start_configuration_recorder **************************** ConfigService.Client.start_configuration_recorder(**kwargs) Starts the customer managed configuration recorder. The customer managed configuration recorder will begin recording configuration changes for the resource types you specify. You must have created a delivery channel to successfully start the customer managed configuration recorder. You can use the PutDeliveryChannel operation to create a delivery channel. See also: AWS API Documentation **Request Syntax** response = client.start_configuration_recorder( ConfigurationRecorderName='string' ) Parameters: **ConfigurationRecorderName** (*string*) -- **[REQUIRED]** The name of the customer managed configuration recorder that you want to start. Returns: None **Exceptions** * "ConfigService.Client.exceptions.NoSuchConfigurationRecorderExce ption" * "ConfigService.Client.exceptions.NoAvailableDeliveryChannelExcep tion" * "ConfigService.Client.exceptions.UnmodifiableEntityException" ConfigService / Client / describe_config_rule_evaluation_status describe_config_rule_evaluation_status ************************************** ConfigService.Client.describe_config_rule_evaluation_status(**kwargs) Returns status information for each of your Config managed rules. The status includes information such as the last time Config invoked the rule, the last time Config failed to invoke the rule, and the related error for the last failure. See also: AWS API Documentation **Request Syntax** response = client.describe_config_rule_evaluation_status( ConfigRuleNames=[ 'string', ], NextToken='string', Limit=123 ) Parameters: * **ConfigRuleNames** (*list*) -- The name of the Config managed rules for which you want status information. If you do not specify any names, Config returns status information for all Config managed rules that you use. * *(string) --* * **NextToken** (*string*) -- The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. * **Limit** (*integer*) -- The number of rule evaluation results that you want returned. This parameter is required if the rule limit for your account is more than the default of 1000 rules. For information about requesting a rule limit increase, see Config Limits in the *Amazon Web Services General Reference Guide*. Return type: dict Returns: **Response Syntax** { 'ConfigRulesEvaluationStatus': [ { 'ConfigRuleName': 'string', 'ConfigRuleArn': 'string', 'ConfigRuleId': 'string', 'LastSuccessfulInvocationTime': datetime(2015, 1, 1), 'LastFailedInvocationTime': datetime(2015, 1, 1), 'LastSuccessfulEvaluationTime': datetime(2015, 1, 1), 'LastFailedEvaluationTime': datetime(2015, 1, 1), 'FirstActivatedTime': datetime(2015, 1, 1), 'LastDeactivatedTime': datetime(2015, 1, 1), 'LastErrorCode': 'string', 'LastErrorMessage': 'string', 'FirstEvaluationStarted': True|False, 'LastDebugLogDeliveryStatus': 'string', 'LastDebugLogDeliveryStatusReason': 'string', 'LastDebugLogDeliveryTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **ConfigRulesEvaluationStatus** *(list) --* Status information about your Config managed rules. * *(dict) --* Status information for your Config Managed rules and Config Custom Policy rules. The status includes information such as the last time the rule ran, the last time it failed, and the related error for the last failure. This operation does not return status information about Config Custom Lambda rules. * **ConfigRuleName** *(string) --* The name of the Config rule. * **ConfigRuleArn** *(string) --* The Amazon Resource Name (ARN) of the Config rule. * **ConfigRuleId** *(string) --* The ID of the Config rule. * **LastSuccessfulInvocationTime** *(datetime) --* The time that Config last successfully invoked the Config rule to evaluate your Amazon Web Services resources. * **LastFailedInvocationTime** *(datetime) --* The time that Config last failed to invoke the Config rule to evaluate your Amazon Web Services resources. * **LastSuccessfulEvaluationTime** *(datetime) --* The time that Config last successfully evaluated your Amazon Web Services resources against the rule. * **LastFailedEvaluationTime** *(datetime) --* The time that Config last failed to evaluate your Amazon Web Services resources against the rule. * **FirstActivatedTime** *(datetime) --* The time that you first activated the Config rule. * **LastDeactivatedTime** *(datetime) --* The time that you last turned off the Config rule. * **LastErrorCode** *(string) --* The error code that Config returned when the rule last failed. * **LastErrorMessage** *(string) --* The error message that Config returned when the rule last failed. * **FirstEvaluationStarted** *(boolean) --* Indicates whether Config has evaluated your resources against the rule at least once. * "true" - Config has evaluated your Amazon Web Services resources against the rule at least once. * "false" - Config has not finished evaluating your Amazon Web Services resources against the rule at least once. * **LastDebugLogDeliveryStatus** *(string) --* The status of the last attempted delivery of a debug log for your Config Custom Policy rules. Either "Successful" or "Failed". * **LastDebugLogDeliveryStatusReason** *(string) --* The reason Config was not able to deliver a debug log. This is for the last failed attempt to retrieve a debug log for your Config Custom Policy rules. * **LastDebugLogDeliveryTime** *(datetime) --* The time Config last attempted to deliver a debug log for your Config Custom Policy rules. * **NextToken** *(string) --* The string that you use in a subsequent request to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.NoSuchConfigRuleException" * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.InvalidNextTokenException" ConfigService / Client / delete_resource_config delete_resource_config ********************** ConfigService.Client.delete_resource_config(**kwargs) Records the configuration state for a custom resource that has been deleted. This API records a new ConfigurationItem with a ResourceDeleted status. You can retrieve the ConfigurationItems recorded for this resource in your Config History. See also: AWS API Documentation **Request Syntax** response = client.delete_resource_config( ResourceType='string', ResourceId='string' ) Parameters: * **ResourceType** (*string*) -- **[REQUIRED]** The type of the resource. * **ResourceId** (*string*) -- **[REQUIRED]** Unique identifier of the resource. Returns: None **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.NoRunningConfigurationRecorderE xception" ConfigService / Client / describe_conformance_packs describe_conformance_packs ************************** ConfigService.Client.describe_conformance_packs(**kwargs) Returns a list of one or more conformance packs. See also: AWS API Documentation **Request Syntax** response = client.describe_conformance_packs( ConformancePackNames=[ 'string', ], Limit=123, NextToken='string' ) Parameters: * **ConformancePackNames** (*list*) -- Comma-separated list of conformance pack names for which you want details. If you do not specify any names, Config returns details for all your conformance packs. * *(string) --* * **Limit** (*integer*) -- The maximum number of conformance packs returned on each page. * **NextToken** (*string*) -- The "nextToken" string returned in a previous request that you use to request the next page of results in a paginated response. Return type: dict Returns: **Response Syntax** { 'ConformancePackDetails': [ { 'ConformancePackName': 'string', 'ConformancePackArn': 'string', 'ConformancePackId': 'string', 'DeliveryS3Bucket': 'string', 'DeliveryS3KeyPrefix': 'string', 'ConformancePackInputParameters': [ { 'ParameterName': 'string', 'ParameterValue': 'string' }, ], 'LastUpdateRequestedTime': datetime(2015, 1, 1), 'CreatedBy': 'string', 'TemplateSSMDocumentDetails': { 'DocumentName': 'string', 'DocumentVersion': 'string' } }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **ConformancePackDetails** *(list) --* Returns a list of "ConformancePackDetail" objects. * *(dict) --* Returns details of a conformance pack. A conformance pack is a collection of Config rules and remediation actions that can be easily deployed in an account and a region. * **ConformancePackName** *(string) --* Name of the conformance pack. * **ConformancePackArn** *(string) --* Amazon Resource Name (ARN) of the conformance pack. * **ConformancePackId** *(string) --* ID of the conformance pack. * **DeliveryS3Bucket** *(string) --* The name of the Amazon S3 bucket where Config stores conformance pack templates. Note: This field is optional. * **DeliveryS3KeyPrefix** *(string) --* The prefix for the Amazon S3 bucket. Note: This field is optional. * **ConformancePackInputParameters** *(list) --* A list of "ConformancePackInputParameter" objects. * *(dict) --* Input parameters in the form of key-value pairs for the conformance pack, both of which you define. Keys can have a maximum character length of 255 characters, and values can have a maximum length of 4096 characters. * **ParameterName** *(string) --* One part of a key-value pair. * **ParameterValue** *(string) --* Another part of the key-value pair. * **LastUpdateRequestedTime** *(datetime) --* The last time a conformation pack update was requested. * **CreatedBy** *(string) --* The Amazon Web Services service that created the conformance pack. * **TemplateSSMDocumentDetails** *(dict) --* An object that contains the name or Amazon Resource Name (ARN) of the Amazon Web Services Systems Manager document (SSM document) and the version of the SSM document that is used to create a conformance pack. * **DocumentName** *(string) --* The name or Amazon Resource Name (ARN) of the SSM document to use to create a conformance pack. If you use the document name, Config checks only your account and Amazon Web Services Region for the SSM document. * **DocumentVersion** *(string) --* The version of the SSM document to use to create a conformance pack. By default, Config uses the latest version. Note: This field is optional. * **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** * "ConfigService.Client.exceptions.NoSuchConformancePackException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidParameterValueException" ConfigService / Client / describe_organization_config_rule_statuses describe_organization_config_rule_statuses ****************************************** ConfigService.Client.describe_organization_config_rule_statuses(**kwargs) Provides organization Config rule deployment status for an organization. Note: The status is not considered successful until organization Config rule is successfully deployed in all the member accounts with an exception of excluded accounts.When you specify the limit and the next token, you receive a paginated response. Limit and next token are not applicable if you specify organization Config rule names. It is only applicable, when you request all the organization Config rules. See also: AWS API Documentation **Request Syntax** response = client.describe_organization_config_rule_statuses( OrganizationConfigRuleNames=[ 'string', ], Limit=123, NextToken='string' ) Parameters: * **OrganizationConfigRuleNames** (*list*) -- The names of organization Config rules for which you want status details. If you do not specify any names, Config returns details for all your organization Config rules. * *(string) --* * **Limit** (*integer*) -- The maximum number of "OrganizationConfigRuleStatuses" returned on each page. If you do no specify a number, Config uses the default. The default is 100. * **NextToken** (*string*) -- The "nextToken" string 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** { 'OrganizationConfigRuleStatuses': [ { 'OrganizationConfigRuleName': 'string', 'OrganizationRuleStatus': 'CREATE_SUCCESSFUL'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_SUCCESSFUL'|'DELETE_FAILED'|'DELETE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_IN_PROGRESS'|'UPDATE_FAILED', 'ErrorCode': 'string', 'ErrorMessage': 'string', 'LastUpdateTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **OrganizationConfigRuleStatuses** *(list) --* A list of "OrganizationConfigRuleStatus" objects. * *(dict) --* Returns the status for an organization Config rule in an organization. * **OrganizationConfigRuleName** *(string) --* The name that you assign to organization Config rule. * **OrganizationRuleStatus** *(string) --* Indicates deployment status of an organization Config rule. When management account calls PutOrganizationConfigRule action for the first time, Config rule status is created in all the member accounts. When management account calls PutOrganizationConfigRule action for the second time, Config rule status is updated in all the member accounts. Additionally, Config rule status is updated when one or more member accounts join or leave an organization. Config rule status is deleted when the management account deletes OrganizationConfigRule in all the member accounts and disables service access for "config-multiaccountsetup.amazonaws.com". Config sets the state of the rule to: * "CREATE_SUCCESSFUL" when an organization Config rule has been successfully created in all the member accounts. * "CREATE_IN_PROGRESS" when an organization Config rule creation is in progress. * "CREATE_FAILED" when an organization Config rule creation failed in one or more member accounts within that organization. * "DELETE_FAILED" when an organization Config rule deletion failed in one or more member accounts within that organization. * "DELETE_IN_PROGRESS" when an organization Config rule deletion is in progress. * "DELETE_SUCCESSFUL" when an organization Config rule has been successfully deleted from all the member accounts. * "UPDATE_SUCCESSFUL" when an organization Config rule has been successfully updated in all the member accounts. * "UPDATE_IN_PROGRESS" when an organization Config rule update is in progress. * "UPDATE_FAILED" when an organization Config rule update failed in one or more member accounts within that organization. * **ErrorCode** *(string) --* An error code that is returned when organization Config rule creation or deletion has failed. * **ErrorMessage** *(string) --* An error message indicating that organization Config rule creation or deletion failed due to an error. * **LastUpdateTime** *(datetime) --* The timestamp of the last update. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.NoSuchOrganizationConfigRuleExc eption" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.OrganizationAccessDeniedExcepti on" ConfigService / Client / describe_delivery_channels describe_delivery_channels ************************** ConfigService.Client.describe_delivery_channels(**kwargs) Returns details about the specified delivery channel. If a delivery channel is not specified, this operation returns the details of all delivery channels associated with the account. Note: Currently, you can specify only one delivery channel per region in your account. See also: AWS API Documentation **Request Syntax** response = client.describe_delivery_channels( DeliveryChannelNames=[ 'string', ] ) Parameters: **DeliveryChannelNames** (*list*) -- A list of delivery channel names. * *(string) --* Return type: dict Returns: **Response Syntax** { 'DeliveryChannels': [ { 'name': 'string', 's3BucketName': 'string', 's3KeyPrefix': 'string', 's3KmsKeyArn': 'string', 'snsTopicARN': 'string', 'configSnapshotDeliveryProperties': { 'deliveryFrequency': 'One_Hour'|'Three_Hours'|'Six_Hours'|'Twelve_Hours'|'TwentyFour_Hours' } }, ] } **Response Structure** * *(dict) --* The output for the DescribeDeliveryChannels action. * **DeliveryChannels** *(list) --* A list that contains the descriptions of the specified delivery channel. * *(dict) --* The channel through which Config delivers notifications and updated configuration states. * **name** *(string) --* The name of the delivery channel. By default, Config assigns the name "default" when creating the delivery channel. To change the delivery channel name, you must use the DeleteDeliveryChannel action to delete your current delivery channel, and then you must use the PutDeliveryChannel command to create a delivery channel that has the desired name. * **s3BucketName** *(string) --* The name of the Amazon S3 bucket to which Config delivers configuration snapshots and configuration history files. If you specify a bucket that belongs to another Amazon Web Services account, that bucket must have policies that grant access permissions to Config. For more information, see Permissions for the Amazon S3 Bucket in the *Config Developer Guide*. * **s3KeyPrefix** *(string) --* The prefix for the specified Amazon S3 bucket. * **s3KmsKeyArn** *(string) --* The Amazon Resource Name (ARN) of the Key Management Service (KMS ) KMS key (KMS key) used to encrypt objects delivered by Config. Must belong to the same Region as the destination S3 bucket. * **snsTopicARN** *(string) --* The Amazon Resource Name (ARN) of the Amazon SNS topic to which Config sends notifications about configuration changes. If you choose a topic from another account, the topic must have policies that grant access permissions to Config. For more information, see Permissions for the Amazon SNS Topic in the *Config Developer Guide*. * **configSnapshotDeliveryProperties** *(dict) --* The options for how often Config delivers configuration snapshots to the Amazon S3 bucket. * **deliveryFrequency** *(string) --* The frequency with which Config delivers configuration snapshots. **Exceptions** * "ConfigService.Client.exceptions.NoSuchDeliveryChannelException" ConfigService / Client / describe_compliance_by_resource describe_compliance_by_resource ******************************* ConfigService.Client.describe_compliance_by_resource(**kwargs) Indicates whether the specified Amazon Web Services resources are compliant. If a resource is noncompliant, this operation returns the number of Config rules that the resource does not comply with. A resource is compliant if it complies with all the Config rules that evaluate it. It is noncompliant if it does not comply with one or more of these rules. If Config has no current evaluation results for the resource, it returns "INSUFFICIENT_DATA". This result might indicate one of the following conditions about the rules that evaluate the resource: * Config has never invoked an evaluation for the rule. To check whether it has, use the "DescribeConfigRuleEvaluationStatus" action to get the "LastSuccessfulInvocationTime" and "LastFailedInvocationTime". * The rule's Lambda function is failing to send evaluation results to Config. Verify that the role that you assigned to your configuration recorder includes the "config:PutEvaluations" permission. If the rule is a custom rule, verify that the Lambda execution role includes the "config:PutEvaluations" permission. * The rule's Lambda function has returned "NOT_APPLICABLE" for all evaluation results. This can occur if the resources were deleted or removed from the rule's scope. See also: AWS API Documentation **Request Syntax** response = client.describe_compliance_by_resource( ResourceType='string', ResourceId='string', ComplianceTypes=[ 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', ], Limit=123, NextToken='string' ) Parameters: * **ResourceType** (*string*) -- The types of Amazon Web Services resources for which you want compliance information (for example, "AWS::EC2::Instance"). For this operation, you can specify that the resource type is an Amazon Web Services account by specifying "AWS::::Account". * **ResourceId** (*string*) -- The ID of the Amazon Web Services resource for which you want compliance information. You can specify only one resource ID. If you specify a resource ID, you must also specify a type for "ResourceType". * **ComplianceTypes** (*list*) -- Filters the results by compliance. * *(string) --* * **Limit** (*integer*) -- The maximum number of evaluation results returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'ComplianceByResources': [ { 'ResourceType': 'string', 'ResourceId': 'string', 'Compliance': { 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'ComplianceContributorCount': { 'CappedCount': 123, 'CapExceeded': True|False } } }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **ComplianceByResources** *(list) --* Indicates whether the specified Amazon Web Services resource complies with all of the Config rules that evaluate it. * *(dict) --* Indicates whether an Amazon Web Services resource that is evaluated according to one or more Config rules is compliant. A resource is compliant if it complies with all of the rules that evaluate it. A resource is noncompliant if it does not comply with one or more of these rules. * **ResourceType** *(string) --* The type of the Amazon Web Services resource that was evaluated. * **ResourceId** *(string) --* The ID of the Amazon Web Services resource that was evaluated. * **Compliance** *(dict) --* Indicates whether the Amazon Web Services resource complies with all of the Config rules that evaluated it. * **ComplianceType** *(string) --* Indicates whether an Amazon Web Services resource or Config rule is compliant. A resource is compliant if it complies with all of the Config rules that evaluate it. A resource is noncompliant if it does not comply with one or more of these rules. A rule is compliant if all of the resources that the rule evaluates comply with it. A rule is noncompliant if any of these resources do not comply. Config returns the "INSUFFICIENT_DATA" value when no evaluation results are available for the Amazon Web Services resource or Config rule. For the "Compliance" data type, Config supports only "COMPLIANT", "NON_COMPLIANT", and "INSUFFICIENT_DATA" values. Config does not support the "NOT_APPLICABLE" value for the "Compliance" data type. * **ComplianceContributorCount** *(dict) --* The number of Amazon Web Services resources or Config rules that cause a result of "NON_COMPLIANT", up to a maximum number. * **CappedCount** *(integer) --* The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item. * **CapExceeded** *(boolean) --* Indicates whether the maximum count is reached. * **NextToken** *(string) --* The string that you use in a subsequent request to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.InvalidNextTokenException" ConfigService / Client / list_conformance_pack_compliance_scores list_conformance_pack_compliance_scores *************************************** ConfigService.Client.list_conformance_pack_compliance_scores(**kwargs) Returns a list of conformance pack compliance scores. A compliance score is the percentage of the number of compliant rule-resource combinations in a conformance pack compared to the number of total possible rule-resource combinations in the conformance pack. This metric provides you with a high-level view of the compliance state of your conformance packs. You can use it to identify, investigate, and understand the level of compliance in your conformance packs. Note: Conformance packs with no evaluation results will have a compliance score of "INSUFFICIENT_DATA". See also: AWS API Documentation **Request Syntax** response = client.list_conformance_pack_compliance_scores( Filters={ 'ConformancePackNames': [ 'string', ] }, SortOrder='ASCENDING'|'DESCENDING', SortBy='SCORE', Limit=123, NextToken='string' ) Parameters: * **Filters** (*dict*) -- Filters the results based on the "ConformancePackComplianceScoresFilters". * **ConformancePackNames** *(list) --* **[REQUIRED]** The names of the conformance packs whose compliance scores you want to include in the conformance pack compliance score result set. You can include up to 25 conformance packs in the "ConformancePackNames" array of strings, each with a character limit of 256 characters for the conformance pack name. * *(string) --* * **SortOrder** (*string*) -- Determines the order in which conformance pack compliance scores are sorted. Either in ascending or descending order. By default, conformance pack compliance scores are sorted in alphabetical order by name of the conformance pack. Conformance pack compliance scores are sorted in reverse alphabetical order if you enter "DESCENDING". You can sort conformance pack compliance scores by the numerical value of the compliance score by entering "SCORE" in the "SortBy" action. When compliance scores are sorted by "SCORE", conformance packs with a compliance score of "INSUFFICIENT_DATA" will be last when sorting by ascending order and first when sorting by descending order. * **SortBy** (*string*) -- Sorts your conformance pack compliance scores in either ascending or descending order, depending on "SortOrder". By default, conformance pack compliance scores are sorted in alphabetical order by name of the conformance pack. Enter "SCORE", to sort conformance pack compliance scores by the numerical value of the compliance score. * **Limit** (*integer*) -- The maximum number of conformance pack compliance scores returned on each page. * **NextToken** (*string*) -- The "nextToken" string in a prior request that you can use to get the paginated response for the next set of conformance pack compliance scores. Return type: dict Returns: **Response Syntax** { 'NextToken': 'string', 'ConformancePackComplianceScores': [ { 'Score': 'string', 'ConformancePackName': 'string', 'LastUpdatedTime': datetime(2015, 1, 1) }, ] } **Response Structure** * *(dict) --* * **NextToken** *(string) --* The "nextToken" string that you can use to get the next page of results in a paginated response. * **ConformancePackComplianceScores** *(list) --* A list of "ConformancePackComplianceScore" objects. * *(dict) --* A compliance score is the percentage of the number of compliant rule-resource combinations in a conformance pack compared to the number of total possible rule-resource combinations in the conformance pack. This metric provides you with a high-level view of the compliance state of your conformance packs. You can use it to identify, investigate, and understand the level of compliance in your conformance packs. * **Score** *(string) --* Compliance score for the conformance pack. Conformance packs with no evaluation results will have a compliance score of "INSUFFICIENT_DATA". * **ConformancePackName** *(string) --* The name of the conformance pack. * **LastUpdatedTime** *(datetime) --* The time that the conformance pack compliance score was last updated. **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" ConfigService / Client / put_evaluations put_evaluations *************** ConfigService.Client.put_evaluations(**kwargs) Used by an Lambda function to deliver evaluation results to Config. This operation is required in every Lambda function that is invoked by an Config rule. See also: AWS API Documentation **Request Syntax** response = client.put_evaluations( Evaluations=[ { 'ComplianceResourceType': 'string', 'ComplianceResourceId': 'string', 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'Annotation': 'string', 'OrderingTimestamp': datetime(2015, 1, 1) }, ], ResultToken='string', TestMode=True|False ) Parameters: * **Evaluations** (*list*) -- The assessments that the Lambda function performs. Each evaluation identifies an Amazon Web Services resource and indicates whether it complies with the Config rule that invokes the Lambda function. * *(dict) --* Identifies an Amazon Web Services resource and indicates whether it complies with the Config rule that it was evaluated against. * **ComplianceResourceType** *(string) --* **[REQUIRED]** The type of Amazon Web Services resource that was evaluated. * **ComplianceResourceId** *(string) --* **[REQUIRED]** The ID of the Amazon Web Services resource that was evaluated. * **ComplianceType** *(string) --* **[REQUIRED]** Indicates whether the Amazon Web Services resource complies with the Config rule that it was evaluated against. For the "Evaluation" data type, Config supports only the "COMPLIANT", "NON_COMPLIANT", and "NOT_APPLICABLE" values. Config does not support the "INSUFFICIENT_DATA" value for this data type. Similarly, Config does not accept "INSUFFICIENT_DATA" as the value for "ComplianceType" from a "PutEvaluations" request. For example, an Lambda function for a custom Config rule cannot pass an "INSUFFICIENT_DATA" value to Config. * **Annotation** *(string) --* Supplementary information about how the evaluation determined the compliance. * **OrderingTimestamp** *(datetime) --* **[REQUIRED]** The time of the event in Config that triggered the evaluation. For event-based evaluations, the time indicates when Config created the configuration item that triggered the evaluation. For periodic evaluations, the time indicates when Config triggered the evaluation at the frequency that you specified (for example, every 24 hours). * **ResultToken** (*string*) -- **[REQUIRED]** An encrypted token that associates an evaluation with an Config rule. Identifies the rule and the event that triggered the evaluation. * **TestMode** (*boolean*) -- Use this parameter to specify a test run for "PutEvaluations". You can verify whether your Lambda function will deliver evaluation results to Config. No updates occur to your existing evaluations, and evaluation results are not sent to Config. Note: When "TestMode" is "true", "PutEvaluations" doesn't require a valid value for the "ResultToken" parameter, but the value cannot be null. Return type: dict Returns: **Response Syntax** { 'FailedEvaluations': [ { 'ComplianceResourceType': 'string', 'ComplianceResourceId': 'string', 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'Annotation': 'string', 'OrderingTimestamp': datetime(2015, 1, 1) }, ] } **Response Structure** * *(dict) --* * **FailedEvaluations** *(list) --* Requests that failed because of a client or server error. * *(dict) --* Identifies an Amazon Web Services resource and indicates whether it complies with the Config rule that it was evaluated against. * **ComplianceResourceType** *(string) --* The type of Amazon Web Services resource that was evaluated. * **ComplianceResourceId** *(string) --* The ID of the Amazon Web Services resource that was evaluated. * **ComplianceType** *(string) --* Indicates whether the Amazon Web Services resource complies with the Config rule that it was evaluated against. For the "Evaluation" data type, Config supports only the "COMPLIANT", "NON_COMPLIANT", and "NOT_APPLICABLE" values. Config does not support the "INSUFFICIENT_DATA" value for this data type. Similarly, Config does not accept "INSUFFICIENT_DATA" as the value for "ComplianceType" from a "PutEvaluations" request. For example, an Lambda function for a custom Config rule cannot pass an "INSUFFICIENT_DATA" value to Config. * **Annotation** *(string) --* Supplementary information about how the evaluation determined the compliance. * **OrderingTimestamp** *(datetime) --* The time of the event in Config that triggered the evaluation. For event-based evaluations, the time indicates when Config created the configuration item that triggered the evaluation. For periodic evaluations, the time indicates when Config triggered the evaluation at the frequency that you specified (for example, every 24 hours). **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.InvalidResultTokenException" * "ConfigService.Client.exceptions.NoSuchConfigRuleException" ConfigService / Client / describe_pending_aggregation_requests describe_pending_aggregation_requests ************************************* ConfigService.Client.describe_pending_aggregation_requests(**kwargs) Returns a list of all pending aggregation requests. See also: AWS API Documentation **Request Syntax** response = client.describe_pending_aggregation_requests( Limit=123, NextToken='string' ) Parameters: * **Limit** (*integer*) -- The maximum number of evaluation results returned on each page. The default is maximum. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'PendingAggregationRequests': [ { 'RequesterAccountId': 'string', 'RequesterAwsRegion': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **PendingAggregationRequests** *(list) --* Returns a PendingAggregationRequests object. * *(dict) --* An object that represents the account ID and region of an aggregator account that is requesting authorization but is not yet authorized. * **RequesterAccountId** *(string) --* The 12-digit account ID of the account requesting to aggregate data. * **RequesterAwsRegion** *(string) --* The region requesting to aggregate data. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.InvalidLimitException" ConfigService / Client / list_aggregate_discovered_resources list_aggregate_discovered_resources *********************************** ConfigService.Client.list_aggregate_discovered_resources(**kwargs) Accepts a resource type and returns a list of resource identifiers that are aggregated for a specific resource type across accounts and regions. A resource identifier includes the resource type, ID, (if available) the custom resource name, source account, and source region. You can narrow the results to include only resources that have specific resource IDs, or a resource name, or source account ID, or source region. For example, if the input consists of accountID 12345678910 and the region is us-east-1 for resource type "AWS::EC2::Instance" then the API returns all the EC2 instance identifiers of accountID 12345678910 and region us-east-1. See also: AWS API Documentation **Request Syntax** response = client.list_aggregate_discovered_resources( ConfigurationAggregatorName='string', ResourceType='AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', Filters={ 'AccountId': 'string', 'ResourceId': 'string', 'ResourceName': 'string', 'Region': 'string' }, Limit=123, NextToken='string' ) Parameters: * **ConfigurationAggregatorName** (*string*) -- **[REQUIRED]** The name of the configuration aggregator. * **ResourceType** (*string*) -- **[REQUIRED]** The type of resources that you want Config to list in the response. * **Filters** (*dict*) -- Filters the results based on the "ResourceFilters" object. * **AccountId** *(string) --* The 12-digit source account ID. * **ResourceId** *(string) --* The ID of the resource. * **ResourceName** *(string) --* The name of the resource. * **Region** *(string) --* The source region. * **Limit** (*integer*) -- The maximum number of resource identifiers returned on each page. You cannot specify a number greater than 100. If you specify 0, Config uses the default. * **NextToken** (*string*) -- The "nextToken" string 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** { 'ResourceIdentifiers': [ { 'SourceAccountId': 'string', 'SourceRegion': 'string', 'ResourceId': 'string', 'ResourceType': 'AWS::EC2::CustomerGateway'|'AWS::EC2::EIP'|'AWS::EC2::Host'|'AWS::EC2::Instance'|'AWS::EC2::InternetGateway'|'AWS::EC2::NetworkAcl'|'AWS::EC2::NetworkInterface'|'AWS::EC2::RouteTable'|'AWS::EC2::SecurityGroup'|'AWS::EC2::Subnet'|'AWS::CloudTrail::Trail'|'AWS::EC2::Volume'|'AWS::EC2::VPC'|'AWS::EC2::VPNConnection'|'AWS::EC2::VPNGateway'|'AWS::EC2::RegisteredHAInstance'|'AWS::EC2::NatGateway'|'AWS::EC2::EgressOnlyInternetGateway'|'AWS::EC2::VPCEndpoint'|'AWS::EC2::VPCEndpointService'|'AWS::EC2::FlowLog'|'AWS::EC2::VPCPeeringConnection'|'AWS::Elasticsearch::Domain'|'AWS::IAM::Group'|'AWS::IAM::Policy'|'AWS::IAM::Role'|'AWS::IAM::User'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::ACM::Certificate'|'AWS::RDS::DBInstance'|'AWS::RDS::DBSubnetGroup'|'AWS::RDS::DBSecurityGroup'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBCluster'|'AWS::RDS::DBClusterSnapshot'|'AWS::RDS::EventSubscription'|'AWS::S3::Bucket'|'AWS::S3::AccountPublicAccessBlock'|'AWS::Redshift::Cluster'|'AWS::Redshift::ClusterSnapshot'|'AWS::Redshift::ClusterParameterGroup'|'AWS::Redshift::ClusterSecurityGroup'|'AWS::Redshift::ClusterSubnetGroup'|'AWS::Redshift::EventSubscription'|'AWS::SSM::ManagedInstanceInventory'|'AWS::CloudWatch::Alarm'|'AWS::CloudFormation::Stack'|'AWS::ElasticLoadBalancing::LoadBalancer'|'AWS::AutoScaling::AutoScalingGroup'|'AWS::AutoScaling::LaunchConfiguration'|'AWS::AutoScaling::ScalingPolicy'|'AWS::AutoScaling::ScheduledAction'|'AWS::DynamoDB::Table'|'AWS::CodeBuild::Project'|'AWS::WAF::RateBasedRule'|'AWS::WAF::Rule'|'AWS::WAF::RuleGroup'|'AWS::WAF::WebACL'|'AWS::WAFRegional::RateBasedRule'|'AWS::WAFRegional::Rule'|'AWS::WAFRegional::RuleGroup'|'AWS::WAFRegional::WebACL'|'AWS::CloudFront::Distribution'|'AWS::CloudFront::StreamingDistribution'|'AWS::Lambda::Function'|'AWS::NetworkFirewall::Firewall'|'AWS::NetworkFirewall::FirewallPolicy'|'AWS::NetworkFirewall::RuleGroup'|'AWS::ElasticBeanstalk::Application'|'AWS::ElasticBeanstalk::ApplicationVersion'|'AWS::ElasticBeanstalk::Environment'|'AWS::WAFv2::WebACL'|'AWS::WAFv2::RuleGroup'|'AWS::WAFv2::IPSet'|'AWS::WAFv2::RegexPatternSet'|'AWS::WAFv2::ManagedRuleSet'|'AWS::XRay::EncryptionConfig'|'AWS::SSM::AssociationCompliance'|'AWS::SSM::PatchCompliance'|'AWS::Shield::Protection'|'AWS::ShieldRegional::Protection'|'AWS::Config::ConformancePackCompliance'|'AWS::Config::ResourceCompliance'|'AWS::ApiGateway::Stage'|'AWS::ApiGateway::RestApi'|'AWS::ApiGatewayV2::Stage'|'AWS::ApiGatewayV2::Api'|'AWS::CodePipeline::Pipeline'|'AWS::ServiceCatalog::CloudFormationProvisionedProduct'|'AWS::ServiceCatalog::CloudFormationProduct'|'AWS::ServiceCatalog::Portfolio'|'AWS::SQS::Queue'|'AWS::KMS::Key'|'AWS::QLDB::Ledger'|'AWS::SecretsManager::Secret'|'AWS::SNS::Topic'|'AWS::SSM::FileData'|'AWS::Backup::BackupPlan'|'AWS::Backup::BackupSelection'|'AWS::Backup::BackupVault'|'AWS::Backup::RecoveryPoint'|'AWS::ECR::Repository'|'AWS::ECS::Cluster'|'AWS::ECS::Service'|'AWS::ECS::TaskDefinition'|'AWS::EFS::AccessPoint'|'AWS::EFS::FileSystem'|'AWS::EKS::Cluster'|'AWS::OpenSearch::Domain'|'AWS::EC2::TransitGateway'|'AWS::Kinesis::Stream'|'AWS::Kinesis::StreamConsumer'|'AWS::CodeDeploy::Application'|'AWS::CodeDeploy::DeploymentConfig'|'AWS::CodeDeploy::DeploymentGroup'|'AWS::EC2::LaunchTemplate'|'AWS::ECR::PublicRepository'|'AWS::GuardDuty::Detector'|'AWS::EMR::SecurityConfiguration'|'AWS::SageMaker::CodeRepository'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::Route53Resolver::ResolverRule'|'AWS::Route53Resolver::ResolverRuleAssociation'|'AWS::DMS::ReplicationSubnetGroup'|'AWS::DMS::EventSubscription'|'AWS::MSK::Cluster'|'AWS::StepFunctions::Activity'|'AWS::WorkSpaces::Workspace'|'AWS::WorkSpaces::ConnectionAlias'|'AWS::SageMaker::Model'|'AWS::ElasticLoadBalancingV2::Listener'|'AWS::StepFunctions::StateMachine'|'AWS::Batch::JobQueue'|'AWS::Batch::ComputeEnvironment'|'AWS::AccessAnalyzer::Analyzer'|'AWS::Athena::WorkGroup'|'AWS::Athena::DataCatalog'|'AWS::Detective::Graph'|'AWS::GlobalAccelerator::Accelerator'|'AWS::GlobalAccelerator::EndpointGroup'|'AWS::GlobalAccelerator::Listener'|'AWS::EC2::TransitGatewayAttachment'|'AWS::EC2::TransitGatewayRouteTable'|'AWS::DMS::Certificate'|'AWS::AppConfig::Application'|'AWS::AppSync::GraphQLApi'|'AWS::DataSync::LocationSMB'|'AWS::DataSync::LocationFSxLustre'|'AWS::DataSync::LocationS3'|'AWS::DataSync::LocationEFS'|'AWS::DataSync::Task'|'AWS::DataSync::LocationNFS'|'AWS::EC2::NetworkInsightsAccessScopeAnalysis'|'AWS::EKS::FargateProfile'|'AWS::Glue::Job'|'AWS::GuardDuty::ThreatIntelSet'|'AWS::GuardDuty::IPSet'|'AWS::SageMaker::Workteam'|'AWS::SageMaker::NotebookInstanceLifecycleConfig'|'AWS::ServiceDiscovery::Service'|'AWS::ServiceDiscovery::PublicDnsNamespace'|'AWS::SES::ContactList'|'AWS::SES::ConfigurationSet'|'AWS::Route53::HostedZone'|'AWS::IoTEvents::Input'|'AWS::IoTEvents::DetectorModel'|'AWS::IoTEvents::AlarmModel'|'AWS::ServiceDiscovery::HttpNamespace'|'AWS::Events::EventBus'|'AWS::ImageBuilder::ContainerRecipe'|'AWS::ImageBuilder::DistributionConfiguration'|'AWS::ImageBuilder::InfrastructureConfiguration'|'AWS::DataSync::LocationObjectStorage'|'AWS::DataSync::LocationHDFS'|'AWS::Glue::Classifier'|'AWS::Route53RecoveryReadiness::Cell'|'AWS::Route53RecoveryReadiness::ReadinessCheck'|'AWS::ECR::RegistryPolicy'|'AWS::Backup::ReportPlan'|'AWS::Lightsail::Certificate'|'AWS::RUM::AppMonitor'|'AWS::Events::Endpoint'|'AWS::SES::ReceiptRuleSet'|'AWS::Events::Archive'|'AWS::Events::ApiDestination'|'AWS::Lightsail::Disk'|'AWS::FIS::ExperimentTemplate'|'AWS::DataSync::LocationFSxWindows'|'AWS::SES::ReceiptFilter'|'AWS::GuardDuty::Filter'|'AWS::SES::Template'|'AWS::AmazonMQ::Broker'|'AWS::AppConfig::Environment'|'AWS::AppConfig::ConfigurationProfile'|'AWS::Cloud9::EnvironmentEC2'|'AWS::EventSchemas::Registry'|'AWS::EventSchemas::RegistryPolicy'|'AWS::EventSchemas::Discoverer'|'AWS::FraudDetector::Label'|'AWS::FraudDetector::EntityType'|'AWS::FraudDetector::Variable'|'AWS::FraudDetector::Outcome'|'AWS::IoT::Authorizer'|'AWS::IoT::SecurityProfile'|'AWS::IoT::RoleAlias'|'AWS::IoT::Dimension'|'AWS::IoTAnalytics::Datastore'|'AWS::Lightsail::Bucket'|'AWS::Lightsail::StaticIp'|'AWS::MediaPackage::PackagingGroup'|'AWS::Route53RecoveryReadiness::RecoveryGroup'|'AWS::ResilienceHub::ResiliencyPolicy'|'AWS::Transfer::Workflow'|'AWS::EKS::IdentityProviderConfig'|'AWS::EKS::Addon'|'AWS::Glue::MLTransform'|'AWS::IoT::Policy'|'AWS::IoT::MitigationAction'|'AWS::IoTTwinMaker::Workspace'|'AWS::IoTTwinMaker::Entity'|'AWS::IoTAnalytics::Dataset'|'AWS::IoTAnalytics::Pipeline'|'AWS::IoTAnalytics::Channel'|'AWS::IoTSiteWise::Dashboard'|'AWS::IoTSiteWise::Project'|'AWS::IoTSiteWise::Portal'|'AWS::IoTSiteWise::AssetModel'|'AWS::IVS::Channel'|'AWS::IVS::RecordingConfiguration'|'AWS::IVS::PlaybackKeyPair'|'AWS::KinesisAnalyticsV2::Application'|'AWS::RDS::GlobalCluster'|'AWS::S3::MultiRegionAccessPoint'|'AWS::DeviceFarm::TestGridProject'|'AWS::Budgets::BudgetsAction'|'AWS::Lex::Bot'|'AWS::CodeGuruReviewer::RepositoryAssociation'|'AWS::IoT::CustomMetric'|'AWS::Route53Resolver::FirewallDomainList'|'AWS::RoboMaker::RobotApplicationVersion'|'AWS::EC2::TrafficMirrorSession'|'AWS::IoTSiteWise::Gateway'|'AWS::Lex::BotAlias'|'AWS::LookoutMetrics::Alert'|'AWS::IoT::AccountAuditConfiguration'|'AWS::EC2::TrafficMirrorTarget'|'AWS::S3::StorageLens'|'AWS::IoT::ScheduledAudit'|'AWS::Events::Connection'|'AWS::EventSchemas::Schema'|'AWS::MediaPackage::PackagingConfiguration'|'AWS::KinesisVideo::SignalingChannel'|'AWS::AppStream::DirectoryConfig'|'AWS::LookoutVision::Project'|'AWS::Route53RecoveryControl::Cluster'|'AWS::Route53RecoveryControl::SafetyRule'|'AWS::Route53RecoveryControl::ControlPanel'|'AWS::Route53RecoveryControl::RoutingControl'|'AWS::Route53RecoveryReadiness::ResourceSet'|'AWS::RoboMaker::SimulationApplication'|'AWS::RoboMaker::RobotApplication'|'AWS::HealthLake::FHIRDatastore'|'AWS::Pinpoint::Segment'|'AWS::Pinpoint::ApplicationSettings'|'AWS::Events::Rule'|'AWS::EC2::DHCPOptions'|'AWS::EC2::NetworkInsightsPath'|'AWS::EC2::TrafficMirrorFilter'|'AWS::EC2::IPAM'|'AWS::IoTTwinMaker::Scene'|'AWS::NetworkManager::TransitGatewayRegistration'|'AWS::CustomerProfiles::Domain'|'AWS::AutoScaling::WarmPool'|'AWS::Connect::PhoneNumber'|'AWS::AppConfig::DeploymentStrategy'|'AWS::AppFlow::Flow'|'AWS::AuditManager::Assessment'|'AWS::CloudWatch::MetricStream'|'AWS::DeviceFarm::InstanceProfile'|'AWS::DeviceFarm::Project'|'AWS::EC2::EC2Fleet'|'AWS::EC2::SubnetRouteTableAssociation'|'AWS::ECR::PullThroughCacheRule'|'AWS::GroundStation::Config'|'AWS::ImageBuilder::ImagePipeline'|'AWS::IoT::FleetMetric'|'AWS::IoTWireless::ServiceProfile'|'AWS::NetworkManager::Device'|'AWS::NetworkManager::GlobalNetwork'|'AWS::NetworkManager::Link'|'AWS::NetworkManager::Site'|'AWS::Panorama::Package'|'AWS::Pinpoint::App'|'AWS::Redshift::ScheduledAction'|'AWS::Route53Resolver::FirewallRuleGroupAssociation'|'AWS::SageMaker::AppImageConfig'|'AWS::SageMaker::Image'|'AWS::ECS::TaskSet'|'AWS::Cassandra::Keyspace'|'AWS::Signer::SigningProfile'|'AWS::Amplify::App'|'AWS::AppMesh::VirtualNode'|'AWS::AppMesh::VirtualService'|'AWS::AppRunner::VpcConnector'|'AWS::AppStream::Application'|'AWS::CodeArtifact::Repository'|'AWS::EC2::PrefixList'|'AWS::EC2::SpotFleet'|'AWS::Evidently::Project'|'AWS::Forecast::Dataset'|'AWS::IAM::SAMLProvider'|'AWS::IAM::ServerCertificate'|'AWS::Pinpoint::Campaign'|'AWS::Pinpoint::InAppTemplate'|'AWS::SageMaker::Domain'|'AWS::Transfer::Agreement'|'AWS::Transfer::Connector'|'AWS::KinesisFirehose::DeliveryStream'|'AWS::Amplify::Branch'|'AWS::AppIntegrations::EventIntegration'|'AWS::AppMesh::Route'|'AWS::Athena::PreparedStatement'|'AWS::EC2::IPAMScope'|'AWS::Evidently::Launch'|'AWS::Forecast::DatasetGroup'|'AWS::GreengrassV2::ComponentVersion'|'AWS::GroundStation::MissionProfile'|'AWS::MediaConnect::FlowEntitlement'|'AWS::MediaConnect::FlowVpcInterface'|'AWS::MediaTailor::PlaybackConfiguration'|'AWS::MSK::Configuration'|'AWS::Personalize::Dataset'|'AWS::Personalize::Schema'|'AWS::Personalize::Solution'|'AWS::Pinpoint::EmailTemplate'|'AWS::Pinpoint::EventStream'|'AWS::ResilienceHub::App'|'AWS::ACMPCA::CertificateAuthority'|'AWS::AppConfig::HostedConfigurationVersion'|'AWS::AppMesh::VirtualGateway'|'AWS::AppMesh::VirtualRouter'|'AWS::AppRunner::Service'|'AWS::CustomerProfiles::ObjectType'|'AWS::DMS::Endpoint'|'AWS::EC2::CapacityReservation'|'AWS::EC2::ClientVpnEndpoint'|'AWS::Kendra::Index'|'AWS::KinesisVideo::Stream'|'AWS::Logs::Destination'|'AWS::Pinpoint::EmailChannel'|'AWS::S3::AccessPoint'|'AWS::NetworkManager::CustomerGatewayAssociation'|'AWS::NetworkManager::LinkAssociation'|'AWS::IoTWireless::MulticastGroup'|'AWS::Personalize::DatasetGroup'|'AWS::IoTTwinMaker::ComponentType'|'AWS::CodeBuild::ReportGroup'|'AWS::SageMaker::FeatureGroup'|'AWS::MSK::BatchScramSecret'|'AWS::AppStream::Stack'|'AWS::IoT::JobTemplate'|'AWS::IoTWireless::FuotaTask'|'AWS::IoT::ProvisioningTemplate'|'AWS::InspectorV2::Filter'|'AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation'|'AWS::ServiceDiscovery::Instance'|'AWS::Transfer::Certificate'|'AWS::MediaConnect::FlowSource'|'AWS::APS::RuleGroupsNamespace'|'AWS::CodeGuruProfiler::ProfilingGroup'|'AWS::Route53Resolver::ResolverQueryLoggingConfig'|'AWS::Batch::SchedulingPolicy'|'AWS::ACMPCA::CertificateAuthorityActivation'|'AWS::AppMesh::GatewayRoute'|'AWS::AppMesh::Mesh'|'AWS::Connect::Instance'|'AWS::Connect::QuickConnect'|'AWS::EC2::CarrierGateway'|'AWS::EC2::IPAMPool'|'AWS::EC2::TransitGatewayConnect'|'AWS::EC2::TransitGatewayMulticastDomain'|'AWS::ECS::CapacityProvider'|'AWS::IAM::InstanceProfile'|'AWS::IoT::CACertificate'|'AWS::IoTTwinMaker::SyncJob'|'AWS::KafkaConnect::Connector'|'AWS::Lambda::CodeSigningConfig'|'AWS::NetworkManager::ConnectPeer'|'AWS::ResourceExplorer2::Index'|'AWS::AppStream::Fleet'|'AWS::Cognito::UserPool'|'AWS::Cognito::UserPoolClient'|'AWS::Cognito::UserPoolGroup'|'AWS::EC2::NetworkInsightsAccessScope'|'AWS::EC2::NetworkInsightsAnalysis'|'AWS::Grafana::Workspace'|'AWS::GroundStation::DataflowEndpointGroup'|'AWS::ImageBuilder::ImageRecipe'|'AWS::KMS::Alias'|'AWS::M2::Environment'|'AWS::QuickSight::DataSource'|'AWS::QuickSight::Template'|'AWS::QuickSight::Theme'|'AWS::RDS::OptionGroup'|'AWS::Redshift::EndpointAccess'|'AWS::Route53Resolver::FirewallRuleGroup'|'AWS::SSM::Document'|'AWS::AppConfig::ExtensionAssociation'|'AWS::AppIntegrations::Application'|'AWS::AppSync::ApiCache'|'AWS::Bedrock::Guardrail'|'AWS::Bedrock::KnowledgeBase'|'AWS::Cognito::IdentityPool'|'AWS::Connect::Rule'|'AWS::Connect::User'|'AWS::EC2::ClientVpnTargetNetworkAssociation'|'AWS::EC2::EIPAssociation'|'AWS::EC2::IPAMResourceDiscovery'|'AWS::EC2::IPAMResourceDiscoveryAssociation'|'AWS::EC2::InstanceConnectEndpoint'|'AWS::EC2::SnapshotBlockPublicAccess'|'AWS::EC2::VPCBlockPublicAccessExclusion'|'AWS::EC2::VPCBlockPublicAccessOptions'|'AWS::EC2::VPCEndpointConnectionNotification'|'AWS::EC2::VPNConnectionRoute'|'AWS::Evidently::Segment'|'AWS::IAM::OIDCProvider'|'AWS::InspectorV2::Activation'|'AWS::MSK::ClusterPolicy'|'AWS::MSK::VpcConnection'|'AWS::MediaConnect::Gateway'|'AWS::MemoryDB::SubnetGroup'|'AWS::OpenSearchServerless::Collection'|'AWS::OpenSearchServerless::VpcEndpoint'|'AWS::Redshift::EndpointAuthorization'|'AWS::Route53Profiles::Profile'|'AWS::S3::StorageLensGroup'|'AWS::S3Express::BucketPolicy'|'AWS::S3Express::DirectoryBucket'|'AWS::SageMaker::InferenceExperiment'|'AWS::SecurityHub::Standard'|'AWS::Transfer::Profile', 'ResourceName': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **ResourceIdentifiers** *(list) --* Returns a list of "ResourceIdentifiers" objects. * *(dict) --* The details that identify a resource that is collected by Config aggregator, including the resource type, ID, (if available) the custom resource name, the source account, and source region. * **SourceAccountId** *(string) --* The 12-digit account ID of the source account. * **SourceRegion** *(string) --* The source region where data is aggregated. * **ResourceId** *(string) --* The ID of the Amazon Web Services resource. * **ResourceType** *(string) --* The type of the Amazon Web Services resource. * **ResourceName** *(string) --* The name of the Amazon Web Services resource. * **NextToken** *(string) --* The "nextToken" string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.ValidationException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" * "ConfigService.Client.exceptions.NoSuchConfigurationAggregatorEx ception" ConfigService / Client / put_retention_configuration put_retention_configuration *************************** ConfigService.Client.put_retention_configuration(**kwargs) Creates and updates the retention configuration with details about retention period (number of days) that Config stores your historical information. The API creates the "RetentionConfiguration" object and names the object as **default**. When you have a "RetentionConfiguration" object named **default**, calling the API modifies the default object. Note: Currently, Config supports only one retention configuration per region in your account. See also: AWS API Documentation **Request Syntax** response = client.put_retention_configuration( RetentionPeriodInDays=123 ) Parameters: **RetentionPeriodInDays** (*integer*) -- **[REQUIRED]** Number of days Config stores your historical information. Note: Currently, only applicable to the configuration item history. Return type: dict Returns: **Response Syntax** { 'RetentionConfiguration': { 'Name': 'string', 'RetentionPeriodInDays': 123 } } **Response Structure** * *(dict) --* * **RetentionConfiguration** *(dict) --* Returns a retention configuration object. * **Name** *(string) --* The name of the retention configuration object. * **RetentionPeriodInDays** *(integer) --* Number of days Config stores your historical information. Note: Currently, only applicable to the configuration item history. **Exceptions** * "ConfigService.Client.exceptions.InvalidParameterValueException" * "ConfigService.Client.exceptions.MaxNumberOfRetentionConfigurati onsExceededException" ConfigService / Client / get_conformance_pack_compliance_summary get_conformance_pack_compliance_summary *************************************** ConfigService.Client.get_conformance_pack_compliance_summary(**kwargs) Returns compliance details for the conformance pack based on the cumulative compliance results of all the rules in that conformance pack. See also: AWS API Documentation **Request Syntax** response = client.get_conformance_pack_compliance_summary( ConformancePackNames=[ 'string', ], Limit=123, NextToken='string' ) Parameters: * **ConformancePackNames** (*list*) -- **[REQUIRED]** Names of conformance packs. * *(string) --* * **Limit** (*integer*) -- The maximum number of conformance packs returned on each page. * **NextToken** (*string*) -- The nextToken string 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** { 'ConformancePackComplianceSummaryList': [ { 'ConformancePackName': 'string', 'ConformancePackComplianceStatus': 'COMPLIANT'|'NON_COMPLIANT'|'INSUFFICIENT_DATA' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **ConformancePackComplianceSummaryList** *(list) --* A list of "ConformancePackComplianceSummary" objects. * *(dict) --* Summary includes the name and status of the conformance pack. * **ConformancePackName** *(string) --* The name of the conformance pack name. * **ConformancePackComplianceStatus** *(string) --* The status of the conformance pack. * **NextToken** *(string) --* The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. **Exceptions** * "ConfigService.Client.exceptions.NoSuchConformancePackException" * "ConfigService.Client.exceptions.InvalidLimitException" * "ConfigService.Client.exceptions.InvalidNextTokenException" ConfigService / Client / put_remediation_configurations put_remediation_configurations ****************************** ConfigService.Client.put_remediation_configurations(**kwargs) Adds or updates the remediation configuration with a specific Config rule with the selected target or action. The API creates the "RemediationConfiguration" object for the Config rule. The Config rule must already exist for you to add a remediation configuration. The target (SSM document) must exist and have permissions to use the target. Note: **Be aware of backward incompatible changes**If you make backward incompatible changes to the SSM document, you must call this again to ensure the remediations can run.This API does not support adding remediation configurations for service-linked Config Rules such as Organization Config rules, the rules deployed by conformance packs, and rules deployed by Amazon Web Services Security Hub. Note: **Required fields**For manual remediation configuration, you need to provide a value for "automationAssumeRole" or use a value in the >>``<