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

EventDataStore

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

A storage lake of event data against which you can run complex SQL-based queries. An event data store can include events that you have logged on your account from the last 90 to 2557 days (about three months to up to seven years). To select events for an event data store, use advanced event selectors.

interface EventDataStore {
AdvancedEventSelectors?: AdvancedEventSelector[] | null;
CreatedTimestamp?: Date | number | null;
EventDataStoreArn?: string | null;
MultiRegionEnabled?: boolean | null;
Name?: string | null;
OrganizationEnabled?: boolean | null;
RetentionPeriod?: number | null;
Status?: EventDataStoreStatus | null;
TerminationProtectionEnabled?: boolean | null;
UpdatedTimestamp?: Date | number | null;
}

§Properties

§
AdvancedEventSelectors?: AdvancedEventSelector[] | null
[src]

The advanced event selectors that were used to select events for the data store.

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

The timestamp of the event data store's creation.

§
EventDataStoreArn?: string | null
[src]

The ARN of the event data store.

§
MultiRegionEnabled?: boolean | null
[src]

Indicates whether the event data store includes events from all regions, or only from the region in which it was created.

§
Name?: string | null
[src]

The name of the event data store.

§
OrganizationEnabled?: boolean | null
[src]

Indicates that an event data store is collecting logged events for an organization.

§
RetentionPeriod?: number | null
[src]

The retention period, in days.

§

The status of an event data store. Values are ENABLED and PENDING_DELETION.

§
TerminationProtectionEnabled?: boolean | null
[src]

Indicates whether the event data store is protected from termination.

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

The timestamp showing when an event data store was updated, if applicable. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.