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

ContentData

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

Information about the content.

interface ContentData {
contentArn: string;
contentId: string;
contentType: string;
knowledgeBaseArn: string;
knowledgeBaseId: string;
linkOutUri?: string | null;
metadata: {
[key: string]: string | null | undefined;
}
;
name: string;
revisionId: string;
status: ContentStatus;
tags?: {
[key: string]: string | null | undefined;
}
| null;
title: string;
url: string;
urlExpiry: Date | number;
}

§Properties

§
contentArn: string
[src]

The Amazon Resource Name (ARN) of the content.

§
contentId: string
[src]

The identifier of the content.

§
contentType: string
[src]

The media type of the content.

§
knowledgeBaseArn: string
[src]

The Amazon Resource Name (ARN) of the knowledge base.

§
knowledgeBaseId: string
[src]

The identifier of the knowledge base.

§
linkOutUri?: string | null
[src]

The URI of the content.

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

A key/value map to store attributes without affecting tagging or recommendations. For example, when synchronizing data between an external system and Wisdom, you can store an external version identifier as metadata to utilize for determining drift.

§
name: string
[src]

The name of the content.

§
revisionId: string
[src]

The identifier of the content revision.

§

The status of the content.

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

The tags used to organize, track, or control access for this resource.

§
title: string
[src]

The title of the content.

§
url: string
[src]

The URL of the content.

§
urlExpiry: Date | number
[src]

The expiration time of the URL as an epoch timestamp.