Class: Aws::ConfigService::Types::DeleteRemediationConfigurationRequest

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 DeleteRemediationConfigurationRequest data as a hash:

{
  config_rule_name: "ConfigRuleName", # required
  resource_type: "String",
}

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 configuration.

Returns:

  • (String)


2123
2124
2125
2126
2127
2128
# File 'lib/aws-sdk-configservice/types.rb', line 2123

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

#resource_typeString

The type of a resource.

Returns:

  • (String)


2123
2124
2125
2126
2127
2128
# File 'lib/aws-sdk-configservice/types.rb', line 2123

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