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

ErrorDetail

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

An object representing an error when an asynchronous operation fails.

interface ErrorDetail {
errorCode?: ErrorCode | null;
errorMessage?: string | null;
resourceIds?: string[] | null;
}

§Properties

§
errorCode?: ErrorCode | null
[src]

A brief description of the error.

  • SubnetNotFound: We couldn't find one of the subnets associated with the cluster.
  • SecurityGroupNotFound: We couldn't find one of the security groups associated with the cluster.
  • EniLimitReached: You have reached the elastic network interface limit for your account.
  • IpNotAvailable: A subnet associated with the cluster doesn't have any free IP addresses.
  • AccessDenied: You don't have permissions to perform the specified operation.
  • OperationNotPermitted: The service role associated with the cluster doesn't have the required access permissions for Amazon EKS.
  • VpcIdNotFound: We couldn't find the VPC associated with the cluster.
§
errorMessage?: string | null
[src]

A more complete description of the error.

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

An optional field that contains the resource IDs associated with the error.