Module Values.AwsAppSyncGraphQlApiUserPoolConfigDetailsSource

Specifies the authorization configuration for using Amazon Cognito user pools with your AppSync GraphQL API endpoint.

Sourcetype nonrec t = {
  1. appIdClientRegex : NonEmptyString.t option;
    (*

    A regular expression for validating the incoming Amazon Cognito user pools app client ID. If this value isn't set, no filtering is applied.

    *)
  2. awsRegion : NonEmptyString.t option;
    (*

    The Amazon Web Services Region in which the user pool was created.

    *)
  3. defaultAction : NonEmptyString.t option;
    (*

    The action that you want your GraphQL API to take when a request that uses Amazon Cognito user pools authentication doesn't match the Amazon Cognito user pools configuration.

    *)
  4. userPoolId : NonEmptyString.t option;
    (*

    The user pool ID.

    *)
}
Sourceval make : ?appIdClientRegex:??? -> ?awsRegion:??? -> ?defaultAction:??? -> ?userPoolId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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