import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *

Lightsail throws this exception when user input does not conform to the validation rules of an input field.

Domain-related APIs are only available in the N. Virginia (us-east-1) Region. Please set your AWS Region configuration to us-east-1 to create, view, or edit these resources.

*/ export interface InvalidInputException extends __ServiceException__<_InvalidInputExceptionDetails> { name: "InvalidInputException"; } export interface _InvalidInputExceptionDetails { /** * _string shape */ code?: string; /** * _string shape */ docs?: string; /** * _string shape */ message?: string; /** * _string shape */ tip?: string; }