Module Values_3.CreateVerifiedAccessTrustProviderOidcOptionsSource

Describes the options when creating an Amazon Web Services Verified Access trust provider using the user type.

Sourcetype nonrec t = {
  1. issuer : Values_0.String_.t option;
    (*

    The OIDC issuer.

    *)
  2. authorizationEndpoint : Values_0.String_.t option;
    (*

    The OIDC authorization endpoint.

    *)
  3. tokenEndpoint : Values_0.String_.t option;
    (*

    The OIDC token endpoint.

    *)
  4. userInfoEndpoint : Values_0.String_.t option;
    (*

    The OIDC user info endpoint.

    *)
  5. clientId : Values_0.String_.t option;
    (*

    The client identifier.

    *)
  6. clientSecret : Values_0.ClientSecretType.t option;
    (*

    The client secret.

    *)
  7. scope : Values_0.String_.t option;
    (*

    OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user's details. Each scope returns a specific set of user attributes.

    *)
}
Sourceval make : ?issuer:??? -> ?authorizationEndpoint:??? -> ?tokenEndpoint:??? -> ?userInfoEndpoint:??? -> ?clientId:??? -> ?clientSecret:??? -> ?scope:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.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