Class: Aws::ResourceGroups::Types::ResourceIdentifier
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ResourceGroups::Types::ResourceIdentifier
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-resourcegroups/types.rb
 
Overview
A structure that contains the ARN of a resource and its resource type.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #resource_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon resource name (ARN) of a resource.
 - 
  
    
      #resource_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The resource type of a resource, such as ‘AWS::EC2::Instance`.
 
Instance Attribute Details
#resource_arn ⇒ String
The Amazon resource name (ARN) of a resource.
      1363 1364 1365 1366 1367 1368  | 
    
      # File 'lib/aws-sdk-resourcegroups/types.rb', line 1363 class ResourceIdentifier < Struct.new( :resource_arn, :resource_type) SENSITIVE = [] include Aws::Structure end  | 
  
#resource_type ⇒ String
The resource type of a resource, such as ‘AWS::EC2::Instance`.
      1363 1364 1365 1366 1367 1368  | 
    
      # File 'lib/aws-sdk-resourcegroups/types.rb', line 1363 class ResourceIdentifier < Struct.new( :resource_arn, :resource_type) SENSITIVE = [] include Aws::Structure end  |