Skip to main content
Glama
errors.jsโ€ข15.6 kB
import { SESServiceException as __BaseException } from "./SESServiceException"; export class AccountSendingPausedException extends __BaseException { name = "AccountSendingPausedException"; $fault = "client"; constructor(opts) { super({ name: "AccountSendingPausedException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, AccountSendingPausedException.prototype); } } export class AlreadyExistsException extends __BaseException { name = "AlreadyExistsException"; $fault = "client"; Name; constructor(opts) { super({ name: "AlreadyExistsException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, AlreadyExistsException.prototype); this.Name = opts.Name; } } export class CannotDeleteException extends __BaseException { name = "CannotDeleteException"; $fault = "client"; Name; constructor(opts) { super({ name: "CannotDeleteException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, CannotDeleteException.prototype); this.Name = opts.Name; } } export class LimitExceededException extends __BaseException { name = "LimitExceededException"; $fault = "client"; constructor(opts) { super({ name: "LimitExceededException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, LimitExceededException.prototype); } } export class RuleSetDoesNotExistException extends __BaseException { name = "RuleSetDoesNotExistException"; $fault = "client"; Name; constructor(opts) { super({ name: "RuleSetDoesNotExistException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, RuleSetDoesNotExistException.prototype); this.Name = opts.Name; } } export class ConfigurationSetAlreadyExistsException extends __BaseException { name = "ConfigurationSetAlreadyExistsException"; $fault = "client"; ConfigurationSetName; constructor(opts) { super({ name: "ConfigurationSetAlreadyExistsException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ConfigurationSetAlreadyExistsException.prototype); this.ConfigurationSetName = opts.ConfigurationSetName; } } export class ConfigurationSetDoesNotExistException extends __BaseException { name = "ConfigurationSetDoesNotExistException"; $fault = "client"; ConfigurationSetName; constructor(opts) { super({ name: "ConfigurationSetDoesNotExistException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ConfigurationSetDoesNotExistException.prototype); this.ConfigurationSetName = opts.ConfigurationSetName; } } export class ConfigurationSetSendingPausedException extends __BaseException { name = "ConfigurationSetSendingPausedException"; $fault = "client"; ConfigurationSetName; constructor(opts) { super({ name: "ConfigurationSetSendingPausedException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ConfigurationSetSendingPausedException.prototype); this.ConfigurationSetName = opts.ConfigurationSetName; } } export class InvalidConfigurationSetException extends __BaseException { name = "InvalidConfigurationSetException"; $fault = "client"; constructor(opts) { super({ name: "InvalidConfigurationSetException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidConfigurationSetException.prototype); } } export class EventDestinationAlreadyExistsException extends __BaseException { name = "EventDestinationAlreadyExistsException"; $fault = "client"; ConfigurationSetName; EventDestinationName; constructor(opts) { super({ name: "EventDestinationAlreadyExistsException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, EventDestinationAlreadyExistsException.prototype); this.ConfigurationSetName = opts.ConfigurationSetName; this.EventDestinationName = opts.EventDestinationName; } } export class InvalidCloudWatchDestinationException extends __BaseException { name = "InvalidCloudWatchDestinationException"; $fault = "client"; ConfigurationSetName; EventDestinationName; constructor(opts) { super({ name: "InvalidCloudWatchDestinationException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidCloudWatchDestinationException.prototype); this.ConfigurationSetName = opts.ConfigurationSetName; this.EventDestinationName = opts.EventDestinationName; } } export class InvalidFirehoseDestinationException extends __BaseException { name = "InvalidFirehoseDestinationException"; $fault = "client"; ConfigurationSetName; EventDestinationName; constructor(opts) { super({ name: "InvalidFirehoseDestinationException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidFirehoseDestinationException.prototype); this.ConfigurationSetName = opts.ConfigurationSetName; this.EventDestinationName = opts.EventDestinationName; } } export class InvalidSNSDestinationException extends __BaseException { name = "InvalidSNSDestinationException"; $fault = "client"; ConfigurationSetName; EventDestinationName; constructor(opts) { super({ name: "InvalidSNSDestinationException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidSNSDestinationException.prototype); this.ConfigurationSetName = opts.ConfigurationSetName; this.EventDestinationName = opts.EventDestinationName; } } export class InvalidTrackingOptionsException extends __BaseException { name = "InvalidTrackingOptionsException"; $fault = "client"; constructor(opts) { super({ name: "InvalidTrackingOptionsException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidTrackingOptionsException.prototype); } } export class TrackingOptionsAlreadyExistsException extends __BaseException { name = "TrackingOptionsAlreadyExistsException"; $fault = "client"; ConfigurationSetName; constructor(opts) { super({ name: "TrackingOptionsAlreadyExistsException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, TrackingOptionsAlreadyExistsException.prototype); this.ConfigurationSetName = opts.ConfigurationSetName; } } export class CustomVerificationEmailInvalidContentException extends __BaseException { name = "CustomVerificationEmailInvalidContentException"; $fault = "client"; constructor(opts) { super({ name: "CustomVerificationEmailInvalidContentException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, CustomVerificationEmailInvalidContentException.prototype); } } export class CustomVerificationEmailTemplateAlreadyExistsException extends __BaseException { name = "CustomVerificationEmailTemplateAlreadyExistsException"; $fault = "client"; CustomVerificationEmailTemplateName; constructor(opts) { super({ name: "CustomVerificationEmailTemplateAlreadyExistsException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, CustomVerificationEmailTemplateAlreadyExistsException.prototype); this.CustomVerificationEmailTemplateName = opts.CustomVerificationEmailTemplateName; } } export class FromEmailAddressNotVerifiedException extends __BaseException { name = "FromEmailAddressNotVerifiedException"; $fault = "client"; FromEmailAddress; constructor(opts) { super({ name: "FromEmailAddressNotVerifiedException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, FromEmailAddressNotVerifiedException.prototype); this.FromEmailAddress = opts.FromEmailAddress; } } export class InvalidLambdaFunctionException extends __BaseException { name = "InvalidLambdaFunctionException"; $fault = "client"; FunctionArn; constructor(opts) { super({ name: "InvalidLambdaFunctionException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidLambdaFunctionException.prototype); this.FunctionArn = opts.FunctionArn; } } export class InvalidS3ConfigurationException extends __BaseException { name = "InvalidS3ConfigurationException"; $fault = "client"; Bucket; constructor(opts) { super({ name: "InvalidS3ConfigurationException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidS3ConfigurationException.prototype); this.Bucket = opts.Bucket; } } export class InvalidSnsTopicException extends __BaseException { name = "InvalidSnsTopicException"; $fault = "client"; Topic; constructor(opts) { super({ name: "InvalidSnsTopicException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidSnsTopicException.prototype); this.Topic = opts.Topic; } } export class RuleDoesNotExistException extends __BaseException { name = "RuleDoesNotExistException"; $fault = "client"; Name; constructor(opts) { super({ name: "RuleDoesNotExistException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, RuleDoesNotExistException.prototype); this.Name = opts.Name; } } export class InvalidTemplateException extends __BaseException { name = "InvalidTemplateException"; $fault = "client"; TemplateName; constructor(opts) { super({ name: "InvalidTemplateException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidTemplateException.prototype); this.TemplateName = opts.TemplateName; } } export class CustomVerificationEmailTemplateDoesNotExistException extends __BaseException { name = "CustomVerificationEmailTemplateDoesNotExistException"; $fault = "client"; CustomVerificationEmailTemplateName; constructor(opts) { super({ name: "CustomVerificationEmailTemplateDoesNotExistException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, CustomVerificationEmailTemplateDoesNotExistException.prototype); this.CustomVerificationEmailTemplateName = opts.CustomVerificationEmailTemplateName; } } export class EventDestinationDoesNotExistException extends __BaseException { name = "EventDestinationDoesNotExistException"; $fault = "client"; ConfigurationSetName; EventDestinationName; constructor(opts) { super({ name: "EventDestinationDoesNotExistException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, EventDestinationDoesNotExistException.prototype); this.ConfigurationSetName = opts.ConfigurationSetName; this.EventDestinationName = opts.EventDestinationName; } } export class TrackingOptionsDoesNotExistException extends __BaseException { name = "TrackingOptionsDoesNotExistException"; $fault = "client"; ConfigurationSetName; constructor(opts) { super({ name: "TrackingOptionsDoesNotExistException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, TrackingOptionsDoesNotExistException.prototype); this.ConfigurationSetName = opts.ConfigurationSetName; } } export class TemplateDoesNotExistException extends __BaseException { name = "TemplateDoesNotExistException"; $fault = "client"; TemplateName; constructor(opts) { super({ name: "TemplateDoesNotExistException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, TemplateDoesNotExistException.prototype); this.TemplateName = opts.TemplateName; } } export class InvalidDeliveryOptionsException extends __BaseException { name = "InvalidDeliveryOptionsException"; $fault = "client"; constructor(opts) { super({ name: "InvalidDeliveryOptionsException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidDeliveryOptionsException.prototype); } } export class InvalidPolicyException extends __BaseException { name = "InvalidPolicyException"; $fault = "client"; constructor(opts) { super({ name: "InvalidPolicyException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidPolicyException.prototype); } } export class InvalidRenderingParameterException extends __BaseException { name = "InvalidRenderingParameterException"; $fault = "client"; TemplateName; constructor(opts) { super({ name: "InvalidRenderingParameterException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidRenderingParameterException.prototype); this.TemplateName = opts.TemplateName; } } export class MailFromDomainNotVerifiedException extends __BaseException { name = "MailFromDomainNotVerifiedException"; $fault = "client"; constructor(opts) { super({ name: "MailFromDomainNotVerifiedException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, MailFromDomainNotVerifiedException.prototype); } } export class MessageRejected extends __BaseException { name = "MessageRejected"; $fault = "client"; constructor(opts) { super({ name: "MessageRejected", $fault: "client", ...opts, }); Object.setPrototypeOf(this, MessageRejected.prototype); } } export class MissingRenderingAttributeException extends __BaseException { name = "MissingRenderingAttributeException"; $fault = "client"; TemplateName; constructor(opts) { super({ name: "MissingRenderingAttributeException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, MissingRenderingAttributeException.prototype); this.TemplateName = opts.TemplateName; } } export class ProductionAccessNotGrantedException extends __BaseException { name = "ProductionAccessNotGrantedException"; $fault = "client"; constructor(opts) { super({ name: "ProductionAccessNotGrantedException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ProductionAccessNotGrantedException.prototype); } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/consigcody94/office-whisperer'

If you have feedback or need assistance with the MCP directory API, please join our Discord server