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

GetChangesetResponse

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

The response from a describe changeset operation

interface GetChangesetResponse {
activeFromTimestamp?: number | null;
activeUntilTimestamp?: number | null;
changesetArn?: string | null;
changesetId?: string | null;
changeType?: ChangeType | null;
createTime?: number | null;
datasetId?: string | null;
errorInfo?: ChangesetErrorInfo | null;
formatParams?: {
[key: string]: string | null | undefined;
}
| null;
sourceParams?: {
[key: string]: string | null | undefined;
}
| null;
status?: IngestionStatus | null;
updatedByChangesetId?: string | null;
updatesChangesetId?: string | null;
}

§Properties

§
activeFromTimestamp?: number | null
[src]

Beginning time from which the Changeset is active. The value is determined as Epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

§
activeUntilTimestamp?: number | null
[src]

Time until which the Changeset is active. The value is determined as Epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

§
changesetArn?: string | null
[src]

The ARN identifier of the Changeset.

§
changesetId?: string | null
[src]

The unique identifier for a Changeset.

§
changeType?: ChangeType | null
[src]

Type that indicates how a Changeset is applied to a Dataset.

  • REPLACE - Changeset is considered as a replacement to all prior loaded Changesets.
  • APPEND - Changeset is considered as an addition to the end of all prior loaded Changesets.
  • MODIFY - Changeset is considered as a replacement to a specific prior ingested Changeset.
§
createTime?: number | null
[src]

The timestamp at which the Changeset was created in FinSpace. The value is determined as Epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

§
datasetId?: string | null
[src]

The unique identifier for the FinSpace Dataset where the Changeset is created.

§
errorInfo?: ChangesetErrorInfo | null
[src]

The structure with error messages.

§
formatParams?: {
[key: string]: string | null | undefined;
}
| null
[src]

Structure of the source file(s).

§
sourceParams?: {
[key: string]: string | null | undefined;
}
| null
[src]

Options that define the location of the data being ingested.

§
status?: IngestionStatus | null
[src]

The status of Changeset creation operation.

§
updatedByChangesetId?: string | null
[src]

The unique identifier of the updated Changeset.

§
updatesChangesetId?: string | null
[src]

The unique identifier of the Changeset that is being updated.