/proc/self/root/var/runtime/node_modules/@aws-sdk/client-mwaa/dist-cjs/models
This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.RestApiServerException = exports.RestApiClientException = exports.ValidationException = exports.ServiceUnavailableException = exports.InternalServerException = exports.ResourceNotFoundException = exports.AccessDeniedException = void 0;const MWAAServiceException_1 = require("./MWAAServiceException");class AccessDeniedException extends MWAAServiceException_1.MWAAServiceException { name = "AccessDeniedException"; $fault = "client"; Message; constructor(opts) { super({ name: "AccessDeniedException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, AccessDeniedException.prototype); this.Message = opts.Message; }}exports.AccessDeniedException = AccessDeniedException;class ResourceNotFoundException extends MWAAServiceException_1.MWAAServiceException { name = "ResourceNotFoundException"; $fault = "client"; constructor(opts) { super({ name: "ResourceNotFoundException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ResourceNotFoundException.prototype); }}exports.ResourceNotFoundException = ResourceNotFoundException;class InternalServerException extends MWAAServiceException_1.MWAAServiceException { name = "InternalServerException"; $fault = "server"; constructor(opts) { super({ name: "InternalServerException", $fault: "server", ...opts, }); Object.setPrototypeOf(this, InternalServerException.prototype); }}exports.InternalServerException = InternalServerException;class ServiceUnavailableException extends MWAAServiceException_1.MWAAServiceException { name = "ServiceUnavailableException"; $fault = "server"; constructor(opts) { super({ name: "ServiceUnavailableException", $fault: "server", ...opts, }); Object.setPrototypeOf(this, ServiceUnavailableException.prototype); }}exports.ServiceUnavailableException = ServiceUnavailableException;class ValidationException extends MWAAServiceException_1.MWAAServiceException { name = "ValidationException"; $fault = "client"; constructor(opts) { super({ name: "ValidationException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ValidationException.prototype); }}exports.ValidationException = ValidationException;class RestApiClientException extends MWAAServiceException_1.MWAAServiceException { name = "RestApiClientException"; $fault = "client"; RestApiStatusCode; RestApiResponse; constructor(opts) { super({ name: "RestApiClientException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, RestApiClientException.prototype); this.RestApiStatusCode = opts.RestApiStatusCode; this.RestApiResponse = opts.RestApiResponse; }}exports.RestApiClientException = RestApiClientException;class RestApiServerException extends MWAAServiceException_1.MWAAServiceException { name = "RestApiServerException"; $fault = "client"; RestApiStatusCode; RestApiResponse; constructor(opts) { super({ name: "RestApiServerException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, RestApiServerException.prototype); this.RestApiStatusCode = opts.RestApiStatusCode; this.RestApiResponse = opts.RestApiResponse; }}exports.RestApiServerException = RestApiServerException;