Class: Aws::ConfigService::Types::ResourceIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ResourceIdentifier
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.
Instance Attribute Summary collapse
-
#resource_deletion_time ⇒ Time
The time that the resource was deleted.
-
#resource_id ⇒ String
The ID of the resource (for example., ‘sg-xxxxxx`).
-
#resource_name ⇒ String
The custom name of the resource (if available).
-
#resource_type ⇒ String
The type of resource.
Instance Attribute Details
#resource_deletion_time ⇒ Time
The time that the resource was deleted.
2235 2236 2237 2238 2239 2240 2241 |
# File 'lib/aws-sdk-configservice/types.rb', line 2235 class ResourceIdentifier < Struct.new( :resource_type, :resource_id, :resource_name, :resource_deletion_time) include Aws::Structure end |
#resource_id ⇒ String
The ID of the resource (for example., ‘sg-xxxxxx`).
2235 2236 2237 2238 2239 2240 2241 |
# File 'lib/aws-sdk-configservice/types.rb', line 2235 class ResourceIdentifier < Struct.new( :resource_type, :resource_id, :resource_name, :resource_deletion_time) include Aws::Structure end |
#resource_name ⇒ String
The custom name of the resource (if available).
2235 2236 2237 2238 2239 2240 2241 |
# File 'lib/aws-sdk-configservice/types.rb', line 2235 class ResourceIdentifier < Struct.new( :resource_type, :resource_id, :resource_name, :resource_deletion_time) include Aws::Structure end |
#resource_type ⇒ String
The type of resource.
2235 2236 2237 2238 2239 2240 2241 |
# File 'lib/aws-sdk-configservice/types.rb', line 2235 class ResourceIdentifier < Struct.new( :resource_type, :resource_id, :resource_name, :resource_deletion_time) include Aws::Structure end |