@aws-sdk/client-sagemaker 3.301.0 → 3.306.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 +876 -960
- 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-cjs/protocols/Aws_json1_1.js +26 -0
- package/dist-es/models/models_0.js +874 -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-es/protocols/Aws_json1_1.js +26 -0
- package/dist-types/SageMaker.d.ts +3 -9
- package/dist-types/commands/CreateAutoMLJobCommand.d.ts +1 -3
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +2 -6
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +5 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +1379 -966
- package/dist-types/models/models_1.d.ts +429 -245
- package/dist-types/models/models_2.d.ts +693 -464
- package/dist-types/models/models_3.d.ts +550 -248
- package/dist-types/models/models_4.d.ts +26 -9
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateAppImageConfigCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +1035 -875
- package/dist-types/ts3.4/models/models_1.d.ts +292 -230
- package/dist-types/ts3.4/models/models_2.d.ts +504 -415
- package/dist-types/ts3.4/models/models_3.d.ts +341 -238
- package/dist-types/ts3.4/models/models_4.d.ts +13 -6
- package/package.json +35 -35
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AnnotationConsolidationConfig, AppSpecification, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AwsManagedHumanLoopRequestSource, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BestObjectiveNotImproving, Bias, CaptureContentTypeHeader, CaptureOption, CaptureStatus, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, ClarifyExplainerConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, ContainerDefinition, ContentClassifier, ContinuousParameterRange, ConvergenceDetected,
|
|
2
|
+
import { AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AnnotationConsolidationConfig, AppSpecification, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AutoRollbackConfig, AwsManagedHumanLoopRequestSource, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CaptureContentTypeHeader, CaptureOption, CaptureStatus, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, ClarifyExplainerConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, ContainerDefinition, ContentClassifier, ContinuousParameterRange, ConvergenceDetected, EndpointInput, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, JupyterServerAppSettings, KernelGatewayAppSettings, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, OutputDataConfig, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariantInstanceType, ResourceConfig, StoppingCondition, Tag, TrainingInputMode, TrainingInstanceType, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserSettings, VpcConfig } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* <p>The deployment configuration for an endpoint, which contains the desired deployment
|
|
6
|
+
* strategy and rollback configurations.</p>
|
|
7
|
+
*/
|
|
8
|
+
export interface DeploymentConfig {
|
|
9
|
+
/**
|
|
10
|
+
* <p>Update policy for a blue/green deployment. If this update policy is specified, SageMaker
|
|
11
|
+
* creates a new fleet during the deployment while maintaining the old fleet. SageMaker flips
|
|
12
|
+
* traffic to the new fleet according to the specified traffic routing configuration. Only
|
|
13
|
+
* one update policy should be used in the deployment configuration. If no update policy is
|
|
14
|
+
* specified, SageMaker uses a blue/green deployment strategy with all at once traffic shifting
|
|
15
|
+
* by default.</p>
|
|
16
|
+
*/
|
|
17
|
+
BlueGreenUpdatePolicy: BlueGreenUpdatePolicy | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>Automatic rollback configuration for handling endpoint deployment failures and
|
|
20
|
+
* recovery.</p>
|
|
21
|
+
*/
|
|
22
|
+
AutoRollbackConfiguration?: AutoRollbackConfig;
|
|
23
|
+
}
|
|
3
24
|
/**
|
|
4
25
|
* @public
|
|
5
26
|
*/
|
|
@@ -103,15 +124,20 @@ export interface ExplainerConfig {
|
|
|
103
124
|
}
|
|
104
125
|
/**
|
|
105
126
|
* @public
|
|
127
|
+
* @enum
|
|
106
128
|
*/
|
|
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
|
-
}
|
|
129
|
+
export declare const ProductionVariantAcceleratorType: {
|
|
130
|
+
readonly ML_EIA1_LARGE: "ml.eia1.large";
|
|
131
|
+
readonly ML_EIA1_MEDIUM: "ml.eia1.medium";
|
|
132
|
+
readonly ML_EIA1_XLARGE: "ml.eia1.xlarge";
|
|
133
|
+
readonly ML_EIA2_LARGE: "ml.eia2.large";
|
|
134
|
+
readonly ML_EIA2_MEDIUM: "ml.eia2.medium";
|
|
135
|
+
readonly ML_EIA2_XLARGE: "ml.eia2.xlarge";
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
export type ProductionVariantAcceleratorType = (typeof ProductionVariantAcceleratorType)[keyof typeof ProductionVariantAcceleratorType];
|
|
115
141
|
/**
|
|
116
142
|
* @public
|
|
117
143
|
* <p>Specifies configuration for a core dump from the model container when the process
|
|
@@ -394,12 +420,17 @@ export interface CreateExperimentResponse {
|
|
|
394
420
|
}
|
|
395
421
|
/**
|
|
396
422
|
* @public
|
|
423
|
+
* @enum
|
|
397
424
|
*/
|
|
398
|
-
export declare
|
|
399
|
-
FRACTIONAL
|
|
400
|
-
INTEGRAL
|
|
401
|
-
STRING
|
|
402
|
-
}
|
|
425
|
+
export declare const FeatureType: {
|
|
426
|
+
readonly FRACTIONAL: "Fractional";
|
|
427
|
+
readonly INTEGRAL: "Integral";
|
|
428
|
+
readonly STRING: "String";
|
|
429
|
+
};
|
|
430
|
+
/**
|
|
431
|
+
* @public
|
|
432
|
+
*/
|
|
433
|
+
export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
|
|
403
434
|
/**
|
|
404
435
|
* @public
|
|
405
436
|
* <p>A list of features. You must include <code>FeatureName</code> and
|
|
@@ -469,11 +500,16 @@ export interface S3StorageConfig {
|
|
|
469
500
|
}
|
|
470
501
|
/**
|
|
471
502
|
* @public
|
|
503
|
+
* @enum
|
|
472
504
|
*/
|
|
473
|
-
export declare
|
|
474
|
-
GLUE
|
|
475
|
-
ICEBERG
|
|
476
|
-
}
|
|
505
|
+
export declare const TableFormat: {
|
|
506
|
+
readonly GLUE: "Glue";
|
|
507
|
+
readonly ICEBERG: "Iceberg";
|
|
508
|
+
};
|
|
509
|
+
/**
|
|
510
|
+
* @public
|
|
511
|
+
*/
|
|
512
|
+
export type TableFormat = (typeof TableFormat)[keyof typeof TableFormat];
|
|
477
513
|
/**
|
|
478
514
|
* @public
|
|
479
515
|
* <p>The configuration of an <code>OfflineStore</code>.</p>
|
|
@@ -1705,13 +1741,18 @@ export interface ResourceLimits {
|
|
|
1705
1741
|
}
|
|
1706
1742
|
/**
|
|
1707
1743
|
* @public
|
|
1744
|
+
* @enum
|
|
1708
1745
|
*/
|
|
1709
|
-
export declare
|
|
1710
|
-
BAYESIAN
|
|
1711
|
-
GRID
|
|
1712
|
-
HYPERBAND
|
|
1713
|
-
RANDOM
|
|
1714
|
-
}
|
|
1746
|
+
export declare const HyperParameterTuningJobStrategyType: {
|
|
1747
|
+
readonly BAYESIAN: "Bayesian";
|
|
1748
|
+
readonly GRID: "Grid";
|
|
1749
|
+
readonly HYPERBAND: "Hyperband";
|
|
1750
|
+
readonly RANDOM: "Random";
|
|
1751
|
+
};
|
|
1752
|
+
/**
|
|
1753
|
+
* @public
|
|
1754
|
+
*/
|
|
1755
|
+
export type HyperParameterTuningJobStrategyType = (typeof HyperParameterTuningJobStrategyType)[keyof typeof HyperParameterTuningJobStrategyType];
|
|
1715
1756
|
/**
|
|
1716
1757
|
* @public
|
|
1717
1758
|
* <p>The configuration for <code>Hyperband</code>, a multi-fidelity based hyperparameter
|
|
@@ -1734,9 +1775,7 @@ export interface HyperbandStrategyConfig {
|
|
|
1734
1775
|
* value, it is stopped. If a value for <code>MaxResource</code> is not provided, and
|
|
1735
1776
|
* <code>Hyperband</code> is selected as the hyperparameter tuning strategy,
|
|
1736
1777
|
* <code>HyperbandTrainingJ</code> attempts to infer <code>MaxResource</code> from the
|
|
1737
|
-
* following keys (if present) in <
|
|
1738
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTrainingJobDefinition.html#sagemaker-Type-HyperParameterTrainingJobDefinition-StaticHyperParameters">StaticsHyperParameters</a>
|
|
1739
|
-
* </code>:</p>
|
|
1778
|
+
* following keys (if present) in <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTrainingJobDefinition.html#sagemaker-Type-HyperParameterTrainingJobDefinition-StaticHyperParameters">StaticsHyperParameters</a>:</p>
|
|
1740
1779
|
* <ul>
|
|
1741
1780
|
* <li>
|
|
1742
1781
|
* <p>
|
|
@@ -1793,11 +1832,16 @@ export interface HyperParameterTuningJobStrategyConfig {
|
|
|
1793
1832
|
}
|
|
1794
1833
|
/**
|
|
1795
1834
|
* @public
|
|
1835
|
+
* @enum
|
|
1796
1836
|
*/
|
|
1797
|
-
export declare
|
|
1798
|
-
AUTO
|
|
1799
|
-
OFF
|
|
1800
|
-
}
|
|
1837
|
+
export declare const TrainingJobEarlyStoppingType: {
|
|
1838
|
+
readonly AUTO: "Auto";
|
|
1839
|
+
readonly OFF: "Off";
|
|
1840
|
+
};
|
|
1841
|
+
/**
|
|
1842
|
+
* @public
|
|
1843
|
+
*/
|
|
1844
|
+
export type TrainingJobEarlyStoppingType = (typeof TrainingJobEarlyStoppingType)[keyof typeof TrainingJobEarlyStoppingType];
|
|
1801
1845
|
/**
|
|
1802
1846
|
* @public
|
|
1803
1847
|
* <p>The job completion criteria.</p>
|
|
@@ -1899,8 +1943,8 @@ export interface HyperParameterAlgorithmSpecification {
|
|
|
1899
1943
|
* information about Docker registry paths for built-in algorithms, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-algo-docker-registry-paths.html">Algorithms
|
|
1900
1944
|
* Provided by Amazon SageMaker: Common Parameters</a>. SageMaker supports both
|
|
1901
1945
|
* <code>registry/repository[:tag]</code> and <code>registry/repository[@digest]</code>
|
|
1902
|
-
* image path formats. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with
|
|
1903
|
-
*
|
|
1946
|
+
* image path formats. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with
|
|
1947
|
+
* Amazon SageMaker</a>.</p>
|
|
1904
1948
|
*/
|
|
1905
1949
|
TrainingImage?: string;
|
|
1906
1950
|
/**
|
|
@@ -1954,10 +1998,15 @@ export interface HyperParameterAlgorithmSpecification {
|
|
|
1954
1998
|
}
|
|
1955
1999
|
/**
|
|
1956
2000
|
* @public
|
|
2001
|
+
* @enum
|
|
1957
2002
|
*/
|
|
1958
|
-
export declare
|
|
1959
|
-
PRIORITIZED
|
|
1960
|
-
}
|
|
2003
|
+
export declare const HyperParameterTuningAllocationStrategy: {
|
|
2004
|
+
readonly PRIORITIZED: "Prioritized";
|
|
2005
|
+
};
|
|
2006
|
+
/**
|
|
2007
|
+
* @public
|
|
2008
|
+
*/
|
|
2009
|
+
export type HyperParameterTuningAllocationStrategy = (typeof HyperParameterTuningAllocationStrategy)[keyof typeof HyperParameterTuningAllocationStrategy];
|
|
1961
2010
|
/**
|
|
1962
2011
|
* @public
|
|
1963
2012
|
* <p>The configuration for hyperparameter tuning resources for use in training jobs
|
|
@@ -2253,11 +2302,16 @@ export interface ParentHyperParameterTuningJob {
|
|
|
2253
2302
|
}
|
|
2254
2303
|
/**
|
|
2255
2304
|
* @public
|
|
2305
|
+
* @enum
|
|
2256
2306
|
*/
|
|
2257
|
-
export declare
|
|
2258
|
-
IDENTICAL_DATA_AND_ALGORITHM
|
|
2259
|
-
TRANSFER_LEARNING
|
|
2260
|
-
}
|
|
2307
|
+
export declare const HyperParameterTuningJobWarmStartType: {
|
|
2308
|
+
readonly IDENTICAL_DATA_AND_ALGORITHM: "IdenticalDataAndAlgorithm";
|
|
2309
|
+
readonly TRANSFER_LEARNING: "TransferLearning";
|
|
2310
|
+
};
|
|
2311
|
+
/**
|
|
2312
|
+
* @public
|
|
2313
|
+
*/
|
|
2314
|
+
export type HyperParameterTuningJobWarmStartType = (typeof HyperParameterTuningJobWarmStartType)[keyof typeof HyperParameterTuningJobWarmStartType];
|
|
2261
2315
|
/**
|
|
2262
2316
|
* @public
|
|
2263
2317
|
* <p>Specifies the configuration for a hyperparameter tuning job that uses one or more
|
|
@@ -2422,28 +2476,43 @@ export interface CreateImageResponse {
|
|
|
2422
2476
|
}
|
|
2423
2477
|
/**
|
|
2424
2478
|
* @public
|
|
2479
|
+
* @enum
|
|
2425
2480
|
*/
|
|
2426
|
-
export declare
|
|
2427
|
-
INFERENCE
|
|
2428
|
-
NOTEBOOK_KERNEL
|
|
2429
|
-
TRAINING
|
|
2430
|
-
}
|
|
2481
|
+
export declare const JobType: {
|
|
2482
|
+
readonly INFERENCE: "INFERENCE";
|
|
2483
|
+
readonly NOTEBOOK_KERNEL: "NOTEBOOK_KERNEL";
|
|
2484
|
+
readonly TRAINING: "TRAINING";
|
|
2485
|
+
};
|
|
2431
2486
|
/**
|
|
2432
2487
|
* @public
|
|
2433
2488
|
*/
|
|
2434
|
-
export
|
|
2435
|
-
CPU = "CPU",
|
|
2436
|
-
GPU = "GPU"
|
|
2437
|
-
}
|
|
2489
|
+
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
2438
2490
|
/**
|
|
2439
2491
|
* @public
|
|
2492
|
+
* @enum
|
|
2440
2493
|
*/
|
|
2441
|
-
export declare
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2494
|
+
export declare const Processor: {
|
|
2495
|
+
readonly CPU: "CPU";
|
|
2496
|
+
readonly GPU: "GPU";
|
|
2497
|
+
};
|
|
2498
|
+
/**
|
|
2499
|
+
* @public
|
|
2500
|
+
*/
|
|
2501
|
+
export type Processor = (typeof Processor)[keyof typeof Processor];
|
|
2502
|
+
/**
|
|
2503
|
+
* @public
|
|
2504
|
+
* @enum
|
|
2505
|
+
*/
|
|
2506
|
+
export declare const VendorGuidance: {
|
|
2507
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
2508
|
+
readonly NOT_PROVIDED: "NOT_PROVIDED";
|
|
2509
|
+
readonly STABLE: "STABLE";
|
|
2510
|
+
readonly TO_BE_ARCHIVED: "TO_BE_ARCHIVED";
|
|
2511
|
+
};
|
|
2512
|
+
/**
|
|
2513
|
+
* @public
|
|
2514
|
+
*/
|
|
2515
|
+
export type VendorGuidance = (typeof VendorGuidance)[keyof typeof VendorGuidance];
|
|
2447
2516
|
/**
|
|
2448
2517
|
* @public
|
|
2449
2518
|
*/
|
|
@@ -2573,84 +2642,94 @@ export interface InferenceExperimentDataStorageConfig {
|
|
|
2573
2642
|
}
|
|
2574
2643
|
/**
|
|
2575
2644
|
* @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
|
-
|
|
2645
|
+
* @enum
|
|
2646
|
+
*/
|
|
2647
|
+
export declare const ModelInfrastructureType: {
|
|
2648
|
+
readonly REAL_TIME_INFERENCE: "RealTimeInference";
|
|
2649
|
+
};
|
|
2650
|
+
/**
|
|
2651
|
+
* @public
|
|
2652
|
+
*/
|
|
2653
|
+
export type ModelInfrastructureType = (typeof ModelInfrastructureType)[keyof typeof ModelInfrastructureType];
|
|
2654
|
+
/**
|
|
2655
|
+
* @public
|
|
2656
|
+
* @enum
|
|
2657
|
+
*/
|
|
2658
|
+
export declare const _InstanceType: {
|
|
2659
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
2660
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
2661
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
2662
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
2663
|
+
readonly ML_C5D_18XLARGE: "ml.c5d.18xlarge";
|
|
2664
|
+
readonly ML_C5D_2XLARGE: "ml.c5d.2xlarge";
|
|
2665
|
+
readonly ML_C5D_4XLARGE: "ml.c5d.4xlarge";
|
|
2666
|
+
readonly ML_C5D_9XLARGE: "ml.c5d.9xlarge";
|
|
2667
|
+
readonly ML_C5D_XLARGE: "ml.c5d.xlarge";
|
|
2668
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
2669
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
2670
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
2671
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
2672
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
2673
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
2674
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
2675
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
2676
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
2677
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
2678
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
2679
|
+
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
2680
|
+
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
2681
|
+
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
2682
|
+
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
2683
|
+
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
2684
|
+
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
2685
|
+
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
2686
|
+
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
2687
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
2688
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
2689
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
2690
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
2691
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
2692
|
+
readonly ML_M5D_12XLARGE: "ml.m5d.12xlarge";
|
|
2693
|
+
readonly ML_M5D_16XLARGE: "ml.m5d.16xlarge";
|
|
2694
|
+
readonly ML_M5D_24XLARGE: "ml.m5d.24xlarge";
|
|
2695
|
+
readonly ML_M5D_2XLARGE: "ml.m5d.2xlarge";
|
|
2696
|
+
readonly ML_M5D_4XLARGE: "ml.m5d.4xlarge";
|
|
2697
|
+
readonly ML_M5D_8XLARGE: "ml.m5d.8xlarge";
|
|
2698
|
+
readonly ML_M5D_LARGE: "ml.m5d.large";
|
|
2699
|
+
readonly ML_M5D_XLARGE: "ml.m5d.xlarge";
|
|
2700
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
2701
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
2702
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
2703
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
2704
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
2705
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
2706
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
2707
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
2708
|
+
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
2709
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
2710
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
2711
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
2712
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
2713
|
+
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
2714
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
2715
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
2716
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
2717
|
+
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
2718
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
2719
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
2720
|
+
readonly ML_T2_2XLARGE: "ml.t2.2xlarge";
|
|
2721
|
+
readonly ML_T2_LARGE: "ml.t2.large";
|
|
2722
|
+
readonly ML_T2_MEDIUM: "ml.t2.medium";
|
|
2723
|
+
readonly ML_T2_XLARGE: "ml.t2.xlarge";
|
|
2724
|
+
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
2725
|
+
readonly ML_T3_LARGE: "ml.t3.large";
|
|
2726
|
+
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
2727
|
+
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
2728
|
+
};
|
|
2729
|
+
/**
|
|
2730
|
+
* @public
|
|
2731
|
+
*/
|
|
2732
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
2654
2733
|
/**
|
|
2655
2734
|
* @public
|
|
2656
2735
|
* <p>The infrastructure configuration for deploying the model to a real-time inference endpoint.</p>
|
|
@@ -2756,10 +2835,15 @@ export interface ShadowModeConfig {
|
|
|
2756
2835
|
}
|
|
2757
2836
|
/**
|
|
2758
2837
|
* @public
|
|
2838
|
+
* @enum
|
|
2759
2839
|
*/
|
|
2760
|
-
export declare
|
|
2761
|
-
SHADOW_MODE
|
|
2762
|
-
}
|
|
2840
|
+
export declare const InferenceExperimentType: {
|
|
2841
|
+
readonly SHADOW_MODE: "ShadowMode";
|
|
2842
|
+
};
|
|
2843
|
+
/**
|
|
2844
|
+
* @public
|
|
2845
|
+
*/
|
|
2846
|
+
export type InferenceExperimentType = (typeof InferenceExperimentType)[keyof typeof InferenceExperimentType];
|
|
2763
2847
|
/**
|
|
2764
2848
|
* @public
|
|
2765
2849
|
*/
|
|
@@ -3039,10 +3123,15 @@ export interface Phase {
|
|
|
3039
3123
|
}
|
|
3040
3124
|
/**
|
|
3041
3125
|
* @public
|
|
3126
|
+
* @enum
|
|
3042
3127
|
*/
|
|
3043
|
-
export declare
|
|
3044
|
-
PHASES
|
|
3045
|
-
}
|
|
3128
|
+
export declare const TrafficType: {
|
|
3129
|
+
readonly PHASES: "PHASES";
|
|
3130
|
+
};
|
|
3131
|
+
/**
|
|
3132
|
+
* @public
|
|
3133
|
+
*/
|
|
3134
|
+
export type TrafficType = (typeof TrafficType)[keyof typeof TrafficType];
|
|
3046
3135
|
/**
|
|
3047
3136
|
* @public
|
|
3048
3137
|
* <p>Defines the traffic pattern of the load test.</p>
|
|
@@ -3157,11 +3246,16 @@ export interface RecommendationJobInputConfig {
|
|
|
3157
3246
|
}
|
|
3158
3247
|
/**
|
|
3159
3248
|
* @public
|
|
3249
|
+
* @enum
|
|
3160
3250
|
*/
|
|
3161
|
-
export declare
|
|
3162
|
-
ADVANCED
|
|
3163
|
-
DEFAULT
|
|
3164
|
-
}
|
|
3251
|
+
export declare const RecommendationJobType: {
|
|
3252
|
+
readonly ADVANCED: "Advanced";
|
|
3253
|
+
readonly DEFAULT: "Default";
|
|
3254
|
+
};
|
|
3255
|
+
/**
|
|
3256
|
+
* @public
|
|
3257
|
+
*/
|
|
3258
|
+
export type RecommendationJobType = (typeof RecommendationJobType)[keyof typeof RecommendationJobType];
|
|
3165
3259
|
/**
|
|
3166
3260
|
* @public
|
|
3167
3261
|
* <p>Provides information about the output configuration for the compiled
|
|
@@ -5384,11 +5478,16 @@ export interface CreateLabelingJobResponse {
|
|
|
5384
5478
|
}
|
|
5385
5479
|
/**
|
|
5386
5480
|
* @public
|
|
5481
|
+
* @enum
|
|
5387
5482
|
*/
|
|
5388
|
-
export declare
|
|
5389
|
-
DIRECT
|
|
5390
|
-
SERIAL
|
|
5391
|
-
}
|
|
5483
|
+
export declare const InferenceExecutionMode: {
|
|
5484
|
+
readonly DIRECT: "Direct";
|
|
5485
|
+
readonly SERIAL: "Serial";
|
|
5486
|
+
};
|
|
5487
|
+
/**
|
|
5488
|
+
* @public
|
|
5489
|
+
*/
|
|
5490
|
+
export type InferenceExecutionMode = (typeof InferenceExecutionMode)[keyof typeof InferenceExecutionMode];
|
|
5392
5491
|
/**
|
|
5393
5492
|
* @public
|
|
5394
5493
|
* <p>Specifies details about how containers in a multi-container endpoint are run.</p>
|
|
@@ -5594,13 +5693,18 @@ export interface CreateModelBiasJobDefinitionResponse {
|
|
|
5594
5693
|
}
|
|
5595
5694
|
/**
|
|
5596
5695
|
* @public
|
|
5696
|
+
* @enum
|
|
5597
5697
|
*/
|
|
5598
|
-
export declare
|
|
5599
|
-
APPROVED
|
|
5600
|
-
ARCHIVED
|
|
5601
|
-
DRAFT
|
|
5602
|
-
PENDINGREVIEW
|
|
5603
|
-
}
|
|
5698
|
+
export declare const ModelCardStatus: {
|
|
5699
|
+
readonly APPROVED: "Approved";
|
|
5700
|
+
readonly ARCHIVED: "Archived";
|
|
5701
|
+
readonly DRAFT: "Draft";
|
|
5702
|
+
readonly PENDINGREVIEW: "PendingReview";
|
|
5703
|
+
};
|
|
5704
|
+
/**
|
|
5705
|
+
* @public
|
|
5706
|
+
*/
|
|
5707
|
+
export type ModelCardStatus = (typeof ModelCardStatus)[keyof typeof ModelCardStatus];
|
|
5604
5708
|
/**
|
|
5605
5709
|
* @public
|
|
5606
5710
|
* <p>Configure the security settings to protect model card data.</p>
|
|
@@ -6206,12 +6310,17 @@ export interface CreateModelPackageGroupOutput {
|
|
|
6206
6310
|
}
|
|
6207
6311
|
/**
|
|
6208
6312
|
* @public
|
|
6313
|
+
* @enum
|
|
6209
6314
|
*/
|
|
6210
|
-
export declare
|
|
6211
|
-
BINARY_CLASSIFICATION
|
|
6212
|
-
MULTICLASS_CLASSIFICATION
|
|
6213
|
-
REGRESSION
|
|
6214
|
-
}
|
|
6315
|
+
export declare const MonitoringProblemType: {
|
|
6316
|
+
readonly BINARY_CLASSIFICATION: "BinaryClassification";
|
|
6317
|
+
readonly MULTICLASS_CLASSIFICATION: "MulticlassClassification";
|
|
6318
|
+
readonly REGRESSION: "Regression";
|
|
6319
|
+
};
|
|
6320
|
+
/**
|
|
6321
|
+
* @public
|
|
6322
|
+
*/
|
|
6323
|
+
export type MonitoringProblemType = (typeof MonitoringProblemType)[keyof typeof MonitoringProblemType];
|
|
6215
6324
|
/**
|
|
6216
6325
|
* @public
|
|
6217
6326
|
* <p>Container image configuration object for the monitoring job.</p>
|
|
@@ -6482,13 +6591,18 @@ export interface MonitoringJobDefinition {
|
|
|
6482
6591
|
}
|
|
6483
6592
|
/**
|
|
6484
6593
|
* @public
|
|
6594
|
+
* @enum
|
|
6485
6595
|
*/
|
|
6486
|
-
export declare
|
|
6487
|
-
DATA_QUALITY
|
|
6488
|
-
MODEL_BIAS
|
|
6489
|
-
MODEL_EXPLAINABILITY
|
|
6490
|
-
MODEL_QUALITY
|
|
6491
|
-
}
|
|
6596
|
+
export declare const MonitoringType: {
|
|
6597
|
+
readonly DATA_QUALITY: "DataQuality";
|
|
6598
|
+
readonly MODEL_BIAS: "ModelBias";
|
|
6599
|
+
readonly MODEL_EXPLAINABILITY: "ModelExplainability";
|
|
6600
|
+
readonly MODEL_QUALITY: "ModelQuality";
|
|
6601
|
+
};
|
|
6602
|
+
/**
|
|
6603
|
+
* @public
|
|
6604
|
+
*/
|
|
6605
|
+
export type MonitoringType = (typeof MonitoringType)[keyof typeof MonitoringType];
|
|
6492
6606
|
/**
|
|
6493
6607
|
* @public
|
|
6494
6608
|
* <p>Configuration details about the monitoring schedule.</p>
|
|
@@ -6606,22 +6720,32 @@ export interface CreateMonitoringScheduleResponse {
|
|
|
6606
6720
|
}
|
|
6607
6721
|
/**
|
|
6608
6722
|
* @public
|
|
6723
|
+
* @enum
|
|
6609
6724
|
*/
|
|
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
|
-
}
|
|
6725
|
+
export declare const NotebookInstanceAcceleratorType: {
|
|
6726
|
+
readonly ML_EIA1_LARGE: "ml.eia1.large";
|
|
6727
|
+
readonly ML_EIA1_MEDIUM: "ml.eia1.medium";
|
|
6728
|
+
readonly ML_EIA1_XLARGE: "ml.eia1.xlarge";
|
|
6729
|
+
readonly ML_EIA2_LARGE: "ml.eia2.large";
|
|
6730
|
+
readonly ML_EIA2_MEDIUM: "ml.eia2.medium";
|
|
6731
|
+
readonly ML_EIA2_XLARGE: "ml.eia2.xlarge";
|
|
6732
|
+
};
|
|
6618
6733
|
/**
|
|
6619
6734
|
* @public
|
|
6620
6735
|
*/
|
|
6621
|
-
export
|
|
6622
|
-
|
|
6623
|
-
|
|
6624
|
-
|
|
6736
|
+
export type NotebookInstanceAcceleratorType = (typeof NotebookInstanceAcceleratorType)[keyof typeof NotebookInstanceAcceleratorType];
|
|
6737
|
+
/**
|
|
6738
|
+
* @public
|
|
6739
|
+
* @enum
|
|
6740
|
+
*/
|
|
6741
|
+
export declare const DirectInternetAccess: {
|
|
6742
|
+
readonly DISABLED: "Disabled";
|
|
6743
|
+
readonly ENABLED: "Enabled";
|
|
6744
|
+
};
|
|
6745
|
+
/**
|
|
6746
|
+
* @public
|
|
6747
|
+
*/
|
|
6748
|
+
export type DirectInternetAccess = (typeof DirectInternetAccess)[keyof typeof DirectInternetAccess];
|
|
6625
6749
|
/**
|
|
6626
6750
|
* @public
|
|
6627
6751
|
* <p>Information on the IMDS configuration of the notebook instance</p>
|
|
@@ -6634,11 +6758,16 @@ export interface InstanceMetadataServiceConfiguration {
|
|
|
6634
6758
|
}
|
|
6635
6759
|
/**
|
|
6636
6760
|
* @public
|
|
6761
|
+
* @enum
|
|
6637
6762
|
*/
|
|
6638
|
-
export declare
|
|
6639
|
-
DISABLED
|
|
6640
|
-
ENABLED
|
|
6641
|
-
}
|
|
6763
|
+
export declare const RootAccess: {
|
|
6764
|
+
readonly DISABLED: "Disabled";
|
|
6765
|
+
readonly ENABLED: "Enabled";
|
|
6766
|
+
};
|
|
6767
|
+
/**
|
|
6768
|
+
* @public
|
|
6769
|
+
*/
|
|
6770
|
+
export type RootAccess = (typeof RootAccess)[keyof typeof RootAccess];
|
|
6642
6771
|
/**
|
|
6643
6772
|
* @public
|
|
6644
6773
|
*/
|
|
@@ -6997,35 +7126,55 @@ export interface ExperimentConfig {
|
|
|
6997
7126
|
}
|
|
6998
7127
|
/**
|
|
6999
7128
|
* @public
|
|
7129
|
+
* @enum
|
|
7000
7130
|
*/
|
|
7001
|
-
export declare
|
|
7002
|
-
FULLYREPLICATED
|
|
7003
|
-
SHARDEDBYS3KEY
|
|
7004
|
-
}
|
|
7131
|
+
export declare const DataDistributionType: {
|
|
7132
|
+
readonly FULLYREPLICATED: "FullyReplicated";
|
|
7133
|
+
readonly SHARDEDBYS3KEY: "ShardedByS3Key";
|
|
7134
|
+
};
|
|
7005
7135
|
/**
|
|
7006
7136
|
* @public
|
|
7007
7137
|
*/
|
|
7008
|
-
export
|
|
7009
|
-
FILE = "File",
|
|
7010
|
-
PIPE = "Pipe"
|
|
7011
|
-
}
|
|
7138
|
+
export type DataDistributionType = (typeof DataDistributionType)[keyof typeof DataDistributionType];
|
|
7012
7139
|
/**
|
|
7013
7140
|
* @public
|
|
7141
|
+
* @enum
|
|
7014
7142
|
*/
|
|
7015
|
-
export declare
|
|
7016
|
-
|
|
7017
|
-
|
|
7018
|
-
|
|
7019
|
-
SNAPPY = "SNAPPY",
|
|
7020
|
-
ZSTD = "ZSTD"
|
|
7021
|
-
}
|
|
7143
|
+
export declare const InputMode: {
|
|
7144
|
+
readonly FILE: "File";
|
|
7145
|
+
readonly PIPE: "Pipe";
|
|
7146
|
+
};
|
|
7022
7147
|
/**
|
|
7023
7148
|
* @public
|
|
7024
7149
|
*/
|
|
7025
|
-
export
|
|
7026
|
-
|
|
7027
|
-
|
|
7028
|
-
|
|
7150
|
+
export type InputMode = (typeof InputMode)[keyof typeof InputMode];
|
|
7151
|
+
/**
|
|
7152
|
+
* @public
|
|
7153
|
+
* @enum
|
|
7154
|
+
*/
|
|
7155
|
+
export declare const RedshiftResultCompressionType: {
|
|
7156
|
+
readonly BZIP2: "BZIP2";
|
|
7157
|
+
readonly GZIP: "GZIP";
|
|
7158
|
+
readonly NONE: "None";
|
|
7159
|
+
readonly SNAPPY: "SNAPPY";
|
|
7160
|
+
readonly ZSTD: "ZSTD";
|
|
7161
|
+
};
|
|
7162
|
+
/**
|
|
7163
|
+
* @public
|
|
7164
|
+
*/
|
|
7165
|
+
export type RedshiftResultCompressionType = (typeof RedshiftResultCompressionType)[keyof typeof RedshiftResultCompressionType];
|
|
7166
|
+
/**
|
|
7167
|
+
* @public
|
|
7168
|
+
* @enum
|
|
7169
|
+
*/
|
|
7170
|
+
export declare const RedshiftResultFormat: {
|
|
7171
|
+
readonly CSV: "CSV";
|
|
7172
|
+
readonly PARQUET: "PARQUET";
|
|
7173
|
+
};
|
|
7174
|
+
/**
|
|
7175
|
+
* @public
|
|
7176
|
+
*/
|
|
7177
|
+
export type RedshiftResultFormat = (typeof RedshiftResultFormat)[keyof typeof RedshiftResultFormat];
|
|
7029
7178
|
/**
|
|
7030
7179
|
* @public
|
|
7031
7180
|
* <p>Configuration for Redshift Dataset Definition input.</p>
|
|
@@ -7106,18 +7255,28 @@ export interface DatasetDefinition {
|
|
|
7106
7255
|
}
|
|
7107
7256
|
/**
|
|
7108
7257
|
* @public
|
|
7258
|
+
* @enum
|
|
7109
7259
|
*/
|
|
7110
|
-
export declare
|
|
7111
|
-
GZIP
|
|
7112
|
-
NONE
|
|
7113
|
-
}
|
|
7260
|
+
export declare const ProcessingS3CompressionType: {
|
|
7261
|
+
readonly GZIP: "Gzip";
|
|
7262
|
+
readonly NONE: "None";
|
|
7263
|
+
};
|
|
7114
7264
|
/**
|
|
7115
7265
|
* @public
|
|
7116
7266
|
*/
|
|
7117
|
-
export
|
|
7118
|
-
|
|
7119
|
-
|
|
7120
|
-
|
|
7267
|
+
export type ProcessingS3CompressionType = (typeof ProcessingS3CompressionType)[keyof typeof ProcessingS3CompressionType];
|
|
7268
|
+
/**
|
|
7269
|
+
* @public
|
|
7270
|
+
* @enum
|
|
7271
|
+
*/
|
|
7272
|
+
export declare const ProcessingS3DataType: {
|
|
7273
|
+
readonly MANIFEST_FILE: "ManifestFile";
|
|
7274
|
+
readonly S3_PREFIX: "S3Prefix";
|
|
7275
|
+
};
|
|
7276
|
+
/**
|
|
7277
|
+
* @public
|
|
7278
|
+
*/
|
|
7279
|
+
export type ProcessingS3DataType = (typeof ProcessingS3DataType)[keyof typeof ProcessingS3DataType];
|
|
7121
7280
|
/**
|
|
7122
7281
|
* @public
|
|
7123
7282
|
* <p>Configuration for downloading input data from Amazon S3 into the processing container.</p>
|
|
@@ -7543,11 +7702,16 @@ export interface CreateSpaceResponse {
|
|
|
7543
7702
|
}
|
|
7544
7703
|
/**
|
|
7545
7704
|
* @public
|
|
7705
|
+
* @enum
|
|
7546
7706
|
*/
|
|
7547
|
-
export declare
|
|
7548
|
-
JupyterServer
|
|
7549
|
-
KernelGateway
|
|
7550
|
-
}
|
|
7707
|
+
export declare const StudioLifecycleConfigAppType: {
|
|
7708
|
+
readonly JupyterServer: "JupyterServer";
|
|
7709
|
+
readonly KernelGateway: "KernelGateway";
|
|
7710
|
+
};
|
|
7711
|
+
/**
|
|
7712
|
+
* @public
|
|
7713
|
+
*/
|
|
7714
|
+
export type StudioLifecycleConfigAppType = (typeof StudioLifecycleConfigAppType)[keyof typeof StudioLifecycleConfigAppType];
|
|
7551
7715
|
/**
|
|
7552
7716
|
* @public
|
|
7553
7717
|
*/
|
|
@@ -7751,8 +7915,8 @@ export interface CreateTrainingJobRequest {
|
|
|
7751
7915
|
* <p>The registry path of the Docker image that contains the training algorithm and
|
|
7752
7916
|
* algorithm-specific metadata, including the input mode. For more information about
|
|
7753
7917
|
* algorithms provided by SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html">Algorithms</a>. For information about
|
|
7754
|
-
* providing your own algorithms, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with Amazon
|
|
7755
|
-
*
|
|
7918
|
+
* providing your own algorithms, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with Amazon SageMaker</a>.
|
|
7919
|
+
* </p>
|
|
7756
7920
|
*/
|
|
7757
7921
|
AlgorithmSpecification: AlgorithmSpecification | undefined;
|
|
7758
7922
|
/**
|
|
@@ -7922,11 +8086,16 @@ export interface CreateTrainingJobResponse {
|
|
|
7922
8086
|
}
|
|
7923
8087
|
/**
|
|
7924
8088
|
* @public
|
|
8089
|
+
* @enum
|
|
7925
8090
|
*/
|
|
7926
|
-
export declare
|
|
7927
|
-
INPUT
|
|
7928
|
-
NONE
|
|
7929
|
-
}
|
|
8091
|
+
export declare const JoinSource: {
|
|
8092
|
+
readonly INPUT: "Input";
|
|
8093
|
+
readonly NONE: "None";
|
|
8094
|
+
};
|
|
8095
|
+
/**
|
|
8096
|
+
* @public
|
|
8097
|
+
*/
|
|
8098
|
+
export type JoinSource = (typeof JoinSource)[keyof typeof JoinSource];
|
|
7930
8099
|
/**
|
|
7931
8100
|
* @public
|
|
7932
8101
|
* <p>The data structure used to specify the data to be used for inference in a batch
|
|
@@ -8238,14 +8407,19 @@ export declare namespace TrialComponentParameterValue {
|
|
|
8238
8407
|
}
|
|
8239
8408
|
/**
|
|
8240
8409
|
* @public
|
|
8410
|
+
* @enum
|
|
8241
8411
|
*/
|
|
8242
|
-
export declare
|
|
8243
|
-
COMPLETED
|
|
8244
|
-
FAILED
|
|
8245
|
-
IN_PROGRESS
|
|
8246
|
-
STOPPED
|
|
8247
|
-
STOPPING
|
|
8248
|
-
}
|
|
8412
|
+
export declare const TrialComponentPrimaryStatus: {
|
|
8413
|
+
readonly COMPLETED: "Completed";
|
|
8414
|
+
readonly FAILED: "Failed";
|
|
8415
|
+
readonly IN_PROGRESS: "InProgress";
|
|
8416
|
+
readonly STOPPED: "Stopped";
|
|
8417
|
+
readonly STOPPING: "Stopping";
|
|
8418
|
+
};
|
|
8419
|
+
/**
|
|
8420
|
+
* @public
|
|
8421
|
+
*/
|
|
8422
|
+
export type TrialComponentPrimaryStatus = (typeof TrialComponentPrimaryStatus)[keyof typeof TrialComponentPrimaryStatus];
|
|
8249
8423
|
/**
|
|
8250
8424
|
* @public
|
|
8251
8425
|
* <p>The status of the trial component.</p>
|
|
@@ -8630,15 +8804,20 @@ export interface DataCaptureConfigSummary {
|
|
|
8630
8804
|
}
|
|
8631
8805
|
/**
|
|
8632
8806
|
* @public
|
|
8807
|
+
* @enum
|
|
8633
8808
|
*/
|
|
8634
|
-
export declare
|
|
8635
|
-
ERROR
|
|
8636
|
-
IN_PROGRESS
|
|
8637
|
-
ISSUES_FOUND
|
|
8638
|
-
NO_ISSUES_FOUND
|
|
8639
|
-
STOPPED
|
|
8640
|
-
STOPPING
|
|
8641
|
-
}
|
|
8809
|
+
export declare const RuleEvaluationStatus: {
|
|
8810
|
+
readonly ERROR: "Error";
|
|
8811
|
+
readonly IN_PROGRESS: "InProgress";
|
|
8812
|
+
readonly ISSUES_FOUND: "IssuesFound";
|
|
8813
|
+
readonly NO_ISSUES_FOUND: "NoIssuesFound";
|
|
8814
|
+
readonly STOPPED: "Stopped";
|
|
8815
|
+
readonly STOPPING: "Stopping";
|
|
8816
|
+
};
|
|
8817
|
+
/**
|
|
8818
|
+
* @public
|
|
8819
|
+
*/
|
|
8820
|
+
export type RuleEvaluationStatus = (typeof RuleEvaluationStatus)[keyof typeof RuleEvaluationStatus];
|
|
8642
8821
|
/**
|
|
8643
8822
|
* @public
|
|
8644
8823
|
* <p>Information about the status of the rule evaluation.</p>
|
|
@@ -8821,11 +9000,16 @@ export interface DeleteDeviceFleetRequest {
|
|
|
8821
9000
|
}
|
|
8822
9001
|
/**
|
|
8823
9002
|
* @public
|
|
9003
|
+
* @enum
|
|
8824
9004
|
*/
|
|
8825
|
-
export declare
|
|
8826
|
-
Delete
|
|
8827
|
-
Retain
|
|
8828
|
-
}
|
|
9005
|
+
export declare const RetentionType: {
|
|
9006
|
+
readonly Delete: "Delete";
|
|
9007
|
+
readonly Retain: "Retain";
|
|
9008
|
+
};
|
|
9009
|
+
/**
|
|
9010
|
+
* @public
|
|
9011
|
+
*/
|
|
9012
|
+
export type RetentionType = (typeof RetentionType)[keyof typeof RetentionType];
|
|
8829
9013
|
/**
|
|
8830
9014
|
* @public
|
|
8831
9015
|
* <p>The retention policy for data stored on an Amazon Elastic File System (EFS) volume.</p>
|
|
@@ -8945,11 +9129,16 @@ export interface DeleteHubRequest {
|
|
|
8945
9129
|
}
|
|
8946
9130
|
/**
|
|
8947
9131
|
* @public
|
|
9132
|
+
* @enum
|
|
8948
9133
|
*/
|
|
8949
|
-
export declare
|
|
8950
|
-
MODEL
|
|
8951
|
-
NOTEBOOK
|
|
8952
|
-
}
|
|
9134
|
+
export declare const HubContentType: {
|
|
9135
|
+
readonly MODEL: "Model";
|
|
9136
|
+
readonly NOTEBOOK: "Notebook";
|
|
9137
|
+
};
|
|
9138
|
+
/**
|
|
9139
|
+
* @public
|
|
9140
|
+
*/
|
|
9141
|
+
export type HubContentType = (typeof HubContentType)[keyof typeof HubContentType];
|
|
8953
9142
|
/**
|
|
8954
9143
|
* @public
|
|
8955
9144
|
*/
|
|
@@ -9208,11 +9397,6 @@ export interface DeleteTagsInput {
|
|
|
9208
9397
|
*/
|
|
9209
9398
|
TagKeys: string[] | undefined;
|
|
9210
9399
|
}
|
|
9211
|
-
/**
|
|
9212
|
-
* @public
|
|
9213
|
-
*/
|
|
9214
|
-
export interface DeleteTagsOutput {
|
|
9215
|
-
}
|
|
9216
9400
|
/**
|
|
9217
9401
|
* @internal
|
|
9218
9402
|
*/
|