Module Values.SubjectSource

An object containing the name of the Kubernetes service account inside the cluster to associate the IAM credentials with.

Sourcetype nonrec t = {
  1. 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.

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

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

    *)
}
Sourceval make : ?namespace:??? -> ?serviceAccount:??? -> 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