@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
|
@@ -3609,6 +3609,8 @@ export interface AnnotationConsolidationConfig {
|
|
|
3609
3609
|
* @enum
|
|
3610
3610
|
*/
|
|
3611
3611
|
export declare const AppType: {
|
|
3612
|
+
readonly CodeEditor: "CodeEditor";
|
|
3613
|
+
readonly JupyterLab: "JupyterLab";
|
|
3612
3614
|
readonly JupyterServer: "JupyterServer";
|
|
3613
3615
|
readonly KernelGateway: "KernelGateway";
|
|
3614
3616
|
readonly RSessionGateway: "RSessionGateway";
|
|
@@ -3619,6 +3621,118 @@ export declare const AppType: {
|
|
|
3619
3621
|
* @public
|
|
3620
3622
|
*/
|
|
3621
3623
|
export type AppType = (typeof AppType)[keyof typeof AppType];
|
|
3624
|
+
/**
|
|
3625
|
+
* @public
|
|
3626
|
+
* @enum
|
|
3627
|
+
*/
|
|
3628
|
+
export declare const AppInstanceType: {
|
|
3629
|
+
readonly ML_C5_12XLARGE: "ml.c5.12xlarge";
|
|
3630
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
3631
|
+
readonly ML_C5_24XLARGE: "ml.c5.24xlarge";
|
|
3632
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
3633
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
3634
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
3635
|
+
readonly ML_C5_LARGE: "ml.c5.large";
|
|
3636
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
3637
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
3638
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
3639
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
3640
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
3641
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
3642
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
3643
|
+
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
3644
|
+
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
3645
|
+
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
3646
|
+
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
3647
|
+
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
3648
|
+
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
3649
|
+
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
3650
|
+
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
3651
|
+
readonly ML_GEOSPATIAL_INTERACTIVE: "ml.geospatial.interactive";
|
|
3652
|
+
readonly ML_M5D_12XLARGE: "ml.m5d.12xlarge";
|
|
3653
|
+
readonly ML_M5D_16XLARGE: "ml.m5d.16xlarge";
|
|
3654
|
+
readonly ML_M5D_24XLARGE: "ml.m5d.24xlarge";
|
|
3655
|
+
readonly ML_M5D_2XLARGE: "ml.m5d.2xlarge";
|
|
3656
|
+
readonly ML_M5D_4XLARGE: "ml.m5d.4xlarge";
|
|
3657
|
+
readonly ML_M5D_8XLARGE: "ml.m5d.8xlarge";
|
|
3658
|
+
readonly ML_M5D_LARGE: "ml.m5d.large";
|
|
3659
|
+
readonly ML_M5D_XLARGE: "ml.m5d.xlarge";
|
|
3660
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
3661
|
+
readonly ML_M5_16XLARGE: "ml.m5.16xlarge";
|
|
3662
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
3663
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
3664
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
3665
|
+
readonly ML_M5_8XLARGE: "ml.m5.8xlarge";
|
|
3666
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
3667
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
3668
|
+
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
3669
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
3670
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
3671
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
3672
|
+
readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
|
|
3673
|
+
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
3674
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
3675
|
+
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
3676
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
3677
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
3678
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
3679
|
+
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
3680
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
3681
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
3682
|
+
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
3683
|
+
readonly ML_T3_LARGE: "ml.t3.large";
|
|
3684
|
+
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
3685
|
+
readonly ML_T3_MICRO: "ml.t3.micro";
|
|
3686
|
+
readonly ML_T3_SMALL: "ml.t3.small";
|
|
3687
|
+
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
3688
|
+
readonly ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge";
|
|
3689
|
+
readonly ML_TRN1_2XLARGE: "ml.trn1.2xlarge";
|
|
3690
|
+
readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
|
|
3691
|
+
readonly SYSTEM: "system";
|
|
3692
|
+
};
|
|
3693
|
+
/**
|
|
3694
|
+
* @public
|
|
3695
|
+
*/
|
|
3696
|
+
export type AppInstanceType = (typeof AppInstanceType)[keyof typeof AppInstanceType];
|
|
3697
|
+
/**
|
|
3698
|
+
* @public
|
|
3699
|
+
* <p>Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that
|
|
3700
|
+
* the version runs on.</p>
|
|
3701
|
+
*/
|
|
3702
|
+
export interface ResourceSpec {
|
|
3703
|
+
/**
|
|
3704
|
+
* @public
|
|
3705
|
+
* <p>The ARN of the SageMaker image that the image version belongs to.</p>
|
|
3706
|
+
*/
|
|
3707
|
+
SageMakerImageArn?: string;
|
|
3708
|
+
/**
|
|
3709
|
+
* @public
|
|
3710
|
+
* <p>The ARN of the image version created on the instance.</p>
|
|
3711
|
+
*/
|
|
3712
|
+
SageMakerImageVersionArn?: string;
|
|
3713
|
+
/**
|
|
3714
|
+
* @public
|
|
3715
|
+
* <p>The SageMakerImageVersionAlias.</p>
|
|
3716
|
+
*/
|
|
3717
|
+
SageMakerImageVersionAlias?: string;
|
|
3718
|
+
/**
|
|
3719
|
+
* @public
|
|
3720
|
+
* <p>The instance type that the image version runs on.</p>
|
|
3721
|
+
* <note>
|
|
3722
|
+
* <p>
|
|
3723
|
+
* <b>JupyterServer apps</b> only support the <code>system</code> value.</p>
|
|
3724
|
+
* <p>For <b>KernelGateway apps</b>, the <code>system</code>
|
|
3725
|
+
* value is translated to <code>ml.t3.medium</code>. KernelGateway apps also support all other values for available
|
|
3726
|
+
* instance types.</p>
|
|
3727
|
+
* </note>
|
|
3728
|
+
*/
|
|
3729
|
+
InstanceType?: AppInstanceType;
|
|
3730
|
+
/**
|
|
3731
|
+
* @public
|
|
3732
|
+
* <p> The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.</p>
|
|
3733
|
+
*/
|
|
3734
|
+
LifecycleConfigArn?: string;
|
|
3735
|
+
}
|
|
3622
3736
|
/**
|
|
3623
3737
|
* @public
|
|
3624
3738
|
* @enum
|
|
@@ -3674,6 +3788,44 @@ export interface AppDetails {
|
|
|
3674
3788
|
* <p>The name of the space.</p>
|
|
3675
3789
|
*/
|
|
3676
3790
|
SpaceName?: string;
|
|
3791
|
+
/**
|
|
3792
|
+
* @public
|
|
3793
|
+
* <p>Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that
|
|
3794
|
+
* the version runs on.</p>
|
|
3795
|
+
*/
|
|
3796
|
+
ResourceSpec?: ResourceSpec;
|
|
3797
|
+
}
|
|
3798
|
+
/**
|
|
3799
|
+
* @public
|
|
3800
|
+
* <p>The configuration used to run the application image container.</p>
|
|
3801
|
+
*/
|
|
3802
|
+
export interface ContainerConfig {
|
|
3803
|
+
/**
|
|
3804
|
+
* @public
|
|
3805
|
+
* <p>The arguments for the container when you're running the application.</p>
|
|
3806
|
+
*/
|
|
3807
|
+
ContainerArguments?: string[];
|
|
3808
|
+
/**
|
|
3809
|
+
* @public
|
|
3810
|
+
* <p>The entrypoint used to run the application in the container.</p>
|
|
3811
|
+
*/
|
|
3812
|
+
ContainerEntrypoint?: string[];
|
|
3813
|
+
/**
|
|
3814
|
+
* @public
|
|
3815
|
+
* <p>The environment variables to set in the container</p>
|
|
3816
|
+
*/
|
|
3817
|
+
ContainerEnvironmentVariables?: Record<string, string>;
|
|
3818
|
+
}
|
|
3819
|
+
/**
|
|
3820
|
+
* @public
|
|
3821
|
+
* <p>The configuration for the file system and kernels in a SageMaker image running as a JupyterLab app.</p>
|
|
3822
|
+
*/
|
|
3823
|
+
export interface JupyterLabAppImageConfig {
|
|
3824
|
+
/**
|
|
3825
|
+
* @public
|
|
3826
|
+
* <p>The configuration used to run the application image container.</p>
|
|
3827
|
+
*/
|
|
3828
|
+
ContainerConfig?: ContainerConfig;
|
|
3677
3829
|
}
|
|
3678
3830
|
/**
|
|
3679
3831
|
* @public
|
|
@@ -3760,6 +3912,11 @@ export interface AppImageConfigDetails {
|
|
|
3760
3912
|
* <p>The configuration for the file system and kernels in the SageMaker image.</p>
|
|
3761
3913
|
*/
|
|
3762
3914
|
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
3915
|
+
/**
|
|
3916
|
+
* @public
|
|
3917
|
+
* <p>The configuration for the file system and the runtime, such as the environment variables and entry point.</p>
|
|
3918
|
+
*/
|
|
3919
|
+
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
|
3763
3920
|
}
|
|
3764
3921
|
/**
|
|
3765
3922
|
* @public
|
|
@@ -3774,79 +3931,6 @@ export declare const AppImageConfigSortKey: {
|
|
|
3774
3931
|
* @public
|
|
3775
3932
|
*/
|
|
3776
3933
|
export type AppImageConfigSortKey = (typeof AppImageConfigSortKey)[keyof typeof AppImageConfigSortKey];
|
|
3777
|
-
/**
|
|
3778
|
-
* @public
|
|
3779
|
-
* @enum
|
|
3780
|
-
*/
|
|
3781
|
-
export declare const AppInstanceType: {
|
|
3782
|
-
readonly ML_C5_12XLARGE: "ml.c5.12xlarge";
|
|
3783
|
-
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
3784
|
-
readonly ML_C5_24XLARGE: "ml.c5.24xlarge";
|
|
3785
|
-
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
3786
|
-
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
3787
|
-
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
3788
|
-
readonly ML_C5_LARGE: "ml.c5.large";
|
|
3789
|
-
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
3790
|
-
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
3791
|
-
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
3792
|
-
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
3793
|
-
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
3794
|
-
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
3795
|
-
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
3796
|
-
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
3797
|
-
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
3798
|
-
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
3799
|
-
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
3800
|
-
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
3801
|
-
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
3802
|
-
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
3803
|
-
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
3804
|
-
readonly ML_GEOSPATIAL_INTERACTIVE: "ml.geospatial.interactive";
|
|
3805
|
-
readonly ML_M5D_12XLARGE: "ml.m5d.12xlarge";
|
|
3806
|
-
readonly ML_M5D_16XLARGE: "ml.m5d.16xlarge";
|
|
3807
|
-
readonly ML_M5D_24XLARGE: "ml.m5d.24xlarge";
|
|
3808
|
-
readonly ML_M5D_2XLARGE: "ml.m5d.2xlarge";
|
|
3809
|
-
readonly ML_M5D_4XLARGE: "ml.m5d.4xlarge";
|
|
3810
|
-
readonly ML_M5D_8XLARGE: "ml.m5d.8xlarge";
|
|
3811
|
-
readonly ML_M5D_LARGE: "ml.m5d.large";
|
|
3812
|
-
readonly ML_M5D_XLARGE: "ml.m5d.xlarge";
|
|
3813
|
-
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
3814
|
-
readonly ML_M5_16XLARGE: "ml.m5.16xlarge";
|
|
3815
|
-
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
3816
|
-
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
3817
|
-
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
3818
|
-
readonly ML_M5_8XLARGE: "ml.m5.8xlarge";
|
|
3819
|
-
readonly ML_M5_LARGE: "ml.m5.large";
|
|
3820
|
-
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
3821
|
-
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
3822
|
-
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
3823
|
-
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
3824
|
-
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
3825
|
-
readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
|
|
3826
|
-
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
3827
|
-
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
3828
|
-
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
3829
|
-
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
3830
|
-
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
3831
|
-
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
3832
|
-
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
3833
|
-
readonly ML_R5_LARGE: "ml.r5.large";
|
|
3834
|
-
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
3835
|
-
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
3836
|
-
readonly ML_T3_LARGE: "ml.t3.large";
|
|
3837
|
-
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
3838
|
-
readonly ML_T3_MICRO: "ml.t3.micro";
|
|
3839
|
-
readonly ML_T3_SMALL: "ml.t3.small";
|
|
3840
|
-
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
3841
|
-
readonly ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge";
|
|
3842
|
-
readonly ML_TRN1_2XLARGE: "ml.trn1.2xlarge";
|
|
3843
|
-
readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
|
|
3844
|
-
readonly SYSTEM: "system";
|
|
3845
|
-
};
|
|
3846
|
-
/**
|
|
3847
|
-
* @public
|
|
3848
|
-
*/
|
|
3849
|
-
export type AppInstanceType = (typeof AppInstanceType)[keyof typeof AppInstanceType];
|
|
3850
3934
|
/**
|
|
3851
3935
|
* @public
|
|
3852
3936
|
* @enum
|
|
@@ -5090,6 +5174,8 @@ export interface AutoMLJobCompletionCriteria {
|
|
|
5090
5174
|
* used by the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateHyperParameterTuningJob.html">CreateHyperParameterTuningJob</a> action.</p>
|
|
5091
5175
|
* <p>For job V2s (jobs created by calling <code>CreateAutoMLJobV2</code>), this field
|
|
5092
5176
|
* controls the runtime of the job candidate.</p>
|
|
5177
|
+
* <p>For <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TextClassificationJobConfig.html">TextGenerationJobConfig</a> problem types, the maximum time defaults to 72 hours
|
|
5178
|
+
* (259200 seconds).</p>
|
|
5093
5179
|
*/
|
|
5094
5180
|
MaxRuntimePerTrainingJobInSeconds?: number;
|
|
5095
5181
|
/**
|
|
@@ -5117,16 +5203,15 @@ export declare const AutoMLMode: {
|
|
|
5117
5203
|
export type AutoMLMode = (typeof AutoMLMode)[keyof typeof AutoMLMode];
|
|
5118
5204
|
/**
|
|
5119
5205
|
* @public
|
|
5120
|
-
* <p>Specifies
|
|
5121
|
-
* access to
|
|
5122
|
-
* information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/
|
|
5123
|
-
* by Using an Amazon Virtual Private Cloud</a>. </p>
|
|
5206
|
+
* <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
|
|
5207
|
+
* have access to. You can control access to and from your resources by configuring a VPC.
|
|
5208
|
+
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to Resources in your Amazon VPC</a>. </p>
|
|
5124
5209
|
*/
|
|
5125
5210
|
export interface VpcConfig {
|
|
5126
5211
|
/**
|
|
5127
5212
|
* @public
|
|
5128
|
-
* <p>The VPC security group IDs, in the form sg-xxxxxxxx
|
|
5129
|
-
* the VPC that is specified in the <code>Subnets</code> field.</p>
|
|
5213
|
+
* <p>The VPC security group IDs, in the form <code>sg-xxxxxxxx</code>. Specify the security
|
|
5214
|
+
* groups for the VPC that is specified in the <code>Subnets</code> field.</p>
|
|
5130
5215
|
*/
|
|
5131
5216
|
SecurityGroupIds: string[] | undefined;
|
|
5132
5217
|
/**
|
|
@@ -5650,18 +5735,58 @@ export interface TextClassificationJobConfig {
|
|
|
5650
5735
|
export interface TextGenerationJobConfig {
|
|
5651
5736
|
/**
|
|
5652
5737
|
* @public
|
|
5653
|
-
* <p>How long a job is allowed to run
|
|
5654
|
-
*
|
|
5738
|
+
* <p>How long a fine-tuning job is allowed to run. For <code>TextGenerationJobConfig</code>
|
|
5739
|
+
* problem types, the <code>MaxRuntimePerTrainingJobInSeconds</code> attribute of <code>AutoMLJobCompletionCriteria</code> defaults to 72h
|
|
5740
|
+
* (259200s).</p>
|
|
5655
5741
|
*/
|
|
5656
5742
|
CompletionCriteria?: AutoMLJobCompletionCriteria;
|
|
5657
5743
|
/**
|
|
5658
5744
|
* @public
|
|
5659
5745
|
* <p>The name of the base model to fine-tune. Autopilot supports fine-tuning a variety of large
|
|
5660
5746
|
* language models. For information on the list of supported models, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-llms-finetuning-models.html#autopilot-llms-finetuning-supported-llms">Text generation models supporting fine-tuning in Autopilot</a>. If no
|
|
5661
|
-
* <code>BaseModelName</code> is provided, the default model used is
|
|
5662
|
-
* </p>
|
|
5747
|
+
* <code>BaseModelName</code> is provided, the default model used is <b>Falcon7BInstruct</b>. </p>
|
|
5663
5748
|
*/
|
|
5664
5749
|
BaseModelName?: string;
|
|
5750
|
+
/**
|
|
5751
|
+
* @public
|
|
5752
|
+
* <p>The hyperparameters used to configure and optimize the learning process of the base
|
|
5753
|
+
* model. You can set any combination of the following hyperparameters for all base models.
|
|
5754
|
+
* For more information on each supported hyperparameter, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-llms-finetuning-set-hyperparameters.html">Optimize
|
|
5755
|
+
* the learning process of your text generation models with hyperparameters</a>.</p>
|
|
5756
|
+
* <ul>
|
|
5757
|
+
* <li>
|
|
5758
|
+
* <p>
|
|
5759
|
+
* <code>"epochCount"</code>: The number of times the model goes through the entire
|
|
5760
|
+
* training dataset. Its value should be a string containing an integer value within the
|
|
5761
|
+
* range of "1" to "10".</p>
|
|
5762
|
+
* </li>
|
|
5763
|
+
* <li>
|
|
5764
|
+
* <p>
|
|
5765
|
+
* <code>"batchSize"</code>: The number of data samples used in each iteration of
|
|
5766
|
+
* training. Its value should be a string containing an integer value within the range
|
|
5767
|
+
* of "1" to "64".</p>
|
|
5768
|
+
* </li>
|
|
5769
|
+
* <li>
|
|
5770
|
+
* <p>
|
|
5771
|
+
* <code>"learningRate"</code>: The step size at which a model's parameters are
|
|
5772
|
+
* updated during training. Its value should be a string containing a floating-point
|
|
5773
|
+
* value within the range of "0" to "1".</p>
|
|
5774
|
+
* </li>
|
|
5775
|
+
* <li>
|
|
5776
|
+
* <p>
|
|
5777
|
+
* <code>"learningRateWarmupSteps"</code>: The number of training steps during which
|
|
5778
|
+
* the learning rate gradually increases before reaching its target or maximum value.
|
|
5779
|
+
* Its value should be a string containing an integer value within the range of "0" to
|
|
5780
|
+
* "250".</p>
|
|
5781
|
+
* </li>
|
|
5782
|
+
* </ul>
|
|
5783
|
+
* <p>Here is an example where all four hyperparameters are configured.</p>
|
|
5784
|
+
* <p>
|
|
5785
|
+
* <code>\{ "epochCount":"5", "learningRate":"0.5", "batchSize": "32",
|
|
5786
|
+
* "learningRateWarmupSteps": "10" \}</code>
|
|
5787
|
+
* </p>
|
|
5788
|
+
*/
|
|
5789
|
+
TextGenerationHyperParameters?: Record<string, string>;
|
|
5665
5790
|
}
|
|
5666
5791
|
/**
|
|
5667
5792
|
* @public
|
|
@@ -7578,33 +7703,366 @@ export interface ClarifyExplainerConfig {
|
|
|
7578
7703
|
*/
|
|
7579
7704
|
ShapConfig: ClarifyShapConfig | undefined;
|
|
7580
7705
|
}
|
|
7581
|
-
/**
|
|
7582
|
-
* @public
|
|
7583
|
-
* <p>A Git repository that SageMaker automatically displays to users for cloning in the JupyterServer application.</p>
|
|
7584
|
-
*/
|
|
7585
|
-
export interface CodeRepository {
|
|
7586
|
-
/**
|
|
7587
|
-
* @public
|
|
7588
|
-
* <p>The URL of the Git repository.</p>
|
|
7589
|
-
*/
|
|
7590
|
-
RepositoryUrl: string | undefined;
|
|
7591
|
-
}
|
|
7592
7706
|
/**
|
|
7593
7707
|
* @public
|
|
7594
7708
|
* @enum
|
|
7595
7709
|
*/
|
|
7596
|
-
export declare const
|
|
7597
|
-
readonly
|
|
7598
|
-
readonly
|
|
7599
|
-
readonly
|
|
7600
|
-
|
|
7601
|
-
|
|
7602
|
-
|
|
7603
|
-
|
|
7604
|
-
|
|
7605
|
-
|
|
7606
|
-
|
|
7607
|
-
|
|
7710
|
+
export declare const ClusterInstanceType: {
|
|
7711
|
+
readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
|
|
7712
|
+
readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
|
|
7713
|
+
readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
|
|
7714
|
+
readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
|
|
7715
|
+
readonly ML_C5N_LARGE: "ml.c5n.large";
|
|
7716
|
+
readonly ML_C5_12XLARGE: "ml.c5.12xlarge";
|
|
7717
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
7718
|
+
readonly ML_C5_24XLARGE: "ml.c5.24xlarge";
|
|
7719
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
7720
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
7721
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
7722
|
+
readonly ML_C5_LARGE: "ml.c5.large";
|
|
7723
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
7724
|
+
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
7725
|
+
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
7726
|
+
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
7727
|
+
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
7728
|
+
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
7729
|
+
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
7730
|
+
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
7731
|
+
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
7732
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
7733
|
+
readonly ML_M5_16XLARGE: "ml.m5.16xlarge";
|
|
7734
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
7735
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
7736
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
7737
|
+
readonly ML_M5_8XLARGE: "ml.m5.8xlarge";
|
|
7738
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
7739
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
7740
|
+
readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
|
|
7741
|
+
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
7742
|
+
readonly ML_P5_48XLARGE: "ml.p5.48xlarge";
|
|
7743
|
+
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
7744
|
+
readonly ML_T3_LARGE: "ml.t3.large";
|
|
7745
|
+
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
7746
|
+
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
7747
|
+
readonly ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge";
|
|
7748
|
+
readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
|
|
7749
|
+
};
|
|
7750
|
+
/**
|
|
7751
|
+
* @public
|
|
7752
|
+
*/
|
|
7753
|
+
export type ClusterInstanceType = (typeof ClusterInstanceType)[keyof typeof ClusterInstanceType];
|
|
7754
|
+
/**
|
|
7755
|
+
* @public
|
|
7756
|
+
* <p>The LifeCycle configuration for a SageMaker HyperPod cluster.</p>
|
|
7757
|
+
*/
|
|
7758
|
+
export interface ClusterLifeCycleConfig {
|
|
7759
|
+
/**
|
|
7760
|
+
* @public
|
|
7761
|
+
* <p>An Amazon S3 bucket path where your LifeCycle scripts are stored.</p>
|
|
7762
|
+
*/
|
|
7763
|
+
SourceS3Uri: string | undefined;
|
|
7764
|
+
/**
|
|
7765
|
+
* @public
|
|
7766
|
+
* <p>The directory of the LifeCycle script under <code>SourceS3Uri</code>. This LifeCycle
|
|
7767
|
+
* script runs during cluster creation.</p>
|
|
7768
|
+
*/
|
|
7769
|
+
OnCreate: string | undefined;
|
|
7770
|
+
}
|
|
7771
|
+
/**
|
|
7772
|
+
* @public
|
|
7773
|
+
* <p>Details of an instance group in a SageMaker HyperPod cluster.</p>
|
|
7774
|
+
*/
|
|
7775
|
+
export interface ClusterInstanceGroupDetails {
|
|
7776
|
+
/**
|
|
7777
|
+
* @public
|
|
7778
|
+
* <p>The number of instances that are currently in the instance group of a
|
|
7779
|
+
* SageMaker HyperPod cluster.</p>
|
|
7780
|
+
*/
|
|
7781
|
+
CurrentCount?: number;
|
|
7782
|
+
/**
|
|
7783
|
+
* @public
|
|
7784
|
+
* <p>The number of instances you specified to add to the instance group of a SageMaker HyperPod cluster.</p>
|
|
7785
|
+
*/
|
|
7786
|
+
TargetCount?: number;
|
|
7787
|
+
/**
|
|
7788
|
+
* @public
|
|
7789
|
+
* <p>The name of the instance group of a SageMaker HyperPod cluster.</p>
|
|
7790
|
+
*/
|
|
7791
|
+
InstanceGroupName?: string;
|
|
7792
|
+
/**
|
|
7793
|
+
* @public
|
|
7794
|
+
* <p>The instance type of the instance group of a SageMaker HyperPod cluster.</p>
|
|
7795
|
+
*/
|
|
7796
|
+
InstanceType?: ClusterInstanceType;
|
|
7797
|
+
/**
|
|
7798
|
+
* @public
|
|
7799
|
+
* <p>Details of LifeCycle configuration for the instance group.</p>
|
|
7800
|
+
*/
|
|
7801
|
+
LifeCycleConfig?: ClusterLifeCycleConfig;
|
|
7802
|
+
/**
|
|
7803
|
+
* @public
|
|
7804
|
+
* <p>The execution role for the instance group to assume.</p>
|
|
7805
|
+
*/
|
|
7806
|
+
ExecutionRole?: string;
|
|
7807
|
+
/**
|
|
7808
|
+
* @public
|
|
7809
|
+
* <p>The number you specified to <code>TreadsPerCore</code> in <code>CreateCluster</code> for
|
|
7810
|
+
* enabling or disabling multithreading. For instance types that support multithreading, you
|
|
7811
|
+
* can specify 1 for disabling multithreading and 2 for enabling multithreading. For more
|
|
7812
|
+
* information, see the reference table of <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cpu-options-supported-instances-values.html">CPU cores and threads per CPU core per instance type</a> in the <i>Amazon Elastic Compute Cloud
|
|
7813
|
+
* User Guide</i>.</p>
|
|
7814
|
+
*/
|
|
7815
|
+
ThreadsPerCore?: number;
|
|
7816
|
+
}
|
|
7817
|
+
/**
|
|
7818
|
+
* @public
|
|
7819
|
+
* <p>The specifications of an instance group that you need to define.</p>
|
|
7820
|
+
*/
|
|
7821
|
+
export interface ClusterInstanceGroupSpecification {
|
|
7822
|
+
/**
|
|
7823
|
+
* @public
|
|
7824
|
+
* <p>Specifies the number of instances to add to the instance group of a SageMaker HyperPod cluster.</p>
|
|
7825
|
+
*/
|
|
7826
|
+
InstanceCount: number | undefined;
|
|
7827
|
+
/**
|
|
7828
|
+
* @public
|
|
7829
|
+
* <p>Specifies the name of the instance group.</p>
|
|
7830
|
+
*/
|
|
7831
|
+
InstanceGroupName: string | undefined;
|
|
7832
|
+
/**
|
|
7833
|
+
* @public
|
|
7834
|
+
* <p>Specifies the instance type of the instance group.</p>
|
|
7835
|
+
*/
|
|
7836
|
+
InstanceType: ClusterInstanceType | undefined;
|
|
7837
|
+
/**
|
|
7838
|
+
* @public
|
|
7839
|
+
* <p>Specifies the LifeCycle configuration for the instance group.</p>
|
|
7840
|
+
*/
|
|
7841
|
+
LifeCycleConfig: ClusterLifeCycleConfig | undefined;
|
|
7842
|
+
/**
|
|
7843
|
+
* @public
|
|
7844
|
+
* <p>Specifies an IAM execution role to be assumed by the instance group.</p>
|
|
7845
|
+
*/
|
|
7846
|
+
ExecutionRole: string | undefined;
|
|
7847
|
+
/**
|
|
7848
|
+
* @public
|
|
7849
|
+
* <p>Specifies the value for <b>Threads per core</b>. For instance types that
|
|
7850
|
+
* support multithreading, you can specify <code>1</code> for disabling multithreading and
|
|
7851
|
+
* <code>2</code> for enabling multithreading. For instance types that doesn't support
|
|
7852
|
+
* multithreading, specify <code>1</code>. For more information, see the reference table of
|
|
7853
|
+
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cpu-options-supported-instances-values.html">CPU cores and threads per CPU core per instance type</a> in the <i>Amazon Elastic Compute Cloud
|
|
7854
|
+
* User Guide</i>.</p>
|
|
7855
|
+
*/
|
|
7856
|
+
ThreadsPerCore?: number;
|
|
7857
|
+
}
|
|
7858
|
+
/**
|
|
7859
|
+
* @public
|
|
7860
|
+
* @enum
|
|
7861
|
+
*/
|
|
7862
|
+
export declare const ClusterInstanceStatus: {
|
|
7863
|
+
readonly FAILURE: "Failure";
|
|
7864
|
+
readonly PENDING: "Pending";
|
|
7865
|
+
readonly RUNNING: "Running";
|
|
7866
|
+
readonly SHUTTING_DOWN: "ShuttingDown";
|
|
7867
|
+
readonly SYSTEM_UPDATING: "SystemUpdating";
|
|
7868
|
+
};
|
|
7869
|
+
/**
|
|
7870
|
+
* @public
|
|
7871
|
+
*/
|
|
7872
|
+
export type ClusterInstanceStatus = (typeof ClusterInstanceStatus)[keyof typeof ClusterInstanceStatus];
|
|
7873
|
+
/**
|
|
7874
|
+
* @public
|
|
7875
|
+
* <p>Details of an instance in a SageMaker HyperPod cluster.</p>
|
|
7876
|
+
*/
|
|
7877
|
+
export interface ClusterInstanceStatusDetails {
|
|
7878
|
+
/**
|
|
7879
|
+
* @public
|
|
7880
|
+
* <p>The status of an instance in a SageMaker HyperPod cluster.</p>
|
|
7881
|
+
*/
|
|
7882
|
+
Status: ClusterInstanceStatus | undefined;
|
|
7883
|
+
/**
|
|
7884
|
+
* @public
|
|
7885
|
+
* <p>The message from an instance in a SageMaker HyperPod cluster.</p>
|
|
7886
|
+
*/
|
|
7887
|
+
Message?: string;
|
|
7888
|
+
}
|
|
7889
|
+
/**
|
|
7890
|
+
* @public
|
|
7891
|
+
* <p>Details of an instance (also called a <i>node</i> interchangeably) in a
|
|
7892
|
+
* SageMaker HyperPod cluster.</p>
|
|
7893
|
+
*/
|
|
7894
|
+
export interface ClusterNodeDetails {
|
|
7895
|
+
/**
|
|
7896
|
+
* @public
|
|
7897
|
+
* <p>The instance group name in which the instance is.</p>
|
|
7898
|
+
*/
|
|
7899
|
+
InstanceGroupName?: string;
|
|
7900
|
+
/**
|
|
7901
|
+
* @public
|
|
7902
|
+
* <p>The ID of the instance.</p>
|
|
7903
|
+
*/
|
|
7904
|
+
InstanceId?: string;
|
|
7905
|
+
/**
|
|
7906
|
+
* @public
|
|
7907
|
+
* <p>The status of the instance.</p>
|
|
7908
|
+
*/
|
|
7909
|
+
InstanceStatus?: ClusterInstanceStatusDetails;
|
|
7910
|
+
/**
|
|
7911
|
+
* @public
|
|
7912
|
+
* <p>The type of the instance.</p>
|
|
7913
|
+
*/
|
|
7914
|
+
InstanceType?: ClusterInstanceType;
|
|
7915
|
+
/**
|
|
7916
|
+
* @public
|
|
7917
|
+
* <p>The time when the instance is launched.</p>
|
|
7918
|
+
*/
|
|
7919
|
+
LaunchTime?: Date;
|
|
7920
|
+
/**
|
|
7921
|
+
* @public
|
|
7922
|
+
* <p>The LifeCycle configuration applied to the instance.</p>
|
|
7923
|
+
*/
|
|
7924
|
+
LifeCycleConfig?: ClusterLifeCycleConfig;
|
|
7925
|
+
/**
|
|
7926
|
+
* @public
|
|
7927
|
+
* <p>The number of threads per CPU core you specified under
|
|
7928
|
+
* <code>CreateCluster</code>.</p>
|
|
7929
|
+
*/
|
|
7930
|
+
ThreadsPerCore?: number;
|
|
7931
|
+
}
|
|
7932
|
+
/**
|
|
7933
|
+
* @public
|
|
7934
|
+
* <p>Lists a summary of the properties of an instance (also called a
|
|
7935
|
+
* <i>node</i> interchangeably) of a SageMaker HyperPod cluster.</p>
|
|
7936
|
+
*/
|
|
7937
|
+
export interface ClusterNodeSummary {
|
|
7938
|
+
/**
|
|
7939
|
+
* @public
|
|
7940
|
+
* <p>The name of the instance group in which the instance is.</p>
|
|
7941
|
+
*/
|
|
7942
|
+
InstanceGroupName: string | undefined;
|
|
7943
|
+
/**
|
|
7944
|
+
* @public
|
|
7945
|
+
* <p>The ID of the instance.</p>
|
|
7946
|
+
*/
|
|
7947
|
+
InstanceId: string | undefined;
|
|
7948
|
+
/**
|
|
7949
|
+
* @public
|
|
7950
|
+
* <p>The type of the instance.</p>
|
|
7951
|
+
*/
|
|
7952
|
+
InstanceType: ClusterInstanceType | undefined;
|
|
7953
|
+
/**
|
|
7954
|
+
* @public
|
|
7955
|
+
* <p>The time when the instance is launched.</p>
|
|
7956
|
+
*/
|
|
7957
|
+
LaunchTime: Date | undefined;
|
|
7958
|
+
/**
|
|
7959
|
+
* @public
|
|
7960
|
+
* <p>The status of the instance.</p>
|
|
7961
|
+
*/
|
|
7962
|
+
InstanceStatus: ClusterInstanceStatusDetails | undefined;
|
|
7963
|
+
}
|
|
7964
|
+
/**
|
|
7965
|
+
* @public
|
|
7966
|
+
* @enum
|
|
7967
|
+
*/
|
|
7968
|
+
export declare const ClusterSortBy: {
|
|
7969
|
+
readonly CREATION_TIME: "CREATION_TIME";
|
|
7970
|
+
readonly NAME: "NAME";
|
|
7971
|
+
};
|
|
7972
|
+
/**
|
|
7973
|
+
* @public
|
|
7974
|
+
*/
|
|
7975
|
+
export type ClusterSortBy = (typeof ClusterSortBy)[keyof typeof ClusterSortBy];
|
|
7976
|
+
/**
|
|
7977
|
+
* @public
|
|
7978
|
+
* @enum
|
|
7979
|
+
*/
|
|
7980
|
+
export declare const ClusterStatus: {
|
|
7981
|
+
readonly CREATING: "Creating";
|
|
7982
|
+
readonly DELETING: "Deleting";
|
|
7983
|
+
readonly FAILED: "Failed";
|
|
7984
|
+
readonly INSERVICE: "InService";
|
|
7985
|
+
readonly ROLLINGBACK: "RollingBack";
|
|
7986
|
+
readonly SYSTEMUPDATING: "SystemUpdating";
|
|
7987
|
+
readonly UPDATING: "Updating";
|
|
7988
|
+
};
|
|
7989
|
+
/**
|
|
7990
|
+
* @public
|
|
7991
|
+
*/
|
|
7992
|
+
export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
|
|
7993
|
+
/**
|
|
7994
|
+
* @public
|
|
7995
|
+
* <p>Lists a summary of the properties of a SageMaker HyperPod cluster.</p>
|
|
7996
|
+
*/
|
|
7997
|
+
export interface ClusterSummary {
|
|
7998
|
+
/**
|
|
7999
|
+
* @public
|
|
8000
|
+
* <p>The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster.</p>
|
|
8001
|
+
*/
|
|
8002
|
+
ClusterArn: string | undefined;
|
|
8003
|
+
/**
|
|
8004
|
+
* @public
|
|
8005
|
+
* <p>The name of the SageMaker HyperPod cluster.</p>
|
|
8006
|
+
*/
|
|
8007
|
+
ClusterName: string | undefined;
|
|
8008
|
+
/**
|
|
8009
|
+
* @public
|
|
8010
|
+
* <p>The time when the SageMaker HyperPod cluster is created.</p>
|
|
8011
|
+
*/
|
|
8012
|
+
CreationTime: Date | undefined;
|
|
8013
|
+
/**
|
|
8014
|
+
* @public
|
|
8015
|
+
* <p>The status of the SageMaker HyperPod cluster.</p>
|
|
8016
|
+
*/
|
|
8017
|
+
ClusterStatus: ClusterStatus | undefined;
|
|
8018
|
+
}
|
|
8019
|
+
/**
|
|
8020
|
+
* @public
|
|
8021
|
+
* <p>The Code Editor application settings.</p>
|
|
8022
|
+
* <p>For more information about Code Editor, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/code-editor.html">Get started with Code
|
|
8023
|
+
* Editor in Amazon SageMaker</a>.</p>
|
|
8024
|
+
*/
|
|
8025
|
+
export interface CodeEditorAppSettings {
|
|
8026
|
+
/**
|
|
8027
|
+
* @public
|
|
8028
|
+
* <p>Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that
|
|
8029
|
+
* the version runs on.</p>
|
|
8030
|
+
*/
|
|
8031
|
+
DefaultResourceSpec?: ResourceSpec;
|
|
8032
|
+
/**
|
|
8033
|
+
* @public
|
|
8034
|
+
* <p>The Amazon Resource Name (ARN) of the Code Editor application
|
|
8035
|
+
* lifecycle configuration.</p>
|
|
8036
|
+
*/
|
|
8037
|
+
LifecycleConfigArns?: string[];
|
|
8038
|
+
}
|
|
8039
|
+
/**
|
|
8040
|
+
* @public
|
|
8041
|
+
* <p>A Git repository that SageMaker automatically displays to users for cloning in the JupyterServer application.</p>
|
|
8042
|
+
*/
|
|
8043
|
+
export interface CodeRepository {
|
|
8044
|
+
/**
|
|
8045
|
+
* @public
|
|
8046
|
+
* <p>The URL of the Git repository.</p>
|
|
8047
|
+
*/
|
|
8048
|
+
RepositoryUrl: string | undefined;
|
|
8049
|
+
}
|
|
8050
|
+
/**
|
|
8051
|
+
* @public
|
|
8052
|
+
* @enum
|
|
8053
|
+
*/
|
|
8054
|
+
export declare const CodeRepositorySortBy: {
|
|
8055
|
+
readonly CREATION_TIME: "CreationTime";
|
|
8056
|
+
readonly LAST_MODIFIED_TIME: "LastModifiedTime";
|
|
8057
|
+
readonly NAME: "Name";
|
|
8058
|
+
};
|
|
8059
|
+
/**
|
|
8060
|
+
* @public
|
|
8061
|
+
*/
|
|
8062
|
+
export type CodeRepositorySortBy = (typeof CodeRepositorySortBy)[keyof typeof CodeRepositorySortBy];
|
|
8063
|
+
/**
|
|
8064
|
+
* @public
|
|
8065
|
+
* @enum
|
|
7608
8066
|
*/
|
|
7609
8067
|
export declare const CodeRepositorySortOrder: {
|
|
7610
8068
|
readonly ASCENDING: "Ascending";
|
|
@@ -8932,52 +9390,18 @@ export interface CreateAlgorithmOutput {
|
|
|
8932
9390
|
}
|
|
8933
9391
|
/**
|
|
8934
9392
|
* @public
|
|
8935
|
-
* <p>Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that
|
|
8936
|
-
* the version runs on.</p>
|
|
8937
9393
|
*/
|
|
8938
|
-
export interface
|
|
9394
|
+
export interface CreateAppRequest {
|
|
8939
9395
|
/**
|
|
8940
9396
|
* @public
|
|
8941
|
-
* <p>The
|
|
9397
|
+
* <p>The domain ID.</p>
|
|
8942
9398
|
*/
|
|
8943
|
-
|
|
9399
|
+
DomainId: string | undefined;
|
|
8944
9400
|
/**
|
|
8945
9401
|
* @public
|
|
8946
|
-
* <p>The
|
|
9402
|
+
* <p>The user profile name. If this value is not set, then <code>SpaceName</code> must be set.</p>
|
|
8947
9403
|
*/
|
|
8948
|
-
|
|
8949
|
-
/**
|
|
8950
|
-
* @public
|
|
8951
|
-
* <p>The instance type that the image version runs on.</p>
|
|
8952
|
-
* <note>
|
|
8953
|
-
* <p>
|
|
8954
|
-
* <b>JupyterServer apps</b> only support the <code>system</code> value.</p>
|
|
8955
|
-
* <p>For <b>KernelGateway apps</b>, the <code>system</code>
|
|
8956
|
-
* value is translated to <code>ml.t3.medium</code>. KernelGateway apps also support all other values for available
|
|
8957
|
-
* instance types.</p>
|
|
8958
|
-
* </note>
|
|
8959
|
-
*/
|
|
8960
|
-
InstanceType?: AppInstanceType;
|
|
8961
|
-
/**
|
|
8962
|
-
* @public
|
|
8963
|
-
* <p> The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.</p>
|
|
8964
|
-
*/
|
|
8965
|
-
LifecycleConfigArn?: string;
|
|
8966
|
-
}
|
|
8967
|
-
/**
|
|
8968
|
-
* @public
|
|
8969
|
-
*/
|
|
8970
|
-
export interface CreateAppRequest {
|
|
8971
|
-
/**
|
|
8972
|
-
* @public
|
|
8973
|
-
* <p>The domain ID.</p>
|
|
8974
|
-
*/
|
|
8975
|
-
DomainId: string | undefined;
|
|
8976
|
-
/**
|
|
8977
|
-
* @public
|
|
8978
|
-
* <p>The user profile name. If this value is not set, then <code>SpaceName</code> must be set.</p>
|
|
8979
|
-
*/
|
|
8980
|
-
UserProfileName?: string;
|
|
9404
|
+
UserProfileName?: string;
|
|
8981
9405
|
/**
|
|
8982
9406
|
* @public
|
|
8983
9407
|
* <p>The type of app.</p>
|
|
@@ -9006,7 +9430,8 @@ export interface CreateAppRequest {
|
|
|
9006
9430
|
ResourceSpec?: ResourceSpec;
|
|
9007
9431
|
/**
|
|
9008
9432
|
* @public
|
|
9009
|
-
* <p>The name of the space. If this value is not set, then <code>UserProfileName</code>
|
|
9433
|
+
* <p>The name of the space. If this value is not set, then <code>UserProfileName</code>
|
|
9434
|
+
* must be set.</p>
|
|
9010
9435
|
*/
|
|
9011
9436
|
SpaceName?: string;
|
|
9012
9437
|
}
|
|
@@ -9054,6 +9479,11 @@ export interface CreateAppImageConfigRequest {
|
|
|
9054
9479
|
* image starts. Once the image runs, all kernels are visible in JupyterLab.</p>
|
|
9055
9480
|
*/
|
|
9056
9481
|
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
9482
|
+
/**
|
|
9483
|
+
* @public
|
|
9484
|
+
* <p>The <code>JupyterLabAppImageConfig</code>. You can only specify one image kernel in the <code>AppImageConfig</code> API. This kernel is shown to users before the image starts. After the image runs, all kernels are visible in JupyterLab.</p>
|
|
9485
|
+
*/
|
|
9486
|
+
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
|
9057
9487
|
}
|
|
9058
9488
|
/**
|
|
9059
9489
|
* @public
|
|
@@ -9340,6 +9770,46 @@ export interface CreateAutoMLJobV2Response {
|
|
|
9340
9770
|
*/
|
|
9341
9771
|
AutoMLJobArn: string | undefined;
|
|
9342
9772
|
}
|
|
9773
|
+
/**
|
|
9774
|
+
* @public
|
|
9775
|
+
*/
|
|
9776
|
+
export interface CreateClusterRequest {
|
|
9777
|
+
/**
|
|
9778
|
+
* @public
|
|
9779
|
+
* <p>The name for the new SageMaker HyperPod cluster.</p>
|
|
9780
|
+
*/
|
|
9781
|
+
ClusterName: string | undefined;
|
|
9782
|
+
/**
|
|
9783
|
+
* @public
|
|
9784
|
+
* <p>The instance groups to be created in the SageMaker HyperPod cluster.</p>
|
|
9785
|
+
*/
|
|
9786
|
+
InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
|
|
9787
|
+
/**
|
|
9788
|
+
* @public
|
|
9789
|
+
* <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
|
|
9790
|
+
* have access to. You can control access to and from your resources by configuring a VPC.
|
|
9791
|
+
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to Resources in your Amazon VPC</a>. </p>
|
|
9792
|
+
*/
|
|
9793
|
+
VpcConfig?: VpcConfig;
|
|
9794
|
+
/**
|
|
9795
|
+
* @public
|
|
9796
|
+
* <p>Custom tags for managing the SageMaker HyperPod cluster as an Amazon Web Services resource. You can
|
|
9797
|
+
* add tags to your cluster in the same way you add them in other Amazon Web Services services
|
|
9798
|
+
* that support tagging. To learn more about tagging Amazon Web Services resources in general,
|
|
9799
|
+
* see <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html">Tagging Amazon Web Services Resources User Guide</a>.</p>
|
|
9800
|
+
*/
|
|
9801
|
+
Tags?: Tag[];
|
|
9802
|
+
}
|
|
9803
|
+
/**
|
|
9804
|
+
* @public
|
|
9805
|
+
*/
|
|
9806
|
+
export interface CreateClusterResponse {
|
|
9807
|
+
/**
|
|
9808
|
+
* @public
|
|
9809
|
+
* <p>The Amazon Resource Name (ARN) of the cluster.</p>
|
|
9810
|
+
*/
|
|
9811
|
+
ClusterArn: string | undefined;
|
|
9812
|
+
}
|
|
9343
9813
|
/**
|
|
9344
9814
|
* @public
|
|
9345
9815
|
*/
|
|
@@ -10223,401 +10693,3 @@ export interface CreateCompilationJobRequest {
|
|
|
10223
10693
|
*/
|
|
10224
10694
|
Tags?: Tag[];
|
|
10225
10695
|
}
|
|
10226
|
-
/**
|
|
10227
|
-
* @public
|
|
10228
|
-
*/
|
|
10229
|
-
export interface CreateCompilationJobResponse {
|
|
10230
|
-
/**
|
|
10231
|
-
* @public
|
|
10232
|
-
* <p>If the action is successful, the service sends back an HTTP 200 response. Amazon SageMaker returns
|
|
10233
|
-
* the following data in JSON format:</p>
|
|
10234
|
-
* <ul>
|
|
10235
|
-
* <li>
|
|
10236
|
-
* <p>
|
|
10237
|
-
* <code>CompilationJobArn</code>: The Amazon Resource Name (ARN) of the compiled
|
|
10238
|
-
* job.</p>
|
|
10239
|
-
* </li>
|
|
10240
|
-
* </ul>
|
|
10241
|
-
*/
|
|
10242
|
-
CompilationJobArn: string | undefined;
|
|
10243
|
-
}
|
|
10244
|
-
/**
|
|
10245
|
-
* @public
|
|
10246
|
-
*/
|
|
10247
|
-
export interface CreateContextRequest {
|
|
10248
|
-
/**
|
|
10249
|
-
* @public
|
|
10250
|
-
* <p>The name of the context. Must be unique to your account in an Amazon Web Services Region.</p>
|
|
10251
|
-
*/
|
|
10252
|
-
ContextName: string | undefined;
|
|
10253
|
-
/**
|
|
10254
|
-
* @public
|
|
10255
|
-
* <p>The source type, ID, and URI.</p>
|
|
10256
|
-
*/
|
|
10257
|
-
Source: ContextSource | undefined;
|
|
10258
|
-
/**
|
|
10259
|
-
* @public
|
|
10260
|
-
* <p>The context type.</p>
|
|
10261
|
-
*/
|
|
10262
|
-
ContextType: string | undefined;
|
|
10263
|
-
/**
|
|
10264
|
-
* @public
|
|
10265
|
-
* <p>The description of the context.</p>
|
|
10266
|
-
*/
|
|
10267
|
-
Description?: string;
|
|
10268
|
-
/**
|
|
10269
|
-
* @public
|
|
10270
|
-
* <p>A list of properties to add to the context.</p>
|
|
10271
|
-
*/
|
|
10272
|
-
Properties?: Record<string, string>;
|
|
10273
|
-
/**
|
|
10274
|
-
* @public
|
|
10275
|
-
* <p>A list of tags to apply to the context.</p>
|
|
10276
|
-
*/
|
|
10277
|
-
Tags?: Tag[];
|
|
10278
|
-
}
|
|
10279
|
-
/**
|
|
10280
|
-
* @public
|
|
10281
|
-
*/
|
|
10282
|
-
export interface CreateContextResponse {
|
|
10283
|
-
/**
|
|
10284
|
-
* @public
|
|
10285
|
-
* <p>The Amazon Resource Name (ARN) of the context.</p>
|
|
10286
|
-
*/
|
|
10287
|
-
ContextArn?: string;
|
|
10288
|
-
}
|
|
10289
|
-
/**
|
|
10290
|
-
* @public
|
|
10291
|
-
* <p>Information about the container that a data quality monitoring job runs.</p>
|
|
10292
|
-
*/
|
|
10293
|
-
export interface DataQualityAppSpecification {
|
|
10294
|
-
/**
|
|
10295
|
-
* @public
|
|
10296
|
-
* <p>The container image that the data quality monitoring job runs.</p>
|
|
10297
|
-
*/
|
|
10298
|
-
ImageUri: string | undefined;
|
|
10299
|
-
/**
|
|
10300
|
-
* @public
|
|
10301
|
-
* <p>The entrypoint for a container used to run a monitoring job.</p>
|
|
10302
|
-
*/
|
|
10303
|
-
ContainerEntrypoint?: string[];
|
|
10304
|
-
/**
|
|
10305
|
-
* @public
|
|
10306
|
-
* <p>The arguments to send to the container that the monitoring job runs.</p>
|
|
10307
|
-
*/
|
|
10308
|
-
ContainerArguments?: string[];
|
|
10309
|
-
/**
|
|
10310
|
-
* @public
|
|
10311
|
-
* <p>An Amazon S3 URI to a script that is called per row prior to running analysis. It can
|
|
10312
|
-
* base64 decode the payload and convert it into a flattened JSON so that the built-in container can use
|
|
10313
|
-
* the converted data. Applicable only for the built-in (first party) containers.</p>
|
|
10314
|
-
*/
|
|
10315
|
-
RecordPreprocessorSourceUri?: string;
|
|
10316
|
-
/**
|
|
10317
|
-
* @public
|
|
10318
|
-
* <p>An Amazon S3 URI to a script that is called after analysis has been performed. Applicable
|
|
10319
|
-
* only for the built-in (first party) containers.</p>
|
|
10320
|
-
*/
|
|
10321
|
-
PostAnalyticsProcessorSourceUri?: string;
|
|
10322
|
-
/**
|
|
10323
|
-
* @public
|
|
10324
|
-
* <p>Sets the environment variables in the container that the monitoring job runs.</p>
|
|
10325
|
-
*/
|
|
10326
|
-
Environment?: Record<string, string>;
|
|
10327
|
-
}
|
|
10328
|
-
/**
|
|
10329
|
-
* @public
|
|
10330
|
-
* <p>The constraints resource for a monitoring job.</p>
|
|
10331
|
-
*/
|
|
10332
|
-
export interface MonitoringConstraintsResource {
|
|
10333
|
-
/**
|
|
10334
|
-
* @public
|
|
10335
|
-
* <p>The Amazon S3 URI for the constraints resource.</p>
|
|
10336
|
-
*/
|
|
10337
|
-
S3Uri?: string;
|
|
10338
|
-
}
|
|
10339
|
-
/**
|
|
10340
|
-
* @public
|
|
10341
|
-
* <p>The statistics resource for a monitoring job.</p>
|
|
10342
|
-
*/
|
|
10343
|
-
export interface MonitoringStatisticsResource {
|
|
10344
|
-
/**
|
|
10345
|
-
* @public
|
|
10346
|
-
* <p>The Amazon S3 URI for the statistics resource.</p>
|
|
10347
|
-
*/
|
|
10348
|
-
S3Uri?: string;
|
|
10349
|
-
}
|
|
10350
|
-
/**
|
|
10351
|
-
* @public
|
|
10352
|
-
* <p>Configuration for monitoring constraints and monitoring statistics. These baseline resources are
|
|
10353
|
-
* compared against the results of the current job from the series of jobs scheduled to collect data
|
|
10354
|
-
* periodically.</p>
|
|
10355
|
-
*/
|
|
10356
|
-
export interface DataQualityBaselineConfig {
|
|
10357
|
-
/**
|
|
10358
|
-
* @public
|
|
10359
|
-
* <p>The name of the job that performs baselining for the data quality monitoring job.</p>
|
|
10360
|
-
*/
|
|
10361
|
-
BaseliningJobName?: string;
|
|
10362
|
-
/**
|
|
10363
|
-
* @public
|
|
10364
|
-
* <p>The constraints resource for a monitoring job.</p>
|
|
10365
|
-
*/
|
|
10366
|
-
ConstraintsResource?: MonitoringConstraintsResource;
|
|
10367
|
-
/**
|
|
10368
|
-
* @public
|
|
10369
|
-
* <p>The statistics resource for a monitoring job.</p>
|
|
10370
|
-
*/
|
|
10371
|
-
StatisticsResource?: MonitoringStatisticsResource;
|
|
10372
|
-
}
|
|
10373
|
-
/**
|
|
10374
|
-
* @public
|
|
10375
|
-
* <p>Input object for the endpoint</p>
|
|
10376
|
-
*/
|
|
10377
|
-
export interface EndpointInput {
|
|
10378
|
-
/**
|
|
10379
|
-
* @public
|
|
10380
|
-
* <p>An endpoint in customer's account which has enabled <code>DataCaptureConfig</code>
|
|
10381
|
-
* enabled.</p>
|
|
10382
|
-
*/
|
|
10383
|
-
EndpointName: string | undefined;
|
|
10384
|
-
/**
|
|
10385
|
-
* @public
|
|
10386
|
-
* <p>Path to the filesystem where the endpoint data is available to the container.</p>
|
|
10387
|
-
*/
|
|
10388
|
-
LocalPath: string | undefined;
|
|
10389
|
-
/**
|
|
10390
|
-
* @public
|
|
10391
|
-
* <p>Whether the <code>Pipe</code> or <code>File</code> is used as the input mode for
|
|
10392
|
-
* transferring data for the monitoring job. <code>Pipe</code> mode is recommended for large
|
|
10393
|
-
* datasets. <code>File</code> mode is useful for small files that fit in memory. Defaults to
|
|
10394
|
-
* <code>File</code>.</p>
|
|
10395
|
-
*/
|
|
10396
|
-
S3InputMode?: ProcessingS3InputMode;
|
|
10397
|
-
/**
|
|
10398
|
-
* @public
|
|
10399
|
-
* <p>Whether input data distributed in Amazon S3 is fully replicated or sharded by an
|
|
10400
|
-
* Amazon S3 key. Defaults to <code>FullyReplicated</code>
|
|
10401
|
-
* </p>
|
|
10402
|
-
*/
|
|
10403
|
-
S3DataDistributionType?: ProcessingS3DataDistributionType;
|
|
10404
|
-
/**
|
|
10405
|
-
* @public
|
|
10406
|
-
* <p>The attributes of the input data that are the input features.</p>
|
|
10407
|
-
*/
|
|
10408
|
-
FeaturesAttribute?: string;
|
|
10409
|
-
/**
|
|
10410
|
-
* @public
|
|
10411
|
-
* <p>The attribute of the input data that represents the ground truth label.</p>
|
|
10412
|
-
*/
|
|
10413
|
-
InferenceAttribute?: string;
|
|
10414
|
-
/**
|
|
10415
|
-
* @public
|
|
10416
|
-
* <p>In a classification problem, the attribute that represents the class probability.</p>
|
|
10417
|
-
*/
|
|
10418
|
-
ProbabilityAttribute?: string;
|
|
10419
|
-
/**
|
|
10420
|
-
* @public
|
|
10421
|
-
* <p>The threshold for the class probability to be evaluated as a positive result.</p>
|
|
10422
|
-
*/
|
|
10423
|
-
ProbabilityThresholdAttribute?: number;
|
|
10424
|
-
/**
|
|
10425
|
-
* @public
|
|
10426
|
-
* <p>If specified, monitoring jobs substract this time from the start time. For information
|
|
10427
|
-
* about using offsets for scheduling monitoring jobs, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-model-quality-schedule.html">Schedule Model
|
|
10428
|
-
* Quality Monitoring Jobs</a>.</p>
|
|
10429
|
-
*/
|
|
10430
|
-
StartTimeOffset?: string;
|
|
10431
|
-
/**
|
|
10432
|
-
* @public
|
|
10433
|
-
* <p>If specified, monitoring jobs substract this time from the end time. For information
|
|
10434
|
-
* about using offsets for scheduling monitoring jobs, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-model-quality-schedule.html">Schedule Model
|
|
10435
|
-
* Quality Monitoring Jobs</a>.</p>
|
|
10436
|
-
*/
|
|
10437
|
-
EndTimeOffset?: string;
|
|
10438
|
-
/**
|
|
10439
|
-
* @public
|
|
10440
|
-
* <p>The attributes of the input data to exclude from the analysis.</p>
|
|
10441
|
-
*/
|
|
10442
|
-
ExcludeFeaturesAttribute?: string;
|
|
10443
|
-
}
|
|
10444
|
-
/**
|
|
10445
|
-
* @public
|
|
10446
|
-
* <p>The input for the data quality monitoring job. Currently endpoints are supported for
|
|
10447
|
-
* input.</p>
|
|
10448
|
-
*/
|
|
10449
|
-
export interface DataQualityJobInput {
|
|
10450
|
-
/**
|
|
10451
|
-
* @public
|
|
10452
|
-
* <p>Input object for the endpoint</p>
|
|
10453
|
-
*/
|
|
10454
|
-
EndpointInput?: EndpointInput;
|
|
10455
|
-
/**
|
|
10456
|
-
* @public
|
|
10457
|
-
* <p>Input object for the batch transform job.</p>
|
|
10458
|
-
*/
|
|
10459
|
-
BatchTransformInput?: BatchTransformInput;
|
|
10460
|
-
}
|
|
10461
|
-
/**
|
|
10462
|
-
* @public
|
|
10463
|
-
* @enum
|
|
10464
|
-
*/
|
|
10465
|
-
export declare const ProcessingS3UploadMode: {
|
|
10466
|
-
readonly CONTINUOUS: "Continuous";
|
|
10467
|
-
readonly END_OF_JOB: "EndOfJob";
|
|
10468
|
-
};
|
|
10469
|
-
/**
|
|
10470
|
-
* @public
|
|
10471
|
-
*/
|
|
10472
|
-
export type ProcessingS3UploadMode = (typeof ProcessingS3UploadMode)[keyof typeof ProcessingS3UploadMode];
|
|
10473
|
-
/**
|
|
10474
|
-
* @public
|
|
10475
|
-
* <p>Information about where and how you want to store the results of a monitoring
|
|
10476
|
-
* job.</p>
|
|
10477
|
-
*/
|
|
10478
|
-
export interface MonitoringS3Output {
|
|
10479
|
-
/**
|
|
10480
|
-
* @public
|
|
10481
|
-
* <p>A URI that identifies the Amazon S3 storage location where Amazon SageMaker
|
|
10482
|
-
* saves the results of a monitoring job.</p>
|
|
10483
|
-
*/
|
|
10484
|
-
S3Uri: string | undefined;
|
|
10485
|
-
/**
|
|
10486
|
-
* @public
|
|
10487
|
-
* <p>The local path to the Amazon S3 storage location where Amazon SageMaker
|
|
10488
|
-
* saves the results of a monitoring job. LocalPath is an absolute path for the output
|
|
10489
|
-
* data.</p>
|
|
10490
|
-
*/
|
|
10491
|
-
LocalPath: string | undefined;
|
|
10492
|
-
/**
|
|
10493
|
-
* @public
|
|
10494
|
-
* <p>Whether to upload the results of the monitoring job continuously or after the job
|
|
10495
|
-
* completes.</p>
|
|
10496
|
-
*/
|
|
10497
|
-
S3UploadMode?: ProcessingS3UploadMode;
|
|
10498
|
-
}
|
|
10499
|
-
/**
|
|
10500
|
-
* @public
|
|
10501
|
-
* <p>The output object for a monitoring job.</p>
|
|
10502
|
-
*/
|
|
10503
|
-
export interface MonitoringOutput {
|
|
10504
|
-
/**
|
|
10505
|
-
* @public
|
|
10506
|
-
* <p>The Amazon S3 storage location where the results of a monitoring job are
|
|
10507
|
-
* saved.</p>
|
|
10508
|
-
*/
|
|
10509
|
-
S3Output: MonitoringS3Output | undefined;
|
|
10510
|
-
}
|
|
10511
|
-
/**
|
|
10512
|
-
* @public
|
|
10513
|
-
* <p>The output configuration for monitoring jobs.</p>
|
|
10514
|
-
*/
|
|
10515
|
-
export interface MonitoringOutputConfig {
|
|
10516
|
-
/**
|
|
10517
|
-
* @public
|
|
10518
|
-
* <p>Monitoring outputs for monitoring jobs. This is where the output of the periodic
|
|
10519
|
-
* monitoring jobs is uploaded.</p>
|
|
10520
|
-
*/
|
|
10521
|
-
MonitoringOutputs: MonitoringOutput[] | undefined;
|
|
10522
|
-
/**
|
|
10523
|
-
* @public
|
|
10524
|
-
* <p>The Key Management Service (KMS) key that Amazon SageMaker uses to
|
|
10525
|
-
* encrypt the model artifacts at rest using Amazon S3 server-side encryption.</p>
|
|
10526
|
-
*/
|
|
10527
|
-
KmsKeyId?: string;
|
|
10528
|
-
}
|
|
10529
|
-
/**
|
|
10530
|
-
* @public
|
|
10531
|
-
* @enum
|
|
10532
|
-
*/
|
|
10533
|
-
export declare const ProcessingInstanceType: {
|
|
10534
|
-
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
10535
|
-
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
10536
|
-
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
10537
|
-
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
10538
|
-
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
10539
|
-
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
10540
|
-
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
10541
|
-
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
10542
|
-
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
10543
|
-
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
10544
|
-
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
10545
|
-
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
10546
|
-
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
10547
|
-
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
10548
|
-
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
10549
|
-
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
10550
|
-
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
10551
|
-
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
10552
|
-
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
10553
|
-
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
10554
|
-
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
10555
|
-
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
10556
|
-
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
10557
|
-
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
10558
|
-
readonly ML_M5_LARGE: "ml.m5.large";
|
|
10559
|
-
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
10560
|
-
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
10561
|
-
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
10562
|
-
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
10563
|
-
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
10564
|
-
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
10565
|
-
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
10566
|
-
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
10567
|
-
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
10568
|
-
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
10569
|
-
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
10570
|
-
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
10571
|
-
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
10572
|
-
readonly ML_R5_LARGE: "ml.r5.large";
|
|
10573
|
-
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
10574
|
-
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
10575
|
-
readonly ML_T3_LARGE: "ml.t3.large";
|
|
10576
|
-
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
10577
|
-
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
10578
|
-
};
|
|
10579
|
-
/**
|
|
10580
|
-
* @public
|
|
10581
|
-
*/
|
|
10582
|
-
export type ProcessingInstanceType = (typeof ProcessingInstanceType)[keyof typeof ProcessingInstanceType];
|
|
10583
|
-
/**
|
|
10584
|
-
* @public
|
|
10585
|
-
* <p>Configuration for the cluster used to run model monitoring jobs.</p>
|
|
10586
|
-
*/
|
|
10587
|
-
export interface MonitoringClusterConfig {
|
|
10588
|
-
/**
|
|
10589
|
-
* @public
|
|
10590
|
-
* <p>The number of ML compute instances to use in the model monitoring job. For distributed
|
|
10591
|
-
* processing jobs, specify a value greater than 1. The default value is 1.</p>
|
|
10592
|
-
*/
|
|
10593
|
-
InstanceCount: number | undefined;
|
|
10594
|
-
/**
|
|
10595
|
-
* @public
|
|
10596
|
-
* <p>The ML compute instance type for the processing job.</p>
|
|
10597
|
-
*/
|
|
10598
|
-
InstanceType: ProcessingInstanceType | undefined;
|
|
10599
|
-
/**
|
|
10600
|
-
* @public
|
|
10601
|
-
* <p>The size of the ML storage volume, in gigabytes, that you want to provision. You must
|
|
10602
|
-
* specify sufficient ML storage for your scenario.</p>
|
|
10603
|
-
*/
|
|
10604
|
-
VolumeSizeInGB: number | undefined;
|
|
10605
|
-
/**
|
|
10606
|
-
* @public
|
|
10607
|
-
* <p>The Key Management Service (KMS) key that Amazon SageMaker uses to
|
|
10608
|
-
* encrypt data on the storage volume attached to the ML compute instance(s) that run the
|
|
10609
|
-
* model monitoring job.</p>
|
|
10610
|
-
*/
|
|
10611
|
-
VolumeKmsKeyId?: string;
|
|
10612
|
-
}
|
|
10613
|
-
/**
|
|
10614
|
-
* @public
|
|
10615
|
-
* <p>Identifies the resources to deploy for a monitoring job.</p>
|
|
10616
|
-
*/
|
|
10617
|
-
export interface MonitoringResources {
|
|
10618
|
-
/**
|
|
10619
|
-
* @public
|
|
10620
|
-
* <p>The configuration for the cluster resources used to run the processing job.</p>
|
|
10621
|
-
*/
|
|
10622
|
-
ClusterConfig: MonitoringClusterConfig | undefined;
|
|
10623
|
-
}
|