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

AggregatedSourceStatus

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

The current sync status between the source and the aggregator account.

interface AggregatedSourceStatus {
AwsRegion?: string | null;
LastErrorCode?: string | null;
LastErrorMessage?: string | null;
LastUpdateStatus?: AggregatedSourceStatusType | null;
LastUpdateTime?: Date | number | null;
SourceId?: string | null;
SourceType?: AggregatedSourceType | null;
}

§Properties

§
AwsRegion?: string | null
[src]

The region authorized to collect aggregated data.

§
LastErrorCode?: string | null
[src]

The error code that Config returned when the source account aggregation last failed.

§
LastErrorMessage?: string | null
[src]

The message indicating that the source account aggregation failed due to an error.

§
LastUpdateStatus?: AggregatedSourceStatusType | null
[src]

Filters the last updated status type.

  • Valid value FAILED indicates errors while moving data.
  • Valid value SUCCEEDED indicates the data was successfully moved.
  • Valid value OUTDATED indicates the data is not the most recent.
§
LastUpdateTime?: Date | number | null
[src]

The time of the last update.

§
SourceId?: string | null
[src]

The source account ID or an organization.

§
SourceType?: AggregatedSourceType | null
[src]

The source account or an organization.