Class: Aws::EKS::Types::EncryptionConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EKS::Types::EncryptionConfig
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-eks/types.rb
 
Overview
The encryption configuration for the cluster.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #provider  ⇒ Types::Provider 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Key Management Service (KMS) key.
 - 
  
    
      #resources  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the resources to be encrypted.
 
Instance Attribute Details
#provider ⇒ Types::Provider
Key Management Service (KMS) key. Either the ARN or the alias can be used.
      2891 2892 2893 2894 2895 2896  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2891 class EncryptionConfig < Struct.new( :resources, :provider) SENSITIVE = [] include Aws::Structure end  | 
  
#resources ⇒ Array<String>
Specifies the resources to be encrypted. The only supported value is ‘secrets`.
      2891 2892 2893 2894 2895 2896  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2891 class EncryptionConfig < Struct.new( :resources, :provider) SENSITIVE = [] include Aws::Structure end  |