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

Endpoint

import type { Endpoint } from "https://aws-api.deno.dev/v0.3/services/emrcontainers.ts?docs=full";

This entity represents the endpoint that is managed by Amazon EMR on EKS.

interface Endpoint {
arn?: string | null;
certificateArn?: string | null;
certificateAuthority?: Certificate | null;
configurationOverrides?: ConfigurationOverrides | null;
createdAt?: Date | number | null;
executionRoleArn?: string | null;
failureReason?: FailureReason | null;
id?: string | null;
name?: string | null;
releaseLabel?: string | null;
securityGroup?: string | null;
serverUrl?: string | null;
state?: EndpointState | null;
stateDetails?: string | null;
subnetIds?: string[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
type?: string | null;
virtualClusterId?: string | null;
}

§Properties

§
arn?: string | null
[src]

The ARN of the endpoint.

§
certificateArn?: string | null
[src]

The certificate ARN of the endpoint. This field is under deprecation and will be removed in future.

§
certificateAuthority?: Certificate | null
[src]

The certificate generated by emr control plane on customer behalf to secure the managed endpoint.

§
configurationOverrides?: ConfigurationOverrides | null
[src]

The configuration settings that are used to override existing configurations for endpoints.

§
createdAt?: Date | number | null
[src]

The date and time when the endpoint was created.

§
executionRoleArn?: string | null
[src]

The execution role ARN of the endpoint.

§
failureReason?: FailureReason | null
[src]

The reasons why the endpoint has failed.

§
id?: string | null
[src]

The ID of the endpoint.

§
name?: string | null
[src]

The name of the endpoint.

§
releaseLabel?: string | null
[src]

The EMR release version to be used for the endpoint.

§
securityGroup?: string | null
[src]

The security group configuration of the endpoint.

§
serverUrl?: string | null
[src]

The server URL of the endpoint.

§
state?: EndpointState | null
[src]

The state of the endpoint.

§
stateDetails?: string | null
[src]

Additional details of the endpoint state.

§
subnetIds?: string[] | null
[src]

The subnet IDs of the endpoint.

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

The tags of the endpoint.

§
type?: string | null
[src]

The type of the endpoint.

§
virtualClusterId?: string | null
[src]

The ID of the endpoint's virtual cluster.