Module Values.PodIdentityAssociationSummarySource

The summarized description of the association. Each summary is simplified by removing these fields compared to the full PodIdentityAssociation : The IAM role: roleArn The timestamp that the association was created at: createdAt The most recent timestamp that the association was modified at:. modifiedAt The tags on the association: tags

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

    The name of the cluster that the association is in.

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

    The name of the Kubernetes namespace inside the cluster to create the association in. The service account and the Pods that use the service account must be in this namespace.

    *)
  3. serviceAccount : String_.t option;
    (*

    The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.

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

    The Amazon Resource Name (ARN) of the association.

    *)
  5. associationId : String_.t option;
    (*

    The ID of the association.

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

    If defined, the association is owned by an Amazon EKS add-on.

    *)
}
Sourceval make : ?clusterName:??? -> ?namespace:??? -> ?serviceAccount:??? -> ?associationArn:??? -> ?associationId:??? -> ?ownerArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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