A remediation exception is when a specific resource is no longer considered for auto-remediation. This API adds a new exception or updates an exisiting exception for a specific resource with a specific AWS Config rule.
AWS 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.
configservice_put_remediation_exceptions(ConfigRuleName, ResourceKeys,
Message, ExpirationTime)
A list with the following syntax:
list(
FailedBatches = list(
list(
FailureMessage = "string",
FailedItems = list(
list(
ConfigRuleName = "string",
ResourceType = "string",
ResourceId = "string",
Message = "string",
ExpirationTime = as.POSIXct(
"2015-01-01"
)
)
)
)
)
)
[required] The name of the AWS Config rule for which you want to create remediation exception.
[required] An exception list of resource exception keys to be processed with the current request. AWS Config adds exception for each resource key. For example, AWS Config adds 3 exceptions for 3 resource keys.
The message contains an explanation of the exception.
The exception is automatically deleted after the expiration date.
svc$put_remediation_exceptions(
ConfigRuleName = "string",
ResourceKeys = list(
list(
ResourceType = "string",
ResourceId = "string"
)
),
Message = "string",
ExpirationTime = as.POSIXct(
"2015-01-01"
)
)