Module Values.EksAnywhereSubscriptionSource

An EKS Anywhere subscription authorizing the customer to support for licensed clusters and access to EKS Anywhere Curated Packages.

Sourcetype nonrec t = {
  1. id : String_.t option;
    (*

    UUID identifying a subscription.

    *)
  2. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for the subscription.

    *)
  3. createdAt : Timestamp.t option;
    (*

    The Unix timestamp in seconds for when the subscription was created.

    *)
  4. effectiveDate : Timestamp.t option;
    (*

    The Unix timestamp in seconds for when the subscription is effective.

    *)
  5. expirationDate : Timestamp.t option;
    (*

    The Unix timestamp in seconds for when the subscription will expire or auto renew, depending on the auto renew configuration of the subscription object.

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

    The number of licenses included in a subscription. Valid values are between 1 and 100.

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

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

    *)
  8. term : EksAnywhereSubscriptionTerm.t option;
    (*

    An EksAnywhereSubscriptionTerm object.

    *)
  9. status : String_.t option;
    (*

    The status of a subscription.

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

    A boolean indicating whether or not a subscription will auto renew when it expires.

    *)
  11. licenseArns : StringList.t option;
    (*

    Amazon Web Services License Manager ARN associated with the subscription.

    *)
  12. licenses : LicenseList.t option;
    (*

    Includes all of the claims in the license token necessary to validate the license for extended support.

    *)
  13. 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 do not propagate to any other resources associated with the subscription.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?createdAt:??? -> ?effectiveDate:??? -> ?expirationDate:??? -> ?licenseQuantity:??? -> ?licenseType:??? -> ?term:??? -> ?status:??? -> ?autoRenew:??? -> ?licenseArns:??? -> ?licenses:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of String_.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t ]) list | `Timestamp of Timestamp.t ]) 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