Class: Aws::EKS::Types::ErrorDetail
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EKS::Types::ErrorDetail
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-eks/types.rb
 
Overview
An object representing an error when an asynchronous operation fails.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #error_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A brief description of the error.
 - 
  
    
      #error_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A more complete description of the error.
 - 
  
    
      #resource_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An optional field that contains the resource IDs associated with the error.
 
Instance Attribute Details
#error_code ⇒ String
A brief description of the error.
- 
SubnetNotFound: We couldn’t find one of the subnets associated with the cluster.
 - 
SecurityGroupNotFound: We couldn’t find one of the security groups associated with the cluster.
 - 
EniLimitReached: You have reached the elastic network interface limit for your account.
 - 
IpNotAvailable: A subnet associated with the cluster doesn’t have any available IP addresses.
 - 
AccessDenied: You don’t have permissions to perform the specified operation.
 - 
OperationNotPermitted: The service role associated with the cluster doesn’t have the required access permissions for Amazon EKS.
 - 
VpcIdNotFound: We couldn’t find the VPC associated with the cluster.
 
      2975 2976 2977 2978 2979 2980 2981  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2975 class ErrorDetail < Struct.new( :error_code, :error_message, :resource_ids) SENSITIVE = [] include Aws::Structure end  | 
  
#error_message ⇒ String
A more complete description of the error.
      2975 2976 2977 2978 2979 2980 2981  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2975 class ErrorDetail < Struct.new( :error_code, :error_message, :resource_ids) SENSITIVE = [] include Aws::Structure end  | 
  
#resource_ids ⇒ Array<String>
An optional field that contains the resource IDs associated with the error.
      2975 2976 2977 2978 2979 2980 2981  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2975 class ErrorDetail < Struct.new( :error_code, :error_message, :resource_ids) SENSITIVE = [] include Aws::Structure end  |