Module Values.ProviderDescriptionSource

The details of a user pool identity provider (IdP), including name and type.

Sourcetype nonrec t = {
  1. providerName : ProviderNameType.t option;
    (*

    The name of the IdP, for example MySAMLProvider.

    *)
  2. providerType : IdentityProviderTypeType.t option;
    (*

    The type of the provider, for example SAML. Amazon Cognito supports SAML 2.0, OIDC, and social IdPs. User pools list supported social IdPs by name in this response parameter: Facebook, Google, Login with Amazon, and Sign in with Apple.

    *)
  3. lastModifiedDate : DateType.t option;
    (*

    The date and time when the item was modified. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java Date object.

    *)
  4. creationDate : DateType.t option;
    (*

    The date and time when the item was created. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java Date object.

    *)
}
Sourceval make : ?providerName:??? -> ?providerType:??? -> ?lastModifiedDate:??? -> ?creationDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ProviderNameType.t | `Timestamp of DateType.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