You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
Part 1: get_configuration(resource_type, resource_id, configuration_capture_time) fails when resource_type == "AWS::KMS::Key" or resource_type == "AWS::::Account".
Part 2: get_configuration(resource_type, resource_id, configuration_capture_time) also fails when resource_type == "AWS::ApiGateway::RestApi" since resource_id recorded by AWS Config service for ApiGateway::RestApi is of "arn:aws:apigateway:"+compliance_account_region+"::/restapis/"+resource_id format compared to all other resource types vs resource ids where you can pass resource_id as is.
The text was updated successfully, but these errors were encountered:
Part 1:
get_configuration(resource_type, resource_id, configuration_capture_time)
fails whenresource_type == "AWS::KMS::Key" or resource_type == "AWS::::Account"
.The reason for this is GetResourceConfigHistory does not support these two resource types.
Part 2:
get_configuration(resource_type, resource_id, configuration_capture_time)
also fails whenresource_type == "AWS::ApiGateway::RestApi"
sinceresource_id
recorded by AWS Config service for ApiGateway::RestApi is of"arn:aws:apigateway:"+compliance_account_region+"::/restapis/"+resource_id
format compared to all other resource types vs resource ids where you can passresource_id
as is.The text was updated successfully, but these errors were encountered: