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

AssetEntry

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

An asset in AWS Data Exchange is a piece of data (Amazon S3 object) or a means of fulfilling data (Amazon Redshift datashare or Amazon API Gateway API, AWS Lake Formation data permission, or Amazon S3 data access). The asset can be a structured data file, an image file, or some other data file that can be stored as an Amazon S3 object, an Amazon API Gateway API, or an Amazon Redshift datashare, an AWS Lake Formation data permission, or an Amazon S3 data access. When you create an import job for your files, API Gateway APIs, Amazon Redshift datashares, AWS Lake Formation data permission, or Amazon S3 data access, you create an asset in AWS Data Exchange.

interface AssetEntry {
Arn: string;
AssetDetails: AssetDetails;
AssetType: AssetType;
CreatedAt: Date | number;
DataSetId: string;
Id: string;
Name: string;
RevisionId: string;
SourceId?: string | null;
UpdatedAt: Date | number;
}

§Properties

§
Arn: string
[src]

The ARN for the asset.

§
AssetDetails: AssetDetails
[src]

Details about the asset.

§
AssetType: AssetType
[src]

The type of asset that is added to a data set.

§
CreatedAt: Date | number
[src]

The date and time that the asset was created, in ISO 8601 format.

§
DataSetId: string
[src]

The unique identifier for the data set associated with this asset.

§
Id: string
[src]

The unique identifier for the asset.

§
Name: string
[src]

The name of the asset. When importing from Amazon S3, the Amazon S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target Amazon S3 object key. When importing from Amazon API Gateway API, the API name is used as the asset name. When importing from Amazon Redshift, the datashare name is used as the asset name. When importing from AWS Lake Formation, the static values of "Database(s) included in LF-tag policy" or "Table(s) included in LF-tag policy" are used as the asset name.

§
RevisionId: string
[src]

The unique identifier for the revision associated with this asset.

§
SourceId?: string | null
[src]

The asset ID of the owned asset corresponding to the entitled asset being viewed. This parameter is returned when an asset owner is viewing the entitled copy of its owned asset.

§
UpdatedAt: Date | number
[src]

The date and time that the asset was last updated, in ISO 8601 format.