Module Values.DescribePodIdentityAssociationRequestSource

Returns descriptive information about an EKS Pod Identity association. This action requires the ID of the association. You can get the ID from the response to the CreatePodIdentityAssocation for newly created associations. Or, you can list the IDs for associations with ListPodIdentityAssociations and filter the list by namespace or service account.

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

    The name of the cluster that the association is in.

    *)
  2. associationId : String_.t;
    (*

    The ID of the association that you want the description of.

    *)
}
Sourceval context_ : string
Sourceval make : clusterName:String_.t -> associationId:String_.t -> 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