Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EventContextDataType

import type { EventContextDataType } from "https://aws-api.deno.dev/v0.4/services/cognitoidentityserviceprovider.ts?docs=full";

Specifies the user context data captured at the time of an event request.

interface EventContextDataType {
City?: string | null;
Country?: string | null;
DeviceName?: string | null;
IpAddress?: string | null;
Timezone?: string | null;
}

§Properties

§
City?: string | null
[src]

The user's city.

§
Country?: string | null
[src]

The user's country.

§
DeviceName?: string | null
[src]

The user's device name.

§
IpAddress?: string | null
[src]

The source IP address of your user's device.

§
Timezone?: string | null
[src]

The user's time zone.