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.4/services/eventbridge.ts?docs=full";

A global endpoint used to improve your application's availability by making it regional-fault tolerant. For more information about global endpoints, see Making applications Regional-fault tolerant with global endpoints and event replication in the Amazon EventBridge User Guide.

interface Endpoint {
Arn?: string | null;
CreationTime?: Date | number | null;
Description?: string | null;
EndpointId?: string | null;
EndpointUrl?: string | null;
EventBuses?: EndpointEventBus[] | null;
LastModifiedTime?: Date | number | null;
Name?: string | null;
ReplicationConfig?: ReplicationConfig | null;
RoleArn?: string | null;
RoutingConfig?: RoutingConfig | null;
State?: EndpointState | null;
StateReason?: string | null;
}

§Properties

§
Arn?: string | null
[src]

The ARN of the endpoint.

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

The time the endpoint was created.

§
Description?: string | null
[src]

A description for the endpoint.

§
EndpointId?: string | null
[src]

The URL subdomain of the endpoint. For example, if the URL for Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then the EndpointId is abcde.veo.

§
EndpointUrl?: string | null
[src]

The URL of the endpoint.

§
EventBuses?: EndpointEventBus[] | null
[src]

The event buses being used by the endpoint.

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

The last time the endpoint was modified.

§
Name?: string | null
[src]

The name of the endpoint.

§
ReplicationConfig?: ReplicationConfig | null
[src]

Whether event replication was enabled or disabled for this endpoint. The default state is ENABLED which means you must supply a RoleArn. If you don't have a RoleArn or you don't want event replication enabled, set the state to DISABLED.

§
RoleArn?: string | null
[src]

The ARN of the role used by event replication for the endpoint.

§
RoutingConfig?: RoutingConfig | null
[src]

The routing configuration of the endpoint.

§
State?: EndpointState | null
[src]

The current state of the endpoint.

§
StateReason?: string | null
[src]

The reason the endpoint is in its current state.