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

CreateCustomMetadataRequest

import type { CreateCustomMetadataRequest } from "https://aws-api.deno.dev/v0.3/services/workdocs.ts?docs=full";
interface CreateCustomMetadataRequest {
AuthenticationToken?: string | null;
CustomMetadata: {
[key: string]: string | null | undefined;
}
;
ResourceId: string;
VersionId?: string | null;
}

§Properties

§
AuthenticationToken?: string | null
[src]

Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.

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

Custom metadata in the form of name-value pairs.

§
ResourceId: string
[src]

The ID of the resource.

§
VersionId?: string | null
[src]

The ID of the version, if the custom metadata is being added to a document version.