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

VpcEndpointStatus

import type { VpcEndpointStatus } from "https://aws-api.deno.dev/v0.4/services/es.ts?docs=full";

Specifies the current status of the VPC endpoint:

  • CREATING: Indicates that the VPC endpoint is currently being created.
  • CREATE_FAILED: Indicates that the VPC endpoint creation failed.
  • ACTIVE: Indicates that the VPC endpoint is currently active.
  • UPDATING: Indicates that the VPC endpoint is currently being updated.
  • UPDATE_FAILED: Indicates that the VPC endpoint update failed.
  • DELETING: Indicates that the VPC endpoint is currently being deleted.
  • DELETE_FAILED: Indicates that the VPC endpoint deletion failed.
type VpcEndpointStatus =
| "CREATING"
| "CREATE_FAILED"
| "ACTIVE"
| "UPDATING"
| "UPDATE_FAILED"
| "DELETING"
| "DELETE_FAILED"

§Type

§
"CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED" | cmnP.UnexpectedEnumValue
[src]