Module Values.GetOutboundWebIdentityFederationInfoResponseSource

Retrieves the configuration information for the outbound identity federation feature in your Amazon Web Services account. The response includes the unique issuer URL for your Amazon Web Services account and the current enabled/disabled status of the feature. Use this operation to obtain the issuer URL that you need to configure trust relationships with external services.

Sourcetype getOutboundWebIdentityFederationInfoResult = {
  1. issuerIdentifier : StringType.t option;
    (*

    A unique issuer URL for your Amazon Web Services account that hosts the OpenID Connect (OIDC) discovery endpoints at /.well-known/openid-configuration and /.well-known/jwks.json. The OpenID Connect (OIDC) discovery endpoints contain verification keys and metadata necessary for token verification.

    *)
  2. jwtVendingEnabled : BooleanType.t option;
    (*

    Indicates whether outbound identity federation is currently enabled for your Amazon Web Services account. When true, IAM principals in the account can call the GetWebIdentityToken API to obtain JSON Web Tokens (JWTs) for authentication with external services.

    *)
}
Sourceand responseMetaData = unit
Sourceand t = {
  1. getOutboundWebIdentityFederationInfoResult : getOutboundWebIdentityFederationInfoResult;
  2. responseMetaData : responseMetaData;
}
Sourcetype error = [
  1. | `FeatureDisabledException of FeatureDisabledException.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval context_ : string
Sourceval make : ?issuerIdentifier:??? -> ?jwtVendingEnabled:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `FeatureDisabledException of FeatureDisabledException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `FeatureDisabledException of FeatureDisabledException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of BooleanType.t | `String of StringType.t ]) 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