Class: Aws::ConfigService::Types::RemediationExceptionResourceKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::RemediationExceptionResourceKey
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Note:
When making an API call, you may pass RemediationExceptionResourceKey data as a hash:
{
resource_type: "StringWithCharLimit256",
resource_id: "StringWithCharLimit1024",
}
The details that identify a resource within AWS Config, including the resource type and resource ID.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_id ⇒ String
The ID of the resource (for example., sg-xxxxxx).
-
#resource_type ⇒ String
The type of a resource.
Instance Attribute Details
#resource_id ⇒ String
The ID of the resource (for example., sg-xxxxxx).
7168 7169 7170 7171 7172 7173 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 7168 class RemediationExceptionResourceKey < Struct.new( :resource_type, :resource_id) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of a resource.
7168 7169 7170 7171 7172 7173 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 7168 class RemediationExceptionResourceKey < Struct.new( :resource_type, :resource_id) SENSITIVE = [] include Aws::Structure end |