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

CreateContextRequest

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

§Properties

§
ContextName: string
[src]

The name of the context. Must be unique to your account in an Amazon Web Services Region.

§
ContextType: string
[src]

The context type.

§
Description?: string | null
[src]

The description of the context.

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

A list of properties to add to the context.

§

The source type, ID, and URI.

§
Tags?: Tag[] | null
[src]

A list of tags to apply to the context.