File Explorer

/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/client-inspector2/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.js70.7 KB · 2011 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 Inspector2ServiceException = require('./models/Inspector2ServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "inspector2",    });};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 Inspector2Client 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.defaultInspector2HttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AssociateMemberCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "AssociateMember", {})    .n("Inspector2Client", "AssociateMemberCommand")    .sc(schemas_0.AssociateMember$)    .build() {} class BatchAssociateCodeSecurityScanConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "BatchAssociateCodeSecurityScanConfiguration", {})    .n("Inspector2Client", "BatchAssociateCodeSecurityScanConfigurationCommand")    .sc(schemas_0.BatchAssociateCodeSecurityScanConfiguration$)    .build() {} class BatchDisassociateCodeSecurityScanConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "BatchDisassociateCodeSecurityScanConfiguration", {})    .n("Inspector2Client", "BatchDisassociateCodeSecurityScanConfigurationCommand")    .sc(schemas_0.BatchDisassociateCodeSecurityScanConfiguration$)    .build() {} class BatchGetAccountStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "BatchGetAccountStatus", {})    .n("Inspector2Client", "BatchGetAccountStatusCommand")    .sc(schemas_0.BatchGetAccountStatus$)    .build() {} class BatchGetCodeSnippetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "BatchGetCodeSnippet", {})    .n("Inspector2Client", "BatchGetCodeSnippetCommand")    .sc(schemas_0.BatchGetCodeSnippet$)    .build() {} class BatchGetFindingDetailsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "BatchGetFindingDetails", {})    .n("Inspector2Client", "BatchGetFindingDetailsCommand")    .sc(schemas_0.BatchGetFindingDetails$)    .build() {} class BatchGetFreeTrialInfoCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "BatchGetFreeTrialInfo", {})    .n("Inspector2Client", "BatchGetFreeTrialInfoCommand")    .sc(schemas_0.BatchGetFreeTrialInfo$)    .build() {} class BatchGetMemberEc2DeepInspectionStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "BatchGetMemberEc2DeepInspectionStatus", {})    .n("Inspector2Client", "BatchGetMemberEc2DeepInspectionStatusCommand")    .sc(schemas_0.BatchGetMemberEc2DeepInspectionStatus$)    .build() {} class BatchUpdateMemberEc2DeepInspectionStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "BatchUpdateMemberEc2DeepInspectionStatus", {})    .n("Inspector2Client", "BatchUpdateMemberEc2DeepInspectionStatusCommand")    .sc(schemas_0.BatchUpdateMemberEc2DeepInspectionStatus$)    .build() {} class CancelFindingsReportCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "CancelFindingsReport", {})    .n("Inspector2Client", "CancelFindingsReportCommand")    .sc(schemas_0.CancelFindingsReport$)    .build() {} class CancelSbomExportCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "CancelSbomExport", {})    .n("Inspector2Client", "CancelSbomExportCommand")    .sc(schemas_0.CancelSbomExport$)    .build() {} class CreateCisScanConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "CreateCisScanConfiguration", {})    .n("Inspector2Client", "CreateCisScanConfigurationCommand")    .sc(schemas_0.CreateCisScanConfiguration$)    .build() {} class CreateCodeSecurityIntegrationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "CreateCodeSecurityIntegration", {})    .n("Inspector2Client", "CreateCodeSecurityIntegrationCommand")    .sc(schemas_0.CreateCodeSecurityIntegration$)    .build() {} class CreateCodeSecurityScanConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "CreateCodeSecurityScanConfiguration", {})    .n("Inspector2Client", "CreateCodeSecurityScanConfigurationCommand")    .sc(schemas_0.CreateCodeSecurityScanConfiguration$)    .build() {} class CreateFilterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "CreateFilter", {})    .n("Inspector2Client", "CreateFilterCommand")    .sc(schemas_0.CreateFilter$)    .build() {} class CreateFindingsReportCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "CreateFindingsReport", {})    .n("Inspector2Client", "CreateFindingsReportCommand")    .sc(schemas_0.CreateFindingsReport$)    .build() {} class CreateSbomExportCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "CreateSbomExport", {})    .n("Inspector2Client", "CreateSbomExportCommand")    .sc(schemas_0.CreateSbomExport$)    .build() {} class DeleteCisScanConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "DeleteCisScanConfiguration", {})    .n("Inspector2Client", "DeleteCisScanConfigurationCommand")    .sc(schemas_0.DeleteCisScanConfiguration$)    .build() {} class DeleteCodeSecurityIntegrationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "DeleteCodeSecurityIntegration", {})    .n("Inspector2Client", "DeleteCodeSecurityIntegrationCommand")    .sc(schemas_0.DeleteCodeSecurityIntegration$)    .build() {} class DeleteCodeSecurityScanConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "DeleteCodeSecurityScanConfiguration", {})    .n("Inspector2Client", "DeleteCodeSecurityScanConfigurationCommand")    .sc(schemas_0.DeleteCodeSecurityScanConfiguration$)    .build() {} class DeleteFilterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "DeleteFilter", {})    .n("Inspector2Client", "DeleteFilterCommand")    .sc(schemas_0.DeleteFilter$)    .build() {} class DescribeOrganizationConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "DescribeOrganizationConfiguration", {})    .n("Inspector2Client", "DescribeOrganizationConfigurationCommand")    .sc(schemas_0.DescribeOrganizationConfiguration$)    .build() {} class DisableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "Disable", {})    .n("Inspector2Client", "DisableCommand")    .sc(schemas_0.Disable$)    .build() {} class DisableDelegatedAdminAccountCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "DisableDelegatedAdminAccount", {})    .n("Inspector2Client", "DisableDelegatedAdminAccountCommand")    .sc(schemas_0.DisableDelegatedAdminAccount$)    .build() {} class DisassociateMemberCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "DisassociateMember", {})    .n("Inspector2Client", "DisassociateMemberCommand")    .sc(schemas_0.DisassociateMember$)    .build() {} class EnableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "Enable", {})    .n("Inspector2Client", "EnableCommand")    .sc(schemas_0.Enable$)    .build() {} class EnableDelegatedAdminAccountCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "EnableDelegatedAdminAccount", {})    .n("Inspector2Client", "EnableDelegatedAdminAccountCommand")    .sc(schemas_0.EnableDelegatedAdminAccount$)    .build() {} class GetCisScanReportCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetCisScanReport", {})    .n("Inspector2Client", "GetCisScanReportCommand")    .sc(schemas_0.GetCisScanReport$)    .build() {} class GetCisScanResultDetailsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetCisScanResultDetails", {})    .n("Inspector2Client", "GetCisScanResultDetailsCommand")    .sc(schemas_0.GetCisScanResultDetails$)    .build() {} class GetClustersForImageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetClustersForImage", {})    .n("Inspector2Client", "GetClustersForImageCommand")    .sc(schemas_0.GetClustersForImage$)    .build() {} class GetCodeSecurityIntegrationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetCodeSecurityIntegration", {})    .n("Inspector2Client", "GetCodeSecurityIntegrationCommand")    .sc(schemas_0.GetCodeSecurityIntegration$)    .build() {} class GetCodeSecurityScanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetCodeSecurityScan", {})    .n("Inspector2Client", "GetCodeSecurityScanCommand")    .sc(schemas_0.GetCodeSecurityScan$)    .build() {} class GetCodeSecurityScanConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetCodeSecurityScanConfiguration", {})    .n("Inspector2Client", "GetCodeSecurityScanConfigurationCommand")    .sc(schemas_0.GetCodeSecurityScanConfiguration$)    .build() {} class GetConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetConfiguration", {})    .n("Inspector2Client", "GetConfigurationCommand")    .sc(schemas_0.GetConfiguration$)    .build() {} class GetDelegatedAdminAccountCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetDelegatedAdminAccount", {})    .n("Inspector2Client", "GetDelegatedAdminAccountCommand")    .sc(schemas_0.GetDelegatedAdminAccount$)    .build() {} class GetEc2DeepInspectionConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetEc2DeepInspectionConfiguration", {})    .n("Inspector2Client", "GetEc2DeepInspectionConfigurationCommand")    .sc(schemas_0.GetEc2DeepInspectionConfiguration$)    .build() {} class GetEncryptionKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetEncryptionKey", {})    .n("Inspector2Client", "GetEncryptionKeyCommand")    .sc(schemas_0.GetEncryptionKey$)    .build() {} class GetFindingsReportStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetFindingsReportStatus", {})    .n("Inspector2Client", "GetFindingsReportStatusCommand")    .sc(schemas_0.GetFindingsReportStatus$)    .build() {} class GetMemberCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetMember", {})    .n("Inspector2Client", "GetMemberCommand")    .sc(schemas_0.GetMember$)    .build() {} class GetSbomExportCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "GetSbomExport", {})    .n("Inspector2Client", "GetSbomExportCommand")    .sc(schemas_0.GetSbomExport$)    .build() {} class ListAccountPermissionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListAccountPermissions", {})    .n("Inspector2Client", "ListAccountPermissionsCommand")    .sc(schemas_0.ListAccountPermissions$)    .build() {} class ListCisScanConfigurationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListCisScanConfigurations", {})    .n("Inspector2Client", "ListCisScanConfigurationsCommand")    .sc(schemas_0.ListCisScanConfigurations$)    .build() {} class ListCisScanResultsAggregatedByChecksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListCisScanResultsAggregatedByChecks", {})    .n("Inspector2Client", "ListCisScanResultsAggregatedByChecksCommand")    .sc(schemas_0.ListCisScanResultsAggregatedByChecks$)    .build() {} class ListCisScanResultsAggregatedByTargetResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListCisScanResultsAggregatedByTargetResource", {})    .n("Inspector2Client", "ListCisScanResultsAggregatedByTargetResourceCommand")    .sc(schemas_0.ListCisScanResultsAggregatedByTargetResource$)    .build() {} class ListCisScansCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListCisScans", {})    .n("Inspector2Client", "ListCisScansCommand")    .sc(schemas_0.ListCisScans$)    .build() {} class ListCodeSecurityIntegrationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListCodeSecurityIntegrations", {})    .n("Inspector2Client", "ListCodeSecurityIntegrationsCommand")    .sc(schemas_0.ListCodeSecurityIntegrations$)    .build() {} class ListCodeSecurityScanConfigurationAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListCodeSecurityScanConfigurationAssociations", {})    .n("Inspector2Client", "ListCodeSecurityScanConfigurationAssociationsCommand")    .sc(schemas_0.ListCodeSecurityScanConfigurationAssociations$)    .build() {} class ListCodeSecurityScanConfigurationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListCodeSecurityScanConfigurations", {})    .n("Inspector2Client", "ListCodeSecurityScanConfigurationsCommand")    .sc(schemas_0.ListCodeSecurityScanConfigurations$)    .build() {} class ListCoverageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListCoverage", {})    .n("Inspector2Client", "ListCoverageCommand")    .sc(schemas_0.ListCoverage$)    .build() {} class ListCoverageStatisticsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListCoverageStatistics", {})    .n("Inspector2Client", "ListCoverageStatisticsCommand")    .sc(schemas_0.ListCoverageStatistics$)    .build() {} class ListDelegatedAdminAccountsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListDelegatedAdminAccounts", {})    .n("Inspector2Client", "ListDelegatedAdminAccountsCommand")    .sc(schemas_0.ListDelegatedAdminAccounts$)    .build() {} class ListFiltersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListFilters", {})    .n("Inspector2Client", "ListFiltersCommand")    .sc(schemas_0.ListFilters$)    .build() {} class ListFindingAggregationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListFindingAggregations", {})    .n("Inspector2Client", "ListFindingAggregationsCommand")    .sc(schemas_0.ListFindingAggregations$)    .build() {} class ListFindingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListFindings", {})    .n("Inspector2Client", "ListFindingsCommand")    .sc(schemas_0.ListFindings$)    .build() {} class ListMembersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListMembers", {})    .n("Inspector2Client", "ListMembersCommand")    .sc(schemas_0.ListMembers$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListTagsForResource", {})    .n("Inspector2Client", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class ListUsageTotalsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ListUsageTotals", {})    .n("Inspector2Client", "ListUsageTotalsCommand")    .sc(schemas_0.ListUsageTotals$)    .build() {} class ResetEncryptionKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "ResetEncryptionKey", {})    .n("Inspector2Client", "ResetEncryptionKeyCommand")    .sc(schemas_0.ResetEncryptionKey$)    .build() {} class SearchVulnerabilitiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "SearchVulnerabilities", {})    .n("Inspector2Client", "SearchVulnerabilitiesCommand")    .sc(schemas_0.SearchVulnerabilities$)    .build() {} class SendCisSessionHealthCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "SendCisSessionHealth", {})    .n("Inspector2Client", "SendCisSessionHealthCommand")    .sc(schemas_0.SendCisSessionHealth$)    .build() {} class SendCisSessionTelemetryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "SendCisSessionTelemetry", {})    .n("Inspector2Client", "SendCisSessionTelemetryCommand")    .sc(schemas_0.SendCisSessionTelemetry$)    .build() {} class StartCisSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "StartCisSession", {})    .n("Inspector2Client", "StartCisSessionCommand")    .sc(schemas_0.StartCisSession$)    .build() {} class StartCodeSecurityScanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "StartCodeSecurityScan", {})    .n("Inspector2Client", "StartCodeSecurityScanCommand")    .sc(schemas_0.StartCodeSecurityScan$)    .build() {} class StopCisSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "StopCisSession", {})    .n("Inspector2Client", "StopCisSessionCommand")    .sc(schemas_0.StopCisSession$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "TagResource", {})    .n("Inspector2Client", "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("Inspector2", "UntagResource", {})    .n("Inspector2Client", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateCisScanConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "UpdateCisScanConfiguration", {})    .n("Inspector2Client", "UpdateCisScanConfigurationCommand")    .sc(schemas_0.UpdateCisScanConfiguration$)    .build() {} class UpdateCodeSecurityIntegrationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "UpdateCodeSecurityIntegration", {})    .n("Inspector2Client", "UpdateCodeSecurityIntegrationCommand")    .sc(schemas_0.UpdateCodeSecurityIntegration$)    .build() {} class UpdateCodeSecurityScanConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "UpdateCodeSecurityScanConfiguration", {})    .n("Inspector2Client", "UpdateCodeSecurityScanConfigurationCommand")    .sc(schemas_0.UpdateCodeSecurityScanConfiguration$)    .build() {} class UpdateConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "UpdateConfiguration", {})    .n("Inspector2Client", "UpdateConfigurationCommand")    .sc(schemas_0.UpdateConfiguration$)    .build() {} class UpdateEc2DeepInspectionConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "UpdateEc2DeepInspectionConfiguration", {})    .n("Inspector2Client", "UpdateEc2DeepInspectionConfigurationCommand")    .sc(schemas_0.UpdateEc2DeepInspectionConfiguration$)    .build() {} class UpdateEncryptionKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "UpdateEncryptionKey", {})    .n("Inspector2Client", "UpdateEncryptionKeyCommand")    .sc(schemas_0.UpdateEncryptionKey$)    .build() {} class UpdateFilterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "UpdateFilter", {})    .n("Inspector2Client", "UpdateFilterCommand")    .sc(schemas_0.UpdateFilter$)    .build() {} class UpdateOrganizationConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "UpdateOrganizationConfiguration", {})    .n("Inspector2Client", "UpdateOrganizationConfigurationCommand")    .sc(schemas_0.UpdateOrganizationConfiguration$)    .build() {} class UpdateOrgEc2DeepInspectionConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Inspector2", "UpdateOrgEc2DeepInspectionConfiguration", {})    .n("Inspector2Client", "UpdateOrgEc2DeepInspectionConfigurationCommand")    .sc(schemas_0.UpdateOrgEc2DeepInspectionConfiguration$)    .build() {} const paginateGetCisScanResultDetails = core.createPaginator(Inspector2Client, GetCisScanResultDetailsCommand, "nextToken", "nextToken", "maxResults"); const paginateGetClustersForImage = core.createPaginator(Inspector2Client, GetClustersForImageCommand, "nextToken", "nextToken", "maxResults"); const paginateListAccountPermissions = core.createPaginator(Inspector2Client, ListAccountPermissionsCommand, "nextToken", "nextToken", "maxResults"); const paginateListCisScanConfigurations = core.createPaginator(Inspector2Client, ListCisScanConfigurationsCommand, "nextToken", "nextToken", "maxResults"); const paginateListCisScanResultsAggregatedByChecks = core.createPaginator(Inspector2Client, ListCisScanResultsAggregatedByChecksCommand, "nextToken", "nextToken", "maxResults"); const paginateListCisScanResultsAggregatedByTargetResource = core.createPaginator(Inspector2Client, ListCisScanResultsAggregatedByTargetResourceCommand, "nextToken", "nextToken", "maxResults"); const paginateListCisScans = core.createPaginator(Inspector2Client, ListCisScansCommand, "nextToken", "nextToken", "maxResults"); const paginateListCoverage = core.createPaginator(Inspector2Client, ListCoverageCommand, "nextToken", "nextToken", "maxResults"); const paginateListCoverageStatistics = core.createPaginator(Inspector2Client, ListCoverageStatisticsCommand, "nextToken", "nextToken", ""); const paginateListDelegatedAdminAccounts = core.createPaginator(Inspector2Client, ListDelegatedAdminAccountsCommand, "nextToken", "nextToken", "maxResults"); const paginateListFilters = core.createPaginator(Inspector2Client, ListFiltersCommand, "nextToken", "nextToken", "maxResults"); const paginateListFindingAggregations = core.createPaginator(Inspector2Client, ListFindingAggregationsCommand, "nextToken", "nextToken", "maxResults"); const paginateListFindings = core.createPaginator(Inspector2Client, ListFindingsCommand, "nextToken", "nextToken", "maxResults"); const paginateListMembers = core.createPaginator(Inspector2Client, ListMembersCommand, "nextToken", "nextToken", "maxResults"); const paginateListUsageTotals = core.createPaginator(Inspector2Client, ListUsageTotalsCommand, "nextToken", "nextToken", "maxResults"); const paginateSearchVulnerabilities = core.createPaginator(Inspector2Client, SearchVulnerabilitiesCommand, "nextToken", "nextToken", ""); const commands = {    AssociateMemberCommand,    BatchAssociateCodeSecurityScanConfigurationCommand,    BatchDisassociateCodeSecurityScanConfigurationCommand,    BatchGetAccountStatusCommand,    BatchGetCodeSnippetCommand,    BatchGetFindingDetailsCommand,    BatchGetFreeTrialInfoCommand,    BatchGetMemberEc2DeepInspectionStatusCommand,    BatchUpdateMemberEc2DeepInspectionStatusCommand,    CancelFindingsReportCommand,    CancelSbomExportCommand,    CreateCisScanConfigurationCommand,    CreateCodeSecurityIntegrationCommand,    CreateCodeSecurityScanConfigurationCommand,    CreateFilterCommand,    CreateFindingsReportCommand,    CreateSbomExportCommand,    DeleteCisScanConfigurationCommand,    DeleteCodeSecurityIntegrationCommand,    DeleteCodeSecurityScanConfigurationCommand,    DeleteFilterCommand,    DescribeOrganizationConfigurationCommand,    DisableCommand,    DisableDelegatedAdminAccountCommand,    DisassociateMemberCommand,    EnableCommand,    EnableDelegatedAdminAccountCommand,    GetCisScanReportCommand,    GetCisScanResultDetailsCommand,    GetClustersForImageCommand,    GetCodeSecurityIntegrationCommand,    GetCodeSecurityScanCommand,    GetCodeSecurityScanConfigurationCommand,    GetConfigurationCommand,    GetDelegatedAdminAccountCommand,    GetEc2DeepInspectionConfigurationCommand,    GetEncryptionKeyCommand,    GetFindingsReportStatusCommand,    GetMemberCommand,    GetSbomExportCommand,    ListAccountPermissionsCommand,    ListCisScanConfigurationsCommand,    ListCisScanResultsAggregatedByChecksCommand,    ListCisScanResultsAggregatedByTargetResourceCommand,    ListCisScansCommand,    ListCodeSecurityIntegrationsCommand,    ListCodeSecurityScanConfigurationAssociationsCommand,    ListCodeSecurityScanConfigurationsCommand,    ListCoverageCommand,    ListCoverageStatisticsCommand,    ListDelegatedAdminAccountsCommand,    ListFiltersCommand,    ListFindingAggregationsCommand,    ListFindingsCommand,    ListMembersCommand,    ListTagsForResourceCommand,    ListUsageTotalsCommand,    ResetEncryptionKeyCommand,    SearchVulnerabilitiesCommand,    SendCisSessionHealthCommand,    SendCisSessionTelemetryCommand,    StartCisSessionCommand,    StartCodeSecurityScanCommand,    StopCisSessionCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateCisScanConfigurationCommand,    UpdateCodeSecurityIntegrationCommand,    UpdateCodeSecurityScanConfigurationCommand,    UpdateConfigurationCommand,    UpdateEc2DeepInspectionConfigurationCommand,    UpdateEncryptionKeyCommand,    UpdateFilterCommand,    UpdateOrganizationConfigurationCommand,    UpdateOrgEc2DeepInspectionConfigurationCommand,};const paginators = {    paginateGetCisScanResultDetails,    paginateGetClustersForImage,    paginateListAccountPermissions,    paginateListCisScanConfigurations,    paginateListCisScanResultsAggregatedByChecks,    paginateListCisScanResultsAggregatedByTargetResource,    paginateListCisScans,    paginateListCoverage,    paginateListCoverageStatistics,    paginateListDelegatedAdminAccounts,    paginateListFilters,    paginateListFindingAggregations,    paginateListFindings,    paginateListMembers,    paginateListUsageTotals,    paginateSearchVulnerabilities,};class Inspector2 extends Inspector2Client {}client.createAggregatedClient(commands, Inspector2, { paginators }); const Status = {    DISABLED: "DISABLED",    DISABLING: "DISABLING",    ENABLED: "ENABLED",    ENABLING: "ENABLING",    SUSPENDED: "SUSPENDED",    SUSPENDING: "SUSPENDING",};const AggregationFindingType = {    CODE_VULNERABILITY: "CODE_VULNERABILITY",    NETWORK_REACHABILITY: "NETWORK_REACHABILITY",    PACKAGE_VULNERABILITY: "PACKAGE_VULNERABILITY",};const AggregationResourceType = {    AWS_EC2_INSTANCE: "AWS_EC2_INSTANCE",    AWS_ECR_CONTAINER_IMAGE: "AWS_ECR_CONTAINER_IMAGE",    AWS_LAMBDA_FUNCTION: "AWS_LAMBDA_FUNCTION",    CODE_REPOSITORY: "CODE_REPOSITORY",};const AccountSortBy = {    ALL: "ALL",    CRITICAL: "CRITICAL",    HIGH: "HIGH",};const SortOrder = {    ASC: "ASC",    DESC: "DESC",};const CisStringComparison = {    EQUALS: "EQUALS",    NOT_EQUALS: "NOT_EQUALS",    PREFIX: "PREFIX",};const ErrorCode = {    ACCESS_DENIED: "ACCESS_DENIED",    ACCOUNT_IS_ISOLATED: "ACCOUNT_IS_ISOLATED",    ALREADY_ENABLED: "ALREADY_ENABLED",    BLOCKED_BY_ORGANIZATION_POLICY: "BLOCKED_BY_ORGANIZATION_POLICY",    DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS",    DISASSOCIATE_ALL_MEMBERS: "DISASSOCIATE_ALL_MEMBERS",    EC2_SSM_ASSOCIATION_VERSION_LIMIT_EXCEEDED: "EC2_SSM_ASSOCIATION_VERSION_LIMIT_EXCEEDED",    EC2_SSM_RESOURCE_DATA_SYNC_LIMIT_EXCEEDED: "EC2_SSM_RESOURCE_DATA_SYNC_LIMIT_EXCEEDED",    ENABLE_IN_PROGRESS: "ENABLE_IN_PROGRESS",    EVENTBRIDGE_THROTTLED: "EVENTBRIDGE_THROTTLED",    EVENTBRIDGE_UNAVAILABLE: "EVENTBRIDGE_UNAVAILABLE",    INTERNAL_ERROR: "INTERNAL_ERROR",    RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND",    RESOURCE_SCAN_NOT_DISABLED: "RESOURCE_SCAN_NOT_DISABLED",    SSM_THROTTLED: "SSM_THROTTLED",    SSM_UNAVAILABLE: "SSM_UNAVAILABLE",    SUSPEND_IN_PROGRESS: "SUSPEND_IN_PROGRESS",};const StringComparison = {    EQUALS: "EQUALS",    NOT_EQUALS: "NOT_EQUALS",    PREFIX: "PREFIX",};const AmiSortBy = {    AFFECTED_INSTANCES: "AFFECTED_INSTANCES",    ALL: "ALL",    CRITICAL: "CRITICAL",    HIGH: "HIGH",};const AwsEcrContainerSortBy = {    ALL: "ALL",    CRITICAL: "CRITICAL",    HIGH: "HIGH",};const CodeRepositorySortBy = {    ALL: "ALL",    CRITICAL: "CRITICAL",    HIGH: "HIGH",};const MapComparison = {    EQUALS: "EQUALS",};const Ec2InstanceSortBy = {    ALL: "ALL",    CRITICAL: "CRITICAL",    HIGH: "HIGH",    NETWORK_FINDINGS: "NETWORK_FINDINGS",};const FindingTypeSortBy = {    ALL: "ALL",    CRITICAL: "CRITICAL",    HIGH: "HIGH",};const ImageLayerSortBy = {    ALL: "ALL",    CRITICAL: "CRITICAL",    HIGH: "HIGH",};const LambdaFunctionSortBy = {    ALL: "ALL",    CRITICAL: "CRITICAL",    HIGH: "HIGH",};const LambdaLayerSortBy = {    ALL: "ALL",    CRITICAL: "CRITICAL",    HIGH: "HIGH",};const PackageSortBy = {    ALL: "ALL",    CRITICAL: "CRITICAL",    HIGH: "HIGH",};const RepositorySortBy = {    AFFECTED_IMAGES: "AFFECTED_IMAGES",    ALL: "ALL",    CRITICAL: "CRITICAL",    HIGH: "HIGH",};const TitleSortBy = {    ALL: "ALL",    CRITICAL: "CRITICAL",    HIGH: "HIGH",};const AggregationType = {    ACCOUNT: "ACCOUNT",    AMI: "AMI",    AWS_EC2_INSTANCE: "AWS_EC2_INSTANCE",    AWS_ECR_CONTAINER: "AWS_ECR_CONTAINER",    AWS_LAMBDA_FUNCTION: "AWS_LAMBDA_FUNCTION",    CODE_REPOSITORY: "CODE_REPOSITORY",    FINDING_TYPE: "FINDING_TYPE",    IMAGE_LAYER: "IMAGE_LAYER",    LAMBDA_LAYER: "LAMBDA_LAYER",    PACKAGE: "PACKAGE",    REPOSITORY: "REPOSITORY",    TITLE: "TITLE",};const Architecture = {    ARM64: "ARM64",    X86_64: "X86_64",};const ValidationExceptionReason = {    CANNOT_PARSE: "CANNOT_PARSE",    FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",    OTHER: "OTHER",};const AssociationResultStatusCode = {    ACCESS_DENIED: "ACCESS_DENIED",    INTERNAL_ERROR: "INTERNAL_ERROR",    INVALID_INPUT: "INVALID_INPUT",    QUOTA_EXCEEDED: "QUOTA_EXCEEDED",    RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND",    SCAN_CONFIGURATION_NOT_FOUND: "SCAN_CONFIGURATION_NOT_FOUND",};const PackageType = {    IMAGE: "IMAGE",    ZIP: "ZIP",};const Runtime = {    DOTNETCORE_3_1: "DOTNETCORE_3_1",    DOTNET_10: "DOTNET_10",    DOTNET_6: "DOTNET_6",    DOTNET_7: "DOTNET_7",    GO_1_X: "GO_1_X",    JAVA_11: "JAVA_11",    JAVA_17: "JAVA_17",    JAVA_8: "JAVA_8",    JAVA_8_AL2: "JAVA_8_AL2",    NODEJS: "NODEJS",    NODEJS_12_X: "NODEJS_12_X",    NODEJS_14_X: "NODEJS_14_X",    NODEJS_16_X: "NODEJS_16_X",    NODEJS_18_X: "NODEJS_18_X",    NODEJS_24_X: "NODEJS_24_X",    PYTHON_3_10: "PYTHON_3_10",    PYTHON_3_11: "PYTHON_3_11",    PYTHON_3_7: "PYTHON_3_7",    PYTHON_3_8: "PYTHON_3_8",    PYTHON_3_9: "PYTHON_3_9",    RUBY_2_7: "RUBY_2_7",    RUBY_3_2: "RUBY_3_2",    UNSUPPORTED: "UNSUPPORTED",};const CodeSnippetErrorCode = {    ACCESS_DENIED: "ACCESS_DENIED",    CODE_SNIPPET_NOT_FOUND: "CODE_SNIPPET_NOT_FOUND",    INTERNAL_ERROR: "INTERNAL_ERROR",    INVALID_INPUT: "INVALID_INPUT",};const FindingDetailsErrorCode = {    ACCESS_DENIED: "ACCESS_DENIED",    FINDING_DETAILS_NOT_FOUND: "FINDING_DETAILS_NOT_FOUND",    INTERNAL_ERROR: "INTERNAL_ERROR",    INVALID_INPUT: "INVALID_INPUT",};const FreeTrialStatus = {    ACTIVE: "ACTIVE",    INACTIVE: "INACTIVE",};const FreeTrialType = {    CODE_REPOSITORY: "CODE_REPOSITORY",    EC2: "EC2",    ECR: "ECR",    LAMBDA: "LAMBDA",    LAMBDA_CODE: "LAMBDA_CODE",};const FreeTrialInfoErrorCode = {    ACCESS_DENIED: "ACCESS_DENIED",    INTERNAL_ERROR: "INTERNAL_ERROR",};const Ec2DeepInspectionStatus = {    ACTIVATED: "ACTIVATED",    DEACTIVATED: "DEACTIVATED",    FAILED: "FAILED",    PENDING: "PENDING",};const CisSecurityLevel = {    LEVEL_1: "LEVEL_1",    LEVEL_2: "LEVEL_2",};const CisFindingStatus = {    FAILED: "FAILED",    PASSED: "PASSED",    SKIPPED: "SKIPPED",};const CisFindingStatusComparison = {    EQUALS: "EQUALS",};const CisReportFormat = {    CSV: "CSV",    PDF: "PDF",};const CisReportStatus = {    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    SUCCEEDED: "SUCCEEDED",};const CisResultStatus = {    FAILED: "FAILED",    PASSED: "PASSED",    SKIPPED: "SKIPPED",};const CisResultStatusComparison = {    EQUALS: "EQUALS",};const CisRuleStatus = {    ERROR: "ERROR",    FAILED: "FAILED",    INFORMATIONAL: "INFORMATIONAL",    NOT_APPLICABLE: "NOT_APPLICABLE",    NOT_EVALUATED: "NOT_EVALUATED",    PASSED: "PASSED",    UNKNOWN: "UNKNOWN",};const CisScanStatus = {    CANCELLED: "CANCELLED",    COMPLETED: "COMPLETED",    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",};const Day = {    FRI: "FRI",    MON: "MON",    SAT: "SAT",    SUN: "SUN",    THU: "THU",    TUE: "TUE",    WED: "WED",};const CisScanConfigurationsSortBy = {    SCAN_CONFIGURATION_ARN: "SCAN_CONFIGURATION_ARN",    SCAN_NAME: "SCAN_NAME",};const CisSecurityLevelComparison = {    EQUALS: "EQUALS",};const CisScanResultDetailsSortBy = {    CHECK_ID: "CHECK_ID",    STATUS: "STATUS",};const CisScanResultsAggregatedByChecksSortBy = {    CHECK_ID: "CHECK_ID",    FAILED_COUNTS: "FAILED_COUNTS",    PLATFORM: "PLATFORM",    SECURITY_LEVEL: "SECURITY_LEVEL",    TITLE: "TITLE",};const TagComparison = {    EQUALS: "EQUALS",};const CisTargetStatusComparison = {    EQUALS: "EQUALS",};const CisTargetStatus = {    CANCELLED: "CANCELLED",    COMPLETED: "COMPLETED",    TIMED_OUT: "TIMED_OUT",};const CisTargetStatusReason = {    SCAN_IN_PROGRESS: "SCAN_IN_PROGRESS",    SSM_UNMANAGED: "SSM_UNMANAGED",    UNSUPPORTED_OS: "UNSUPPORTED_OS",};const CisScanResultsAggregatedByTargetResourceSortBy = {    ACCOUNT_ID: "ACCOUNT_ID",    FAILED_COUNTS: "FAILED_COUNTS",    PLATFORM: "PLATFORM",    RESOURCE_ID: "RESOURCE_ID",    TARGET_STATUS: "TARGET_STATUS",    TARGET_STATUS_REASON: "TARGET_STATUS_REASON",};const CisScanStatusComparison = {    EQUALS: "EQUALS",};const CisSortOrder = {    ASC: "ASC",    DESC: "DESC",};const CodeRepositoryProviderType = {    GITHUB: "GITHUB",    GITLAB_SELF_MANAGED: "GITLAB_SELF_MANAGED",};const ScanStatusReason = {    ACCESS_DENIED: "ACCESS_DENIED",    ACCESS_DENIED_TO_ENCRYPTION_KEY: "ACCESS_DENIED_TO_ENCRYPTION_KEY",    AGENTLESS_INSTANCE_COLLECTION_TIME_LIMIT_EXCEEDED: "AGENTLESS_INSTANCE_COLLECTION_TIME_LIMIT_EXCEEDED",    AGENTLESS_INSTANCE_STORAGE_LIMIT_EXCEEDED: "AGENTLESS_INSTANCE_STORAGE_LIMIT_EXCEEDED",    DEEP_INSPECTION_COLLECTION_TIME_LIMIT_EXCEEDED: "DEEP_INSPECTION_COLLECTION_TIME_LIMIT_EXCEEDED",    DEEP_INSPECTION_DAILY_SSM_INVENTORY_LIMIT_EXCEEDED: "DEEP_INSPECTION_DAILY_SSM_INVENTORY_LIMIT_EXCEEDED",    DEEP_INSPECTION_NO_INVENTORY: "DEEP_INSPECTION_NO_INVENTORY",    DEEP_INSPECTION_PACKAGE_COLLECTION_LIMIT_EXCEEDED: "DEEP_INSPECTION_PACKAGE_COLLECTION_LIMIT_EXCEEDED",    EC2_INSTANCE_STOPPED: "EC2_INSTANCE_STOPPED",    EXCLUDED_BY_TAG: "EXCLUDED_BY_TAG",    IMAGE_ARCHIVED: "IMAGE_ARCHIVED",    IMAGE_SIZE_EXCEEDED: "IMAGE_SIZE_EXCEEDED",    INTEGRATION_CONNECTION_LOST: "INTEGRATION_CONNECTION_LOST",    INTERNAL_ERROR: "INTERNAL_ERROR",    NO_INVENTORY: "NO_INVENTORY",    NO_RESOURCES_FOUND: "NO_RESOURCES_FOUND",    NO_SCAN_CONFIGURATION_ASSOCIATED: "NO_SCAN_CONFIGURATION_ASSOCIATED",    PENDING_DISABLE: "PENDING_DISABLE",    PENDING_INITIAL_SCAN: "PENDING_INITIAL_SCAN",    PENDING_REVIVAL_SCAN: "PENDING_REVIVAL_SCAN",    RESOURCE_TERMINATED: "RESOURCE_TERMINATED",    SCAN_ELIGIBILITY_EXPIRED: "SCAN_ELIGIBILITY_EXPIRED",    SCAN_FREQUENCY_MANUAL: "SCAN_FREQUENCY_MANUAL",    SCAN_FREQUENCY_SCAN_ON_PUSH: "SCAN_FREQUENCY_SCAN_ON_PUSH",    SCAN_IN_PROGRESS: "SCAN_IN_PROGRESS",    STALE_INVENTORY: "STALE_INVENTORY",    SUCCESSFUL: "SUCCESSFUL",    UNMANAGED_EC2_INSTANCE: "UNMANAGED_EC2_INSTANCE",    UNSUPPORTED_CODE_ARTIFACTS: "UNSUPPORTED_CODE_ARTIFACTS",    UNSUPPORTED_CONFIG_FILE: "UNSUPPORTED_CONFIG_FILE",    UNSUPPORTED_LANGUAGE: "UNSUPPORTED_LANGUAGE",    UNSUPPORTED_MEDIA_TYPE: "UNSUPPORTED_MEDIA_TYPE",    UNSUPPORTED_OS: "UNSUPPORTED_OS",    UNSUPPORTED_RUNTIME: "UNSUPPORTED_RUNTIME",};const ScanStatusCode = {    ACTIVE: "ACTIVE",    INACTIVE: "INACTIVE",};const RuleSetCategory = {    IAC: "IAC",    SAST: "SAST",    SCA: "SCA",};const ContinuousIntegrationScanEvent = {    PULL_REQUEST: "PULL_REQUEST",    PUSH: "PUSH",};const CodeScanStatus = {    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    SKIPPED: "SKIPPED",    SUCCESSFUL: "SUCCESSFUL",};const IntegrationStatus = {    ACTIVE: "ACTIVE",    DISABLING: "DISABLING",    INACTIVE: "INACTIVE",    IN_PROGRESS: "IN_PROGRESS",    PENDING: "PENDING",};const IntegrationType = {    GITHUB: "GITHUB",    GITLAB_SELF_MANAGED: "GITLAB_SELF_MANAGED",};const PeriodicScanFrequency = {    MONTHLY: "MONTHLY",    NEVER: "NEVER",    WEEKLY: "WEEKLY",};const ProjectSelectionScope = {    ALL: "ALL",};const ConfigurationLevel = {    ACCOUNT: "ACCOUNT",    ORGANIZATION: "ORGANIZATION",};const GroupKey = {    ACCOUNT_ID: "ACCOUNT_ID",    ECR_REPOSITORY_NAME: "ECR_REPOSITORY_NAME",    RESOURCE_TYPE: "RESOURCE_TYPE",    SCAN_STATUS_CODE: "SCAN_STATUS_CODE",    SCAN_STATUS_REASON: "SCAN_STATUS_REASON",};const CoverageStringComparison = {    EQUALS: "EQUALS",    NOT_EQUALS: "NOT_EQUALS",};const CoverageMapComparison = {    EQUALS: "EQUALS",};const CoverageResourceType = {    AWS_EC2_INSTANCE: "AWS_EC2_INSTANCE",    AWS_ECR_CONTAINER_IMAGE: "AWS_ECR_CONTAINER_IMAGE",    AWS_ECR_REPOSITORY: "AWS_ECR_REPOSITORY",    AWS_LAMBDA_FUNCTION: "AWS_LAMBDA_FUNCTION",    CODE_REPOSITORY: "CODE_REPOSITORY",};const Ec2Platform = {    LINUX: "LINUX",    MACOS: "MACOS",    UNKNOWN: "UNKNOWN",    WINDOWS: "WINDOWS",};const EcrScanFrequency = {    CONTINUOUS_SCAN: "CONTINUOUS_SCAN",    MANUAL: "MANUAL",    SCAN_ON_PUSH: "SCAN_ON_PUSH",};const ScanMode = {    EC2_AGENTLESS: "EC2_AGENTLESS",    EC2_SSM_AGENT_BASED: "EC2_SSM_AGENT_BASED",};const ScanType = {    CODE: "CODE",    NETWORK: "NETWORK",    PACKAGE: "PACKAGE",};const FilterAction = {    NONE: "NONE",    SUPPRESS: "SUPPRESS",};const ReportFormat = {    CSV: "CSV",    JSON: "JSON",};const SbomReportFormat = {    CYCLONEDX_1_4: "CYCLONEDX_1_4",    SPDX_2_3: "SPDX_2_3",};const ResourceStringComparison = {    EQUALS: "EQUALS",    NOT_EQUALS: "NOT_EQUALS",};const ResourceMapComparison = {    EQUALS: "EQUALS",};const Currency = {    USD: "USD",};const RelationshipStatus = {    ACCOUNT_SUSPENDED: "ACCOUNT_SUSPENDED",    CANNOT_CREATE_DETECTOR_IN_ORG_MASTER: "CANNOT_CREATE_DETECTOR_IN_ORG_MASTER",    CREATED: "CREATED",    DELETED: "DELETED",    DISABLED: "DISABLED",    EMAIL_VERIFICATION_FAILED: "EMAIL_VERIFICATION_FAILED",    EMAIL_VERIFICATION_IN_PROGRESS: "EMAIL_VERIFICATION_IN_PROGRESS",    ENABLED: "ENABLED",    INVITED: "INVITED",    REGION_DISABLED: "REGION_DISABLED",    REMOVED: "REMOVED",    RESIGNED: "RESIGNED",};const DelegatedAdminStatus = {    DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS",    ENABLED: "ENABLED",};const ResourceScanType = {    CODE_REPOSITORY: "CODE_REPOSITORY",    EC2: "EC2",    ECR: "ECR",    LAMBDA: "LAMBDA",    LAMBDA_CODE: "LAMBDA_CODE",};const Ec2ScanMode = {    EC2_HYBRID: "EC2_HYBRID",    EC2_SSM_AGENT_BASED: "EC2_SSM_AGENT_BASED",};const Ec2ScanModeStatus = {    PENDING: "PENDING",    SUCCESS: "SUCCESS",};const EcrPullDateRescanDuration = {    DAYS_14: "DAYS_14",    DAYS_180: "DAYS_180",    DAYS_30: "DAYS_30",    DAYS_60: "DAYS_60",    DAYS_90: "DAYS_90",};const EcrPullDateRescanMode = {    LAST_IN_USE_AT: "LAST_IN_USE_AT",    LAST_PULL_DATE: "LAST_PULL_DATE",};const EcrRescanDuration = {    DAYS_14: "DAYS_14",    DAYS_180: "DAYS_180",    DAYS_30: "DAYS_30",    DAYS_60: "DAYS_60",    DAYS_90: "DAYS_90",    LIFETIME: "LIFETIME",};const EcrRescanDurationStatus = {    FAILED: "FAILED",    PENDING: "PENDING",    SUCCESS: "SUCCESS",};const ExploitAvailable = {    NO: "NO",    YES: "YES",};const ExternalReportStatus = {    CANCELLED: "CANCELLED",    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    SUCCEEDED: "SUCCEEDED",};const FixAvailable = {    NO: "NO",    PARTIAL: "PARTIAL",    YES: "YES",};const NetworkProtocol = {    TCP: "TCP",    UDP: "UDP",};const PackageManager = {    BUNDLER: "BUNDLER",    CARGO: "CARGO",    COMPOSER: "COMPOSER",    DOTNET_CORE: "DOTNET_CORE",    GEMSPEC: "GEMSPEC",    GOBINARY: "GOBINARY",    GOMOD: "GOMOD",    JAR: "JAR",    NODEPKG: "NODEPKG",    NPM: "NPM",    NUGET: "NUGET",    OS: "OS",    PIP: "PIP",    PIPENV: "PIPENV",    POETRY: "POETRY",    POM: "POM",    PYTHONPKG: "PYTHONPKG",    YARN: "YARN",};const ResourceType = {    AWS_EC2_INSTANCE: "AWS_EC2_INSTANCE",    AWS_ECR_CONTAINER_IMAGE: "AWS_ECR_CONTAINER_IMAGE",    AWS_ECR_REPOSITORY: "AWS_ECR_REPOSITORY",    AWS_LAMBDA_FUNCTION: "AWS_LAMBDA_FUNCTION",    CODE_REPOSITORY: "CODE_REPOSITORY",};const Severity = {    CRITICAL: "CRITICAL",    HIGH: "HIGH",    INFORMATIONAL: "INFORMATIONAL",    LOW: "LOW",    MEDIUM: "MEDIUM",    UNTRIAGED: "UNTRIAGED",};const FindingStatus = {    ACTIVE: "ACTIVE",    CLOSED: "CLOSED",    SUPPRESSED: "SUPPRESSED",};const FindingType = {    CODE_VULNERABILITY: "CODE_VULNERABILITY",    NETWORK_REACHABILITY: "NETWORK_REACHABILITY",    PACKAGE_VULNERABILITY: "PACKAGE_VULNERABILITY",};const ReportingErrorCode = {    BUCKET_NOT_FOUND: "BUCKET_NOT_FOUND",    INCOMPATIBLE_BUCKET_REGION: "INCOMPATIBLE_BUCKET_REGION",    INTERNAL_ERROR: "INTERNAL_ERROR",    INVALID_PERMISSIONS: "INVALID_PERMISSIONS",    MALFORMED_KMS_KEY: "MALFORMED_KMS_KEY",    NO_FINDINGS_FOUND: "NO_FINDINGS_FOUND",};const Service = {    EC2: "EC2",    ECR: "ECR",    LAMBDA: "LAMBDA",};const Operation = {    DISABLE_REPOSITORY: "DISABLE_REPOSITORY",    DISABLE_SCANNING: "DISABLE_SCANNING",    ENABLE_REPOSITORY: "ENABLE_REPOSITORY",    ENABLE_SCANNING: "ENABLE_SCANNING",};const ListCisScansDetailLevel = {    MEMBER: "MEMBER",    ORGANIZATION: "ORGANIZATION",};const ListCisScansSortBy = {    FAILED_CHECKS: "FAILED_CHECKS",    SCAN_START_DATE: "SCAN_START_DATE",    SCHEDULED_BY: "SCHEDULED_BY",    STATUS: "STATUS",};const SortField = {    AWS_ACCOUNT_ID: "AWS_ACCOUNT_ID",    COMPONENT_TYPE: "COMPONENT_TYPE",    ECR_IMAGE_PUSHED_AT: "ECR_IMAGE_PUSHED_AT",    ECR_IMAGE_REGISTRY: "ECR_IMAGE_REGISTRY",    ECR_IMAGE_REPOSITORY_NAME: "ECR_IMAGE_REPOSITORY_NAME",    EPSS_SCORE: "EPSS_SCORE",    FINDING_STATUS: "FINDING_STATUS",    FINDING_TYPE: "FINDING_TYPE",    FIRST_OBSERVED_AT: "FIRST_OBSERVED_AT",    INSPECTOR_SCORE: "INSPECTOR_SCORE",    LAST_OBSERVED_AT: "LAST_OBSERVED_AT",    NETWORK_PROTOCOL: "NETWORK_PROTOCOL",    RESOURCE_TYPE: "RESOURCE_TYPE",    SEVERITY: "SEVERITY",    VENDOR_SEVERITY: "VENDOR_SEVERITY",    VULNERABILITY_ID: "VULNERABILITY_ID",    VULNERABILITY_SOURCE: "VULNERABILITY_SOURCE",};const UsageType = {    CODE_REPOSITORY_IAC: "CODE_REPOSITORY_IAC",    CODE_REPOSITORY_SAST: "CODE_REPOSITORY_SAST",    CODE_REPOSITORY_SCA: "CODE_REPOSITORY_SCA",    EC2_AGENTLESS_INSTANCE_HOURS: "EC2_AGENTLESS_INSTANCE_HOURS",    EC2_INSTANCE_HOURS: "EC2_INSTANCE_HOURS",    ECR_INITIAL_SCAN: "ECR_INITIAL_SCAN",    ECR_RESCAN: "ECR_RESCAN",    LAMBDA_FUNCTION_CODE_HOURS: "LAMBDA_FUNCTION_CODE_HOURS",    LAMBDA_FUNCTION_HOURS: "LAMBDA_FUNCTION_HOURS",};const VulnerabilitySource = {    NVD: "NVD",};const StopCisSessionStatus = {    FAILED: "FAILED",    INTERRUPTED: "INTERRUPTED",    SUCCESS: "SUCCESS",    UNSUPPORTED_OS: "UNSUPPORTED_OS",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.Inspector2ServiceException = Inspector2ServiceException.Inspector2ServiceException;exports.AccountSortBy = AccountSortBy;exports.AggregationFindingType = AggregationFindingType;exports.AggregationResourceType = AggregationResourceType;exports.AggregationType = AggregationType;exports.AmiSortBy = AmiSortBy;exports.Architecture = Architecture;exports.AssociateMemberCommand = AssociateMemberCommand;exports.AssociationResultStatusCode = AssociationResultStatusCode;exports.AwsEcrContainerSortBy = AwsEcrContainerSortBy;exports.BatchAssociateCodeSecurityScanConfigurationCommand = BatchAssociateCodeSecurityScanConfigurationCommand;exports.BatchDisassociateCodeSecurityScanConfigurationCommand = BatchDisassociateCodeSecurityScanConfigurationCommand;exports.BatchGetAccountStatusCommand = BatchGetAccountStatusCommand;exports.BatchGetCodeSnippetCommand = BatchGetCodeSnippetCommand;exports.BatchGetFindingDetailsCommand = BatchGetFindingDetailsCommand;exports.BatchGetFreeTrialInfoCommand = BatchGetFreeTrialInfoCommand;exports.BatchGetMemberEc2DeepInspectionStatusCommand = BatchGetMemberEc2DeepInspectionStatusCommand;exports.BatchUpdateMemberEc2DeepInspectionStatusCommand = BatchUpdateMemberEc2DeepInspectionStatusCommand;exports.CancelFindingsReportCommand = CancelFindingsReportCommand;exports.CancelSbomExportCommand = CancelSbomExportCommand;exports.CisFindingStatus = CisFindingStatus;exports.CisFindingStatusComparison = CisFindingStatusComparison;exports.CisReportFormat = CisReportFormat;exports.CisReportStatus = CisReportStatus;exports.CisResultStatus = CisResultStatus;exports.CisResultStatusComparison = CisResultStatusComparison;exports.CisRuleStatus = CisRuleStatus;exports.CisScanConfigurationsSortBy = CisScanConfigurationsSortBy;exports.CisScanResultDetailsSortBy = CisScanResultDetailsSortBy;exports.CisScanResultsAggregatedByChecksSortBy = CisScanResultsAggregatedByChecksSortBy;exports.CisScanResultsAggregatedByTargetResourceSortBy = CisScanResultsAggregatedByTargetResourceSortBy;exports.CisScanStatus = CisScanStatus;exports.CisScanStatusComparison = CisScanStatusComparison;exports.CisSecurityLevel = CisSecurityLevel;exports.CisSecurityLevelComparison = CisSecurityLevelComparison;exports.CisSortOrder = CisSortOrder;exports.CisStringComparison = CisStringComparison;exports.CisTargetStatus = CisTargetStatus;exports.CisTargetStatusComparison = CisTargetStatusComparison;exports.CisTargetStatusReason = CisTargetStatusReason;exports.CodeRepositoryProviderType = CodeRepositoryProviderType;exports.CodeRepositorySortBy = CodeRepositorySortBy;exports.CodeScanStatus = CodeScanStatus;exports.CodeSnippetErrorCode = CodeSnippetErrorCode;exports.ConfigurationLevel = ConfigurationLevel;exports.ContinuousIntegrationScanEvent = ContinuousIntegrationScanEvent;exports.CoverageMapComparison = CoverageMapComparison;exports.CoverageResourceType = CoverageResourceType;exports.CoverageStringComparison = CoverageStringComparison;exports.CreateCisScanConfigurationCommand = CreateCisScanConfigurationCommand;exports.CreateCodeSecurityIntegrationCommand = CreateCodeSecurityIntegrationCommand;exports.CreateCodeSecurityScanConfigurationCommand = CreateCodeSecurityScanConfigurationCommand;exports.CreateFilterCommand = CreateFilterCommand;exports.CreateFindingsReportCommand = CreateFindingsReportCommand;exports.CreateSbomExportCommand = CreateSbomExportCommand;exports.Currency = Currency;exports.Day = Day;exports.DelegatedAdminStatus = DelegatedAdminStatus;exports.DeleteCisScanConfigurationCommand = DeleteCisScanConfigurationCommand;exports.DeleteCodeSecurityIntegrationCommand = DeleteCodeSecurityIntegrationCommand;exports.DeleteCodeSecurityScanConfigurationCommand = DeleteCodeSecurityScanConfigurationCommand;exports.DeleteFilterCommand = DeleteFilterCommand;exports.DescribeOrganizationConfigurationCommand = DescribeOrganizationConfigurationCommand;exports.DisableCommand = DisableCommand;exports.DisableDelegatedAdminAccountCommand = DisableDelegatedAdminAccountCommand;exports.DisassociateMemberCommand = DisassociateMemberCommand;exports.Ec2DeepInspectionStatus = Ec2DeepInspectionStatus;exports.Ec2InstanceSortBy = Ec2InstanceSortBy;exports.Ec2Platform = Ec2Platform;exports.Ec2ScanMode = Ec2ScanMode;exports.Ec2ScanModeStatus = Ec2ScanModeStatus;exports.EcrPullDateRescanDuration = EcrPullDateRescanDuration;exports.EcrPullDateRescanMode = EcrPullDateRescanMode;exports.EcrRescanDuration = EcrRescanDuration;exports.EcrRescanDurationStatus = EcrRescanDurationStatus;exports.EcrScanFrequency = EcrScanFrequency;exports.EnableCommand = EnableCommand;exports.EnableDelegatedAdminAccountCommand = EnableDelegatedAdminAccountCommand;exports.ErrorCode = ErrorCode;exports.ExploitAvailable = ExploitAvailable;exports.ExternalReportStatus = ExternalReportStatus;exports.FilterAction = FilterAction;exports.FindingDetailsErrorCode = FindingDetailsErrorCode;exports.FindingStatus = FindingStatus;exports.FindingType = FindingType;exports.FindingTypeSortBy = FindingTypeSortBy;exports.FixAvailable = FixAvailable;exports.FreeTrialInfoErrorCode = FreeTrialInfoErrorCode;exports.FreeTrialStatus = FreeTrialStatus;exports.FreeTrialType = FreeTrialType;exports.GetCisScanReportCommand = GetCisScanReportCommand;exports.GetCisScanResultDetailsCommand = GetCisScanResultDetailsCommand;exports.GetClustersForImageCommand = GetClustersForImageCommand;exports.GetCodeSecurityIntegrationCommand = GetCodeSecurityIntegrationCommand;exports.GetCodeSecurityScanCommand = GetCodeSecurityScanCommand;exports.GetCodeSecurityScanConfigurationCommand = GetCodeSecurityScanConfigurationCommand;exports.GetConfigurationCommand = GetConfigurationCommand;exports.GetDelegatedAdminAccountCommand = GetDelegatedAdminAccountCommand;exports.GetEc2DeepInspectionConfigurationCommand = GetEc2DeepInspectionConfigurationCommand;exports.GetEncryptionKeyCommand = GetEncryptionKeyCommand;exports.GetFindingsReportStatusCommand = GetFindingsReportStatusCommand;exports.GetMemberCommand = GetMemberCommand;exports.GetSbomExportCommand = GetSbomExportCommand;exports.GroupKey = GroupKey;exports.ImageLayerSortBy = ImageLayerSortBy;exports.Inspector2 = Inspector2;exports.Inspector2Client = Inspector2Client;exports.IntegrationStatus = IntegrationStatus;exports.IntegrationType = IntegrationType;exports.LambdaFunctionSortBy = LambdaFunctionSortBy;exports.LambdaLayerSortBy = LambdaLayerSortBy;exports.ListAccountPermissionsCommand = ListAccountPermissionsCommand;exports.ListCisScanConfigurationsCommand = ListCisScanConfigurationsCommand;exports.ListCisScanResultsAggregatedByChecksCommand = ListCisScanResultsAggregatedByChecksCommand;exports.ListCisScanResultsAggregatedByTargetResourceCommand = ListCisScanResultsAggregatedByTargetResourceCommand;exports.ListCisScansCommand = ListCisScansCommand;exports.ListCisScansDetailLevel = ListCisScansDetailLevel;exports.ListCisScansSortBy = ListCisScansSortBy;exports.ListCodeSecurityIntegrationsCommand = ListCodeSecurityIntegrationsCommand;exports.ListCodeSecurityScanConfigurationAssociationsCommand = ListCodeSecurityScanConfigurationAssociationsCommand;exports.ListCodeSecurityScanConfigurationsCommand = ListCodeSecurityScanConfigurationsCommand;exports.ListCoverageCommand = ListCoverageCommand;exports.ListCoverageStatisticsCommand = ListCoverageStatisticsCommand;exports.ListDelegatedAdminAccountsCommand = ListDelegatedAdminAccountsCommand;exports.ListFiltersCommand = ListFiltersCommand;exports.ListFindingAggregationsCommand = ListFindingAggregationsCommand;exports.ListFindingsCommand = ListFindingsCommand;exports.ListMembersCommand = ListMembersCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.ListUsageTotalsCommand = ListUsageTotalsCommand;exports.MapComparison = MapComparison;exports.NetworkProtocol = NetworkProtocol;exports.Operation = Operation;exports.PackageManager = PackageManager;exports.PackageSortBy = PackageSortBy;exports.PackageType = PackageType;exports.PeriodicScanFrequency = PeriodicScanFrequency;exports.ProjectSelectionScope = ProjectSelectionScope;exports.RelationshipStatus = RelationshipStatus;exports.ReportFormat = ReportFormat;exports.ReportingErrorCode = ReportingErrorCode;exports.RepositorySortBy = RepositorySortBy;exports.ResetEncryptionKeyCommand = ResetEncryptionKeyCommand;exports.ResourceMapComparison = ResourceMapComparison;exports.ResourceScanType = ResourceScanType;exports.ResourceStringComparison = ResourceStringComparison;exports.ResourceType = ResourceType;exports.RuleSetCategory = RuleSetCategory;exports.Runtime = Runtime;exports.SbomReportFormat = SbomReportFormat;exports.ScanMode = ScanMode;exports.ScanStatusCode = ScanStatusCode;exports.ScanStatusReason = ScanStatusReason;exports.ScanType = ScanType;exports.SearchVulnerabilitiesCommand = SearchVulnerabilitiesCommand;exports.SendCisSessionHealthCommand = SendCisSessionHealthCommand;exports.SendCisSessionTelemetryCommand = SendCisSessionTelemetryCommand;exports.Service = Service;exports.Severity = Severity;exports.SortField = SortField;exports.SortOrder = SortOrder;exports.StartCisSessionCommand = StartCisSessionCommand;exports.StartCodeSecurityScanCommand = StartCodeSecurityScanCommand;exports.Status = Status;exports.StopCisSessionCommand = StopCisSessionCommand;exports.StopCisSessionStatus = StopCisSessionStatus;exports.StringComparison = StringComparison;exports.TagComparison = TagComparison;exports.TagResourceCommand = TagResourceCommand;exports.TitleSortBy = TitleSortBy;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateCisScanConfigurationCommand = UpdateCisScanConfigurationCommand;exports.UpdateCodeSecurityIntegrationCommand = UpdateCodeSecurityIntegrationCommand;exports.UpdateCodeSecurityScanConfigurationCommand = UpdateCodeSecurityScanConfigurationCommand;exports.UpdateConfigurationCommand = UpdateConfigurationCommand;exports.UpdateEc2DeepInspectionConfigurationCommand = UpdateEc2DeepInspectionConfigurationCommand;exports.UpdateEncryptionKeyCommand = UpdateEncryptionKeyCommand;exports.UpdateFilterCommand = UpdateFilterCommand;exports.UpdateOrgEc2DeepInspectionConfigurationCommand = UpdateOrgEc2DeepInspectionConfigurationCommand;exports.UpdateOrganizationConfigurationCommand = UpdateOrganizationConfigurationCommand;exports.UsageType = UsageType;exports.ValidationExceptionReason = ValidationExceptionReason;exports.VulnerabilitySource = VulnerabilitySource;exports.paginateGetCisScanResultDetails = paginateGetCisScanResultDetails;exports.paginateGetClustersForImage = paginateGetClustersForImage;exports.paginateListAccountPermissions = paginateListAccountPermissions;exports.paginateListCisScanConfigurations = paginateListCisScanConfigurations;exports.paginateListCisScanResultsAggregatedByChecks = paginateListCisScanResultsAggregatedByChecks;exports.paginateListCisScanResultsAggregatedByTargetResource = paginateListCisScanResultsAggregatedByTargetResource;exports.paginateListCisScans = paginateListCisScans;exports.paginateListCoverage = paginateListCoverage;exports.paginateListCoverageStatistics = paginateListCoverageStatistics;exports.paginateListDelegatedAdminAccounts = paginateListDelegatedAdminAccounts;exports.paginateListFilters = paginateListFilters;exports.paginateListFindingAggregations = paginateListFindingAggregations;exports.paginateListFindings = paginateListFindings;exports.paginateListMembers = paginateListMembers;exports.paginateListUsageTotals = paginateListUsageTotals;exports.paginateSearchVulnerabilities = paginateSearchVulnerabilities;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];});