Module Values.UpdateTrustedTokenIssuerRequestSource

Updates the name of the trusted token issuer, or the path of a source attribute or destination attribute for a trusted token issuer configuration. Updating this trusted token issuer configuration might cause users to lose access to any applications that are configured to use the trusted token issuer.

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

    Specifies the ARN of the trusted token issuer configuration that you want to update.

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

    Specifies the updated name to be applied to the trusted token issuer configuration.

    *)
  3. trustedTokenIssuerConfiguration : TrustedTokenIssuerUpdateConfiguration.t option;
    (*

    Specifies a structure with settings to apply to the specified trusted token issuer. The settings that you can provide are determined by the type of the trusted token issuer that you are updating.

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