Class: Aws::EKS::Types::EksAnywhereSubscriptionTerm

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-eks/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

Instance Attribute Details

#durationInteger

The duration of the subscription term. Valid values are 12 and 36, indicating a 12 month or 36 month subscription.

Returns:

  • (Integer)


2839
2840
2841
2842
2843
2844
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 2839

class EksAnywhereSubscriptionTerm < Struct.new(
  :duration,
  :unit)
  SENSITIVE = []
  include Aws::Structure
end

#unitString

The term unit of the subscription. Valid value is MONTHS.

Returns:

  • (String)


2839
2840
2841
2842
2843
2844
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 2839

class EksAnywhereSubscriptionTerm < Struct.new(
  :duration,
  :unit)
  SENSITIVE = []
  include Aws::Structure
end