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

UpdateContextRequest

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

§Properties

§
ContextName: string
[src]

The name of the context to update.

§
Description?: string | null
[src]

The new description for the context.

§
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.