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 Config, including the resource type, ID, and (if available) the custom resource name.
Constant Summary collapse
- SENSITIVE =
 []
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.
      8072 8073 8074 8075 8076 8077 8078 8079  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 8072 class ResourceIdentifier < Struct.new( :resource_type, :resource_id, :resource_name, :resource_deletion_time) SENSITIVE = [] include Aws::Structure end  | 
  
#resource_id ⇒ String
The ID of the resource (for example, ‘sg-xxxxxx`).
      8072 8073 8074 8075 8076 8077 8078 8079  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 8072 class ResourceIdentifier < Struct.new( :resource_type, :resource_id, :resource_name, :resource_deletion_time) SENSITIVE = [] include Aws::Structure end  | 
  
#resource_name ⇒ String
The custom name of the resource (if available).
      8072 8073 8074 8075 8076 8077 8078 8079  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 8072 class ResourceIdentifier < Struct.new( :resource_type, :resource_id, :resource_name, :resource_deletion_time) SENSITIVE = [] include Aws::Structure end  | 
  
#resource_type ⇒ String
The type of resource.
      8072 8073 8074 8075 8076 8077 8078 8079  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 8072 class ResourceIdentifier < Struct.new( :resource_type, :resource_id, :resource_name, :resource_deletion_time) SENSITIVE = [] include Aws::Structure end  |