Class: Aws::ConfigService::Types::DeleteRemediationExceptionsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-configservice/types.rb

Overview

Note:

When making an API call, you may pass DeleteRemediationExceptionsRequest data as a hash:

{
  config_rule_name: "ConfigRuleName", # required
  resource_keys: [ # required
    {
      resource_type: "StringWithCharLimit256",
      resource_id: "StringWithCharLimit1024",
    },
  ],
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#config_rule_nameString

The name of the AWS Config rule for which you want to delete remediation exception configuration.

Returns:

  • (String)


2160
2161
2162
2163
2164
2165
# File 'lib/aws-sdk-configservice/types.rb', line 2160

class DeleteRemediationExceptionsRequest < Struct.new(
  :config_rule_name,
  :resource_keys)
  SENSITIVE = []
  include Aws::Structure
end

#resource_keysArray<Types::RemediationExceptionResourceKey>

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.



2160
2161
2162
2163
2164
2165
# File 'lib/aws-sdk-configservice/types.rb', line 2160

class DeleteRemediationExceptionsRequest < Struct.new(
  :config_rule_name,
  :resource_keys)
  SENSITIVE = []
  include Aws::Structure
end