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

ArchiveRuleSummary

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

Contains information about an archive rule.

interface ArchiveRuleSummary {
createdAt: Date | number;
filter: {
[key: string]: Criterion | null | undefined;
}
;
ruleName: string;
updatedAt: Date | number;
}

§Properties

§
createdAt: Date | number
[src]

The time at which the archive rule was created.

§
filter: {
[key: string]: Criterion | null | undefined;
}
[src]

A filter used to define the archive rule.

§
ruleName: string
[src]

The name of the archive rule.

§
updatedAt: Date | number
[src]

The time at which the archive rule was last updated.