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

DescribeActivitiesRequest

import type { DescribeActivitiesRequest } from "https://aws-api.deno.dev/v0.3/services/workdocs.ts?docs=full";
interface DescribeActivitiesRequest {
ActivityTypes?: string | null;
AuthenticationToken?: string | null;
EndTime?: Date | number | null;
IncludeIndirectActivities?: boolean | null;
Limit?: number | null;
Marker?: string | null;
OrganizationId?: string | null;
ResourceId?: string | null;
StartTime?: Date | number | null;
UserId?: string | null;
}

§Properties

§
ActivityTypes?: string | null
[src]

Specifies which activity types to include in the response. If this field is left empty, all activity types are returned.

§
AuthenticationToken?: string | null
[src]

Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.

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

The timestamp that determines the end time of the activities. The response includes the activities performed before the specified timestamp.

§
IncludeIndirectActivities?: boolean | null
[src]

Includes indirect activities. An indirect activity results from a direct activity performed on a parent resource. For example, sharing a parent folder (the direct activity) shares all of the subfolders and documents within the parent folder (the indirect activity).

§
Limit?: number | null
[src]

The maximum number of items to return.

§
Marker?: string | null
[src]

The marker for the next set of results.

§
OrganizationId?: string | null
[src]

The ID of the organization. This is a mandatory parameter when using administrative API (SigV4) requests.

§
ResourceId?: string | null
[src]

The document or folder ID for which to describe activity types.

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

The timestamp that determines the starting time of the activities. The response includes the activities performed after the specified timestamp.

§
UserId?: string | null
[src]

The ID of the user who performed the action. The response includes activities pertaining to this user. This is an optional parameter and is only applicable for administrative API (SigV4) requests.