@aws-sdk/client-sagemaker 3.428.0 → 3.429.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-types/models/models_0.d.ts +109 -109
- package/dist-types/models/models_1.d.ts +68 -68
- package/dist-types/models/models_2.d.ts +97 -97
- package/dist-types/models/models_3.d.ts +205 -205
- package/dist-types/models/models_4.d.ts +33 -33
- package/dist-types/ts3.4/models/models_0.d.ts +112 -118
- package/dist-types/ts3.4/models/models_1.d.ts +67 -71
- package/dist-types/ts3.4/models/models_2.d.ts +97 -100
- package/dist-types/ts3.4/models/models_3.d.ts +205 -208
- package/dist-types/ts3.4/models/models_4.d.ts +33 -33
- package/package.json +5 -5
|
@@ -68,7 +68,7 @@ export interface ActionSummary {
|
|
|
68
68
|
* @public
|
|
69
69
|
* <p>The status of the action.</p>
|
|
70
70
|
*/
|
|
71
|
-
Status?: ActionStatus
|
|
71
|
+
Status?: ActionStatus;
|
|
72
72
|
/**
|
|
73
73
|
* @public
|
|
74
74
|
* <p>When the action was created.</p>
|
|
@@ -132,7 +132,7 @@ export interface AddAssociationRequest {
|
|
|
132
132
|
* </li>
|
|
133
133
|
* </ul>
|
|
134
134
|
*/
|
|
135
|
-
AssociationType?: AssociationEdgeType
|
|
135
|
+
AssociationType?: AssociationEdgeType;
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
138
|
* @public
|
|
@@ -210,7 +210,7 @@ export interface AdditionalS3DataSource {
|
|
|
210
210
|
* <p>The data type of the additional data source that you specify for use in inference or
|
|
211
211
|
* training. </p>
|
|
212
212
|
*/
|
|
213
|
-
S3DataType: AdditionalS3DataSourceDataType |
|
|
213
|
+
S3DataType: AdditionalS3DataSourceDataType | undefined;
|
|
214
214
|
/**
|
|
215
215
|
* @public
|
|
216
216
|
* <p>The uniform resource identifier (URI) used to identify an additional data source used
|
|
@@ -222,7 +222,7 @@ export interface AdditionalS3DataSource {
|
|
|
222
222
|
* <p>The type of compression used for an additional data source used in inference or
|
|
223
223
|
* training. Specify <code>None</code> if your additional data source is not compressed.</p>
|
|
224
224
|
*/
|
|
225
|
-
CompressionType?: CompressionType
|
|
225
|
+
CompressionType?: CompressionType;
|
|
226
226
|
}
|
|
227
227
|
/**
|
|
228
228
|
* @public
|
|
@@ -542,12 +542,12 @@ export interface AdditionalInferenceSpecificationDefinition {
|
|
|
542
542
|
* <p>A list of the instance types on which a transformation job can be run
|
|
543
543
|
* or on which an endpoint can be deployed.</p>
|
|
544
544
|
*/
|
|
545
|
-
SupportedTransformInstanceTypes?:
|
|
545
|
+
SupportedTransformInstanceTypes?: TransformInstanceType[];
|
|
546
546
|
/**
|
|
547
547
|
* @public
|
|
548
548
|
* <p>A list of the instance types that are used to generate inferences in real-time.</p>
|
|
549
549
|
*/
|
|
550
|
-
SupportedRealtimeInferenceInstanceTypes?:
|
|
550
|
+
SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[];
|
|
551
551
|
/**
|
|
552
552
|
* @public
|
|
553
553
|
* <p>The supported MIME types for the input data.</p>
|
|
@@ -725,7 +725,7 @@ export interface TrainingImageConfig {
|
|
|
725
725
|
* private Docker registry. For access to an image in a private Docker registry, set to
|
|
726
726
|
* <code>Vpc</code>.</p>
|
|
727
727
|
*/
|
|
728
|
-
TrainingRepositoryAccessMode: TrainingRepositoryAccessMode |
|
|
728
|
+
TrainingRepositoryAccessMode: TrainingRepositoryAccessMode | undefined;
|
|
729
729
|
/**
|
|
730
730
|
* @public
|
|
731
731
|
* <p>An object containing authentication information for a private Docker registry
|
|
@@ -828,7 +828,7 @@ export interface AlgorithmSpecification {
|
|
|
828
828
|
* manifest files aren't supported. The startup time is lower when there are fewer files in
|
|
829
829
|
* the S3 bucket provided.</p>
|
|
830
830
|
*/
|
|
831
|
-
TrainingInputMode: TrainingInputMode |
|
|
831
|
+
TrainingInputMode: TrainingInputMode | undefined;
|
|
832
832
|
/**
|
|
833
833
|
* @public
|
|
834
834
|
* <p>A list of metric definition objects. Each object specifies the metric name and regular
|
|
@@ -929,7 +929,7 @@ export interface AlgorithmStatusItem {
|
|
|
929
929
|
* @public
|
|
930
930
|
* <p>The current status.</p>
|
|
931
931
|
*/
|
|
932
|
-
Status: DetailedAlgorithmStatus |
|
|
932
|
+
Status: DetailedAlgorithmStatus | undefined;
|
|
933
933
|
/**
|
|
934
934
|
* @public
|
|
935
935
|
* <p>if the overall status is <code>Failed</code>, the reason for the failure.</p>
|
|
@@ -981,7 +981,7 @@ export interface AlgorithmSummary {
|
|
|
981
981
|
* @public
|
|
982
982
|
* <p>The overall status of the algorithm.</p>
|
|
983
983
|
*/
|
|
984
|
-
AlgorithmStatus: AlgorithmStatus |
|
|
984
|
+
AlgorithmStatus: AlgorithmStatus | undefined;
|
|
985
985
|
}
|
|
986
986
|
/**
|
|
987
987
|
* @public
|
|
@@ -1023,12 +1023,12 @@ export interface FileSystemDataSource {
|
|
|
1023
1023
|
* can be mounted either in <code>ro</code> (read-only) or <code>rw</code> (read-write)
|
|
1024
1024
|
* mode.</p>
|
|
1025
1025
|
*/
|
|
1026
|
-
FileSystemAccessMode: FileSystemAccessMode |
|
|
1026
|
+
FileSystemAccessMode: FileSystemAccessMode | undefined;
|
|
1027
1027
|
/**
|
|
1028
1028
|
* @public
|
|
1029
1029
|
* <p>The file system type. </p>
|
|
1030
1030
|
*/
|
|
1031
|
-
FileSystemType: FileSystemType |
|
|
1031
|
+
FileSystemType: FileSystemType | undefined;
|
|
1032
1032
|
/**
|
|
1033
1033
|
* @public
|
|
1034
1034
|
* <p>The full path to the directory to associate with the channel.</p>
|
|
@@ -1079,7 +1079,7 @@ export interface S3DataSource {
|
|
|
1079
1079
|
* use for model training. <code>AugmentedManifestFile</code> can only be used if the
|
|
1080
1080
|
* Channel's input mode is <code>Pipe</code>.</p>
|
|
1081
1081
|
*/
|
|
1082
|
-
S3DataType: S3DataType |
|
|
1082
|
+
S3DataType: S3DataType | undefined;
|
|
1083
1083
|
/**
|
|
1084
1084
|
* @public
|
|
1085
1085
|
* <p>Depending on the value specified for the <code>S3DataType</code>, identifies either
|
|
@@ -1161,7 +1161,7 @@ export interface S3DataSource {
|
|
|
1161
1161
|
* the ML storage volume (when <code>TrainingInputMode</code> is set to <code>File</code>),
|
|
1162
1162
|
* this copies 1/<i>n</i> of the number of objects. </p>
|
|
1163
1163
|
*/
|
|
1164
|
-
S3DataDistributionType?: S3DataDistribution
|
|
1164
|
+
S3DataDistributionType?: S3DataDistribution;
|
|
1165
1165
|
/**
|
|
1166
1166
|
* @public
|
|
1167
1167
|
* <p>A list of one or more attribute names to use that are found in a specified augmented
|
|
@@ -1252,7 +1252,7 @@ export interface Channel {
|
|
|
1252
1252
|
* <code>None</code>. <code>CompressionType</code> is used only in Pipe input mode. In
|
|
1253
1253
|
* File mode, leave this field unset or set it to None.</p>
|
|
1254
1254
|
*/
|
|
1255
|
-
CompressionType?: CompressionType
|
|
1255
|
+
CompressionType?: CompressionType;
|
|
1256
1256
|
/**
|
|
1257
1257
|
* @public
|
|
1258
1258
|
* <p></p>
|
|
@@ -1263,7 +1263,7 @@ export interface Channel {
|
|
|
1263
1263
|
* a Dataset Using RecordIO</a>. </p>
|
|
1264
1264
|
* <p>In File mode, leave this field unset or set it to None.</p>
|
|
1265
1265
|
*/
|
|
1266
|
-
RecordWrapperType?: RecordWrapper
|
|
1266
|
+
RecordWrapperType?: RecordWrapper;
|
|
1267
1267
|
/**
|
|
1268
1268
|
* @public
|
|
1269
1269
|
* <p>(Optional) The input mode to use for the data channel in a training job. If you don't
|
|
@@ -1276,7 +1276,7 @@ export interface Channel {
|
|
|
1276
1276
|
* the container, choose <code>Pipe</code> input mode.</p>
|
|
1277
1277
|
* <p>To use a model for incremental training, choose <code>File</code> input model.</p>
|
|
1278
1278
|
*/
|
|
1279
|
-
InputMode?: TrainingInputMode
|
|
1279
|
+
InputMode?: TrainingInputMode;
|
|
1280
1280
|
/**
|
|
1281
1281
|
* @public
|
|
1282
1282
|
* <p>A configuration for a shuffle option for input data in a channel. If you use
|
|
@@ -1374,7 +1374,7 @@ export interface OutputDataConfig {
|
|
|
1374
1374
|
* <p>The model output compression type. Select <code>None</code> to output an uncompressed
|
|
1375
1375
|
* model, recommended for large model outputs. Defaults to gzip.</p>
|
|
1376
1376
|
*/
|
|
1377
|
-
CompressionType?: OutputCompressionType
|
|
1377
|
+
CompressionType?: OutputCompressionType;
|
|
1378
1378
|
}
|
|
1379
1379
|
/**
|
|
1380
1380
|
* @public
|
|
@@ -1447,7 +1447,7 @@ export interface InstanceGroup {
|
|
|
1447
1447
|
* @public
|
|
1448
1448
|
* <p>Specifies the instance type of the instance group.</p>
|
|
1449
1449
|
*/
|
|
1450
|
-
InstanceType: TrainingInstanceType |
|
|
1450
|
+
InstanceType: TrainingInstanceType | undefined;
|
|
1451
1451
|
/**
|
|
1452
1452
|
* @public
|
|
1453
1453
|
* <p>Specifies the number of instances of the instance group.</p>
|
|
@@ -1491,7 +1491,7 @@ export interface ResourceConfig {
|
|
|
1491
1491
|
* Training service team through your account team.</p>
|
|
1492
1492
|
* </note>
|
|
1493
1493
|
*/
|
|
1494
|
-
InstanceType?: TrainingInstanceType
|
|
1494
|
+
InstanceType?: TrainingInstanceType;
|
|
1495
1495
|
/**
|
|
1496
1496
|
* @public
|
|
1497
1497
|
* <p>The number of ML compute instances to use. For distributed training, provide a
|
|
@@ -1657,7 +1657,7 @@ export interface TrainingJobDefinition {
|
|
|
1657
1657
|
* manifest files aren't supported. The startup time is lower when there are fewer files in
|
|
1658
1658
|
* the S3 bucket provided.</p>
|
|
1659
1659
|
*/
|
|
1660
|
-
TrainingInputMode: TrainingInputMode |
|
|
1660
|
+
TrainingInputMode: TrainingInputMode | undefined;
|
|
1661
1661
|
/**
|
|
1662
1662
|
* @public
|
|
1663
1663
|
* <p>The hyperparameters used for the training job.</p>
|
|
@@ -1722,7 +1722,7 @@ export interface TransformS3DataSource {
|
|
|
1722
1722
|
* <p>The following value is not compatible: <code>AugmentedManifestFile</code>
|
|
1723
1723
|
* </p>
|
|
1724
1724
|
*/
|
|
1725
|
-
S3DataType: S3DataType |
|
|
1725
|
+
S3DataType: S3DataType | undefined;
|
|
1726
1726
|
/**
|
|
1727
1727
|
* @public
|
|
1728
1728
|
* <p>Depending on the value specified for the <code>S3DataType</code>, identifies either a
|
|
@@ -1832,7 +1832,7 @@ export interface TransformInput {
|
|
|
1832
1832
|
* decompresses the data for the transform job accordingly. The default value is
|
|
1833
1833
|
* <code>None</code>.</p>
|
|
1834
1834
|
*/
|
|
1835
|
-
CompressionType?: CompressionType
|
|
1835
|
+
CompressionType?: CompressionType;
|
|
1836
1836
|
/**
|
|
1837
1837
|
* @public
|
|
1838
1838
|
* <p>The method to use to split the transform job's data files into smaller batches.
|
|
@@ -1869,7 +1869,7 @@ export interface TransformInput {
|
|
|
1869
1869
|
* <code>TFRecord</code>, see <a href="https://www.tensorflow.org/guide/data#consuming_tfrecord_data">Consuming TFRecord data</a> in the TensorFlow documentation.</p>
|
|
1870
1870
|
* </note>
|
|
1871
1871
|
*/
|
|
1872
|
-
SplitType?: SplitType
|
|
1872
|
+
SplitType?: SplitType;
|
|
1873
1873
|
}
|
|
1874
1874
|
/**
|
|
1875
1875
|
* @public
|
|
@@ -1920,7 +1920,7 @@ export interface TransformOutput {
|
|
|
1920
1920
|
* record, specify
|
|
1921
1921
|
* <code>Line</code>.</p>
|
|
1922
1922
|
*/
|
|
1923
|
-
AssembleWith?: AssemblyType
|
|
1923
|
+
AssembleWith?: AssemblyType;
|
|
1924
1924
|
/**
|
|
1925
1925
|
* @public
|
|
1926
1926
|
* <p>The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using
|
|
@@ -1973,7 +1973,7 @@ export interface TransformResources {
|
|
|
1973
1973
|
* moderately sized datasets, we recommend using ml.m4.xlarge or
|
|
1974
1974
|
* <code>ml.m5.large</code>instance types.</p>
|
|
1975
1975
|
*/
|
|
1976
|
-
InstanceType: TransformInstanceType |
|
|
1976
|
+
InstanceType: TransformInstanceType | undefined;
|
|
1977
1977
|
/**
|
|
1978
1978
|
* @public
|
|
1979
1979
|
* <p>The number of
|
|
@@ -2047,7 +2047,7 @@ export interface TransformJobDefinition {
|
|
|
2047
2047
|
* <code>MultiRecord</code> means a mini-batch is set to contain as many records that
|
|
2048
2048
|
* can fit within the <code>MaxPayloadInMB</code> limit.</p>
|
|
2049
2049
|
*/
|
|
2050
|
-
BatchStrategy?: BatchStrategy
|
|
2050
|
+
BatchStrategy?: BatchStrategy;
|
|
2051
2051
|
/**
|
|
2052
2052
|
* @public
|
|
2053
2053
|
* <p>The environment variables to set in the Docker container. We support up to 16 key and
|
|
@@ -3647,7 +3647,7 @@ export interface AppDetails {
|
|
|
3647
3647
|
* @public
|
|
3648
3648
|
* <p>The type of app.</p>
|
|
3649
3649
|
*/
|
|
3650
|
-
AppType?: AppType
|
|
3650
|
+
AppType?: AppType;
|
|
3651
3651
|
/**
|
|
3652
3652
|
* @public
|
|
3653
3653
|
* <p>The name of the app.</p>
|
|
@@ -3657,7 +3657,7 @@ export interface AppDetails {
|
|
|
3657
3657
|
* @public
|
|
3658
3658
|
* <p>The status.</p>
|
|
3659
3659
|
*/
|
|
3660
|
-
Status?: AppStatus
|
|
3660
|
+
Status?: AppStatus;
|
|
3661
3661
|
/**
|
|
3662
3662
|
* @public
|
|
3663
3663
|
* <p>The creation time.</p>
|
|
@@ -3917,7 +3917,7 @@ export interface ArtifactSourceType {
|
|
|
3917
3917
|
* @public
|
|
3918
3918
|
* <p>The type of ID.</p>
|
|
3919
3919
|
*/
|
|
3920
|
-
SourceIdType: ArtifactSourceIdType |
|
|
3920
|
+
SourceIdType: ArtifactSourceIdType | undefined;
|
|
3921
3921
|
/**
|
|
3922
3922
|
* @public
|
|
3923
3923
|
* <p>The ID.</p>
|
|
@@ -4088,7 +4088,7 @@ export interface AssociationSummary {
|
|
|
4088
4088
|
* @public
|
|
4089
4089
|
* <p>The type of the association.</p>
|
|
4090
4090
|
*/
|
|
4091
|
-
AssociationType?: AssociationEdgeType
|
|
4091
|
+
AssociationType?: AssociationEdgeType;
|
|
4092
4092
|
/**
|
|
4093
4093
|
* @public
|
|
4094
4094
|
* <p>The name of the source.</p>
|
|
@@ -4162,7 +4162,7 @@ export interface AsyncInferenceNotificationConfig {
|
|
|
4162
4162
|
* to 128 KB.</p>
|
|
4163
4163
|
* </note>
|
|
4164
4164
|
*/
|
|
4165
|
-
IncludeInferenceResponseIn?:
|
|
4165
|
+
IncludeInferenceResponseIn?: AsyncNotificationTopicTypes[];
|
|
4166
4166
|
}
|
|
4167
4167
|
/**
|
|
4168
4168
|
* @public
|
|
@@ -4278,12 +4278,12 @@ export interface AthenaDatasetDefinition {
|
|
|
4278
4278
|
* @public
|
|
4279
4279
|
* <p>The data storage format for Athena query results.</p>
|
|
4280
4280
|
*/
|
|
4281
|
-
OutputFormat: AthenaResultFormat |
|
|
4281
|
+
OutputFormat: AthenaResultFormat | undefined;
|
|
4282
4282
|
/**
|
|
4283
4283
|
* @public
|
|
4284
4284
|
* <p>The compression used for Athena query results.</p>
|
|
4285
4285
|
*/
|
|
4286
|
-
OutputCompression?: AthenaResultCompressionType
|
|
4286
|
+
OutputCompression?: AthenaResultCompressionType;
|
|
4287
4287
|
}
|
|
4288
4288
|
/**
|
|
4289
4289
|
* @public
|
|
@@ -4377,7 +4377,7 @@ export interface AutoMLAlgorithmConfig {
|
|
|
4377
4377
|
* </li>
|
|
4378
4378
|
* </ul>
|
|
4379
4379
|
*/
|
|
4380
|
-
AutoMLAlgorithms:
|
|
4380
|
+
AutoMLAlgorithms: AutoMLAlgorithm[] | undefined;
|
|
4381
4381
|
}
|
|
4382
4382
|
/**
|
|
4383
4383
|
* @public
|
|
@@ -4480,7 +4480,7 @@ export interface MetricDatum {
|
|
|
4480
4480
|
* @public
|
|
4481
4481
|
* <p>The name of the metric.</p>
|
|
4482
4482
|
*/
|
|
4483
|
-
MetricName?: AutoMLMetricEnum
|
|
4483
|
+
MetricName?: AutoMLMetricEnum;
|
|
4484
4484
|
/**
|
|
4485
4485
|
* @public
|
|
4486
4486
|
* <p>The value of the metric.</p>
|
|
@@ -4490,7 +4490,7 @@ export interface MetricDatum {
|
|
|
4490
4490
|
* @public
|
|
4491
4491
|
* <p>The dataset split from which the AutoML job produced the metric.</p>
|
|
4492
4492
|
*/
|
|
4493
|
-
Set?: MetricSetSource
|
|
4493
|
+
Set?: MetricSetSource;
|
|
4494
4494
|
/**
|
|
4495
4495
|
* @public
|
|
4496
4496
|
* <p>The name of the standard metric. </p>
|
|
@@ -4500,7 +4500,7 @@ export interface MetricDatum {
|
|
|
4500
4500
|
* </a>.</p>
|
|
4501
4501
|
* </note>
|
|
4502
4502
|
*/
|
|
4503
|
-
StandardMetricName?: AutoMLMetricExtendedEnum
|
|
4503
|
+
StandardMetricName?: AutoMLMetricExtendedEnum;
|
|
4504
4504
|
}
|
|
4505
4505
|
/**
|
|
4506
4506
|
* @public
|
|
@@ -4555,7 +4555,7 @@ export interface AutoMLCandidateStep {
|
|
|
4555
4555
|
* @public
|
|
4556
4556
|
* <p>Whether the candidate is at the transform, training, or processing step.</p>
|
|
4557
4557
|
*/
|
|
4558
|
-
CandidateStepType: CandidateStepType |
|
|
4558
|
+
CandidateStepType: CandidateStepType | undefined;
|
|
4559
4559
|
/**
|
|
4560
4560
|
* @public
|
|
4561
4561
|
* <p>The ARN for the candidate's step.</p>
|
|
@@ -4588,13 +4588,13 @@ export interface FinalAutoMLJobObjectiveMetric {
|
|
|
4588
4588
|
* @public
|
|
4589
4589
|
* <p>The type of metric with the best result.</p>
|
|
4590
4590
|
*/
|
|
4591
|
-
Type?: AutoMLJobObjectiveType
|
|
4591
|
+
Type?: AutoMLJobObjectiveType;
|
|
4592
4592
|
/**
|
|
4593
4593
|
* @public
|
|
4594
4594
|
* <p>The name of the metric with the best result. For a description of the possible objective
|
|
4595
4595
|
* metrics, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLJobObjective.html">AutoMLJobObjective$MetricName</a>.</p>
|
|
4596
4596
|
*/
|
|
4597
|
-
MetricName: AutoMLMetricEnum |
|
|
4597
|
+
MetricName: AutoMLMetricEnum | undefined;
|
|
4598
4598
|
/**
|
|
4599
4599
|
* @public
|
|
4600
4600
|
* <p>The value of the metric with the best result.</p>
|
|
@@ -4605,7 +4605,7 @@ export interface FinalAutoMLJobObjectiveMetric {
|
|
|
4605
4605
|
* <p>The name of the standard metric. For a description of the standard metrics, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-metrics-validation.html#autopilot-metrics">Autopilot
|
|
4606
4606
|
* candidate metrics</a>.</p>
|
|
4607
4607
|
*/
|
|
4608
|
-
StandardMetricName?: AutoMLMetricEnum
|
|
4608
|
+
StandardMetricName?: AutoMLMetricEnum;
|
|
4609
4609
|
}
|
|
4610
4610
|
/**
|
|
4611
4611
|
* @public
|
|
@@ -4679,7 +4679,7 @@ export interface AutoMLCandidate {
|
|
|
4679
4679
|
* @public
|
|
4680
4680
|
* <p>The objective's status.</p>
|
|
4681
4681
|
*/
|
|
4682
|
-
ObjectiveStatus: ObjectiveStatus |
|
|
4682
|
+
ObjectiveStatus: ObjectiveStatus | undefined;
|
|
4683
4683
|
/**
|
|
4684
4684
|
* @public
|
|
4685
4685
|
* <p>Information about the candidate's steps.</p>
|
|
@@ -4689,7 +4689,7 @@ export interface AutoMLCandidate {
|
|
|
4689
4689
|
* @public
|
|
4690
4690
|
* <p>The candidate's status.</p>
|
|
4691
4691
|
*/
|
|
4692
|
-
CandidateStatus: CandidateStatus |
|
|
4692
|
+
CandidateStatus: CandidateStatus | undefined;
|
|
4693
4693
|
/**
|
|
4694
4694
|
* @public
|
|
4695
4695
|
* <p>Information about the recommended inference container definitions.</p>
|
|
@@ -4727,7 +4727,7 @@ export interface AutoMLCandidate {
|
|
|
4727
4727
|
* for jobs created by calling <code>CreateAutoMLJobV2</code>) related to image or text
|
|
4728
4728
|
* classification problem types only.</p>
|
|
4729
4729
|
*/
|
|
4730
|
-
InferenceContainerDefinitions?: Record<
|
|
4730
|
+
InferenceContainerDefinitions?: Record<AutoMLProcessingUnit, AutoMLContainerDefinition[]>;
|
|
4731
4731
|
}
|
|
4732
4732
|
/**
|
|
4733
4733
|
* @public
|
|
@@ -4878,7 +4878,7 @@ export interface AutoMLS3DataSource {
|
|
|
4878
4878
|
* </li>
|
|
4879
4879
|
* </ul>
|
|
4880
4880
|
*/
|
|
4881
|
-
S3DataType: AutoMLS3DataType |
|
|
4881
|
+
S3DataType: AutoMLS3DataType | undefined;
|
|
4882
4882
|
/**
|
|
4883
4883
|
* @public
|
|
4884
4884
|
* <p>The URL to the Amazon S3 data source. The Uri refers to the Amazon S3 prefix or ManifestFile
|
|
@@ -4918,7 +4918,7 @@ export interface AutoMLChannel {
|
|
|
4918
4918
|
* <p>You can use <code>Gzip</code> or <code>None</code>. The default value is
|
|
4919
4919
|
* <code>None</code>.</p>
|
|
4920
4920
|
*/
|
|
4921
|
-
CompressionType?: CompressionType
|
|
4921
|
+
CompressionType?: CompressionType;
|
|
4922
4922
|
/**
|
|
4923
4923
|
* @public
|
|
4924
4924
|
* <p>The name of the target variable in supervised learning, usually represented by
|
|
@@ -4939,7 +4939,7 @@ export interface AutoMLChannel {
|
|
|
4939
4939
|
* <code>ContentType</code> and <code>TargetAttributeName</code>. For information on
|
|
4940
4940
|
* specifying training and validation channel types, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-datasets-problem-types.html#autopilot-data-sources-training-or-validation">How to specify training and validation datasets</a>.</p>
|
|
4941
4941
|
*/
|
|
4942
|
-
ChannelType?: AutoMLChannelType
|
|
4942
|
+
ChannelType?: AutoMLChannelType;
|
|
4943
4943
|
/**
|
|
4944
4944
|
* @public
|
|
4945
4945
|
* <p>If specified, this column name indicates which column of the dataset should be treated
|
|
@@ -5005,7 +5005,7 @@ export interface AutoMLJobChannel {
|
|
|
5005
5005
|
* problem type.</p>
|
|
5006
5006
|
* </note>
|
|
5007
5007
|
*/
|
|
5008
|
-
ChannelType?: AutoMLChannelType
|
|
5008
|
+
ChannelType?: AutoMLChannelType;
|
|
5009
5009
|
/**
|
|
5010
5010
|
* @public
|
|
5011
5011
|
* <p>The content type of the data from the input source. The following are the allowed
|
|
@@ -5040,7 +5040,7 @@ export interface AutoMLJobChannel {
|
|
|
5040
5040
|
* For all other inputs, the compression type should be <code>None</code>. If no compression
|
|
5041
5041
|
* type is provided, we default to <code>None</code>.</p>
|
|
5042
5042
|
*/
|
|
5043
|
-
CompressionType?: CompressionType
|
|
5043
|
+
CompressionType?: CompressionType;
|
|
5044
5044
|
/**
|
|
5045
5045
|
* @public
|
|
5046
5046
|
* <p>The data source for an AutoML channel (Required).</p>
|
|
@@ -5182,7 +5182,7 @@ export interface AutoMLJobConfig {
|
|
|
5182
5182
|
* metric. See <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-model-support-validation.html#autopilot-algorithm-support">Autopilot algorithm support</a> for a list of algorithms supported by
|
|
5183
5183
|
* <code>HYPERPARAMETER_TUNING</code> mode.</p>
|
|
5184
5184
|
*/
|
|
5185
|
-
Mode?: AutoMLMode
|
|
5185
|
+
Mode?: AutoMLMode;
|
|
5186
5186
|
}
|
|
5187
5187
|
/**
|
|
5188
5188
|
* @public
|
|
@@ -5225,7 +5225,7 @@ export interface AutoMLJobObjective {
|
|
|
5225
5225
|
* </li>
|
|
5226
5226
|
* </ul>
|
|
5227
5227
|
*/
|
|
5228
|
-
MetricName: AutoMLMetricEnum |
|
|
5228
|
+
MetricName: AutoMLMetricEnum | undefined;
|
|
5229
5229
|
}
|
|
5230
5230
|
/**
|
|
5231
5231
|
* @public
|
|
@@ -5312,12 +5312,12 @@ export interface AutoMLJobSummary {
|
|
|
5312
5312
|
* @public
|
|
5313
5313
|
* <p>The status of the AutoML job.</p>
|
|
5314
5314
|
*/
|
|
5315
|
-
AutoMLJobStatus: AutoMLJobStatus |
|
|
5315
|
+
AutoMLJobStatus: AutoMLJobStatus | undefined;
|
|
5316
5316
|
/**
|
|
5317
5317
|
* @public
|
|
5318
5318
|
* <p>The secondary status of the AutoML job.</p>
|
|
5319
5319
|
*/
|
|
5320
|
-
AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus |
|
|
5320
|
+
AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
|
|
5321
5321
|
/**
|
|
5322
5322
|
* @public
|
|
5323
5323
|
* <p>When the AutoML job was created.</p>
|
|
@@ -5491,7 +5491,7 @@ export interface TabularJobConfig {
|
|
|
5491
5491
|
* metric. See <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-model-support-validation.html#autopilot-algorithm-support">Autopilot algorithm support</a> for a list of algorithms supported by
|
|
5492
5492
|
* <code>HYPERPARAMETER_TUNING</code> mode.</p>
|
|
5493
5493
|
*/
|
|
5494
|
-
Mode?: AutoMLMode
|
|
5494
|
+
Mode?: AutoMLMode;
|
|
5495
5495
|
/**
|
|
5496
5496
|
* @public
|
|
5497
5497
|
* <p>Generates possible candidates without training the models. A model candidate is a
|
|
@@ -5508,7 +5508,7 @@ export interface TabularJobConfig {
|
|
|
5508
5508
|
* <code>ProblemType</code> and provide the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJobV2.html#sagemaker-CreateAutoMLJobV2-request-AutoMLJobObjective">AutoMLJobObjective</a> metric, or none at all.</p>
|
|
5509
5509
|
* </note>
|
|
5510
5510
|
*/
|
|
5511
|
-
ProblemType?: ProblemType
|
|
5511
|
+
ProblemType?: ProblemType;
|
|
5512
5512
|
/**
|
|
5513
5513
|
* @public
|
|
5514
5514
|
* <p>The name of the target variable in supervised learning, usually represented by
|
|
@@ -5663,7 +5663,7 @@ export interface TimeSeriesTransformations {
|
|
|
5663
5663
|
* <code>backfill</code> to a value of <code>2</code>, you must include two parameters:
|
|
5664
5664
|
* <code>"backfill": "value"</code> and <code>"backfill_value":"2"</code>.</p>
|
|
5665
5665
|
*/
|
|
5666
|
-
Filling?: Record<string, Record<
|
|
5666
|
+
Filling?: Record<string, Record<FillingType, string>>;
|
|
5667
5667
|
/**
|
|
5668
5668
|
* @public
|
|
5669
5669
|
* <p>A key value pair defining the aggregation method for a column, where the key is the
|
|
@@ -5674,7 +5674,7 @@ export interface TimeSeriesTransformations {
|
|
|
5674
5674
|
* <p>Aggregation is only supported for the target column.</p>
|
|
5675
5675
|
* </note>
|
|
5676
5676
|
*/
|
|
5677
|
-
Aggregation?: Record<string, AggregationTransformationValue
|
|
5677
|
+
Aggregation?: Record<string, AggregationTransformationValue>;
|
|
5678
5678
|
}
|
|
5679
5679
|
/**
|
|
5680
5680
|
* @public
|
|
@@ -5881,7 +5881,7 @@ export interface TabularResolvedAttributes {
|
|
|
5881
5881
|
* information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-datasets-problem-types.html#autopilot-problem-types">
|
|
5882
5882
|
* Amazon SageMaker Autopilot problem types</a>.</p>
|
|
5883
5883
|
*/
|
|
5884
|
-
ProblemType?: ProblemType
|
|
5884
|
+
ProblemType?: ProblemType;
|
|
5885
5885
|
}
|
|
5886
5886
|
/**
|
|
5887
5887
|
* @public
|
|
@@ -6048,7 +6048,7 @@ export interface Autotune {
|
|
|
6048
6048
|
* @public
|
|
6049
6049
|
* <p>Set <code>Mode</code> to <code>Enabled</code> if you want to use Autotune.</p>
|
|
6050
6050
|
*/
|
|
6051
|
-
Mode: AutotuneMode |
|
|
6051
|
+
Mode: AutotuneMode | undefined;
|
|
6052
6052
|
}
|
|
6053
6053
|
/**
|
|
6054
6054
|
* @public
|
|
@@ -6148,14 +6148,14 @@ export interface InferenceSpecification {
|
|
|
6148
6148
|
* <p>This parameter is required for unversioned models, and optional for versioned
|
|
6149
6149
|
* models.</p>
|
|
6150
6150
|
*/
|
|
6151
|
-
SupportedTransformInstanceTypes?:
|
|
6151
|
+
SupportedTransformInstanceTypes?: TransformInstanceType[];
|
|
6152
6152
|
/**
|
|
6153
6153
|
* @public
|
|
6154
6154
|
* <p>A list of the instance types that are used to generate inferences in real-time.</p>
|
|
6155
6155
|
* <p>This parameter is required for unversioned models, and optional for versioned
|
|
6156
6156
|
* models.</p>
|
|
6157
6157
|
*/
|
|
6158
|
-
SupportedRealtimeInferenceInstanceTypes?:
|
|
6158
|
+
SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[];
|
|
6159
6159
|
/**
|
|
6160
6160
|
* @public
|
|
6161
6161
|
* <p>The supported MIME types for the input data.</p>
|
|
@@ -6234,12 +6234,12 @@ export interface BatchDescribeModelPackageSummary {
|
|
|
6234
6234
|
* @public
|
|
6235
6235
|
* <p>The status of the mortgage package.</p>
|
|
6236
6236
|
*/
|
|
6237
|
-
ModelPackageStatus: ModelPackageStatus |
|
|
6237
|
+
ModelPackageStatus: ModelPackageStatus | undefined;
|
|
6238
6238
|
/**
|
|
6239
6239
|
* @public
|
|
6240
6240
|
* <p>The approval status of the model.</p>
|
|
6241
6241
|
*/
|
|
6242
|
-
ModelApprovalStatus?: ModelApprovalStatus
|
|
6242
|
+
ModelApprovalStatus?: ModelApprovalStatus;
|
|
6243
6243
|
}
|
|
6244
6244
|
/**
|
|
6245
6245
|
* @public
|
|
@@ -6357,14 +6357,14 @@ export interface BatchTransformInput {
|
|
|
6357
6357
|
* datasets. <code>File</code> mode is useful for small files that fit in memory. Defaults to
|
|
6358
6358
|
* <code>File</code>.</p>
|
|
6359
6359
|
*/
|
|
6360
|
-
S3InputMode?: ProcessingS3InputMode
|
|
6360
|
+
S3InputMode?: ProcessingS3InputMode;
|
|
6361
6361
|
/**
|
|
6362
6362
|
* @public
|
|
6363
6363
|
* <p>Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key.
|
|
6364
6364
|
* Defaults to <code>FullyReplicated</code>
|
|
6365
6365
|
* </p>
|
|
6366
6366
|
*/
|
|
6367
|
-
S3DataDistributionType?: ProcessingS3DataDistributionType
|
|
6367
|
+
S3DataDistributionType?: ProcessingS3DataDistributionType;
|
|
6368
6368
|
/**
|
|
6369
6369
|
* @public
|
|
6370
6370
|
* <p>The attributes of the input data that are the input features.</p>
|
|
@@ -6499,7 +6499,7 @@ export interface CapacitySize {
|
|
|
6499
6499
|
* </li>
|
|
6500
6500
|
* </ul>
|
|
6501
6501
|
*/
|
|
6502
|
-
Type: CapacitySizeType |
|
|
6502
|
+
Type: CapacitySizeType | undefined;
|
|
6503
6503
|
/**
|
|
6504
6504
|
* @public
|
|
6505
6505
|
* <p>Defines the capacity size, either as a number of instances or a capacity
|
|
@@ -6551,7 +6551,7 @@ export interface TrafficRoutingConfig {
|
|
|
6551
6551
|
* </li>
|
|
6552
6552
|
* </ul>
|
|
6553
6553
|
*/
|
|
6554
|
-
Type: TrafficRoutingConfigType |
|
|
6554
|
+
Type: TrafficRoutingConfigType | undefined;
|
|
6555
6555
|
/**
|
|
6556
6556
|
* @public
|
|
6557
6557
|
* <p>The waiting time (in seconds) between incremental steps to turn on traffic on the
|
|
@@ -6700,7 +6700,7 @@ export interface DirectDeploySettings {
|
|
|
6700
6700
|
* @public
|
|
6701
6701
|
* <p>Describes whether model deployment permissions are enabled or disabled in the Canvas application.</p>
|
|
6702
6702
|
*/
|
|
6703
|
-
Status?: FeatureStatus
|
|
6703
|
+
Status?: FeatureStatus;
|
|
6704
6704
|
}
|
|
6705
6705
|
/**
|
|
6706
6706
|
* @public
|
|
@@ -6724,13 +6724,13 @@ export interface IdentityProviderOAuthSetting {
|
|
|
6724
6724
|
* @public
|
|
6725
6725
|
* <p>The name of the data source that you're connecting to. Canvas currently supports OAuth for Snowflake and Salesforce Data Cloud.</p>
|
|
6726
6726
|
*/
|
|
6727
|
-
DataSourceName?: DataSourceName
|
|
6727
|
+
DataSourceName?: DataSourceName;
|
|
6728
6728
|
/**
|
|
6729
6729
|
* @public
|
|
6730
6730
|
* <p>Describes whether OAuth for a data source is enabled or disabled in the Canvas
|
|
6731
6731
|
* application.</p>
|
|
6732
6732
|
*/
|
|
6733
|
-
Status?: FeatureStatus
|
|
6733
|
+
Status?: FeatureStatus;
|
|
6734
6734
|
/**
|
|
6735
6735
|
* @public
|
|
6736
6736
|
* <p>The ARN of an Amazon Web Services Secrets Manager secret that stores the credentials from your
|
|
@@ -6749,7 +6749,7 @@ export interface KendraSettings {
|
|
|
6749
6749
|
* <p>Describes whether the document querying feature is enabled
|
|
6750
6750
|
* or disabled in the Canvas application.</p>
|
|
6751
6751
|
*/
|
|
6752
|
-
Status?: FeatureStatus
|
|
6752
|
+
Status?: FeatureStatus;
|
|
6753
6753
|
}
|
|
6754
6754
|
/**
|
|
6755
6755
|
* @public
|
|
@@ -6761,7 +6761,7 @@ export interface ModelRegisterSettings {
|
|
|
6761
6761
|
* <p>Describes whether the integration to the model registry is enabled or disabled in the
|
|
6762
6762
|
* Canvas application.</p>
|
|
6763
6763
|
*/
|
|
6764
|
-
Status?: FeatureStatus
|
|
6764
|
+
Status?: FeatureStatus;
|
|
6765
6765
|
/**
|
|
6766
6766
|
* @public
|
|
6767
6767
|
* <p>The Amazon Resource Name (ARN) of the SageMaker model registry account. Required only to register model versions
|
|
@@ -6780,7 +6780,7 @@ export interface TimeSeriesForecastingSettings {
|
|
|
6780
6780
|
* <p>Describes whether time series forecasting is enabled or disabled in the Canvas
|
|
6781
6781
|
* application.</p>
|
|
6782
6782
|
*/
|
|
6783
|
-
Status?: FeatureStatus
|
|
6783
|
+
Status?: FeatureStatus;
|
|
6784
6784
|
/**
|
|
6785
6785
|
* @public
|
|
6786
6786
|
* <p>The IAM role that Canvas passes to Amazon Forecast for time series forecasting. By default,
|
|
@@ -6888,7 +6888,7 @@ export interface CaptureOption {
|
|
|
6888
6888
|
* @public
|
|
6889
6889
|
* <p>Specify the boundary of data to capture.</p>
|
|
6890
6890
|
*/
|
|
6891
|
-
CaptureMode: CaptureMode |
|
|
6891
|
+
CaptureMode: CaptureMode | undefined;
|
|
6892
6892
|
}
|
|
6893
6893
|
/**
|
|
6894
6894
|
* @public
|
|
@@ -6976,7 +6976,7 @@ export interface ChannelSpecification {
|
|
|
6976
6976
|
* @public
|
|
6977
6977
|
* <p>The allowed compression types, if data compression is used.</p>
|
|
6978
6978
|
*/
|
|
6979
|
-
SupportedCompressionTypes?:
|
|
6979
|
+
SupportedCompressionTypes?: CompressionType[];
|
|
6980
6980
|
/**
|
|
6981
6981
|
* @public
|
|
6982
6982
|
* <p>The allowed input mode, either FILE or PIPE.</p>
|
|
@@ -6986,7 +6986,7 @@ export interface ChannelSpecification {
|
|
|
6986
6986
|
* <p>In PIPE mode, Amazon SageMaker streams input data from the source directly to your algorithm
|
|
6987
6987
|
* without using the EBS volume.</p>
|
|
6988
6988
|
*/
|
|
6989
|
-
SupportedInputModes:
|
|
6989
|
+
SupportedInputModes: TrainingInputMode[] | undefined;
|
|
6990
6990
|
}
|
|
6991
6991
|
/**
|
|
6992
6992
|
* @public
|
|
@@ -7191,7 +7191,7 @@ export interface ClarifyInferenceConfig {
|
|
|
7191
7191
|
* payload. For additional information see the <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/clarify-online-explainability-invoke-endpoint.html#clarify-online-explainability-response">response</a> section under <b>Invoke the endpoint</b>
|
|
7192
7192
|
* in the Developer Guide for more information.</p>
|
|
7193
7193
|
*/
|
|
7194
|
-
FeatureTypes?:
|
|
7194
|
+
FeatureTypes?: ClarifyFeatureType[];
|
|
7195
7195
|
}
|
|
7196
7196
|
/**
|
|
7197
7197
|
* @public
|
|
@@ -7349,14 +7349,14 @@ export interface ClarifyTextConfig {
|
|
|
7349
7349
|
* <p>For a mix of multiple languages, use code <code>'xx'</code>.</p>
|
|
7350
7350
|
* </note>
|
|
7351
7351
|
*/
|
|
7352
|
-
Language: ClarifyTextLanguage |
|
|
7352
|
+
Language: ClarifyTextLanguage | undefined;
|
|
7353
7353
|
/**
|
|
7354
7354
|
* @public
|
|
7355
7355
|
* <p>The unit of granularity for the analysis of text features. For example, if the unit is
|
|
7356
7356
|
* <code>'token'</code>, then each token (like a word in English) of the text is
|
|
7357
7357
|
* treated as a feature. SHAP values are computed for each unit/feature.</p>
|
|
7358
7358
|
*/
|
|
7359
|
-
Granularity: ClarifyTextGranularity |
|
|
7359
|
+
Granularity: ClarifyTextGranularity | undefined;
|
|
7360
7360
|
}
|
|
7361
7361
|
/**
|
|
7362
7362
|
* @public
|
|
@@ -7781,25 +7781,25 @@ export interface CompilationJobSummary {
|
|
|
7781
7781
|
* <p>The type of device that the model will run on after the compilation job has
|
|
7782
7782
|
* completed.</p>
|
|
7783
7783
|
*/
|
|
7784
|
-
CompilationTargetDevice?: TargetDevice
|
|
7784
|
+
CompilationTargetDevice?: TargetDevice;
|
|
7785
7785
|
/**
|
|
7786
7786
|
* @public
|
|
7787
7787
|
* <p>The type of OS that the model will run on after the compilation job has
|
|
7788
7788
|
* completed.</p>
|
|
7789
7789
|
*/
|
|
7790
|
-
CompilationTargetPlatformOs?: TargetPlatformOs
|
|
7790
|
+
CompilationTargetPlatformOs?: TargetPlatformOs;
|
|
7791
7791
|
/**
|
|
7792
7792
|
* @public
|
|
7793
7793
|
* <p>The type of architecture that the model will run on after the compilation job has
|
|
7794
7794
|
* completed.</p>
|
|
7795
7795
|
*/
|
|
7796
|
-
CompilationTargetPlatformArch?: TargetPlatformArch
|
|
7796
|
+
CompilationTargetPlatformArch?: TargetPlatformArch;
|
|
7797
7797
|
/**
|
|
7798
7798
|
* @public
|
|
7799
7799
|
* <p>The type of accelerator that the model will run on after the compilation job has
|
|
7800
7800
|
* completed.</p>
|
|
7801
7801
|
*/
|
|
7802
|
-
CompilationTargetPlatformAccelerator?: TargetPlatformAccelerator
|
|
7802
|
+
CompilationTargetPlatformAccelerator?: TargetPlatformAccelerator;
|
|
7803
7803
|
/**
|
|
7804
7804
|
* @public
|
|
7805
7805
|
* <p>The time when the model compilation job was last modified.</p>
|
|
@@ -7809,7 +7809,7 @@ export interface CompilationJobSummary {
|
|
|
7809
7809
|
* @public
|
|
7810
7810
|
* <p>The status of the model compilation job.</p>
|
|
7811
7811
|
*/
|
|
7812
|
-
CompilationJobStatus: CompilationJobStatus |
|
|
7812
|
+
CompilationJobStatus: CompilationJobStatus | undefined;
|
|
7813
7813
|
}
|
|
7814
7814
|
/**
|
|
7815
7815
|
* @public
|
|
@@ -7844,7 +7844,7 @@ export interface ConditionStepMetadata {
|
|
|
7844
7844
|
* @public
|
|
7845
7845
|
* <p>The outcome of the Condition step evaluation.</p>
|
|
7846
7846
|
*/
|
|
7847
|
-
Outcome?: ConditionOutcome
|
|
7847
|
+
Outcome?: ConditionOutcome;
|
|
7848
7848
|
}
|
|
7849
7849
|
/**
|
|
7850
7850
|
* @public
|
|
@@ -7914,7 +7914,7 @@ export interface ImageConfig {
|
|
|
7914
7914
|
* </li>
|
|
7915
7915
|
* </ul>
|
|
7916
7916
|
*/
|
|
7917
|
-
RepositoryAccessMode: RepositoryAccessMode |
|
|
7917
|
+
RepositoryAccessMode: RepositoryAccessMode | undefined;
|
|
7918
7918
|
/**
|
|
7919
7919
|
* @public
|
|
7920
7920
|
* <p>(Optional) Specifies an authentication configuration for the private docker registry
|
|
@@ -7981,7 +7981,7 @@ export interface S3ModelDataSource {
|
|
|
7981
7981
|
* <p>If you choose <code>S3Object</code>, <code>S3Uri</code> identifies an object that is
|
|
7982
7982
|
* the ML model data to deploy.</p>
|
|
7983
7983
|
*/
|
|
7984
|
-
S3DataType: S3ModelDataType |
|
|
7984
|
+
S3DataType: S3ModelDataType | undefined;
|
|
7985
7985
|
/**
|
|
7986
7986
|
* @public
|
|
7987
7987
|
* <p>Specifies how the ML model data is prepared.</p>
|
|
@@ -8052,7 +8052,7 @@ export interface S3ModelDataSource {
|
|
|
8052
8052
|
* </li>
|
|
8053
8053
|
* </ul>
|
|
8054
8054
|
*/
|
|
8055
|
-
CompressionType: ModelCompressionType |
|
|
8055
|
+
CompressionType: ModelCompressionType | undefined;
|
|
8056
8056
|
}
|
|
8057
8057
|
/**
|
|
8058
8058
|
* @public
|
|
@@ -8092,7 +8092,7 @@ export interface MultiModelConfig {
|
|
|
8092
8092
|
* perform better if you disable model caching. To disable model caching, set the value of
|
|
8093
8093
|
* this parameter to <code>Disabled</code>.</p>
|
|
8094
8094
|
*/
|
|
8095
|
-
ModelCacheSetting?: ModelCacheSetting
|
|
8095
|
+
ModelCacheSetting?: ModelCacheSetting;
|
|
8096
8096
|
}
|
|
8097
8097
|
/**
|
|
8098
8098
|
* @public
|
|
@@ -8149,7 +8149,7 @@ export interface ContainerDefinition {
|
|
|
8149
8149
|
* @public
|
|
8150
8150
|
* <p>Whether the container hosts a single model or multiple models.</p>
|
|
8151
8151
|
*/
|
|
8152
|
-
Mode?: ContainerMode
|
|
8152
|
+
Mode?: ContainerMode;
|
|
8153
8153
|
/**
|
|
8154
8154
|
* @public
|
|
8155
8155
|
* <p>The S3 path where the model artifacts, which result from model training, are stored.
|
|
@@ -8347,7 +8347,7 @@ export interface ContinuousParameterRange {
|
|
|
8347
8347
|
* </dd>
|
|
8348
8348
|
* </dl>
|
|
8349
8349
|
*/
|
|
8350
|
-
ScalingType?: HyperParameterScalingType
|
|
8350
|
+
ScalingType?: HyperParameterScalingType;
|
|
8351
8351
|
}
|
|
8352
8352
|
/**
|
|
8353
8353
|
* @public
|
|
@@ -8376,7 +8376,7 @@ export interface ConvergenceDetected {
|
|
|
8376
8376
|
* @public
|
|
8377
8377
|
* <p>A flag to stop a tuning job once AMT has detected that the job has converged.</p>
|
|
8378
8378
|
*/
|
|
8379
|
-
CompleteOnConvergence?: CompleteOnConvergence
|
|
8379
|
+
CompleteOnConvergence?: CompleteOnConvergence;
|
|
8380
8380
|
}
|
|
8381
8381
|
/**
|
|
8382
8382
|
* @public
|
|
@@ -8432,7 +8432,7 @@ export interface CreateActionRequest {
|
|
|
8432
8432
|
* @public
|
|
8433
8433
|
* <p>The status of the action.</p>
|
|
8434
8434
|
*/
|
|
8435
|
-
Status?: ActionStatus
|
|
8435
|
+
Status?: ActionStatus;
|
|
8436
8436
|
/**
|
|
8437
8437
|
* @public
|
|
8438
8438
|
* <p>A list of properties to add to the action.</p>
|
|
@@ -8534,7 +8534,7 @@ export interface HyperParameterSpecification {
|
|
|
8534
8534
|
* <p>The type of this hyperparameter. The valid types are <code>Integer</code>,
|
|
8535
8535
|
* <code>Continuous</code>, <code>Categorical</code>, and <code>FreeText</code>.</p>
|
|
8536
8536
|
*/
|
|
8537
|
-
Type: ParameterType |
|
|
8537
|
+
Type: ParameterType | undefined;
|
|
8538
8538
|
/**
|
|
8539
8539
|
* @public
|
|
8540
8540
|
* <p>The allowed range for this hyperparameter.</p>
|
|
@@ -8586,7 +8586,7 @@ export interface HyperParameterTuningJobObjective {
|
|
|
8586
8586
|
* minimize
|
|
8587
8587
|
* or maximize the objective metric.</p>
|
|
8588
8588
|
*/
|
|
8589
|
-
Type: HyperParameterTuningJobObjectiveType |
|
|
8589
|
+
Type: HyperParameterTuningJobObjectiveType | undefined;
|
|
8590
8590
|
/**
|
|
8591
8591
|
* @public
|
|
8592
8592
|
* <p>The
|
|
@@ -8622,7 +8622,7 @@ export interface TrainingSpecification {
|
|
|
8622
8622
|
* @public
|
|
8623
8623
|
* <p>A list of the instance types that this algorithm can use for training.</p>
|
|
8624
8624
|
*/
|
|
8625
|
-
SupportedTrainingInstanceTypes:
|
|
8625
|
+
SupportedTrainingInstanceTypes: TrainingInstanceType[] | undefined;
|
|
8626
8626
|
/**
|
|
8627
8627
|
* @public
|
|
8628
8628
|
* <p>Indicates whether the algorithm supports distributed training. If set to false, buyers
|
|
@@ -8778,7 +8778,7 @@ export interface ResourceSpec {
|
|
|
8778
8778
|
* instance types.</p>
|
|
8779
8779
|
* </note>
|
|
8780
8780
|
*/
|
|
8781
|
-
InstanceType?: AppInstanceType
|
|
8781
|
+
InstanceType?: AppInstanceType;
|
|
8782
8782
|
/**
|
|
8783
8783
|
* @public
|
|
8784
8784
|
* <p> The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.</p>
|
|
@@ -8803,7 +8803,7 @@ export interface CreateAppRequest {
|
|
|
8803
8803
|
* @public
|
|
8804
8804
|
* <p>The type of app.</p>
|
|
8805
8805
|
*/
|
|
8806
|
-
AppType: AppType |
|
|
8806
|
+
AppType: AppType | undefined;
|
|
8807
8807
|
/**
|
|
8808
8808
|
* @public
|
|
8809
8809
|
* <p>The name of the app.</p>
|
|
@@ -8990,7 +8990,7 @@ export interface CreateAutoMLJobRequest {
|
|
|
8990
8990
|
* information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-datasets-problem-types.html#autopilot-problem-types">
|
|
8991
8991
|
* Amazon SageMaker Autopilot problem types</a>.</p>
|
|
8992
8992
|
*/
|
|
8993
|
-
ProblemType?: ProblemType
|
|
8993
|
+
ProblemType?: ProblemType;
|
|
8994
8994
|
/**
|
|
8995
8995
|
* @public
|
|
8996
8996
|
* <p>Specifies a metric to minimize or maximize as the objective of a job. If not specified,
|
|
@@ -9559,7 +9559,7 @@ export interface InputConfig {
|
|
|
9559
9559
|
* <p>Identifies the framework in which the model was trained. For example:
|
|
9560
9560
|
* TENSORFLOW.</p>
|
|
9561
9561
|
*/
|
|
9562
|
-
Framework: Framework |
|
|
9562
|
+
Framework: Framework | undefined;
|
|
9563
9563
|
/**
|
|
9564
9564
|
* @public
|
|
9565
9565
|
* <p>Specifies the framework version to use. This API field is only supported for the
|
|
@@ -9595,7 +9595,7 @@ export interface TargetPlatform {
|
|
|
9595
9595
|
* </li>
|
|
9596
9596
|
* </ul>
|
|
9597
9597
|
*/
|
|
9598
|
-
Os: TargetPlatformOs |
|
|
9598
|
+
Os: TargetPlatformOs | undefined;
|
|
9599
9599
|
/**
|
|
9600
9600
|
* @public
|
|
9601
9601
|
* <p>Specifies a target platform architecture.</p>
|
|
@@ -9623,7 +9623,7 @@ export interface TargetPlatform {
|
|
|
9623
9623
|
* </li>
|
|
9624
9624
|
* </ul>
|
|
9625
9625
|
*/
|
|
9626
|
-
Arch: TargetPlatformArch |
|
|
9626
|
+
Arch: TargetPlatformArch | undefined;
|
|
9627
9627
|
/**
|
|
9628
9628
|
* @public
|
|
9629
9629
|
* <p>Specifies a target platform accelerator (optional).</p>
|
|
@@ -9644,7 +9644,7 @@ export interface TargetPlatform {
|
|
|
9644
9644
|
* </li>
|
|
9645
9645
|
* </ul>
|
|
9646
9646
|
*/
|
|
9647
|
-
Accelerator?: TargetPlatformAccelerator
|
|
9647
|
+
Accelerator?: TargetPlatformAccelerator;
|
|
9648
9648
|
}
|
|
9649
9649
|
/**
|
|
9650
9650
|
* @public
|
|
@@ -9674,7 +9674,7 @@ export interface OutputConfig {
|
|
|
9674
9674
|
* and <code>ml_inf2</code> is available only in US East (Ohio) Region.</p>
|
|
9675
9675
|
* </note>
|
|
9676
9676
|
*/
|
|
9677
|
-
TargetDevice?: TargetDevice
|
|
9677
|
+
TargetDevice?: TargetDevice;
|
|
9678
9678
|
/**
|
|
9679
9679
|
* @public
|
|
9680
9680
|
* <p>Contains information about a target platform that you want your model to run on, such
|
|
@@ -10196,14 +10196,14 @@ export interface EndpointInput {
|
|
|
10196
10196
|
* datasets. <code>File</code> mode is useful for small files that fit in memory. Defaults to
|
|
10197
10197
|
* <code>File</code>.</p>
|
|
10198
10198
|
*/
|
|
10199
|
-
S3InputMode?: ProcessingS3InputMode
|
|
10199
|
+
S3InputMode?: ProcessingS3InputMode;
|
|
10200
10200
|
/**
|
|
10201
10201
|
* @public
|
|
10202
10202
|
* <p>Whether input data distributed in Amazon S3 is fully replicated or sharded by an
|
|
10203
10203
|
* Amazon S3 key. Defaults to <code>FullyReplicated</code>
|
|
10204
10204
|
* </p>
|
|
10205
10205
|
*/
|
|
10206
|
-
S3DataDistributionType?: ProcessingS3DataDistributionType
|
|
10206
|
+
S3DataDistributionType?: ProcessingS3DataDistributionType;
|
|
10207
10207
|
/**
|
|
10208
10208
|
* @public
|
|
10209
10209
|
* <p>The attributes of the input data that are the input features.</p>
|
|
@@ -10297,7 +10297,7 @@ export interface MonitoringS3Output {
|
|
|
10297
10297
|
* <p>Whether to upload the results of the monitoring job continuously or after the job
|
|
10298
10298
|
* completes.</p>
|
|
10299
10299
|
*/
|
|
10300
|
-
S3UploadMode?: ProcessingS3UploadMode
|
|
10300
|
+
S3UploadMode?: ProcessingS3UploadMode;
|
|
10301
10301
|
}
|
|
10302
10302
|
/**
|
|
10303
10303
|
* @public
|
|
@@ -10398,7 +10398,7 @@ export interface MonitoringClusterConfig {
|
|
|
10398
10398
|
* @public
|
|
10399
10399
|
* <p>The ML compute instance type for the processing job.</p>
|
|
10400
10400
|
*/
|
|
10401
|
-
InstanceType: ProcessingInstanceType |
|
|
10401
|
+
InstanceType: ProcessingInstanceType | undefined;
|
|
10402
10402
|
/**
|
|
10403
10403
|
* @public
|
|
10404
10404
|
* <p>The size of the ML storage volume, in gigabytes, that you want to provision. You must
|