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

CreateAppRequest

import type { CreateAppRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface CreateAppRequest {
AppName: string;
AppType: AppType;
DomainId: string;
ResourceSpec?: ResourceSpec | null;
SpaceName?: string | null;
Tags?: Tag[] | null;
UserProfileName?: string | null;
}

§Properties

§
AppName: string
[src]

The name of the app.

§
AppType: AppType
[src]

The type of app.

§
DomainId: string
[src]

The domain ID.

§
ResourceSpec?: ResourceSpec | null
[src]

The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.

Note: The value of InstanceType passed as part of the ResourceSpec in the CreateApp call overrides the value passed as part of the ResourceSpec configured for the user profile or the domain. If InstanceType is not specified in any of those three ResourceSpec values for a KernelGateway app, the CreateApp call fails with a request validation error.

§
SpaceName?: string | null
[src]

The name of the space. If this value is not set, then UserProfileName must be set.

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

Each tag consists of a key and an optional value. Tag keys must be unique per resource.

§
UserProfileName?: string | null
[src]

The user profile name. If this value is not set, then SpaceName must be set.