Module Values.ProvidedContextSource

Contains information about the provided context. This includes the signed and encrypted trusted context assertion and the context provider ARN from which the trusted context assertion was generated.

Sourcetype nonrec t = {
  1. providerArn : ArnType.t option;
    (*

    The context provider ARN from which the trusted context assertion was generated.

    *)
  2. contextAssertion : ContextAssertionType.t option;
    (*

    The signed and encrypted trusted context assertion generated by the context provider. The trusted context assertion is signed and encrypted by Amazon Web Services STS.

    *)
}
Sourceval make : ?providerArn:??? -> ?contextAssertion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ArnType.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