Class: Aws::ConfigService::Types::ResourceKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ResourceKey
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
The details that identify a resource within 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 resource type.
Instance Attribute Details
#resource_id ⇒ String
The ID of the resource (for example., sg-xxxxxx).
8124 8125 8126 8127 8128 8129 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8124 class ResourceKey < Struct.new( :resource_type, :resource_id) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The resource type.
8124 8125 8126 8127 8128 8129 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8124 class ResourceKey < Struct.new( :resource_type, :resource_id) SENSITIVE = [] include Aws::Structure end |