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

CreateServiceRequest

import type { CreateServiceRequest } from "https://aws-api.deno.dev/v0.3/services/migrationhubrefactorspaces.ts?docs=full";
interface CreateServiceRequest {
ApplicationIdentifier: string;
ClientToken?: string | null;
Description?: string | null;
EndpointType: ServiceEndpointType;
EnvironmentIdentifier: string;
LambdaEndpoint?: LambdaEndpointInput | null;
Name: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
UrlEndpoint?: UrlEndpointInput | null;
VpcId?: string | null;
}

§Properties

§
ApplicationIdentifier: string
[src]

The ID of the application which the service is created.

§
ClientToken?: string | null
[src]

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

§
Description?: string | null
[src]

The description of the service.

§

The type of endpoint to use for the service. The type can be a URL in a VPC or an Lambda function.

§
EnvironmentIdentifier: string
[src]

The ID of the environment in which the service is created.

§
LambdaEndpoint?: LambdaEndpointInput | null
[src]

The configuration for the Lambda endpoint type.

§
Name: string
[src]

The name of the service.

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

The tags to assign to the service. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair..

§
UrlEndpoint?: UrlEndpointInput | null
[src]

The configuration for the URL endpoint type.

§
VpcId?: string | null
[src]

The ID of the VPC.