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

GetResourceConfigHistoryRequest

import type { GetResourceConfigHistoryRequest } from "https://aws-api.deno.dev/v0.3/services/configservice.ts?docs=full";

The input for the "GetResourceConfigHistory" action.

interface GetResourceConfigHistoryRequest {
chronologicalOrder?: ChronologicalOrder | null;
earlierTime?: Date | number | null;
laterTime?: Date | number | null;
limit?: number | null;
nextToken?: string | null;
resourceId: string;
resourceType: ResourceType;
}

§Properties

§
chronologicalOrder?: ChronologicalOrder | null
[src]

The chronological order for configuration items listed. By default, the results are listed in reverse chronological order.

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

The time stamp that indicates an earlier time. If not specified, the action returns paginated results that contain configuration items that start when the first configuration item was recorded.

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

The time stamp that indicates a later time. If not specified, current time is taken.

§
limit?: number | null
[src]

The maximum number of configuration items returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, Config uses the default.

§
nextToken?: string | null
[src]

The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.

§
resourceId: string
[src]

The ID of the resource (for example., sg-xxxxxx).

§
resourceType: ResourceType
[src]

The resource type.