@aws-sdk/client-sagemaker 3.461.0 → 3.464.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +104 -0
- package/dist-cjs/SageMaker.js +26 -0
- package/dist-cjs/commands/CreateClusterCommand.js +51 -0
- package/dist-cjs/commands/CreateInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/CreateWorkforceCommand.js +2 -2
- package/dist-cjs/commands/DeleteClusterCommand.js +51 -0
- package/dist-cjs/commands/DeleteInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/DescribeClusterCommand.js +51 -0
- package/dist-cjs/commands/DescribeClusterNodeCommand.js +51 -0
- package/dist-cjs/commands/DescribeInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/ListClusterNodesCommand.js +51 -0
- package/dist-cjs/commands/ListClustersCommand.js +51 -0
- package/dist-cjs/commands/ListInferenceComponentsCommand.js +51 -0
- package/dist-cjs/commands/UpdateClusterCommand.js +51 -0
- package/dist-cjs/commands/UpdateInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/UpdateInferenceComponentRuntimeConfigCommand.js +51 -0
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/models/models_0.js +77 -64
- package/dist-cjs/models/models_1.js +85 -51
- package/dist-cjs/models/models_2.js +58 -83
- package/dist-cjs/models/models_3.js +89 -64
- package/dist-cjs/models/models_4.js +65 -3
- package/dist-cjs/pagination/ListInferenceComponentsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +1046 -36
- package/dist-es/SageMaker.js +26 -0
- package/dist-es/commands/CreateClusterCommand.js +47 -0
- package/dist-es/commands/CreateInferenceComponentCommand.js +47 -0
- package/dist-es/commands/CreateWorkforceCommand.js +1 -1
- package/dist-es/commands/DeleteClusterCommand.js +47 -0
- package/dist-es/commands/DeleteInferenceComponentCommand.js +47 -0
- package/dist-es/commands/DescribeClusterCommand.js +47 -0
- package/dist-es/commands/DescribeClusterNodeCommand.js +47 -0
- package/dist-es/commands/DescribeInferenceComponentCommand.js +47 -0
- package/dist-es/commands/ListClusterNodesCommand.js +47 -0
- package/dist-es/commands/ListClustersCommand.js +47 -0
- package/dist-es/commands/ListInferenceComponentsCommand.js +47 -0
- package/dist-es/commands/UpdateClusterCommand.js +47 -0
- package/dist-es/commands/UpdateInferenceComponentCommand.js +47 -0
- package/dist-es/commands/UpdateInferenceComponentRuntimeConfigCommand.js +47 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/models_0.js +74 -62
- package/dist-es/models/models_1.js +84 -48
- package/dist-es/models/models_2.js +55 -82
- package/dist-es/models/models_3.js +87 -62
- package/dist-es/models/models_4.js +63 -1
- package/dist-es/pagination/ListInferenceComponentsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +1006 -22
- package/dist-types/SageMaker.d.ts +91 -0
- package/dist-types/SageMakerClient.d.ts +15 -2
- package/dist-types/commands/AddTagsCommand.d.ts +1 -1
- package/dist-types/commands/CreateAppCommand.d.ts +3 -2
- package/dist-types/commands/CreateAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +3 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +109 -0
- package/dist-types/commands/CreateCompilationJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +64 -17
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +28 -2
- package/dist-types/commands/CreateInferenceComponentCommand.d.ts +115 -0
- package/dist-types/commands/CreateModelCommand.d.ts +1 -1
- package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +3 -2
- package/dist-types/commands/CreateSpaceCommand.d.ts +45 -0
- package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +2 -2
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +4 -1
- package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/CreateUserProfileCommand.d.ts +56 -2
- package/dist-types/commands/CreateWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkteamCommand.d.ts +1 -1
- package/dist-types/commands/DeleteActionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAlgorithmCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAppCommand.d.ts +2 -2
- package/dist-types/commands/DeleteAppImageConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteArtifactCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteClusterCommand.d.ts +80 -0
- package/dist-types/commands/DeleteInferenceComponentCommand.d.ts +71 -0
- package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAppCommand.d.ts +3 -2
- package/dist-types/commands/DescribeAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +3 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +102 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +92 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +56 -9
- package/dist-types/commands/DescribeEndpointCommand.d.ts +32 -0
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +28 -2
- package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +109 -0
- package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSpaceCommand.d.ts +46 -0
- package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +2 -2
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +5 -1
- package/dist-types/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserProfileCommand.d.ts +55 -1
- package/dist-types/commands/DescribeWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWorkteamCommand.d.ts +1 -1
- package/dist-types/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/commands/ListAppImageConfigsCommand.d.ts +13 -0
- package/dist-types/commands/ListAppsCommand.d.ts +8 -1
- package/dist-types/commands/ListClusterNodesCommand.d.ts +96 -0
- package/dist-types/commands/ListClustersCommand.d.ts +87 -0
- package/dist-types/commands/ListInferenceComponentsCommand.d.ts +96 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +2 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/commands/ListSpacesCommand.d.ts +16 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +4 -4
- package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkforcesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +97 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +58 -7
- package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +100 -0
- package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +80 -0
- package/dist-types/commands/UpdateSpaceCommand.d.ts +39 -0
- package/dist-types/commands/UpdateUserProfileCommand.d.ts +54 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +616 -544
- package/dist-types/models/models_1.d.ts +7904 -8160
- package/dist-types/models/models_2.d.ts +4780 -5344
- package/dist-types/models/models_3.d.ts +5386 -4662
- package/dist-types/models/models_4.d.ts +2031 -4
- package/dist-types/pagination/ListInferenceComponentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +117 -0
- package/dist-types/ts3.4/SageMaker.d.ts +227 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateCompilationJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateTrainingJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateWorkforceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateWorkteamCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAlgorithmCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAppImageConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteInferenceComponentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterNodeCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeTrainingJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkforceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkteamCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListClusterNodesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +191 -175
- package/dist-types/ts3.4/models/models_1.d.ts +302 -309
- package/dist-types/ts3.4/models/models_2.d.ts +388 -490
- package/dist-types/ts3.4/models/models_3.d.ts +574 -472
- package/dist-types/ts3.4/models/models_4.d.ts +534 -29
- package/dist-types/ts3.4/pagination/ListInferenceComponentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +156 -0
- package/package.json +2 -2
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AutoMLJobStatus = exports.AutoMLJobSecondaryStatus = exports.AutoMLMode = exports.AutoMLS3DataType = exports.AutoMLChannelType = exports.ObjectiveStatus = exports.AutoMLProcessingUnit = exports.AutoMLJobObjectiveType = exports.CandidateStepType = exports.CandidateStatus = exports.AutoMLMetricExtendedEnum = exports.MetricSetSource = exports.AutoMLMetricEnum = exports.AutoMLAlgorithm = exports.AuthMode = exports.AthenaResultFormat = exports.AthenaResultCompressionType = exports.AsyncNotificationTopicTypes = exports.ArtifactSourceIdType = exports.AppSortKey = exports.AppSecurityGroupManagement = exports.AppNetworkAccessType = exports.
|
|
4
|
-
exports.
|
|
3
|
+
exports.AutoMLJobStatus = exports.AutoMLJobSecondaryStatus = exports.AutoMLMode = exports.AutoMLS3DataType = exports.AutoMLChannelType = exports.ObjectiveStatus = exports.AutoMLProcessingUnit = exports.AutoMLJobObjectiveType = exports.CandidateStepType = exports.CandidateStatus = exports.AutoMLMetricExtendedEnum = exports.MetricSetSource = exports.AutoMLMetricEnum = exports.AutoMLAlgorithm = exports.AuthMode = exports.AthenaResultFormat = exports.AthenaResultCompressionType = exports.AsyncNotificationTopicTypes = exports.ArtifactSourceIdType = exports.AppSortKey = exports.AppSecurityGroupManagement = exports.AppNetworkAccessType = exports.AppImageConfigSortKey = exports.AppStatus = exports.AppInstanceType = exports.AppType = exports.AssemblyType = exports.SplitType = exports.BatchStrategy = exports.TrainingInstanceType = exports.OutputCompressionType = exports.RecordWrapper = exports.S3DataType = exports.S3DataDistribution = exports.FileSystemType = exports.FileSystemAccessMode = exports.DetailedAlgorithmStatus = exports.AlgorithmStatus = exports.TrainingInputMode = exports.TrainingRepositoryAccessMode = exports.AlgorithmSortBy = exports.AggregationTransformationValue = exports.TransformInstanceType = exports.ProductionVariantInstanceType = exports.AdditionalS3DataSourceDataType = exports.CompressionType = exports.ResourceNotFound = exports.ResourceLimitExceeded = exports.AssociationEdgeType = exports.ActionStatus = void 0;
|
|
4
|
+
exports.ResourceInUse = exports.HyperParameterTuningJobObjectiveType = exports.ParameterType = exports.HyperParameterScalingType = exports.ContentClassifier = exports.ModelCacheSetting = exports.S3ModelDataType = exports.ModelCompressionType = exports.ContainerMode = exports.RepositoryAccessMode = exports.ConflictException = exports.ConditionOutcome = exports.CompleteOnConvergence = exports.TargetPlatformOs = exports.TargetPlatformArch = exports.TargetPlatformAccelerator = exports.TargetDevice = exports.CompilationJobStatus = exports.CollectionType = exports.CollectionConfig = exports.CodeRepositorySortOrder = exports.CodeRepositorySortBy = exports.ClusterStatus = exports.ClusterSortBy = exports.ClusterInstanceStatus = exports.ClusterInstanceType = exports.ClarifyTextLanguage = exports.ClarifyTextGranularity = exports.ClarifyFeatureType = exports.CaptureStatus = exports.CaptureMode = exports.DataSourceName = exports.FeatureStatus = exports.CandidateSortBy = exports.BooleanOperator = exports.TrafficRoutingConfigType = exports.CapacitySizeType = exports.ProcessingS3InputMode = exports.ProcessingS3DataDistributionType = exports.ModelPackageStatus = exports.ModelApprovalStatus = exports.AwsManagedHumanLoopRequestSource = exports.AutotuneMode = exports.AutoMLSortOrder = exports.AutoMLSortBy = exports.AutoMLProblemTypeResolvedAttributes = exports.AutoMLProblemTypeConfigName = exports.AutoMLProblemTypeConfig = exports.FillingType = exports.ProblemType = void 0;
|
|
5
|
+
exports.Framework = void 0;
|
|
5
6
|
const SageMakerServiceException_1 = require("./SageMakerServiceException");
|
|
6
7
|
exports.ActionStatus = {
|
|
7
8
|
COMPLETED: "Completed",
|
|
@@ -362,24 +363,14 @@ exports.AssemblyType = {
|
|
|
362
363
|
NONE: "None",
|
|
363
364
|
};
|
|
364
365
|
exports.AppType = {
|
|
366
|
+
CodeEditor: "CodeEditor",
|
|
367
|
+
JupyterLab: "JupyterLab",
|
|
365
368
|
JupyterServer: "JupyterServer",
|
|
366
369
|
KernelGateway: "KernelGateway",
|
|
367
370
|
RSessionGateway: "RSessionGateway",
|
|
368
371
|
RStudioServerPro: "RStudioServerPro",
|
|
369
372
|
TensorBoard: "TensorBoard",
|
|
370
373
|
};
|
|
371
|
-
exports.AppStatus = {
|
|
372
|
-
Deleted: "Deleted",
|
|
373
|
-
Deleting: "Deleting",
|
|
374
|
-
Failed: "Failed",
|
|
375
|
-
InService: "InService",
|
|
376
|
-
Pending: "Pending",
|
|
377
|
-
};
|
|
378
|
-
exports.AppImageConfigSortKey = {
|
|
379
|
-
CreationTime: "CreationTime",
|
|
380
|
-
LastModifiedTime: "LastModifiedTime",
|
|
381
|
-
Name: "Name",
|
|
382
|
-
};
|
|
383
374
|
exports.AppInstanceType = {
|
|
384
375
|
ML_C5_12XLARGE: "ml.c5.12xlarge",
|
|
385
376
|
ML_C5_18XLARGE: "ml.c5.18xlarge",
|
|
@@ -445,6 +436,18 @@ exports.AppInstanceType = {
|
|
|
445
436
|
ML_TRN1_32XLARGE: "ml.trn1.32xlarge",
|
|
446
437
|
SYSTEM: "system",
|
|
447
438
|
};
|
|
439
|
+
exports.AppStatus = {
|
|
440
|
+
Deleted: "Deleted",
|
|
441
|
+
Deleting: "Deleting",
|
|
442
|
+
Failed: "Failed",
|
|
443
|
+
InService: "InService",
|
|
444
|
+
Pending: "Pending",
|
|
445
|
+
};
|
|
446
|
+
exports.AppImageConfigSortKey = {
|
|
447
|
+
CreationTime: "CreationTime",
|
|
448
|
+
LastModifiedTime: "LastModifiedTime",
|
|
449
|
+
Name: "Name",
|
|
450
|
+
};
|
|
448
451
|
exports.AppNetworkAccessType = {
|
|
449
452
|
PublicInternetOnly: "PublicInternetOnly",
|
|
450
453
|
VpcOnly: "VpcOnly",
|
|
@@ -802,6 +805,66 @@ exports.ClarifyTextLanguage = {
|
|
|
802
805
|
URDU: "ur",
|
|
803
806
|
YORUBA: "yo",
|
|
804
807
|
};
|
|
808
|
+
exports.ClusterInstanceType = {
|
|
809
|
+
ML_C5N_18XLARGE: "ml.c5n.18xlarge",
|
|
810
|
+
ML_C5N_2XLARGE: "ml.c5n.2xlarge",
|
|
811
|
+
ML_C5N_4XLARGE: "ml.c5n.4xlarge",
|
|
812
|
+
ML_C5N_9XLARGE: "ml.c5n.9xlarge",
|
|
813
|
+
ML_C5N_LARGE: "ml.c5n.large",
|
|
814
|
+
ML_C5_12XLARGE: "ml.c5.12xlarge",
|
|
815
|
+
ML_C5_18XLARGE: "ml.c5.18xlarge",
|
|
816
|
+
ML_C5_24XLARGE: "ml.c5.24xlarge",
|
|
817
|
+
ML_C5_2XLARGE: "ml.c5.2xlarge",
|
|
818
|
+
ML_C5_4XLARGE: "ml.c5.4xlarge",
|
|
819
|
+
ML_C5_9XLARGE: "ml.c5.9xlarge",
|
|
820
|
+
ML_C5_LARGE: "ml.c5.large",
|
|
821
|
+
ML_C5_XLARGE: "ml.c5.xlarge",
|
|
822
|
+
ML_G5_12XLARGE: "ml.g5.12xlarge",
|
|
823
|
+
ML_G5_16XLARGE: "ml.g5.16xlarge",
|
|
824
|
+
ML_G5_24XLARGE: "ml.g5.24xlarge",
|
|
825
|
+
ML_G5_2XLARGE: "ml.g5.2xlarge",
|
|
826
|
+
ML_G5_48XLARGE: "ml.g5.48xlarge",
|
|
827
|
+
ML_G5_4XLARGE: "ml.g5.4xlarge",
|
|
828
|
+
ML_G5_8XLARGE: "ml.g5.8xlarge",
|
|
829
|
+
ML_G5_XLARGE: "ml.g5.xlarge",
|
|
830
|
+
ML_M5_12XLARGE: "ml.m5.12xlarge",
|
|
831
|
+
ML_M5_16XLARGE: "ml.m5.16xlarge",
|
|
832
|
+
ML_M5_24XLARGE: "ml.m5.24xlarge",
|
|
833
|
+
ML_M5_2XLARGE: "ml.m5.2xlarge",
|
|
834
|
+
ML_M5_4XLARGE: "ml.m5.4xlarge",
|
|
835
|
+
ML_M5_8XLARGE: "ml.m5.8xlarge",
|
|
836
|
+
ML_M5_LARGE: "ml.m5.large",
|
|
837
|
+
ML_M5_XLARGE: "ml.m5.xlarge",
|
|
838
|
+
ML_P4DE_24XLARGE: "ml.p4de.24xlarge",
|
|
839
|
+
ML_P4D_24XLARGE: "ml.p4d.24xlarge",
|
|
840
|
+
ML_P5_48XLARGE: "ml.p5.48xlarge",
|
|
841
|
+
ML_T3_2XLARGE: "ml.t3.2xlarge",
|
|
842
|
+
ML_T3_LARGE: "ml.t3.large",
|
|
843
|
+
ML_T3_MEDIUM: "ml.t3.medium",
|
|
844
|
+
ML_T3_XLARGE: "ml.t3.xlarge",
|
|
845
|
+
ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge",
|
|
846
|
+
ML_TRN1_32XLARGE: "ml.trn1.32xlarge",
|
|
847
|
+
};
|
|
848
|
+
exports.ClusterInstanceStatus = {
|
|
849
|
+
FAILURE: "Failure",
|
|
850
|
+
PENDING: "Pending",
|
|
851
|
+
RUNNING: "Running",
|
|
852
|
+
SHUTTING_DOWN: "ShuttingDown",
|
|
853
|
+
SYSTEM_UPDATING: "SystemUpdating",
|
|
854
|
+
};
|
|
855
|
+
exports.ClusterSortBy = {
|
|
856
|
+
CREATION_TIME: "CREATION_TIME",
|
|
857
|
+
NAME: "NAME",
|
|
858
|
+
};
|
|
859
|
+
exports.ClusterStatus = {
|
|
860
|
+
CREATING: "Creating",
|
|
861
|
+
DELETING: "Deleting",
|
|
862
|
+
FAILED: "Failed",
|
|
863
|
+
INSERVICE: "InService",
|
|
864
|
+
ROLLINGBACK: "RollingBack",
|
|
865
|
+
SYSTEMUPDATING: "SystemUpdating",
|
|
866
|
+
UPDATING: "Updating",
|
|
867
|
+
};
|
|
805
868
|
exports.CodeRepositorySortBy = {
|
|
806
869
|
CREATION_TIME: "CreationTime",
|
|
807
870
|
LAST_MODIFIED_TIME: "LastModifiedTime",
|
|
@@ -972,53 +1035,3 @@ exports.Framework = {
|
|
|
972
1035
|
TFLITE: "TFLITE",
|
|
973
1036
|
XGBOOST: "XGBOOST",
|
|
974
1037
|
};
|
|
975
|
-
exports.ProcessingS3UploadMode = {
|
|
976
|
-
CONTINUOUS: "Continuous",
|
|
977
|
-
END_OF_JOB: "EndOfJob",
|
|
978
|
-
};
|
|
979
|
-
exports.ProcessingInstanceType = {
|
|
980
|
-
ML_C4_2XLARGE: "ml.c4.2xlarge",
|
|
981
|
-
ML_C4_4XLARGE: "ml.c4.4xlarge",
|
|
982
|
-
ML_C4_8XLARGE: "ml.c4.8xlarge",
|
|
983
|
-
ML_C4_XLARGE: "ml.c4.xlarge",
|
|
984
|
-
ML_C5_18XLARGE: "ml.c5.18xlarge",
|
|
985
|
-
ML_C5_2XLARGE: "ml.c5.2xlarge",
|
|
986
|
-
ML_C5_4XLARGE: "ml.c5.4xlarge",
|
|
987
|
-
ML_C5_9XLARGE: "ml.c5.9xlarge",
|
|
988
|
-
ML_C5_XLARGE: "ml.c5.xlarge",
|
|
989
|
-
ML_G4DN_12XLARGE: "ml.g4dn.12xlarge",
|
|
990
|
-
ML_G4DN_16XLARGE: "ml.g4dn.16xlarge",
|
|
991
|
-
ML_G4DN_2XLARGE: "ml.g4dn.2xlarge",
|
|
992
|
-
ML_G4DN_4XLARGE: "ml.g4dn.4xlarge",
|
|
993
|
-
ML_G4DN_8XLARGE: "ml.g4dn.8xlarge",
|
|
994
|
-
ML_G4DN_XLARGE: "ml.g4dn.xlarge",
|
|
995
|
-
ML_M4_10XLARGE: "ml.m4.10xlarge",
|
|
996
|
-
ML_M4_16XLARGE: "ml.m4.16xlarge",
|
|
997
|
-
ML_M4_2XLARGE: "ml.m4.2xlarge",
|
|
998
|
-
ML_M4_4XLARGE: "ml.m4.4xlarge",
|
|
999
|
-
ML_M4_XLARGE: "ml.m4.xlarge",
|
|
1000
|
-
ML_M5_12XLARGE: "ml.m5.12xlarge",
|
|
1001
|
-
ML_M5_24XLARGE: "ml.m5.24xlarge",
|
|
1002
|
-
ML_M5_2XLARGE: "ml.m5.2xlarge",
|
|
1003
|
-
ML_M5_4XLARGE: "ml.m5.4xlarge",
|
|
1004
|
-
ML_M5_LARGE: "ml.m5.large",
|
|
1005
|
-
ML_M5_XLARGE: "ml.m5.xlarge",
|
|
1006
|
-
ML_P2_16XLARGE: "ml.p2.16xlarge",
|
|
1007
|
-
ML_P2_8XLARGE: "ml.p2.8xlarge",
|
|
1008
|
-
ML_P2_XLARGE: "ml.p2.xlarge",
|
|
1009
|
-
ML_P3_16XLARGE: "ml.p3.16xlarge",
|
|
1010
|
-
ML_P3_2XLARGE: "ml.p3.2xlarge",
|
|
1011
|
-
ML_P3_8XLARGE: "ml.p3.8xlarge",
|
|
1012
|
-
ML_R5_12XLARGE: "ml.r5.12xlarge",
|
|
1013
|
-
ML_R5_16XLARGE: "ml.r5.16xlarge",
|
|
1014
|
-
ML_R5_24XLARGE: "ml.r5.24xlarge",
|
|
1015
|
-
ML_R5_2XLARGE: "ml.r5.2xlarge",
|
|
1016
|
-
ML_R5_4XLARGE: "ml.r5.4xlarge",
|
|
1017
|
-
ML_R5_8XLARGE: "ml.r5.8xlarge",
|
|
1018
|
-
ML_R5_LARGE: "ml.r5.large",
|
|
1019
|
-
ML_R5_XLARGE: "ml.r5.xlarge",
|
|
1020
|
-
ML_T3_2XLARGE: "ml.t3.2xlarge",
|
|
1021
|
-
ML_T3_LARGE: "ml.t3.large",
|
|
1022
|
-
ML_T3_MEDIUM: "ml.t3.medium",
|
|
1023
|
-
ML_T3_XLARGE: "ml.t3.xlarge",
|
|
1024
|
-
};
|
|
@@ -1,10 +1,68 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.CreateModelCardRequestFilterSensitiveLog = exports.StudioLifecycleConfigAppType = exports.SharingType = exports.CustomFileSystem = exports.ProcessingS3DataType = exports.ProcessingS3CompressionType = exports.RedshiftResultFormat = exports.RedshiftResultCompressionType = exports.InputMode = exports.DataDistributionType = exports.RootAccess = exports.DirectInternetAccess = exports.NotebookInstanceAcceleratorType = exports.MonitoringType = exports.MonitoringProblemType = exports.SkipModelValidation = exports.ModelCardStatus = exports.InferenceExecutionMode = exports.FlatInvocations = exports.RecommendationJobType = exports.TrafficType = exports.RecommendationJobSupportedEndpointType = exports.InferenceExperimentType = exports._InstanceType = exports.ModelInfrastructureType = exports.VendorGuidance = exports.Processor = exports.JobType = exports.HyperParameterTuningJobWarmStartType = exports.HyperParameterTuningAllocationStrategy = exports.TrainingJobEarlyStoppingType = exports.HyperParameterTuningJobStrategyType = exports.TtlDurationUnit = exports.StorageType = exports.TableFormat = exports.FeatureType = exports.RoutingStrategy = exports.ManagedInstanceScalingStatus = exports.ProductionVariantAcceleratorType = exports.DeviceSubsetType = exports.FailureHandlingPolicy = exports.ExecutionRoleIdentityConfig = exports.StudioWebPortal = exports.NotebookOutputOption = exports.RStudioServerProUserGroup = exports.RStudioServerProAccessStatus = exports.CustomFileSystemConfig = exports.EdgePresetDeploymentType = exports.ProcessingInstanceType = exports.ProcessingS3UploadMode = void 0;
|
|
4
4
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
exports.ProcessingS3UploadMode = {
|
|
6
|
+
CONTINUOUS: "Continuous",
|
|
7
|
+
END_OF_JOB: "EndOfJob",
|
|
8
|
+
};
|
|
9
|
+
exports.ProcessingInstanceType = {
|
|
10
|
+
ML_C4_2XLARGE: "ml.c4.2xlarge",
|
|
11
|
+
ML_C4_4XLARGE: "ml.c4.4xlarge",
|
|
12
|
+
ML_C4_8XLARGE: "ml.c4.8xlarge",
|
|
13
|
+
ML_C4_XLARGE: "ml.c4.xlarge",
|
|
14
|
+
ML_C5_18XLARGE: "ml.c5.18xlarge",
|
|
15
|
+
ML_C5_2XLARGE: "ml.c5.2xlarge",
|
|
16
|
+
ML_C5_4XLARGE: "ml.c5.4xlarge",
|
|
17
|
+
ML_C5_9XLARGE: "ml.c5.9xlarge",
|
|
18
|
+
ML_C5_XLARGE: "ml.c5.xlarge",
|
|
19
|
+
ML_G4DN_12XLARGE: "ml.g4dn.12xlarge",
|
|
20
|
+
ML_G4DN_16XLARGE: "ml.g4dn.16xlarge",
|
|
21
|
+
ML_G4DN_2XLARGE: "ml.g4dn.2xlarge",
|
|
22
|
+
ML_G4DN_4XLARGE: "ml.g4dn.4xlarge",
|
|
23
|
+
ML_G4DN_8XLARGE: "ml.g4dn.8xlarge",
|
|
24
|
+
ML_G4DN_XLARGE: "ml.g4dn.xlarge",
|
|
25
|
+
ML_M4_10XLARGE: "ml.m4.10xlarge",
|
|
26
|
+
ML_M4_16XLARGE: "ml.m4.16xlarge",
|
|
27
|
+
ML_M4_2XLARGE: "ml.m4.2xlarge",
|
|
28
|
+
ML_M4_4XLARGE: "ml.m4.4xlarge",
|
|
29
|
+
ML_M4_XLARGE: "ml.m4.xlarge",
|
|
30
|
+
ML_M5_12XLARGE: "ml.m5.12xlarge",
|
|
31
|
+
ML_M5_24XLARGE: "ml.m5.24xlarge",
|
|
32
|
+
ML_M5_2XLARGE: "ml.m5.2xlarge",
|
|
33
|
+
ML_M5_4XLARGE: "ml.m5.4xlarge",
|
|
34
|
+
ML_M5_LARGE: "ml.m5.large",
|
|
35
|
+
ML_M5_XLARGE: "ml.m5.xlarge",
|
|
36
|
+
ML_P2_16XLARGE: "ml.p2.16xlarge",
|
|
37
|
+
ML_P2_8XLARGE: "ml.p2.8xlarge",
|
|
38
|
+
ML_P2_XLARGE: "ml.p2.xlarge",
|
|
39
|
+
ML_P3_16XLARGE: "ml.p3.16xlarge",
|
|
40
|
+
ML_P3_2XLARGE: "ml.p3.2xlarge",
|
|
41
|
+
ML_P3_8XLARGE: "ml.p3.8xlarge",
|
|
42
|
+
ML_R5_12XLARGE: "ml.r5.12xlarge",
|
|
43
|
+
ML_R5_16XLARGE: "ml.r5.16xlarge",
|
|
44
|
+
ML_R5_24XLARGE: "ml.r5.24xlarge",
|
|
45
|
+
ML_R5_2XLARGE: "ml.r5.2xlarge",
|
|
46
|
+
ML_R5_4XLARGE: "ml.r5.4xlarge",
|
|
47
|
+
ML_R5_8XLARGE: "ml.r5.8xlarge",
|
|
48
|
+
ML_R5_LARGE: "ml.r5.large",
|
|
49
|
+
ML_R5_XLARGE: "ml.r5.xlarge",
|
|
50
|
+
ML_T3_2XLARGE: "ml.t3.2xlarge",
|
|
51
|
+
ML_T3_LARGE: "ml.t3.large",
|
|
52
|
+
ML_T3_MEDIUM: "ml.t3.medium",
|
|
53
|
+
ML_T3_XLARGE: "ml.t3.xlarge",
|
|
54
|
+
};
|
|
5
55
|
exports.EdgePresetDeploymentType = {
|
|
6
56
|
GreengrassV2Component: "GreengrassV2Component",
|
|
7
57
|
};
|
|
58
|
+
var CustomFileSystemConfig;
|
|
59
|
+
(function (CustomFileSystemConfig) {
|
|
60
|
+
CustomFileSystemConfig.visit = (value, visitor) => {
|
|
61
|
+
if (value.EFSFileSystemConfig !== undefined)
|
|
62
|
+
return visitor.EFSFileSystemConfig(value.EFSFileSystemConfig);
|
|
63
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
64
|
+
};
|
|
65
|
+
})(CustomFileSystemConfig = exports.CustomFileSystemConfig || (exports.CustomFileSystemConfig = {}));
|
|
8
66
|
exports.RStudioServerProAccessStatus = {
|
|
9
67
|
Disabled: "DISABLED",
|
|
10
68
|
Enabled: "ENABLED",
|
|
@@ -17,6 +75,10 @@ exports.NotebookOutputOption = {
|
|
|
17
75
|
Allowed: "Allowed",
|
|
18
76
|
Disabled: "Disabled",
|
|
19
77
|
};
|
|
78
|
+
exports.StudioWebPortal = {
|
|
79
|
+
Disabled: "DISABLED",
|
|
80
|
+
Enabled: "ENABLED",
|
|
81
|
+
};
|
|
20
82
|
exports.ExecutionRoleIdentityConfig = {
|
|
21
83
|
DISABLED: "DISABLED",
|
|
22
84
|
USER_PROFILE_NAME: "USER_PROFILE_NAME",
|
|
@@ -38,6 +100,14 @@ exports.ProductionVariantAcceleratorType = {
|
|
|
38
100
|
ML_EIA2_MEDIUM: "ml.eia2.medium",
|
|
39
101
|
ML_EIA2_XLARGE: "ml.eia2.xlarge",
|
|
40
102
|
};
|
|
103
|
+
exports.ManagedInstanceScalingStatus = {
|
|
104
|
+
DISABLED: "DISABLED",
|
|
105
|
+
ENABLED: "ENABLED",
|
|
106
|
+
};
|
|
107
|
+
exports.RoutingStrategy = {
|
|
108
|
+
LEAST_OUTSTANDING_REQUESTS: "LEAST_OUTSTANDING_REQUESTS",
|
|
109
|
+
RANDOM: "RANDOM",
|
|
110
|
+
};
|
|
41
111
|
exports.FeatureType = {
|
|
42
112
|
FRACTIONAL: "Fractional",
|
|
43
113
|
INTEGRAL: "Integral",
|
|
@@ -257,62 +327,26 @@ exports.ProcessingS3DataType = {
|
|
|
257
327
|
MANIFEST_FILE: "ManifestFile",
|
|
258
328
|
S3_PREFIX: "S3Prefix",
|
|
259
329
|
};
|
|
330
|
+
var CustomFileSystem;
|
|
331
|
+
(function (CustomFileSystem) {
|
|
332
|
+
CustomFileSystem.visit = (value, visitor) => {
|
|
333
|
+
if (value.EFSFileSystem !== undefined)
|
|
334
|
+
return visitor.EFSFileSystem(value.EFSFileSystem);
|
|
335
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
336
|
+
};
|
|
337
|
+
})(CustomFileSystem = exports.CustomFileSystem || (exports.CustomFileSystem = {}));
|
|
338
|
+
exports.SharingType = {
|
|
339
|
+
Private: "Private",
|
|
340
|
+
Shared: "Shared",
|
|
341
|
+
};
|
|
260
342
|
exports.StudioLifecycleConfigAppType = {
|
|
343
|
+
CodeEditor: "CodeEditor",
|
|
344
|
+
JupyterLab: "JupyterLab",
|
|
261
345
|
JupyterServer: "JupyterServer",
|
|
262
346
|
KernelGateway: "KernelGateway",
|
|
263
347
|
};
|
|
264
|
-
exports.JoinSource = {
|
|
265
|
-
INPUT: "Input",
|
|
266
|
-
NONE: "None",
|
|
267
|
-
};
|
|
268
|
-
var TrialComponentParameterValue;
|
|
269
|
-
(function (TrialComponentParameterValue) {
|
|
270
|
-
TrialComponentParameterValue.visit = (value, visitor) => {
|
|
271
|
-
if (value.StringValue !== undefined)
|
|
272
|
-
return visitor.StringValue(value.StringValue);
|
|
273
|
-
if (value.NumberValue !== undefined)
|
|
274
|
-
return visitor.NumberValue(value.NumberValue);
|
|
275
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
276
|
-
};
|
|
277
|
-
})(TrialComponentParameterValue = exports.TrialComponentParameterValue || (exports.TrialComponentParameterValue = {}));
|
|
278
|
-
exports.TrialComponentPrimaryStatus = {
|
|
279
|
-
COMPLETED: "Completed",
|
|
280
|
-
FAILED: "Failed",
|
|
281
|
-
IN_PROGRESS: "InProgress",
|
|
282
|
-
STOPPED: "Stopped",
|
|
283
|
-
STOPPING: "Stopping",
|
|
284
|
-
};
|
|
285
|
-
exports.CrossAccountFilterOption = {
|
|
286
|
-
CROSS_ACCOUNT: "CrossAccount",
|
|
287
|
-
SAME_ACCOUNT: "SameAccount",
|
|
288
|
-
};
|
|
289
|
-
exports.Statistic = {
|
|
290
|
-
AVERAGE: "Average",
|
|
291
|
-
MAXIMUM: "Maximum",
|
|
292
|
-
MINIMUM: "Minimum",
|
|
293
|
-
SAMPLE_COUNT: "SampleCount",
|
|
294
|
-
SUM: "Sum",
|
|
295
|
-
};
|
|
296
|
-
exports.RuleEvaluationStatus = {
|
|
297
|
-
ERROR: "Error",
|
|
298
|
-
IN_PROGRESS: "InProgress",
|
|
299
|
-
ISSUES_FOUND: "IssuesFound",
|
|
300
|
-
NO_ISSUES_FOUND: "NoIssuesFound",
|
|
301
|
-
STOPPED: "Stopped",
|
|
302
|
-
STOPPING: "Stopping",
|
|
303
|
-
};
|
|
304
348
|
const CreateModelCardRequestFilterSensitiveLog = (obj) => ({
|
|
305
349
|
...obj,
|
|
306
350
|
...(obj.Content && { Content: smithy_client_1.SENSITIVE_STRING }),
|
|
307
351
|
});
|
|
308
352
|
exports.CreateModelCardRequestFilterSensitiveLog = CreateModelCardRequestFilterSensitiveLog;
|
|
309
|
-
const OidcConfigFilterSensitiveLog = (obj) => ({
|
|
310
|
-
...obj,
|
|
311
|
-
...(obj.ClientSecret && { ClientSecret: smithy_client_1.SENSITIVE_STRING }),
|
|
312
|
-
});
|
|
313
|
-
exports.OidcConfigFilterSensitiveLog = OidcConfigFilterSensitiveLog;
|
|
314
|
-
const CreateWorkforceRequestFilterSensitiveLog = (obj) => ({
|
|
315
|
-
...obj,
|
|
316
|
-
...(obj.OidcConfig && { OidcConfig: (0, exports.OidcConfigFilterSensitiveLog)(obj.OidcConfig) }),
|
|
317
|
-
});
|
|
318
|
-
exports.CreateWorkforceRequestFilterSensitiveLog = CreateWorkforceRequestFilterSensitiveLog;
|
|
@@ -1,7 +1,47 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeModelCardResponseFilterSensitiveLog = exports.
|
|
3
|
+
exports.DescribeModelCardResponseFilterSensitiveLog = exports.CreateWorkforceRequestFilterSensitiveLog = exports.OidcConfigFilterSensitiveLog = exports.SpaceStatus = exports.ProjectStatus = exports.ProcessingJobStatus = exports.PipelineExecutionStatus = exports.PipelineStatus = exports.NotebookInstanceStatus = exports.ScheduleStatus = exports.ExecutionStatus = exports.ModelPackageGroupStatus = exports.DetailedModelPackageStatus = exports.ModelCardExportJobStatus = exports.ModelCardProcessingStatus = exports.LabelingJobStatus = exports.RecommendationJobStatus = exports.InferenceExperimentStatus = exports.ModelVariantStatus = exports.InferenceComponentStatus = exports.ImageVersionStatus = exports.ImageStatus = exports.HyperParameterTuningJobStatus = exports.TrainingJobStatus = exports.HumanTaskUiStatus = exports.HubContentStatus = exports.HubStatus = exports.FlowDefinitionStatus = exports.OfflineStoreStatusValue = exports.LastUpdateStatusValue = exports.FeatureGroupStatus = exports.VariantStatus = exports.EndpointStatus = exports.EdgePresetDeploymentStatus = exports.EdgePackagingJobStatus = exports.DomainStatus = exports.StageStatus = exports.RecommendationStatus = exports.HubContentType = exports.RetentionType = exports.RuleEvaluationStatus = exports.Statistic = exports.CrossAccountFilterOption = exports.TrialComponentPrimaryStatus = exports.TrialComponentParameterValue = exports.JoinSource = void 0;
|
|
4
4
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
exports.JoinSource = {
|
|
6
|
+
INPUT: "Input",
|
|
7
|
+
NONE: "None",
|
|
8
|
+
};
|
|
9
|
+
var TrialComponentParameterValue;
|
|
10
|
+
(function (TrialComponentParameterValue) {
|
|
11
|
+
TrialComponentParameterValue.visit = (value, visitor) => {
|
|
12
|
+
if (value.StringValue !== undefined)
|
|
13
|
+
return visitor.StringValue(value.StringValue);
|
|
14
|
+
if (value.NumberValue !== undefined)
|
|
15
|
+
return visitor.NumberValue(value.NumberValue);
|
|
16
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
17
|
+
};
|
|
18
|
+
})(TrialComponentParameterValue = exports.TrialComponentParameterValue || (exports.TrialComponentParameterValue = {}));
|
|
19
|
+
exports.TrialComponentPrimaryStatus = {
|
|
20
|
+
COMPLETED: "Completed",
|
|
21
|
+
FAILED: "Failed",
|
|
22
|
+
IN_PROGRESS: "InProgress",
|
|
23
|
+
STOPPED: "Stopped",
|
|
24
|
+
STOPPING: "Stopping",
|
|
25
|
+
};
|
|
26
|
+
exports.CrossAccountFilterOption = {
|
|
27
|
+
CROSS_ACCOUNT: "CrossAccount",
|
|
28
|
+
SAME_ACCOUNT: "SameAccount",
|
|
29
|
+
};
|
|
30
|
+
exports.Statistic = {
|
|
31
|
+
AVERAGE: "Average",
|
|
32
|
+
MAXIMUM: "Maximum",
|
|
33
|
+
MINIMUM: "Minimum",
|
|
34
|
+
SAMPLE_COUNT: "SampleCount",
|
|
35
|
+
SUM: "Sum",
|
|
36
|
+
};
|
|
37
|
+
exports.RuleEvaluationStatus = {
|
|
38
|
+
ERROR: "Error",
|
|
39
|
+
IN_PROGRESS: "InProgress",
|
|
40
|
+
ISSUES_FOUND: "IssuesFound",
|
|
41
|
+
NO_ISSUES_FOUND: "NoIssuesFound",
|
|
42
|
+
STOPPED: "Stopped",
|
|
43
|
+
STOPPING: "Stopping",
|
|
44
|
+
};
|
|
5
45
|
exports.RetentionType = {
|
|
6
46
|
Delete: "Delete",
|
|
7
47
|
Retain: "Retain",
|
|
@@ -138,6 +178,13 @@ exports.ImageVersionStatus = {
|
|
|
138
178
|
DELETE_FAILED: "DELETE_FAILED",
|
|
139
179
|
DELETING: "DELETING",
|
|
140
180
|
};
|
|
181
|
+
exports.InferenceComponentStatus = {
|
|
182
|
+
CREATING: "Creating",
|
|
183
|
+
DELETING: "Deleting",
|
|
184
|
+
FAILED: "Failed",
|
|
185
|
+
IN_SERVICE: "InService",
|
|
186
|
+
UPDATING: "Updating",
|
|
187
|
+
};
|
|
141
188
|
exports.ModelVariantStatus = {
|
|
142
189
|
CREATING: "Creating",
|
|
143
190
|
DELETED: "Deleted",
|
|
@@ -260,88 +307,16 @@ exports.SpaceStatus = {
|
|
|
260
307
|
Update_Failed: "Update_Failed",
|
|
261
308
|
Updating: "Updating",
|
|
262
309
|
};
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
};
|
|
267
|
-
exports.
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
LAUNCHING_ML_INSTANCES: "LaunchingMLInstances",
|
|
274
|
-
MAX_RUNTIME_EXCEEDED: "MaxRuntimeExceeded",
|
|
275
|
-
MAX_WAIT_TIME_EXCEEDED: "MaxWaitTimeExceeded",
|
|
276
|
-
PREPARING_TRAINING_STACK: "PreparingTrainingStack",
|
|
277
|
-
RESTARTING: "Restarting",
|
|
278
|
-
STARTING: "Starting",
|
|
279
|
-
STOPPED: "Stopped",
|
|
280
|
-
STOPPING: "Stopping",
|
|
281
|
-
TRAINING: "Training",
|
|
282
|
-
UPDATING: "Updating",
|
|
283
|
-
UPLOADING: "Uploading",
|
|
284
|
-
};
|
|
285
|
-
exports.WarmPoolResourceStatus = {
|
|
286
|
-
AVAILABLE: "Available",
|
|
287
|
-
INUSE: "InUse",
|
|
288
|
-
REUSED: "Reused",
|
|
289
|
-
TERMINATED: "Terminated",
|
|
290
|
-
};
|
|
291
|
-
exports.TransformJobStatus = {
|
|
292
|
-
COMPLETED: "Completed",
|
|
293
|
-
FAILED: "Failed",
|
|
294
|
-
IN_PROGRESS: "InProgress",
|
|
295
|
-
STOPPED: "Stopped",
|
|
296
|
-
STOPPING: "Stopping",
|
|
297
|
-
};
|
|
298
|
-
exports.UserProfileStatus = {
|
|
299
|
-
Delete_Failed: "Delete_Failed",
|
|
300
|
-
Deleting: "Deleting",
|
|
301
|
-
Failed: "Failed",
|
|
302
|
-
InService: "InService",
|
|
303
|
-
Pending: "Pending",
|
|
304
|
-
Update_Failed: "Update_Failed",
|
|
305
|
-
Updating: "Updating",
|
|
306
|
-
};
|
|
307
|
-
exports.WorkforceStatus = {
|
|
308
|
-
ACTIVE: "Active",
|
|
309
|
-
DELETING: "Deleting",
|
|
310
|
-
FAILED: "Failed",
|
|
311
|
-
INITIALIZING: "Initializing",
|
|
312
|
-
UPDATING: "Updating",
|
|
313
|
-
};
|
|
314
|
-
exports.DeviceDeploymentStatus = {
|
|
315
|
-
Deployed: "DEPLOYED",
|
|
316
|
-
Failed: "FAILED",
|
|
317
|
-
InProgress: "INPROGRESS",
|
|
318
|
-
ReadyToDeploy: "READYTODEPLOY",
|
|
319
|
-
Stopped: "STOPPED",
|
|
320
|
-
Stopping: "STOPPING",
|
|
321
|
-
};
|
|
322
|
-
exports.Direction = {
|
|
323
|
-
ASCENDANTS: "Ascendants",
|
|
324
|
-
BOTH: "Both",
|
|
325
|
-
DESCENDANTS: "Descendants",
|
|
326
|
-
};
|
|
327
|
-
var MetricSpecification;
|
|
328
|
-
(function (MetricSpecification) {
|
|
329
|
-
MetricSpecification.visit = (value, visitor) => {
|
|
330
|
-
if (value.Predefined !== undefined)
|
|
331
|
-
return visitor.Predefined(value.Predefined);
|
|
332
|
-
if (value.Customized !== undefined)
|
|
333
|
-
return visitor.Customized(value.Customized);
|
|
334
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
335
|
-
};
|
|
336
|
-
})(MetricSpecification = exports.MetricSpecification || (exports.MetricSpecification = {}));
|
|
337
|
-
var ScalingPolicy;
|
|
338
|
-
(function (ScalingPolicy) {
|
|
339
|
-
ScalingPolicy.visit = (value, visitor) => {
|
|
340
|
-
if (value.TargetTracking !== undefined)
|
|
341
|
-
return visitor.TargetTracking(value.TargetTracking);
|
|
342
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
343
|
-
};
|
|
344
|
-
})(ScalingPolicy = exports.ScalingPolicy || (exports.ScalingPolicy = {}));
|
|
310
|
+
const OidcConfigFilterSensitiveLog = (obj) => ({
|
|
311
|
+
...obj,
|
|
312
|
+
...(obj.ClientSecret && { ClientSecret: smithy_client_1.SENSITIVE_STRING }),
|
|
313
|
+
});
|
|
314
|
+
exports.OidcConfigFilterSensitiveLog = OidcConfigFilterSensitiveLog;
|
|
315
|
+
const CreateWorkforceRequestFilterSensitiveLog = (obj) => ({
|
|
316
|
+
...obj,
|
|
317
|
+
...(obj.OidcConfig && { OidcConfig: (0, exports.OidcConfigFilterSensitiveLog)(obj.OidcConfig) }),
|
|
318
|
+
});
|
|
319
|
+
exports.CreateWorkforceRequestFilterSensitiveLog = CreateWorkforceRequestFilterSensitiveLog;
|
|
345
320
|
const DescribeModelCardResponseFilterSensitiveLog = (obj) => ({
|
|
346
321
|
...obj,
|
|
347
322
|
...(obj.Content && { Content: smithy_client_1.SENSITIVE_STRING }),
|