Class: Aws::EKS::Types::EksAnywhereSubscriptionTerm
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EKS::Types::EksAnywhereSubscriptionTerm
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-eks/types.rb
 
Overview
An object representing the term duration and term unit type of your subscription. This determines the term length of your subscription. Valid values are MONTHS for term unit and 12 or 36 for term duration, indicating a 12 month or 36 month subscription.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #duration  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The duration of the subscription term.
 - 
  
    
      #unit  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The term unit of the subscription.
 
Instance Attribute Details
#duration ⇒ Integer
The duration of the subscription term. Valid values are 12 and 36, indicating a 12 month or 36 month subscription.
      2908 2909 2910 2911 2912 2913  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2908 class EksAnywhereSubscriptionTerm < Struct.new( :duration, :unit) SENSITIVE = [] include Aws::Structure end  | 
  
#unit ⇒ String
The term unit of the subscription. Valid value is ‘MONTHS`.
      2908 2909 2910 2911 2912 2913  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2908 class EksAnywhereSubscriptionTerm < Struct.new( :duration, :unit) SENSITIVE = [] include Aws::Structure end  |