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

UpdateArtifactRequest

import type { UpdateArtifactRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface UpdateArtifactRequest {
ArtifactArn: string;
ArtifactName?: string | null;
Properties?: {
[key: string]: string | null | undefined;
}
| null;
PropertiesToRemove?: string[] | null;
}

§Properties

§
ArtifactArn: string
[src]

The Amazon Resource Name (ARN) of the artifact to update.

§
ArtifactName?: string | null
[src]

The new name for the artifact.

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

The new list of properties. Overwrites the current property list.

§
PropertiesToRemove?: string[] | null
[src]

A list of properties to remove.