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

CreateActionRequest

import type { CreateActionRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface CreateActionRequest {
ActionName: string;
ActionType: string;
Description?: string | null;
MetadataProperties?: MetadataProperties | null;
Properties?: {
[key: string]: string | null | undefined;
}
| null;
Source: ActionSource;
Status?: ActionStatus | null;
Tags?: Tag[] | null;
}

§Properties

§
ActionName: string
[src]

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

§
ActionType: string
[src]

The action type.

§
Description?: string | null
[src]

The description of the action.

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

A list of properties to add to the action.

§

The source type, ID, and URI.

§
Status?: ActionStatus | null
[src]

The status of the action.

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

A list of tags to apply to the action.