File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-amplify/dist-cjs

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 /.

index.js26.1 KB · 769 lines
'use strict'; var client$1 = require('@aws-sdk/core/client');var core = require('@smithy/core');var client = require('@smithy/core/client');var config = require('@smithy/core/config');var endpoints = require('@smithy/core/endpoints');var protocols = require('@smithy/core/protocols');var retry = require('@smithy/core/retry');var schema = require('@smithy/core/schema');var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');var runtimeConfig = require('./runtimeConfig');var schemas_0 = require('./schemas/schemas_0');var errors = require('./models/errors');var AmplifyServiceException = require('./models/AmplifyServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "amplify",    });};const commonParams = {    UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },    Endpoint: { type: "builtInParams", name: "endpoint" },    Region: { type: "builtInParams", name: "region" },    UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },}; const getHttpAuthExtensionConfiguration = (runtimeConfig) => {    const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;    let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;    let _credentials = runtimeConfig.credentials;    return {        setHttpAuthScheme(httpAuthScheme) {            const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);            if (index === -1) {                _httpAuthSchemes.push(httpAuthScheme);            }            else {                _httpAuthSchemes.splice(index, 1, httpAuthScheme);            }        },        httpAuthSchemes() {            return _httpAuthSchemes;        },        setHttpAuthSchemeProvider(httpAuthSchemeProvider) {            _httpAuthSchemeProvider = httpAuthSchemeProvider;        },        httpAuthSchemeProvider() {            return _httpAuthSchemeProvider;        },        setCredentials(credentials) {            _credentials = credentials;        },        credentials() {            return _credentials;        },    };};const resolveHttpAuthRuntimeConfig = (config) => {    return {        httpAuthSchemes: config.httpAuthSchemes(),        httpAuthSchemeProvider: config.httpAuthSchemeProvider(),        credentials: config.credentials(),    };}; const resolveRuntimeExtensions = (runtimeConfig, extensions) => {    const extensionConfiguration = Object.assign(client$1.getAwsRegionExtensionConfiguration(runtimeConfig), client.getDefaultExtensionConfiguration(runtimeConfig), protocols.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));    extensions.forEach((extension) => extension.configure(extensionConfiguration));    return Object.assign(runtimeConfig, client$1.resolveAwsRegionExtensionConfiguration(extensionConfiguration), client.resolveDefaultRuntimeConfig(extensionConfiguration), protocols.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));}; class AmplifyClient extends client.Client {    config;    constructor(...[configuration]) {        const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});        super(_config_0);        this.initConfig = _config_0;        const _config_1 = resolveClientEndpointParameters(_config_0);        const _config_2 = client$1.resolveUserAgentConfig(_config_1);        const _config_3 = retry.resolveRetryConfig(_config_2);        const _config_4 = config.resolveRegionConfig(_config_3);        const _config_5 = client$1.resolveHostHeaderConfig(_config_4);        const _config_6 = endpoints.resolveEndpointConfig(_config_5);        const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);        const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);        this.config = _config_8;        this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));        this.middlewareStack.use(client$1.getUserAgentPlugin(this.config));        this.middlewareStack.use(retry.getRetryPlugin(this.config));        this.middlewareStack.use(protocols.getContentLengthPlugin(this.config));        this.middlewareStack.use(client$1.getHostHeaderPlugin(this.config));        this.middlewareStack.use(client$1.getLoggerPlugin(this.config));        this.middlewareStack.use(client$1.getRecursionDetectionPlugin(this.config));        this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {            httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultAmplifyHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class CreateAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "CreateApp", {})    .n("AmplifyClient", "CreateAppCommand")    .sc(schemas_0.CreateApp$)    .build() {} class CreateBackendEnvironmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "CreateBackendEnvironment", {})    .n("AmplifyClient", "CreateBackendEnvironmentCommand")    .sc(schemas_0.CreateBackendEnvironment$)    .build() {} class CreateBranchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "CreateBranch", {})    .n("AmplifyClient", "CreateBranchCommand")    .sc(schemas_0.CreateBranch$)    .build() {} class CreateDeploymentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "CreateDeployment", {})    .n("AmplifyClient", "CreateDeploymentCommand")    .sc(schemas_0.CreateDeployment$)    .build() {} class CreateDomainAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "CreateDomainAssociation", {})    .n("AmplifyClient", "CreateDomainAssociationCommand")    .sc(schemas_0.CreateDomainAssociation$)    .build() {} class CreateWebhookCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "CreateWebhook", {})    .n("AmplifyClient", "CreateWebhookCommand")    .sc(schemas_0.CreateWebhook$)    .build() {} class DeleteAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "DeleteApp", {})    .n("AmplifyClient", "DeleteAppCommand")    .sc(schemas_0.DeleteApp$)    .build() {} class DeleteBackendEnvironmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "DeleteBackendEnvironment", {})    .n("AmplifyClient", "DeleteBackendEnvironmentCommand")    .sc(schemas_0.DeleteBackendEnvironment$)    .build() {} class DeleteBranchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "DeleteBranch", {})    .n("AmplifyClient", "DeleteBranchCommand")    .sc(schemas_0.DeleteBranch$)    .build() {} class DeleteDomainAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "DeleteDomainAssociation", {})    .n("AmplifyClient", "DeleteDomainAssociationCommand")    .sc(schemas_0.DeleteDomainAssociation$)    .build() {} class DeleteJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "DeleteJob", {})    .n("AmplifyClient", "DeleteJobCommand")    .sc(schemas_0.DeleteJob$)    .build() {} class DeleteWebhookCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "DeleteWebhook", {})    .n("AmplifyClient", "DeleteWebhookCommand")    .sc(schemas_0.DeleteWebhook$)    .build() {} class GenerateAccessLogsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "GenerateAccessLogs", {})    .n("AmplifyClient", "GenerateAccessLogsCommand")    .sc(schemas_0.GenerateAccessLogs$)    .build() {} class GetAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "GetApp", {})    .n("AmplifyClient", "GetAppCommand")    .sc(schemas_0.GetApp$)    .build() {} class GetArtifactUrlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "GetArtifactUrl", {})    .n("AmplifyClient", "GetArtifactUrlCommand")    .sc(schemas_0.GetArtifactUrl$)    .build() {} class GetBackendEnvironmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "GetBackendEnvironment", {})    .n("AmplifyClient", "GetBackendEnvironmentCommand")    .sc(schemas_0.GetBackendEnvironment$)    .build() {} class GetBranchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "GetBranch", {})    .n("AmplifyClient", "GetBranchCommand")    .sc(schemas_0.GetBranch$)    .build() {} class GetDomainAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "GetDomainAssociation", {})    .n("AmplifyClient", "GetDomainAssociationCommand")    .sc(schemas_0.GetDomainAssociation$)    .build() {} class GetJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "GetJob", {})    .n("AmplifyClient", "GetJobCommand")    .sc(schemas_0.GetJob$)    .build() {} class GetWebhookCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "GetWebhook", {})    .n("AmplifyClient", "GetWebhookCommand")    .sc(schemas_0.GetWebhook$)    .build() {} class ListAppsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "ListApps", {})    .n("AmplifyClient", "ListAppsCommand")    .sc(schemas_0.ListApps$)    .build() {} class ListArtifactsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "ListArtifacts", {})    .n("AmplifyClient", "ListArtifactsCommand")    .sc(schemas_0.ListArtifacts$)    .build() {} class ListBackendEnvironmentsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "ListBackendEnvironments", {})    .n("AmplifyClient", "ListBackendEnvironmentsCommand")    .sc(schemas_0.ListBackendEnvironments$)    .build() {} class ListBranchesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "ListBranches", {})    .n("AmplifyClient", "ListBranchesCommand")    .sc(schemas_0.ListBranches$)    .build() {} class ListDomainAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "ListDomainAssociations", {})    .n("AmplifyClient", "ListDomainAssociationsCommand")    .sc(schemas_0.ListDomainAssociations$)    .build() {} class ListJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "ListJobs", {})    .n("AmplifyClient", "ListJobsCommand")    .sc(schemas_0.ListJobs$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "ListTagsForResource", {})    .n("AmplifyClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class ListWebhooksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "ListWebhooks", {})    .n("AmplifyClient", "ListWebhooksCommand")    .sc(schemas_0.ListWebhooks$)    .build() {} class StartDeploymentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "StartDeployment", {})    .n("AmplifyClient", "StartDeploymentCommand")    .sc(schemas_0.StartDeployment$)    .build() {} class StartJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "StartJob", {})    .n("AmplifyClient", "StartJobCommand")    .sc(schemas_0.StartJob$)    .build() {} class StopJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "StopJob", {})    .n("AmplifyClient", "StopJobCommand")    .sc(schemas_0.StopJob$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "TagResource", {})    .n("AmplifyClient", "TagResourceCommand")    .sc(schemas_0.TagResource$)    .build() {} class UntagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "UntagResource", {})    .n("AmplifyClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "UpdateApp", {})    .n("AmplifyClient", "UpdateAppCommand")    .sc(schemas_0.UpdateApp$)    .build() {} class UpdateBranchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "UpdateBranch", {})    .n("AmplifyClient", "UpdateBranchCommand")    .sc(schemas_0.UpdateBranch$)    .build() {} class UpdateDomainAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "UpdateDomainAssociation", {})    .n("AmplifyClient", "UpdateDomainAssociationCommand")    .sc(schemas_0.UpdateDomainAssociation$)    .build() {} class UpdateWebhookCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Amplify", "UpdateWebhook", {})    .n("AmplifyClient", "UpdateWebhookCommand")    .sc(schemas_0.UpdateWebhook$)    .build() {} const paginateListApps = core.createPaginator(AmplifyClient, ListAppsCommand, "nextToken", "nextToken", "maxResults"); const paginateListBranches = core.createPaginator(AmplifyClient, ListBranchesCommand, "nextToken", "nextToken", "maxResults"); const paginateListDomainAssociations = core.createPaginator(AmplifyClient, ListDomainAssociationsCommand, "nextToken", "nextToken", "maxResults"); const paginateListJobs = core.createPaginator(AmplifyClient, ListJobsCommand, "nextToken", "nextToken", "maxResults"); const commands = {    CreateAppCommand,    CreateBackendEnvironmentCommand,    CreateBranchCommand,    CreateDeploymentCommand,    CreateDomainAssociationCommand,    CreateWebhookCommand,    DeleteAppCommand,    DeleteBackendEnvironmentCommand,    DeleteBranchCommand,    DeleteDomainAssociationCommand,    DeleteJobCommand,    DeleteWebhookCommand,    GenerateAccessLogsCommand,    GetAppCommand,    GetArtifactUrlCommand,    GetBackendEnvironmentCommand,    GetBranchCommand,    GetDomainAssociationCommand,    GetJobCommand,    GetWebhookCommand,    ListAppsCommand,    ListArtifactsCommand,    ListBackendEnvironmentsCommand,    ListBranchesCommand,    ListDomainAssociationsCommand,    ListJobsCommand,    ListTagsForResourceCommand,    ListWebhooksCommand,    StartDeploymentCommand,    StartJobCommand,    StopJobCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateAppCommand,    UpdateBranchCommand,    UpdateDomainAssociationCommand,    UpdateWebhookCommand,};const paginators = {    paginateListApps,    paginateListBranches,    paginateListDomainAssociations,    paginateListJobs,};class Amplify extends AmplifyClient {}client.createAggregatedClient(commands, Amplify, { paginators }); const Stage = {    BETA: "BETA",    DEVELOPMENT: "DEVELOPMENT",    EXPERIMENTAL: "EXPERIMENTAL",    PRODUCTION: "PRODUCTION",    PULL_REQUEST: "PULL_REQUEST",};const CacheConfigType = {    AMPLIFY_MANAGED: "AMPLIFY_MANAGED",    AMPLIFY_MANAGED_NO_COOKIES: "AMPLIFY_MANAGED_NO_COOKIES",};const BuildComputeType = {    LARGE_16GB: "LARGE_16GB",    STANDARD_8GB: "STANDARD_8GB",    XLARGE_72GB: "XLARGE_72GB",};const Platform = {    WEB: "WEB",    WEB_COMPUTE: "WEB_COMPUTE",    WEB_DYNAMIC: "WEB_DYNAMIC",};const RepositoryCloneMethod = {    SIGV4: "SIGV4",    SSH: "SSH",    TOKEN: "TOKEN",};const WafStatus = {    ASSOCIATING: "ASSOCIATING",    ASSOCIATION_FAILED: "ASSOCIATION_FAILED",    ASSOCIATION_SUCCESS: "ASSOCIATION_SUCCESS",    DISASSOCIATING: "DISASSOCIATING",    DISASSOCIATION_FAILED: "DISASSOCIATION_FAILED",};const CertificateType = {    AMPLIFY_MANAGED: "AMPLIFY_MANAGED",    CUSTOM: "CUSTOM",};const DomainStatus = {    AVAILABLE: "AVAILABLE",    AWAITING_APP_CNAME: "AWAITING_APP_CNAME",    CREATING: "CREATING",    FAILED: "FAILED",    IMPORTING_CUSTOM_CERTIFICATE: "IMPORTING_CUSTOM_CERTIFICATE",    IN_PROGRESS: "IN_PROGRESS",    PENDING_DEPLOYMENT: "PENDING_DEPLOYMENT",    PENDING_VERIFICATION: "PENDING_VERIFICATION",    REQUESTING_CERTIFICATE: "REQUESTING_CERTIFICATE",    UPDATING: "UPDATING",};const UpdateStatus = {    AWAITING_APP_CNAME: "AWAITING_APP_CNAME",    IMPORTING_CUSTOM_CERTIFICATE: "IMPORTING_CUSTOM_CERTIFICATE",    PENDING_DEPLOYMENT: "PENDING_DEPLOYMENT",    PENDING_VERIFICATION: "PENDING_VERIFICATION",    REQUESTING_CERTIFICATE: "REQUESTING_CERTIFICATE",    UPDATE_COMPLETE: "UPDATE_COMPLETE",    UPDATE_FAILED: "UPDATE_FAILED",};const JobType = {    MANUAL: "MANUAL",    RELEASE: "RELEASE",    RETRY: "RETRY",    WEB_HOOK: "WEB_HOOK",};const SourceUrlType = {    BUCKET_PREFIX: "BUCKET_PREFIX",    ZIP: "ZIP",};const JobStatus = {    CANCELLED: "CANCELLED",    CANCELLING: "CANCELLING",    CREATED: "CREATED",    FAILED: "FAILED",    PENDING: "PENDING",    PROVISIONING: "PROVISIONING",    RUNNING: "RUNNING",    SUCCEED: "SUCCEED",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.AmplifyServiceException = AmplifyServiceException.AmplifyServiceException;exports.Amplify = Amplify;exports.AmplifyClient = AmplifyClient;exports.BuildComputeType = BuildComputeType;exports.CacheConfigType = CacheConfigType;exports.CertificateType = CertificateType;exports.CreateAppCommand = CreateAppCommand;exports.CreateBackendEnvironmentCommand = CreateBackendEnvironmentCommand;exports.CreateBranchCommand = CreateBranchCommand;exports.CreateDeploymentCommand = CreateDeploymentCommand;exports.CreateDomainAssociationCommand = CreateDomainAssociationCommand;exports.CreateWebhookCommand = CreateWebhookCommand;exports.DeleteAppCommand = DeleteAppCommand;exports.DeleteBackendEnvironmentCommand = DeleteBackendEnvironmentCommand;exports.DeleteBranchCommand = DeleteBranchCommand;exports.DeleteDomainAssociationCommand = DeleteDomainAssociationCommand;exports.DeleteJobCommand = DeleteJobCommand;exports.DeleteWebhookCommand = DeleteWebhookCommand;exports.DomainStatus = DomainStatus;exports.GenerateAccessLogsCommand = GenerateAccessLogsCommand;exports.GetAppCommand = GetAppCommand;exports.GetArtifactUrlCommand = GetArtifactUrlCommand;exports.GetBackendEnvironmentCommand = GetBackendEnvironmentCommand;exports.GetBranchCommand = GetBranchCommand;exports.GetDomainAssociationCommand = GetDomainAssociationCommand;exports.GetJobCommand = GetJobCommand;exports.GetWebhookCommand = GetWebhookCommand;exports.JobStatus = JobStatus;exports.JobType = JobType;exports.ListAppsCommand = ListAppsCommand;exports.ListArtifactsCommand = ListArtifactsCommand;exports.ListBackendEnvironmentsCommand = ListBackendEnvironmentsCommand;exports.ListBranchesCommand = ListBranchesCommand;exports.ListDomainAssociationsCommand = ListDomainAssociationsCommand;exports.ListJobsCommand = ListJobsCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.ListWebhooksCommand = ListWebhooksCommand;exports.Platform = Platform;exports.RepositoryCloneMethod = RepositoryCloneMethod;exports.SourceUrlType = SourceUrlType;exports.Stage = Stage;exports.StartDeploymentCommand = StartDeploymentCommand;exports.StartJobCommand = StartJobCommand;exports.StopJobCommand = StopJobCommand;exports.TagResourceCommand = TagResourceCommand;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateAppCommand = UpdateAppCommand;exports.UpdateBranchCommand = UpdateBranchCommand;exports.UpdateDomainAssociationCommand = UpdateDomainAssociationCommand;exports.UpdateStatus = UpdateStatus;exports.UpdateWebhookCommand = UpdateWebhookCommand;exports.WafStatus = WafStatus;exports.paginateListApps = paginateListApps;exports.paginateListBranches = paginateListBranches;exports.paginateListDomainAssociations = paginateListDomainAssociations;exports.paginateListJobs = paginateListJobs;Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: schemas_0['__proto__']    }); Object.keys(schemas_0).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];});Object.prototype.hasOwnProperty.call(errors, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: errors['__proto__']    }); Object.keys(errors).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];});