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

CreateManagedEndpointRequest

import type { CreateManagedEndpointRequest } from "https://aws-api.deno.dev/v0.3/services/emrcontainers.ts?docs=full";
interface CreateManagedEndpointRequest {
certificateArn?: string | null;
clientToken: string;
configurationOverrides?: ConfigurationOverrides | null;
executionRoleArn: string;
name: string;
releaseLabel: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
type: string;
virtualClusterId: string;
}

§Properties

§
certificateArn?: string | null
[src]

The certificate ARN provided by users for the managed endpoint. This fiedd is under deprecation and will be removed in future releases.

§
clientToken: string
[src]

The client idempotency token for this create call.

§
configurationOverrides?: ConfigurationOverrides | null
[src]

The configuration settings that will be used to override existing configurations.

§
executionRoleArn: string
[src]

The ARN of the execution role.

§
name: string
[src]

The name of the managed endpoint.

§
releaseLabel: string
[src]

The Amazon EMR release version.

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

The tags of the managed endpoint.

§
type: string
[src]

The type of the managed endpoint.

§
virtualClusterId: string
[src]

The ID of the virtual cluster for which a managed endpoint is created.