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

GenerateAccessLogsRequest

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

The request structure for the generate access logs request.

interface GenerateAccessLogsRequest {
appId: string;
domainName: string;
endTime?: Date | number | null;
startTime?: Date | number | null;
}

§Properties

§
appId: string
[src]

The unique ID for an Amplify app.

§
domainName: string
[src]

The name of the domain.

§
endTime?: Date | number | null
[src]

The time at which the logs should end. The time range specified is inclusive of the end time.

§
startTime?: Date | number | null
[src]

The time at which the logs should start. The time range specified is inclusive of the start time.