@aws-sdk/client-sagemaker 3.301.0 → 3.303.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/dist-cjs/models/models_0.js +870 -958
- package/dist-cjs/models/models_1.js +228 -262
- package/dist-cjs/models/models_2.js +400 -457
- package/dist-cjs/models/models_3.js +232 -283
- package/dist-cjs/models/models_4.js +5 -6
- package/dist-es/models/models_0.js +870 -958
- package/dist-es/models/models_1.js +228 -262
- package/dist-es/models/models_2.js +400 -457
- package/dist-es/models/models_3.js +232 -283
- package/dist-es/models/models_4.js +5 -6
- package/dist-types/models/models_0.d.ts +1320 -880
- package/dist-types/models/models_1.d.ts +402 -232
- package/dist-types/models/models_2.d.ts +685 -400
- package/dist-types/models/models_3.d.ts +487 -232
- package/dist-types/models/models_4.d.ts +10 -5
- package/dist-types/ts3.4/models/models_0.d.ts +1026 -870
- package/dist-types/ts3.4/models/models_1.d.ts +286 -228
- package/dist-types/ts3.4/models/models_2.d.ts +502 -400
- package/dist-types/ts3.4/models/models_3.d.ts +324 -232
- package/dist-types/ts3.4/models/models_4.d.ts +7 -5
- package/package.json +35 -35
|
@@ -103,15 +103,20 @@ export interface ExplainerConfig {
|
|
|
103
103
|
}
|
|
104
104
|
/**
|
|
105
105
|
* @public
|
|
106
|
+
* @enum
|
|
106
107
|
*/
|
|
107
|
-
export declare
|
|
108
|
-
ML_EIA1_LARGE
|
|
109
|
-
ML_EIA1_MEDIUM
|
|
110
|
-
ML_EIA1_XLARGE
|
|
111
|
-
ML_EIA2_LARGE
|
|
112
|
-
ML_EIA2_MEDIUM
|
|
113
|
-
ML_EIA2_XLARGE
|
|
114
|
-
}
|
|
108
|
+
export declare const ProductionVariantAcceleratorType: {
|
|
109
|
+
readonly ML_EIA1_LARGE: "ml.eia1.large";
|
|
110
|
+
readonly ML_EIA1_MEDIUM: "ml.eia1.medium";
|
|
111
|
+
readonly ML_EIA1_XLARGE: "ml.eia1.xlarge";
|
|
112
|
+
readonly ML_EIA2_LARGE: "ml.eia2.large";
|
|
113
|
+
readonly ML_EIA2_MEDIUM: "ml.eia2.medium";
|
|
114
|
+
readonly ML_EIA2_XLARGE: "ml.eia2.xlarge";
|
|
115
|
+
};
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
119
|
+
export type ProductionVariantAcceleratorType = (typeof ProductionVariantAcceleratorType)[keyof typeof ProductionVariantAcceleratorType];
|
|
115
120
|
/**
|
|
116
121
|
* @public
|
|
117
122
|
* <p>Specifies configuration for a core dump from the model container when the process
|
|
@@ -394,12 +399,17 @@ export interface CreateExperimentResponse {
|
|
|
394
399
|
}
|
|
395
400
|
/**
|
|
396
401
|
* @public
|
|
402
|
+
* @enum
|
|
397
403
|
*/
|
|
398
|
-
export declare
|
|
399
|
-
FRACTIONAL
|
|
400
|
-
INTEGRAL
|
|
401
|
-
STRING
|
|
402
|
-
}
|
|
404
|
+
export declare const FeatureType: {
|
|
405
|
+
readonly FRACTIONAL: "Fractional";
|
|
406
|
+
readonly INTEGRAL: "Integral";
|
|
407
|
+
readonly STRING: "String";
|
|
408
|
+
};
|
|
409
|
+
/**
|
|
410
|
+
* @public
|
|
411
|
+
*/
|
|
412
|
+
export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
|
|
403
413
|
/**
|
|
404
414
|
* @public
|
|
405
415
|
* <p>A list of features. You must include <code>FeatureName</code> and
|
|
@@ -469,11 +479,16 @@ export interface S3StorageConfig {
|
|
|
469
479
|
}
|
|
470
480
|
/**
|
|
471
481
|
* @public
|
|
482
|
+
* @enum
|
|
472
483
|
*/
|
|
473
|
-
export declare
|
|
474
|
-
GLUE
|
|
475
|
-
ICEBERG
|
|
476
|
-
}
|
|
484
|
+
export declare const TableFormat: {
|
|
485
|
+
readonly GLUE: "Glue";
|
|
486
|
+
readonly ICEBERG: "Iceberg";
|
|
487
|
+
};
|
|
488
|
+
/**
|
|
489
|
+
* @public
|
|
490
|
+
*/
|
|
491
|
+
export type TableFormat = (typeof TableFormat)[keyof typeof TableFormat];
|
|
477
492
|
/**
|
|
478
493
|
* @public
|
|
479
494
|
* <p>The configuration of an <code>OfflineStore</code>.</p>
|
|
@@ -1705,13 +1720,18 @@ export interface ResourceLimits {
|
|
|
1705
1720
|
}
|
|
1706
1721
|
/**
|
|
1707
1722
|
* @public
|
|
1723
|
+
* @enum
|
|
1708
1724
|
*/
|
|
1709
|
-
export declare
|
|
1710
|
-
BAYESIAN
|
|
1711
|
-
GRID
|
|
1712
|
-
HYPERBAND
|
|
1713
|
-
RANDOM
|
|
1714
|
-
}
|
|
1725
|
+
export declare const HyperParameterTuningJobStrategyType: {
|
|
1726
|
+
readonly BAYESIAN: "Bayesian";
|
|
1727
|
+
readonly GRID: "Grid";
|
|
1728
|
+
readonly HYPERBAND: "Hyperband";
|
|
1729
|
+
readonly RANDOM: "Random";
|
|
1730
|
+
};
|
|
1731
|
+
/**
|
|
1732
|
+
* @public
|
|
1733
|
+
*/
|
|
1734
|
+
export type HyperParameterTuningJobStrategyType = (typeof HyperParameterTuningJobStrategyType)[keyof typeof HyperParameterTuningJobStrategyType];
|
|
1715
1735
|
/**
|
|
1716
1736
|
* @public
|
|
1717
1737
|
* <p>The configuration for <code>Hyperband</code>, a multi-fidelity based hyperparameter
|
|
@@ -1793,11 +1813,16 @@ export interface HyperParameterTuningJobStrategyConfig {
|
|
|
1793
1813
|
}
|
|
1794
1814
|
/**
|
|
1795
1815
|
* @public
|
|
1816
|
+
* @enum
|
|
1796
1817
|
*/
|
|
1797
|
-
export declare
|
|
1798
|
-
AUTO
|
|
1799
|
-
OFF
|
|
1800
|
-
}
|
|
1818
|
+
export declare const TrainingJobEarlyStoppingType: {
|
|
1819
|
+
readonly AUTO: "Auto";
|
|
1820
|
+
readonly OFF: "Off";
|
|
1821
|
+
};
|
|
1822
|
+
/**
|
|
1823
|
+
* @public
|
|
1824
|
+
*/
|
|
1825
|
+
export type TrainingJobEarlyStoppingType = (typeof TrainingJobEarlyStoppingType)[keyof typeof TrainingJobEarlyStoppingType];
|
|
1801
1826
|
/**
|
|
1802
1827
|
* @public
|
|
1803
1828
|
* <p>The job completion criteria.</p>
|
|
@@ -1954,10 +1979,15 @@ export interface HyperParameterAlgorithmSpecification {
|
|
|
1954
1979
|
}
|
|
1955
1980
|
/**
|
|
1956
1981
|
* @public
|
|
1982
|
+
* @enum
|
|
1957
1983
|
*/
|
|
1958
|
-
export declare
|
|
1959
|
-
PRIORITIZED
|
|
1960
|
-
}
|
|
1984
|
+
export declare const HyperParameterTuningAllocationStrategy: {
|
|
1985
|
+
readonly PRIORITIZED: "Prioritized";
|
|
1986
|
+
};
|
|
1987
|
+
/**
|
|
1988
|
+
* @public
|
|
1989
|
+
*/
|
|
1990
|
+
export type HyperParameterTuningAllocationStrategy = (typeof HyperParameterTuningAllocationStrategy)[keyof typeof HyperParameterTuningAllocationStrategy];
|
|
1961
1991
|
/**
|
|
1962
1992
|
* @public
|
|
1963
1993
|
* <p>The configuration for hyperparameter tuning resources for use in training jobs
|
|
@@ -2253,11 +2283,16 @@ export interface ParentHyperParameterTuningJob {
|
|
|
2253
2283
|
}
|
|
2254
2284
|
/**
|
|
2255
2285
|
* @public
|
|
2286
|
+
* @enum
|
|
2256
2287
|
*/
|
|
2257
|
-
export declare
|
|
2258
|
-
IDENTICAL_DATA_AND_ALGORITHM
|
|
2259
|
-
TRANSFER_LEARNING
|
|
2260
|
-
}
|
|
2288
|
+
export declare const HyperParameterTuningJobWarmStartType: {
|
|
2289
|
+
readonly IDENTICAL_DATA_AND_ALGORITHM: "IdenticalDataAndAlgorithm";
|
|
2290
|
+
readonly TRANSFER_LEARNING: "TransferLearning";
|
|
2291
|
+
};
|
|
2292
|
+
/**
|
|
2293
|
+
* @public
|
|
2294
|
+
*/
|
|
2295
|
+
export type HyperParameterTuningJobWarmStartType = (typeof HyperParameterTuningJobWarmStartType)[keyof typeof HyperParameterTuningJobWarmStartType];
|
|
2261
2296
|
/**
|
|
2262
2297
|
* @public
|
|
2263
2298
|
* <p>Specifies the configuration for a hyperparameter tuning job that uses one or more
|
|
@@ -2422,28 +2457,43 @@ export interface CreateImageResponse {
|
|
|
2422
2457
|
}
|
|
2423
2458
|
/**
|
|
2424
2459
|
* @public
|
|
2460
|
+
* @enum
|
|
2425
2461
|
*/
|
|
2426
|
-
export declare
|
|
2427
|
-
INFERENCE
|
|
2428
|
-
NOTEBOOK_KERNEL
|
|
2429
|
-
TRAINING
|
|
2430
|
-
}
|
|
2462
|
+
export declare const JobType: {
|
|
2463
|
+
readonly INFERENCE: "INFERENCE";
|
|
2464
|
+
readonly NOTEBOOK_KERNEL: "NOTEBOOK_KERNEL";
|
|
2465
|
+
readonly TRAINING: "TRAINING";
|
|
2466
|
+
};
|
|
2431
2467
|
/**
|
|
2432
2468
|
* @public
|
|
2433
2469
|
*/
|
|
2434
|
-
export
|
|
2435
|
-
CPU = "CPU",
|
|
2436
|
-
GPU = "GPU"
|
|
2437
|
-
}
|
|
2470
|
+
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
2438
2471
|
/**
|
|
2439
2472
|
* @public
|
|
2473
|
+
* @enum
|
|
2440
2474
|
*/
|
|
2441
|
-
export declare
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2475
|
+
export declare const Processor: {
|
|
2476
|
+
readonly CPU: "CPU";
|
|
2477
|
+
readonly GPU: "GPU";
|
|
2478
|
+
};
|
|
2479
|
+
/**
|
|
2480
|
+
* @public
|
|
2481
|
+
*/
|
|
2482
|
+
export type Processor = (typeof Processor)[keyof typeof Processor];
|
|
2483
|
+
/**
|
|
2484
|
+
* @public
|
|
2485
|
+
* @enum
|
|
2486
|
+
*/
|
|
2487
|
+
export declare const VendorGuidance: {
|
|
2488
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
2489
|
+
readonly NOT_PROVIDED: "NOT_PROVIDED";
|
|
2490
|
+
readonly STABLE: "STABLE";
|
|
2491
|
+
readonly TO_BE_ARCHIVED: "TO_BE_ARCHIVED";
|
|
2492
|
+
};
|
|
2493
|
+
/**
|
|
2494
|
+
* @public
|
|
2495
|
+
*/
|
|
2496
|
+
export type VendorGuidance = (typeof VendorGuidance)[keyof typeof VendorGuidance];
|
|
2447
2497
|
/**
|
|
2448
2498
|
* @public
|
|
2449
2499
|
*/
|
|
@@ -2573,84 +2623,94 @@ export interface InferenceExperimentDataStorageConfig {
|
|
|
2573
2623
|
}
|
|
2574
2624
|
/**
|
|
2575
2625
|
* @public
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2626
|
+
* @enum
|
|
2627
|
+
*/
|
|
2628
|
+
export declare const ModelInfrastructureType: {
|
|
2629
|
+
readonly REAL_TIME_INFERENCE: "RealTimeInference";
|
|
2630
|
+
};
|
|
2631
|
+
/**
|
|
2632
|
+
* @public
|
|
2633
|
+
*/
|
|
2634
|
+
export type ModelInfrastructureType = (typeof ModelInfrastructureType)[keyof typeof ModelInfrastructureType];
|
|
2635
|
+
/**
|
|
2636
|
+
* @public
|
|
2637
|
+
* @enum
|
|
2638
|
+
*/
|
|
2639
|
+
export declare const _InstanceType: {
|
|
2640
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
2641
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
2642
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
2643
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
2644
|
+
readonly ML_C5D_18XLARGE: "ml.c5d.18xlarge";
|
|
2645
|
+
readonly ML_C5D_2XLARGE: "ml.c5d.2xlarge";
|
|
2646
|
+
readonly ML_C5D_4XLARGE: "ml.c5d.4xlarge";
|
|
2647
|
+
readonly ML_C5D_9XLARGE: "ml.c5d.9xlarge";
|
|
2648
|
+
readonly ML_C5D_XLARGE: "ml.c5d.xlarge";
|
|
2649
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
2650
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
2651
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
2652
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
2653
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
2654
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
2655
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
2656
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
2657
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
2658
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
2659
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
2660
|
+
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
2661
|
+
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
2662
|
+
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
2663
|
+
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
2664
|
+
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
2665
|
+
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
2666
|
+
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
2667
|
+
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
2668
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
2669
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
2670
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
2671
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
2672
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
2673
|
+
readonly ML_M5D_12XLARGE: "ml.m5d.12xlarge";
|
|
2674
|
+
readonly ML_M5D_16XLARGE: "ml.m5d.16xlarge";
|
|
2675
|
+
readonly ML_M5D_24XLARGE: "ml.m5d.24xlarge";
|
|
2676
|
+
readonly ML_M5D_2XLARGE: "ml.m5d.2xlarge";
|
|
2677
|
+
readonly ML_M5D_4XLARGE: "ml.m5d.4xlarge";
|
|
2678
|
+
readonly ML_M5D_8XLARGE: "ml.m5d.8xlarge";
|
|
2679
|
+
readonly ML_M5D_LARGE: "ml.m5d.large";
|
|
2680
|
+
readonly ML_M5D_XLARGE: "ml.m5d.xlarge";
|
|
2681
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
2682
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
2683
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
2684
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
2685
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
2686
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
2687
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
2688
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
2689
|
+
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
2690
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
2691
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
2692
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
2693
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
2694
|
+
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
2695
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
2696
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
2697
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
2698
|
+
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
2699
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
2700
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
2701
|
+
readonly ML_T2_2XLARGE: "ml.t2.2xlarge";
|
|
2702
|
+
readonly ML_T2_LARGE: "ml.t2.large";
|
|
2703
|
+
readonly ML_T2_MEDIUM: "ml.t2.medium";
|
|
2704
|
+
readonly ML_T2_XLARGE: "ml.t2.xlarge";
|
|
2705
|
+
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
2706
|
+
readonly ML_T3_LARGE: "ml.t3.large";
|
|
2707
|
+
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
2708
|
+
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
2709
|
+
};
|
|
2710
|
+
/**
|
|
2711
|
+
* @public
|
|
2712
|
+
*/
|
|
2713
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
2654
2714
|
/**
|
|
2655
2715
|
* @public
|
|
2656
2716
|
* <p>The infrastructure configuration for deploying the model to a real-time inference endpoint.</p>
|
|
@@ -2756,10 +2816,15 @@ export interface ShadowModeConfig {
|
|
|
2756
2816
|
}
|
|
2757
2817
|
/**
|
|
2758
2818
|
* @public
|
|
2819
|
+
* @enum
|
|
2759
2820
|
*/
|
|
2760
|
-
export declare
|
|
2761
|
-
SHADOW_MODE
|
|
2762
|
-
}
|
|
2821
|
+
export declare const InferenceExperimentType: {
|
|
2822
|
+
readonly SHADOW_MODE: "ShadowMode";
|
|
2823
|
+
};
|
|
2824
|
+
/**
|
|
2825
|
+
* @public
|
|
2826
|
+
*/
|
|
2827
|
+
export type InferenceExperimentType = (typeof InferenceExperimentType)[keyof typeof InferenceExperimentType];
|
|
2763
2828
|
/**
|
|
2764
2829
|
* @public
|
|
2765
2830
|
*/
|
|
@@ -3039,10 +3104,15 @@ export interface Phase {
|
|
|
3039
3104
|
}
|
|
3040
3105
|
/**
|
|
3041
3106
|
* @public
|
|
3107
|
+
* @enum
|
|
3042
3108
|
*/
|
|
3043
|
-
export declare
|
|
3044
|
-
PHASES
|
|
3045
|
-
}
|
|
3109
|
+
export declare const TrafficType: {
|
|
3110
|
+
readonly PHASES: "PHASES";
|
|
3111
|
+
};
|
|
3112
|
+
/**
|
|
3113
|
+
* @public
|
|
3114
|
+
*/
|
|
3115
|
+
export type TrafficType = (typeof TrafficType)[keyof typeof TrafficType];
|
|
3046
3116
|
/**
|
|
3047
3117
|
* @public
|
|
3048
3118
|
* <p>Defines the traffic pattern of the load test.</p>
|
|
@@ -3157,11 +3227,16 @@ export interface RecommendationJobInputConfig {
|
|
|
3157
3227
|
}
|
|
3158
3228
|
/**
|
|
3159
3229
|
* @public
|
|
3230
|
+
* @enum
|
|
3160
3231
|
*/
|
|
3161
|
-
export declare
|
|
3162
|
-
ADVANCED
|
|
3163
|
-
DEFAULT
|
|
3164
|
-
}
|
|
3232
|
+
export declare const RecommendationJobType: {
|
|
3233
|
+
readonly ADVANCED: "Advanced";
|
|
3234
|
+
readonly DEFAULT: "Default";
|
|
3235
|
+
};
|
|
3236
|
+
/**
|
|
3237
|
+
* @public
|
|
3238
|
+
*/
|
|
3239
|
+
export type RecommendationJobType = (typeof RecommendationJobType)[keyof typeof RecommendationJobType];
|
|
3165
3240
|
/**
|
|
3166
3241
|
* @public
|
|
3167
3242
|
* <p>Provides information about the output configuration for the compiled
|
|
@@ -5384,11 +5459,16 @@ export interface CreateLabelingJobResponse {
|
|
|
5384
5459
|
}
|
|
5385
5460
|
/**
|
|
5386
5461
|
* @public
|
|
5462
|
+
* @enum
|
|
5387
5463
|
*/
|
|
5388
|
-
export declare
|
|
5389
|
-
DIRECT
|
|
5390
|
-
SERIAL
|
|
5391
|
-
}
|
|
5464
|
+
export declare const InferenceExecutionMode: {
|
|
5465
|
+
readonly DIRECT: "Direct";
|
|
5466
|
+
readonly SERIAL: "Serial";
|
|
5467
|
+
};
|
|
5468
|
+
/**
|
|
5469
|
+
* @public
|
|
5470
|
+
*/
|
|
5471
|
+
export type InferenceExecutionMode = (typeof InferenceExecutionMode)[keyof typeof InferenceExecutionMode];
|
|
5392
5472
|
/**
|
|
5393
5473
|
* @public
|
|
5394
5474
|
* <p>Specifies details about how containers in a multi-container endpoint are run.</p>
|
|
@@ -5594,13 +5674,18 @@ export interface CreateModelBiasJobDefinitionResponse {
|
|
|
5594
5674
|
}
|
|
5595
5675
|
/**
|
|
5596
5676
|
* @public
|
|
5677
|
+
* @enum
|
|
5597
5678
|
*/
|
|
5598
|
-
export declare
|
|
5599
|
-
APPROVED
|
|
5600
|
-
ARCHIVED
|
|
5601
|
-
DRAFT
|
|
5602
|
-
PENDINGREVIEW
|
|
5603
|
-
}
|
|
5679
|
+
export declare const ModelCardStatus: {
|
|
5680
|
+
readonly APPROVED: "Approved";
|
|
5681
|
+
readonly ARCHIVED: "Archived";
|
|
5682
|
+
readonly DRAFT: "Draft";
|
|
5683
|
+
readonly PENDINGREVIEW: "PendingReview";
|
|
5684
|
+
};
|
|
5685
|
+
/**
|
|
5686
|
+
* @public
|
|
5687
|
+
*/
|
|
5688
|
+
export type ModelCardStatus = (typeof ModelCardStatus)[keyof typeof ModelCardStatus];
|
|
5604
5689
|
/**
|
|
5605
5690
|
* @public
|
|
5606
5691
|
* <p>Configure the security settings to protect model card data.</p>
|
|
@@ -6206,12 +6291,17 @@ export interface CreateModelPackageGroupOutput {
|
|
|
6206
6291
|
}
|
|
6207
6292
|
/**
|
|
6208
6293
|
* @public
|
|
6294
|
+
* @enum
|
|
6209
6295
|
*/
|
|
6210
|
-
export declare
|
|
6211
|
-
BINARY_CLASSIFICATION
|
|
6212
|
-
MULTICLASS_CLASSIFICATION
|
|
6213
|
-
REGRESSION
|
|
6214
|
-
}
|
|
6296
|
+
export declare const MonitoringProblemType: {
|
|
6297
|
+
readonly BINARY_CLASSIFICATION: "BinaryClassification";
|
|
6298
|
+
readonly MULTICLASS_CLASSIFICATION: "MulticlassClassification";
|
|
6299
|
+
readonly REGRESSION: "Regression";
|
|
6300
|
+
};
|
|
6301
|
+
/**
|
|
6302
|
+
* @public
|
|
6303
|
+
*/
|
|
6304
|
+
export type MonitoringProblemType = (typeof MonitoringProblemType)[keyof typeof MonitoringProblemType];
|
|
6215
6305
|
/**
|
|
6216
6306
|
* @public
|
|
6217
6307
|
* <p>Container image configuration object for the monitoring job.</p>
|
|
@@ -6482,13 +6572,18 @@ export interface MonitoringJobDefinition {
|
|
|
6482
6572
|
}
|
|
6483
6573
|
/**
|
|
6484
6574
|
* @public
|
|
6575
|
+
* @enum
|
|
6485
6576
|
*/
|
|
6486
|
-
export declare
|
|
6487
|
-
DATA_QUALITY
|
|
6488
|
-
MODEL_BIAS
|
|
6489
|
-
MODEL_EXPLAINABILITY
|
|
6490
|
-
MODEL_QUALITY
|
|
6491
|
-
}
|
|
6577
|
+
export declare const MonitoringType: {
|
|
6578
|
+
readonly DATA_QUALITY: "DataQuality";
|
|
6579
|
+
readonly MODEL_BIAS: "ModelBias";
|
|
6580
|
+
readonly MODEL_EXPLAINABILITY: "ModelExplainability";
|
|
6581
|
+
readonly MODEL_QUALITY: "ModelQuality";
|
|
6582
|
+
};
|
|
6583
|
+
/**
|
|
6584
|
+
* @public
|
|
6585
|
+
*/
|
|
6586
|
+
export type MonitoringType = (typeof MonitoringType)[keyof typeof MonitoringType];
|
|
6492
6587
|
/**
|
|
6493
6588
|
* @public
|
|
6494
6589
|
* <p>Configuration details about the monitoring schedule.</p>
|
|
@@ -6606,22 +6701,32 @@ export interface CreateMonitoringScheduleResponse {
|
|
|
6606
6701
|
}
|
|
6607
6702
|
/**
|
|
6608
6703
|
* @public
|
|
6704
|
+
* @enum
|
|
6609
6705
|
*/
|
|
6610
|
-
export declare
|
|
6611
|
-
ML_EIA1_LARGE
|
|
6612
|
-
ML_EIA1_MEDIUM
|
|
6613
|
-
ML_EIA1_XLARGE
|
|
6614
|
-
ML_EIA2_LARGE
|
|
6615
|
-
ML_EIA2_MEDIUM
|
|
6616
|
-
ML_EIA2_XLARGE
|
|
6617
|
-
}
|
|
6706
|
+
export declare const NotebookInstanceAcceleratorType: {
|
|
6707
|
+
readonly ML_EIA1_LARGE: "ml.eia1.large";
|
|
6708
|
+
readonly ML_EIA1_MEDIUM: "ml.eia1.medium";
|
|
6709
|
+
readonly ML_EIA1_XLARGE: "ml.eia1.xlarge";
|
|
6710
|
+
readonly ML_EIA2_LARGE: "ml.eia2.large";
|
|
6711
|
+
readonly ML_EIA2_MEDIUM: "ml.eia2.medium";
|
|
6712
|
+
readonly ML_EIA2_XLARGE: "ml.eia2.xlarge";
|
|
6713
|
+
};
|
|
6618
6714
|
/**
|
|
6619
6715
|
* @public
|
|
6620
6716
|
*/
|
|
6621
|
-
export
|
|
6622
|
-
|
|
6623
|
-
|
|
6624
|
-
|
|
6717
|
+
export type NotebookInstanceAcceleratorType = (typeof NotebookInstanceAcceleratorType)[keyof typeof NotebookInstanceAcceleratorType];
|
|
6718
|
+
/**
|
|
6719
|
+
* @public
|
|
6720
|
+
* @enum
|
|
6721
|
+
*/
|
|
6722
|
+
export declare const DirectInternetAccess: {
|
|
6723
|
+
readonly DISABLED: "Disabled";
|
|
6724
|
+
readonly ENABLED: "Enabled";
|
|
6725
|
+
};
|
|
6726
|
+
/**
|
|
6727
|
+
* @public
|
|
6728
|
+
*/
|
|
6729
|
+
export type DirectInternetAccess = (typeof DirectInternetAccess)[keyof typeof DirectInternetAccess];
|
|
6625
6730
|
/**
|
|
6626
6731
|
* @public
|
|
6627
6732
|
* <p>Information on the IMDS configuration of the notebook instance</p>
|
|
@@ -6634,11 +6739,16 @@ export interface InstanceMetadataServiceConfiguration {
|
|
|
6634
6739
|
}
|
|
6635
6740
|
/**
|
|
6636
6741
|
* @public
|
|
6742
|
+
* @enum
|
|
6637
6743
|
*/
|
|
6638
|
-
export declare
|
|
6639
|
-
DISABLED
|
|
6640
|
-
ENABLED
|
|
6641
|
-
}
|
|
6744
|
+
export declare const RootAccess: {
|
|
6745
|
+
readonly DISABLED: "Disabled";
|
|
6746
|
+
readonly ENABLED: "Enabled";
|
|
6747
|
+
};
|
|
6748
|
+
/**
|
|
6749
|
+
* @public
|
|
6750
|
+
*/
|
|
6751
|
+
export type RootAccess = (typeof RootAccess)[keyof typeof RootAccess];
|
|
6642
6752
|
/**
|
|
6643
6753
|
* @public
|
|
6644
6754
|
*/
|
|
@@ -6997,35 +7107,55 @@ export interface ExperimentConfig {
|
|
|
6997
7107
|
}
|
|
6998
7108
|
/**
|
|
6999
7109
|
* @public
|
|
7110
|
+
* @enum
|
|
7000
7111
|
*/
|
|
7001
|
-
export declare
|
|
7002
|
-
FULLYREPLICATED
|
|
7003
|
-
SHARDEDBYS3KEY
|
|
7004
|
-
}
|
|
7112
|
+
export declare const DataDistributionType: {
|
|
7113
|
+
readonly FULLYREPLICATED: "FullyReplicated";
|
|
7114
|
+
readonly SHARDEDBYS3KEY: "ShardedByS3Key";
|
|
7115
|
+
};
|
|
7005
7116
|
/**
|
|
7006
7117
|
* @public
|
|
7007
7118
|
*/
|
|
7008
|
-
export
|
|
7009
|
-
FILE = "File",
|
|
7010
|
-
PIPE = "Pipe"
|
|
7011
|
-
}
|
|
7119
|
+
export type DataDistributionType = (typeof DataDistributionType)[keyof typeof DataDistributionType];
|
|
7012
7120
|
/**
|
|
7013
7121
|
* @public
|
|
7122
|
+
* @enum
|
|
7014
7123
|
*/
|
|
7015
|
-
export declare
|
|
7016
|
-
|
|
7017
|
-
|
|
7018
|
-
|
|
7019
|
-
SNAPPY = "SNAPPY",
|
|
7020
|
-
ZSTD = "ZSTD"
|
|
7021
|
-
}
|
|
7124
|
+
export declare const InputMode: {
|
|
7125
|
+
readonly FILE: "File";
|
|
7126
|
+
readonly PIPE: "Pipe";
|
|
7127
|
+
};
|
|
7022
7128
|
/**
|
|
7023
7129
|
* @public
|
|
7024
7130
|
*/
|
|
7025
|
-
export
|
|
7026
|
-
|
|
7027
|
-
|
|
7028
|
-
|
|
7131
|
+
export type InputMode = (typeof InputMode)[keyof typeof InputMode];
|
|
7132
|
+
/**
|
|
7133
|
+
* @public
|
|
7134
|
+
* @enum
|
|
7135
|
+
*/
|
|
7136
|
+
export declare const RedshiftResultCompressionType: {
|
|
7137
|
+
readonly BZIP2: "BZIP2";
|
|
7138
|
+
readonly GZIP: "GZIP";
|
|
7139
|
+
readonly NONE: "None";
|
|
7140
|
+
readonly SNAPPY: "SNAPPY";
|
|
7141
|
+
readonly ZSTD: "ZSTD";
|
|
7142
|
+
};
|
|
7143
|
+
/**
|
|
7144
|
+
* @public
|
|
7145
|
+
*/
|
|
7146
|
+
export type RedshiftResultCompressionType = (typeof RedshiftResultCompressionType)[keyof typeof RedshiftResultCompressionType];
|
|
7147
|
+
/**
|
|
7148
|
+
* @public
|
|
7149
|
+
* @enum
|
|
7150
|
+
*/
|
|
7151
|
+
export declare const RedshiftResultFormat: {
|
|
7152
|
+
readonly CSV: "CSV";
|
|
7153
|
+
readonly PARQUET: "PARQUET";
|
|
7154
|
+
};
|
|
7155
|
+
/**
|
|
7156
|
+
* @public
|
|
7157
|
+
*/
|
|
7158
|
+
export type RedshiftResultFormat = (typeof RedshiftResultFormat)[keyof typeof RedshiftResultFormat];
|
|
7029
7159
|
/**
|
|
7030
7160
|
* @public
|
|
7031
7161
|
* <p>Configuration for Redshift Dataset Definition input.</p>
|
|
@@ -7106,18 +7236,28 @@ export interface DatasetDefinition {
|
|
|
7106
7236
|
}
|
|
7107
7237
|
/**
|
|
7108
7238
|
* @public
|
|
7239
|
+
* @enum
|
|
7109
7240
|
*/
|
|
7110
|
-
export declare
|
|
7111
|
-
GZIP
|
|
7112
|
-
NONE
|
|
7113
|
-
}
|
|
7241
|
+
export declare const ProcessingS3CompressionType: {
|
|
7242
|
+
readonly GZIP: "Gzip";
|
|
7243
|
+
readonly NONE: "None";
|
|
7244
|
+
};
|
|
7114
7245
|
/**
|
|
7115
7246
|
* @public
|
|
7116
7247
|
*/
|
|
7117
|
-
export
|
|
7118
|
-
|
|
7119
|
-
|
|
7120
|
-
|
|
7248
|
+
export type ProcessingS3CompressionType = (typeof ProcessingS3CompressionType)[keyof typeof ProcessingS3CompressionType];
|
|
7249
|
+
/**
|
|
7250
|
+
* @public
|
|
7251
|
+
* @enum
|
|
7252
|
+
*/
|
|
7253
|
+
export declare const ProcessingS3DataType: {
|
|
7254
|
+
readonly MANIFEST_FILE: "ManifestFile";
|
|
7255
|
+
readonly S3_PREFIX: "S3Prefix";
|
|
7256
|
+
};
|
|
7257
|
+
/**
|
|
7258
|
+
* @public
|
|
7259
|
+
*/
|
|
7260
|
+
export type ProcessingS3DataType = (typeof ProcessingS3DataType)[keyof typeof ProcessingS3DataType];
|
|
7121
7261
|
/**
|
|
7122
7262
|
* @public
|
|
7123
7263
|
* <p>Configuration for downloading input data from Amazon S3 into the processing container.</p>
|
|
@@ -7543,11 +7683,16 @@ export interface CreateSpaceResponse {
|
|
|
7543
7683
|
}
|
|
7544
7684
|
/**
|
|
7545
7685
|
* @public
|
|
7686
|
+
* @enum
|
|
7546
7687
|
*/
|
|
7547
|
-
export declare
|
|
7548
|
-
JupyterServer
|
|
7549
|
-
KernelGateway
|
|
7550
|
-
}
|
|
7688
|
+
export declare const StudioLifecycleConfigAppType: {
|
|
7689
|
+
readonly JupyterServer: "JupyterServer";
|
|
7690
|
+
readonly KernelGateway: "KernelGateway";
|
|
7691
|
+
};
|
|
7692
|
+
/**
|
|
7693
|
+
* @public
|
|
7694
|
+
*/
|
|
7695
|
+
export type StudioLifecycleConfigAppType = (typeof StudioLifecycleConfigAppType)[keyof typeof StudioLifecycleConfigAppType];
|
|
7551
7696
|
/**
|
|
7552
7697
|
* @public
|
|
7553
7698
|
*/
|
|
@@ -7922,11 +8067,16 @@ export interface CreateTrainingJobResponse {
|
|
|
7922
8067
|
}
|
|
7923
8068
|
/**
|
|
7924
8069
|
* @public
|
|
8070
|
+
* @enum
|
|
7925
8071
|
*/
|
|
7926
|
-
export declare
|
|
7927
|
-
INPUT
|
|
7928
|
-
NONE
|
|
7929
|
-
}
|
|
8072
|
+
export declare const JoinSource: {
|
|
8073
|
+
readonly INPUT: "Input";
|
|
8074
|
+
readonly NONE: "None";
|
|
8075
|
+
};
|
|
8076
|
+
/**
|
|
8077
|
+
* @public
|
|
8078
|
+
*/
|
|
8079
|
+
export type JoinSource = (typeof JoinSource)[keyof typeof JoinSource];
|
|
7930
8080
|
/**
|
|
7931
8081
|
* @public
|
|
7932
8082
|
* <p>The data structure used to specify the data to be used for inference in a batch
|
|
@@ -8238,14 +8388,19 @@ export declare namespace TrialComponentParameterValue {
|
|
|
8238
8388
|
}
|
|
8239
8389
|
/**
|
|
8240
8390
|
* @public
|
|
8391
|
+
* @enum
|
|
8241
8392
|
*/
|
|
8242
|
-
export declare
|
|
8243
|
-
COMPLETED
|
|
8244
|
-
FAILED
|
|
8245
|
-
IN_PROGRESS
|
|
8246
|
-
STOPPED
|
|
8247
|
-
STOPPING
|
|
8248
|
-
}
|
|
8393
|
+
export declare const TrialComponentPrimaryStatus: {
|
|
8394
|
+
readonly COMPLETED: "Completed";
|
|
8395
|
+
readonly FAILED: "Failed";
|
|
8396
|
+
readonly IN_PROGRESS: "InProgress";
|
|
8397
|
+
readonly STOPPED: "Stopped";
|
|
8398
|
+
readonly STOPPING: "Stopping";
|
|
8399
|
+
};
|
|
8400
|
+
/**
|
|
8401
|
+
* @public
|
|
8402
|
+
*/
|
|
8403
|
+
export type TrialComponentPrimaryStatus = (typeof TrialComponentPrimaryStatus)[keyof typeof TrialComponentPrimaryStatus];
|
|
8249
8404
|
/**
|
|
8250
8405
|
* @public
|
|
8251
8406
|
* <p>The status of the trial component.</p>
|
|
@@ -8630,15 +8785,20 @@ export interface DataCaptureConfigSummary {
|
|
|
8630
8785
|
}
|
|
8631
8786
|
/**
|
|
8632
8787
|
* @public
|
|
8788
|
+
* @enum
|
|
8633
8789
|
*/
|
|
8634
|
-
export declare
|
|
8635
|
-
ERROR
|
|
8636
|
-
IN_PROGRESS
|
|
8637
|
-
ISSUES_FOUND
|
|
8638
|
-
NO_ISSUES_FOUND
|
|
8639
|
-
STOPPED
|
|
8640
|
-
STOPPING
|
|
8641
|
-
}
|
|
8790
|
+
export declare const RuleEvaluationStatus: {
|
|
8791
|
+
readonly ERROR: "Error";
|
|
8792
|
+
readonly IN_PROGRESS: "InProgress";
|
|
8793
|
+
readonly ISSUES_FOUND: "IssuesFound";
|
|
8794
|
+
readonly NO_ISSUES_FOUND: "NoIssuesFound";
|
|
8795
|
+
readonly STOPPED: "Stopped";
|
|
8796
|
+
readonly STOPPING: "Stopping";
|
|
8797
|
+
};
|
|
8798
|
+
/**
|
|
8799
|
+
* @public
|
|
8800
|
+
*/
|
|
8801
|
+
export type RuleEvaluationStatus = (typeof RuleEvaluationStatus)[keyof typeof RuleEvaluationStatus];
|
|
8642
8802
|
/**
|
|
8643
8803
|
* @public
|
|
8644
8804
|
* <p>Information about the status of the rule evaluation.</p>
|
|
@@ -8821,11 +8981,16 @@ export interface DeleteDeviceFleetRequest {
|
|
|
8821
8981
|
}
|
|
8822
8982
|
/**
|
|
8823
8983
|
* @public
|
|
8984
|
+
* @enum
|
|
8824
8985
|
*/
|
|
8825
|
-
export declare
|
|
8826
|
-
Delete
|
|
8827
|
-
Retain
|
|
8828
|
-
}
|
|
8986
|
+
export declare const RetentionType: {
|
|
8987
|
+
readonly Delete: "Delete";
|
|
8988
|
+
readonly Retain: "Retain";
|
|
8989
|
+
};
|
|
8990
|
+
/**
|
|
8991
|
+
* @public
|
|
8992
|
+
*/
|
|
8993
|
+
export type RetentionType = (typeof RetentionType)[keyof typeof RetentionType];
|
|
8829
8994
|
/**
|
|
8830
8995
|
* @public
|
|
8831
8996
|
* <p>The retention policy for data stored on an Amazon Elastic File System (EFS) volume.</p>
|
|
@@ -8945,11 +9110,16 @@ export interface DeleteHubRequest {
|
|
|
8945
9110
|
}
|
|
8946
9111
|
/**
|
|
8947
9112
|
* @public
|
|
9113
|
+
* @enum
|
|
8948
9114
|
*/
|
|
8949
|
-
export declare
|
|
8950
|
-
MODEL
|
|
8951
|
-
NOTEBOOK
|
|
8952
|
-
}
|
|
9115
|
+
export declare const HubContentType: {
|
|
9116
|
+
readonly MODEL: "Model";
|
|
9117
|
+
readonly NOTEBOOK: "Notebook";
|
|
9118
|
+
};
|
|
9119
|
+
/**
|
|
9120
|
+
* @public
|
|
9121
|
+
*/
|
|
9122
|
+
export type HubContentType = (typeof HubContentType)[keyof typeof HubContentType];
|
|
8953
9123
|
/**
|
|
8954
9124
|
* @public
|
|
8955
9125
|
*/
|