Module Values.CreateEksAnywhereSubscriptionRequestSource

Creates an EKS Anywhere subscription. When a subscription is created, it is a contract agreement for the length of the term specified in the request. Licenses that are used to validate support are provisioned in Amazon Web Services License Manager and the caller account is granted access to EKS Anywhere Curated Packages.

Sourcetype nonrec t = {
  1. name : EksAnywhereSubscriptionName.t;
    (*

    The unique name for your subscription. It must be unique in your Amazon Web Services account in the Amazon Web Services Region you're creating the subscription in. The name can contain only alphanumeric characters (case-sensitive), hyphens, and underscores. It must start with an alphabetic character and can't be longer than 100 characters.

    *)
  2. term : EksAnywhereSubscriptionTerm.t;
    (*

    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. This value cannot be changed after creating the subscription.

    *)
  3. licenseQuantity : Integer.t option;
    (*

    The number of licenses to purchase with the subscription. Valid values are between 1 and 100. This value can't be changed after creating the subscription.

    *)
  4. licenseType : EksAnywhereSubscriptionLicenseType.t option;
    (*

    The license type for all licenses in the subscription. Valid value is CLUSTER. With the CLUSTER license type, each license covers support for a single EKS Anywhere cluster.

    *)
  5. autoRenew : Boolean.t option;
    (*

    A boolean indicating whether the subscription auto renews at the end of the term.

    *)
  6. clientRequestToken : String_.t option;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
  7. tags : TagMap.t option;
    (*

    The metadata for a subscription to assist with categorization and organization. Each tag consists of a key and an optional value. Subscription tags don't propagate to any other resources associated with the subscription.

    *)
}
Sourceval context_ : string
Sourceval make : ?licenseQuantity:??? -> ?licenseType:??? -> ?autoRenew:??? -> ?clientRequestToken:??? -> ?tags:??? -> name:EksAnywhereSubscriptionName.t -> term:EksAnywhereSubscriptionTerm.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of EksAnywhereSubscriptionName.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t