Module Values.TrustedTokenIssuerMetadataSource

A structure that describes a trusted token issuer.

Sourcetype nonrec t = {
  1. trustedTokenIssuerArn : TrustedTokenIssuerArn.t option;
    (*

    The ARN of the trusted token issuer configuration in the instance of IAM Identity Center.

    *)
  2. name : TrustedTokenIssuerName.t option;
    (*

    The name of the trusted token issuer configuration in the instance of IAM Identity Center.

    *)
  3. trustedTokenIssuerType : TrustedTokenIssuerType.t option;
    (*

    The type of trusted token issuer.

    *)
}
Sourceval make : ?trustedTokenIssuerArn:??? -> ?name:??? -> ?trustedTokenIssuerType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TrustedTokenIssuerArn.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