Class: Aws::ResourceGroups::Types::FailedResource
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ResourceGroups::Types::FailedResource
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-resourcegroups/types.rb
 
Overview
A resource that failed to be added to or removed from a group.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #error_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The error code associated with the failure.
 - 
  
    
      #error_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The error message text associated with the failure.
 - 
  
    
      #resource_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon resource name (ARN) of the resource that failed to be added or removed.
 
Instance Attribute Details
#error_code ⇒ String
The error code associated with the failure.
      234 235 236 237 238 239 240  | 
    
      # File 'lib/aws-sdk-resourcegroups/types.rb', line 234 class FailedResource < Struct.new( :resource_arn, :error_message, :error_code) SENSITIVE = [] include Aws::Structure end  | 
  
#error_message ⇒ String
The error message text associated with the failure.
      234 235 236 237 238 239 240  | 
    
      # File 'lib/aws-sdk-resourcegroups/types.rb', line 234 class FailedResource < Struct.new( :resource_arn, :error_message, :error_code) SENSITIVE = [] include Aws::Structure end  | 
  
#resource_arn ⇒ String
The Amazon resource name (ARN) of the resource that failed to be added or removed.
      234 235 236 237 238 239 240  | 
    
      # File 'lib/aws-sdk-resourcegroups/types.rb', line 234 class FailedResource < Struct.new( :resource_arn, :error_message, :error_code) SENSITIVE = [] include Aws::Structure end  |