Module Values.AddonSource

An Amazon EKS add-on. For more information, see Amazon EKS add-ons in the Amazon EKS User Guide.

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

    The name of the add-on.

    *)
  2. clusterName : ClusterName.t option;
    (*

    The name of your cluster.

    *)
  3. status : AddonStatus.t option;
    (*

    The status of the add-on.

    *)
  4. addonVersion : String_.t option;
    (*

    The version of the add-on.

    *)
  5. health : AddonHealth.t option;
    (*

    An object that represents the health of the add-on.

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

    The Amazon Resource Name (ARN) of the add-on.

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

    The Unix epoch timestamp at object creation.

    *)
  8. modifiedAt : Timestamp.t option;
    (*

    The Unix epoch timestamp for the last modification to the object.

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

    The Amazon Resource Name (ARN) of the IAM role that's bound to the Kubernetes ServiceAccount object that the add-on uses.

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

    Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.

    *)
  11. publisher : String_.t option;
    (*

    The publisher of the add-on.

    *)
  12. owner : String_.t option;
    (*

    The owner of the add-on.

    *)
  13. marketplaceInformation : MarketplaceInformation.t option;
    (*

    Information about an Amazon EKS add-on from the Amazon Web Services Marketplace.

    *)
  14. configurationValues : String_.t option;
    (*

    The configuration values that you provided.

    *)
  15. podIdentityAssociations : StringList.t option;
    (*

    An array of EKS Pod Identity associations owned by the add-on. Each association maps a role to a service account in a namespace in the cluster. For more information, see Attach an IAM Role to an Amazon EKS add-on using EKS Pod Identity in the Amazon EKS User Guide.

    *)
  16. namespaceConfig : AddonNamespaceConfigResponse.t option;
    (*

    The namespace configuration for the addon. This specifies the Kubernetes namespace where the addon is installed.

    *)
}
Sourceval make : ?addonName:??? -> ?clusterName:??? -> ?status:??? -> ?addonVersion:??? -> ?health:??? -> ?addonArn:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?serviceAccountRoleArn:??? -> ?tags:??? -> ?publisher:??? -> ?owner:??? -> ?marketplaceInformation:??? -> ?configurationValues:??? -> ?podIdentityAssociations:??? -> ?namespaceConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of String_.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t ]) list ] list | `String of String_.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