@aws-sdk/client-sagemaker 3.687.0 → 3.692.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.
Files changed (33) hide show
  1. package/dist-cjs/index.js +12 -1
  2. package/dist-es/models/models_0.js +4 -0
  3. package/dist-es/models/models_1.js +7 -0
  4. package/dist-types/commands/BatchDescribeModelPackageCommand.d.ts +1 -1
  5. package/dist-types/commands/CreateAlgorithmCommand.d.ts +2 -2
  6. package/dist-types/commands/CreateInferenceExperimentCommand.d.ts +1 -1
  7. package/dist-types/commands/CreateModelPackageCommand.d.ts +3 -3
  8. package/dist-types/commands/CreateNotebookInstanceCommand.d.ts +1 -1
  9. package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeAlgorithmCommand.d.ts +2 -2
  11. package/dist-types/commands/DescribeInferenceExperimentCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeModelPackageCommand.d.ts +3 -3
  13. package/dist-types/commands/DescribeNotebookInstanceCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeTransformJobCommand.d.ts +1 -1
  15. package/dist-types/commands/ListNotebookInstancesCommand.d.ts +1 -1
  16. package/dist-types/commands/SearchCommand.d.ts +4 -4
  17. package/dist-types/commands/StopInferenceExperimentCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateInferenceExperimentCommand.d.ts +1 -1
  19. package/dist-types/commands/UpdateModelPackageCommand.d.ts +2 -2
  20. package/dist-types/commands/UpdateNotebookInstanceCommand.d.ts +1 -1
  21. package/dist-types/models/models_0.d.ts +432 -428
  22. package/dist-types/models/models_1.d.ts +586 -579
  23. package/dist-types/models/models_2.d.ts +583 -583
  24. package/dist-types/models/models_3.d.ts +944 -944
  25. package/dist-types/models/models_4.d.ts +950 -950
  26. package/dist-types/models/models_5.d.ts +20 -20
  27. package/dist-types/ts3.4/models/models_0.d.ts +452 -433
  28. package/dist-types/ts3.4/models/models_1.d.ts +596 -579
  29. package/dist-types/ts3.4/models/models_2.d.ts +591 -583
  30. package/dist-types/ts3.4/models/models_3.d.ts +956 -944
  31. package/dist-types/ts3.4/models/models_4.d.ts +964 -950
  32. package/dist-types/ts3.4/models/models_5.d.ts +20 -20
  33. package/package.json +36 -36
@@ -14,12 +14,12 @@ export interface ActionSource {
14
14
  * <p>The type of the source.</p>
15
15
  * @public
16
16
  */
17
- SourceType?: string;
17
+ SourceType?: string | undefined;
18
18
  /**
19
19
  * <p>The ID of the source.</p>
20
20
  * @public
21
21
  */
22
- SourceId?: string;
22
+ SourceId?: string | undefined;
23
23
  }
24
24
  /**
25
25
  * @public
@@ -48,37 +48,37 @@ export interface ActionSummary {
48
48
  * <p>The Amazon Resource Name (ARN) of the action.</p>
49
49
  * @public
50
50
  */
51
- ActionArn?: string;
51
+ ActionArn?: string | undefined;
52
52
  /**
53
53
  * <p>The name of the action.</p>
54
54
  * @public
55
55
  */
56
- ActionName?: string;
56
+ ActionName?: string | undefined;
57
57
  /**
58
58
  * <p>The source of the action.</p>
59
59
  * @public
60
60
  */
61
- Source?: ActionSource;
61
+ Source?: ActionSource | undefined;
62
62
  /**
63
63
  * <p>The type of the action.</p>
64
64
  * @public
65
65
  */
66
- ActionType?: string;
66
+ ActionType?: string | undefined;
67
67
  /**
68
68
  * <p>The status of the action.</p>
69
69
  * @public
70
70
  */
71
- Status?: ActionStatus;
71
+ Status?: ActionStatus | undefined;
72
72
  /**
73
73
  * <p>When the action was created.</p>
74
74
  * @public
75
75
  */
76
- CreationTime?: Date;
76
+ CreationTime?: Date | undefined;
77
77
  /**
78
78
  * <p>When the action was last modified.</p>
79
79
  * @public
80
80
  */
81
- LastModifiedTime?: Date;
81
+ LastModifiedTime?: Date | undefined;
82
82
  }
83
83
  /**
84
84
  * @public
@@ -133,7 +133,7 @@ export interface AddAssociationRequest {
133
133
  * </ul>
134
134
  * @public
135
135
  */
136
- AssociationType?: AssociationEdgeType;
136
+ AssociationType?: AssociationEdgeType | undefined;
137
137
  }
138
138
  /**
139
139
  * @public
@@ -143,12 +143,12 @@ export interface AddAssociationResponse {
143
143
  * <p>The ARN of the source.</p>
144
144
  * @public
145
145
  */
146
- SourceArn?: string;
146
+ SourceArn?: string | undefined;
147
147
  /**
148
148
  * <p>The Amazon Resource Name (ARN) of the destination.</p>
149
149
  * @public
150
150
  */
151
- DestinationArn?: string;
151
+ DestinationArn?: string | undefined;
152
152
  }
153
153
  /**
154
154
  * <p> You have exceeded an SageMaker resource limit. For example, you might have too many
@@ -158,7 +158,7 @@ export interface AddAssociationResponse {
158
158
  export declare class ResourceLimitExceeded extends __BaseException {
159
159
  readonly name: "ResourceLimitExceeded";
160
160
  readonly $fault: "client";
161
- Message?: string;
161
+ Message?: string | undefined;
162
162
  /**
163
163
  * @internal
164
164
  */
@@ -171,7 +171,7 @@ export declare class ResourceLimitExceeded extends __BaseException {
171
171
  export declare class ResourceNotFound extends __BaseException {
172
172
  readonly name: "ResourceNotFound";
173
173
  readonly $fault: "client";
174
- Message?: string;
174
+ Message?: string | undefined;
175
175
  /**
176
176
  * @internal
177
177
  */
@@ -225,7 +225,7 @@ export interface AdditionalS3DataSource {
225
225
  * compressed.</p>
226
226
  * @public
227
227
  */
228
- CompressionType?: CompressionType;
228
+ CompressionType?: CompressionType | undefined;
229
229
  }
230
230
  /**
231
231
  * @public
@@ -388,18 +388,18 @@ export interface S3ModelDataSource {
388
388
  * they are acceptable for your use case before downloading or using a model.</p>
389
389
  * @public
390
390
  */
391
- ModelAccessConfig?: ModelAccessConfig;
391
+ ModelAccessConfig?: ModelAccessConfig | undefined;
392
392
  /**
393
393
  * <p>Configuration information for hub access.</p>
394
394
  * @public
395
395
  */
396
- HubAccessConfig?: InferenceHubAccessConfig;
396
+ HubAccessConfig?: InferenceHubAccessConfig | undefined;
397
397
  /**
398
398
  * <p>The Amazon S3 URI of the manifest file. The manifest file is a CSV file that stores the
399
399
  * artifact locations.</p>
400
400
  * @public
401
401
  */
402
- ManifestS3Uri?: string;
402
+ ManifestS3Uri?: string | undefined;
403
403
  }
404
404
  /**
405
405
  * <p>Specifies the location of ML model data to deploy. If specified, you must specify one
@@ -411,7 +411,7 @@ export interface ModelDataSource {
411
411
  * <p>Specifies the S3 location of ML model data to deploy.</p>
412
412
  * @public
413
413
  */
414
- S3DataSource?: S3ModelDataSource;
414
+ S3DataSource?: S3ModelDataSource | undefined;
415
415
  }
416
416
  /**
417
417
  * <p>Input object for the model.</p>
@@ -433,7 +433,7 @@ export interface ModelPackageContainerDefinition {
433
433
  * <p>The DNS host name for the Docker container.</p>
434
434
  * @public
435
435
  */
436
- ContainerHostname?: string;
436
+ ContainerHostname?: string | undefined;
437
437
  /**
438
438
  * <p>The Amazon EC2 Container Registry (Amazon ECR) path where inference code is stored.</p>
439
439
  * <p>If you are using your own custom algorithm instead of an algorithm provided by SageMaker,
@@ -449,7 +449,7 @@ export interface ModelPackageContainerDefinition {
449
449
  * training.</p>
450
450
  * @public
451
451
  */
452
- ImageDigest?: string;
452
+ ImageDigest?: string | undefined;
453
453
  /**
454
454
  * <p>The Amazon S3 path where the model artifacts, which result from model training, are stored.
455
455
  * This path must point to a single <code>gzip</code> compressed tar archive
@@ -460,52 +460,52 @@ export interface ModelPackageContainerDefinition {
460
460
  * </note>
461
461
  * @public
462
462
  */
463
- ModelDataUrl?: string;
463
+ ModelDataUrl?: string | undefined;
464
464
  /**
465
465
  * <p>Specifies the location of ML model data to deploy during endpoint creation.</p>
466
466
  * @public
467
467
  */
468
- ModelDataSource?: ModelDataSource;
468
+ ModelDataSource?: ModelDataSource | undefined;
469
469
  /**
470
470
  * <p>The Amazon Web Services Marketplace product ID of the model package.</p>
471
471
  * @public
472
472
  */
473
- ProductId?: string;
473
+ ProductId?: string | undefined;
474
474
  /**
475
475
  * <p>The environment variables to set in the Docker container. Each key and value in the
476
476
  * <code>Environment</code> string to string map can have length of up to 1024. We
477
477
  * support up to 16 entries in the map.</p>
478
478
  * @public
479
479
  */
480
- Environment?: Record<string, string>;
480
+ Environment?: Record<string, string> | undefined;
481
481
  /**
482
482
  * <p>A structure with Model Input details.</p>
483
483
  * @public
484
484
  */
485
- ModelInput?: ModelInput;
485
+ ModelInput?: ModelInput | undefined;
486
486
  /**
487
487
  * <p>The machine learning framework of the model package container image.</p>
488
488
  * @public
489
489
  */
490
- Framework?: string;
490
+ Framework?: string | undefined;
491
491
  /**
492
492
  * <p>The framework version of the Model Package Container Image.</p>
493
493
  * @public
494
494
  */
495
- FrameworkVersion?: string;
495
+ FrameworkVersion?: string | undefined;
496
496
  /**
497
497
  * <p>The name of a pre-trained machine learning benchmarked by
498
498
  * Amazon SageMaker Inference Recommender model that matches your model.
499
499
  * You can find a list of benchmarked models by calling <code>ListModelMetadata</code>.</p>
500
500
  * @public
501
501
  */
502
- NearestModelName?: string;
502
+ NearestModelName?: string | undefined;
503
503
  /**
504
504
  * <p>The additional data source that is used during inference in the Docker container for
505
505
  * your model package.</p>
506
506
  * @public
507
507
  */
508
- AdditionalS3DataSource?: AdditionalS3DataSource;
508
+ AdditionalS3DataSource?: AdditionalS3DataSource | undefined;
509
509
  }
510
510
  /**
511
511
  * @public
@@ -748,6 +748,10 @@ export declare const TransformInstanceType: {
748
748
  readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
749
749
  readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
750
750
  readonly ML_G5_XLARGE: "ml.g5.xlarge";
751
+ readonly ML_INF2_24XLARGE: "ml.inf2.24xlarge";
752
+ readonly ML_INF2_48XLARGE: "ml.inf2.48xlarge";
753
+ readonly ML_INF2_8XLARGE: "ml.inf2.8xlarge";
754
+ readonly ML_INF2_XLARGE: "ml.inf2.xlarge";
751
755
  readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
752
756
  readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
753
757
  readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
@@ -824,7 +828,7 @@ export interface AdditionalInferenceSpecificationDefinition {
824
828
  * <p>A description of the additional Inference specification</p>
825
829
  * @public
826
830
  */
827
- Description?: string;
831
+ Description?: string | undefined;
828
832
  /**
829
833
  * <p>The Amazon ECR registry path of the Docker image that contains the inference code.</p>
830
834
  * @public
@@ -835,22 +839,22 @@ export interface AdditionalInferenceSpecificationDefinition {
835
839
  * or on which an endpoint can be deployed.</p>
836
840
  * @public
837
841
  */
838
- SupportedTransformInstanceTypes?: TransformInstanceType[];
842
+ SupportedTransformInstanceTypes?: TransformInstanceType[] | undefined;
839
843
  /**
840
844
  * <p>A list of the instance types that are used to generate inferences in real-time.</p>
841
845
  * @public
842
846
  */
843
- SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[];
847
+ SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[] | undefined;
844
848
  /**
845
849
  * <p>The supported MIME types for the input data.</p>
846
850
  * @public
847
851
  */
848
- SupportedContentTypes?: string[];
852
+ SupportedContentTypes?: string[] | undefined;
849
853
  /**
850
854
  * <p>The supported MIME types for the output data.</p>
851
855
  * @public
852
856
  */
853
- SupportedResponseMIMETypes?: string[];
857
+ SupportedResponseMIMETypes?: string[] | undefined;
854
858
  }
855
859
  /**
856
860
  * <p>Data sources that are available to your model in addition to the one that you specify for <code>ModelDataSource</code> when you use the <code>CreateModel</code> action.</p>
@@ -918,7 +922,7 @@ export interface AddTagsOutput {
918
922
  * <p>A list of tags associated with the SageMaker resource.</p>
919
923
  * @public
920
924
  */
921
- Tags?: Tag[];
925
+ Tags?: Tag[] | undefined;
922
926
  }
923
927
  /**
924
928
  * <p>Edge Manager agent version.</p>
@@ -960,7 +964,7 @@ export interface Alarm {
960
964
  * <p>The name of a CloudWatch alarm in your account.</p>
961
965
  * @public
962
966
  */
963
- AlarmName?: string;
967
+ AlarmName?: string | undefined;
964
968
  }
965
969
  /**
966
970
  * @public
@@ -1040,7 +1044,7 @@ export interface TrainingImageConfig {
1040
1044
  * containing your training images.</p>
1041
1045
  * @public
1042
1046
  */
1043
- TrainingRepositoryAuthConfig?: TrainingRepositoryAuthConfig;
1047
+ TrainingRepositoryAuthConfig?: TrainingRepositoryAuthConfig | undefined;
1044
1048
  }
1045
1049
  /**
1046
1050
  * @public
@@ -1081,7 +1085,7 @@ export interface AlgorithmSpecification {
1081
1085
  * </note>
1082
1086
  * @public
1083
1087
  */
1084
- TrainingImage?: string;
1088
+ TrainingImage?: string | undefined;
1085
1089
  /**
1086
1090
  * <p>The name of the algorithm resource to use for the training job. This must be an
1087
1091
  * algorithm resource that you created or subscribe to on Amazon Web Services
@@ -1100,7 +1104,7 @@ export interface AlgorithmSpecification {
1100
1104
  * </note>
1101
1105
  * @public
1102
1106
  */
1103
- AlgorithmName?: string;
1107
+ AlgorithmName?: string | undefined;
1104
1108
  /**
1105
1109
  * <p>The training input mode that the algorithm supports. For more information about input
1106
1110
  * modes, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html">Algorithms</a>.</p>
@@ -1143,7 +1147,7 @@ export interface AlgorithmSpecification {
1143
1147
  * expressions used to parse algorithm logs. SageMaker publishes each metric to Amazon CloudWatch.</p>
1144
1148
  * @public
1145
1149
  */
1146
- MetricDefinitions?: MetricDefinition[];
1150
+ MetricDefinitions?: MetricDefinition[] | undefined;
1147
1151
  /**
1148
1152
  * <p>To generate and save time-series metrics during training, set to <code>true</code>.
1149
1153
  * The default is <code>false</code> and time-series metrics aren't generated except in the
@@ -1173,7 +1177,7 @@ export interface AlgorithmSpecification {
1173
1177
  * </ul>
1174
1178
  * @public
1175
1179
  */
1176
- EnableSageMakerMetricsTimeSeries?: boolean;
1180
+ EnableSageMakerMetricsTimeSeries?: boolean | undefined;
1177
1181
  /**
1178
1182
  * <p>The <a href="https://docs.docker.com/engine/reference/builder/">entrypoint script
1179
1183
  * for a Docker container</a> used to run a training job. This script takes
@@ -1181,19 +1185,19 @@ export interface AlgorithmSpecification {
1181
1185
  * Runs Your Training Image</a> for more information.</p>
1182
1186
  * @public
1183
1187
  */
1184
- ContainerEntrypoint?: string[];
1188
+ ContainerEntrypoint?: string[] | undefined;
1185
1189
  /**
1186
1190
  * <p>The arguments for a container used to run a training job. See <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-training-algo-dockerfile.html">How Amazon SageMaker
1187
1191
  * Runs Your Training Image</a> for additional information.</p>
1188
1192
  * @public
1189
1193
  */
1190
- ContainerArguments?: string[];
1194
+ ContainerArguments?: string[] | undefined;
1191
1195
  /**
1192
1196
  * <p>The configuration to use an image from a private Docker registry for a training
1193
1197
  * job.</p>
1194
1198
  * @public
1195
1199
  */
1196
- TrainingImageConfig?: TrainingImageConfig;
1200
+ TrainingImageConfig?: TrainingImageConfig | undefined;
1197
1201
  }
1198
1202
  /**
1199
1203
  * @public
@@ -1243,7 +1247,7 @@ export interface AlgorithmStatusItem {
1243
1247
  * <p>if the overall status is <code>Failed</code>, the reason for the failure.</p>
1244
1248
  * @public
1245
1249
  */
1246
- FailureReason?: string;
1250
+ FailureReason?: string | undefined;
1247
1251
  }
1248
1252
  /**
1249
1253
  * <p>Specifies the validation and image scan statuses of the algorithm.</p>
@@ -1254,12 +1258,12 @@ export interface AlgorithmStatusDetails {
1254
1258
  * <p>The status of algorithm validation.</p>
1255
1259
  * @public
1256
1260
  */
1257
- ValidationStatuses?: AlgorithmStatusItem[];
1261
+ ValidationStatuses?: AlgorithmStatusItem[] | undefined;
1258
1262
  /**
1259
1263
  * <p>The status of the scan of the algorithm's Docker image container.</p>
1260
1264
  * @public
1261
1265
  */
1262
- ImageScanStatuses?: AlgorithmStatusItem[];
1266
+ ImageScanStatuses?: AlgorithmStatusItem[] | undefined;
1263
1267
  }
1264
1268
  /**
1265
1269
  * <p>Provides summary information about an algorithm.</p>
@@ -1280,7 +1284,7 @@ export interface AlgorithmSummary {
1280
1284
  * <p>A brief description of the algorithm.</p>
1281
1285
  * @public
1282
1286
  */
1283
- AlgorithmDescription?: string;
1287
+ AlgorithmDescription?: string | undefined;
1284
1288
  /**
1285
1289
  * <p>A timestamp that shows when the algorithm was created.</p>
1286
1290
  * @public
@@ -1470,18 +1474,18 @@ export interface S3DataSource {
1470
1474
  * this copies 1/<i>n</i> of the number of objects. </p>
1471
1475
  * @public
1472
1476
  */
1473
- S3DataDistributionType?: S3DataDistribution;
1477
+ S3DataDistributionType?: S3DataDistribution | undefined;
1474
1478
  /**
1475
1479
  * <p>A list of one or more attribute names to use that are found in a specified augmented
1476
1480
  * manifest file.</p>
1477
1481
  * @public
1478
1482
  */
1479
- AttributeNames?: string[];
1483
+ AttributeNames?: string[] | undefined;
1480
1484
  /**
1481
1485
  * <p>A list of names of instance groups that get data from the S3 data source.</p>
1482
1486
  * @public
1483
1487
  */
1484
- InstanceGroupNames?: string[];
1488
+ InstanceGroupNames?: string[] | undefined;
1485
1489
  }
1486
1490
  /**
1487
1491
  * <p>Describes the location of the channel data.</p>
@@ -1492,12 +1496,12 @@ export interface DataSource {
1492
1496
  * <p>The S3 location of the data source that is associated with a channel.</p>
1493
1497
  * @public
1494
1498
  */
1495
- S3DataSource?: S3DataSource;
1499
+ S3DataSource?: S3DataSource | undefined;
1496
1500
  /**
1497
1501
  * <p>The file system that is associated with a channel.</p>
1498
1502
  * @public
1499
1503
  */
1500
- FileSystemDataSource?: FileSystemDataSource;
1504
+ FileSystemDataSource?: FileSystemDataSource | undefined;
1501
1505
  }
1502
1506
  /**
1503
1507
  * @public
@@ -1554,14 +1558,14 @@ export interface Channel {
1554
1558
  * <p>The MIME type of the data.</p>
1555
1559
  * @public
1556
1560
  */
1557
- ContentType?: string;
1561
+ ContentType?: string | undefined;
1558
1562
  /**
1559
1563
  * <p>If training data is compressed, the compression type. The default value is
1560
1564
  * <code>None</code>. <code>CompressionType</code> is used only in Pipe input mode. In
1561
1565
  * File mode, leave this field unset or set it to None.</p>
1562
1566
  * @public
1563
1567
  */
1564
- CompressionType?: CompressionType;
1568
+ CompressionType?: CompressionType | undefined;
1565
1569
  /**
1566
1570
  * <p></p>
1567
1571
  * <p>Specify RecordIO as the value when input data is in raw format but the training
@@ -1572,7 +1576,7 @@ export interface Channel {
1572
1576
  * <p>In File mode, leave this field unset or set it to None.</p>
1573
1577
  * @public
1574
1578
  */
1575
- RecordWrapperType?: RecordWrapper;
1579
+ RecordWrapperType?: RecordWrapper | undefined;
1576
1580
  /**
1577
1581
  * <p>(Optional) The input mode to use for the data channel in a training job. If you don't
1578
1582
  * set a value for <code>InputMode</code>, SageMaker uses the value set for
@@ -1585,7 +1589,7 @@ export interface Channel {
1585
1589
  * <p>To use a model for incremental training, choose <code>File</code> input model.</p>
1586
1590
  * @public
1587
1591
  */
1588
- InputMode?: TrainingInputMode;
1592
+ InputMode?: TrainingInputMode | undefined;
1589
1593
  /**
1590
1594
  * <p>A configuration for a shuffle option for input data in a channel. If you use
1591
1595
  * <code>S3Prefix</code> for <code>S3DataType</code>, this shuffles the results of the
@@ -1603,7 +1607,7 @@ export interface Channel {
1603
1607
  * second epoch.</p>
1604
1608
  * @public
1605
1609
  */
1606
- ShuffleConfig?: ShuffleConfig;
1610
+ ShuffleConfig?: ShuffleConfig | undefined;
1607
1611
  }
1608
1612
  /**
1609
1613
  * @public
@@ -1669,7 +1673,7 @@ export interface OutputDataConfig {
1669
1673
  * Key Management Service Developer Guide</i>.</p>
1670
1674
  * @public
1671
1675
  */
1672
- KmsKeyId?: string;
1676
+ KmsKeyId?: string | undefined;
1673
1677
  /**
1674
1678
  * <p>Identifies the S3 path where you want SageMaker to store the model artifacts. For
1675
1679
  * example, <code>s3://bucket-name/key-name-prefix</code>. </p>
@@ -1681,7 +1685,7 @@ export interface OutputDataConfig {
1681
1685
  * model, recommended for large model outputs. Defaults to gzip.</p>
1682
1686
  * @public
1683
1687
  */
1684
- CompressionType?: OutputCompressionType;
1688
+ CompressionType?: OutputCompressionType | undefined;
1685
1689
  }
1686
1690
  /**
1687
1691
  * @public
@@ -1853,13 +1857,13 @@ export interface ResourceConfig {
1853
1857
  * </note>
1854
1858
  * @public
1855
1859
  */
1856
- InstanceType?: TrainingInstanceType;
1860
+ InstanceType?: TrainingInstanceType | undefined;
1857
1861
  /**
1858
1862
  * <p>The number of ML compute instances to use. For distributed training, provide a
1859
1863
  * value greater than 1. </p>
1860
1864
  * @public
1861
1865
  */
1862
- InstanceCount?: number;
1866
+ InstanceCount?: number | undefined;
1863
1867
  /**
1864
1868
  * <p>The size of the ML storage volume that you want to provision. </p>
1865
1869
  * <p>ML storage volumes store model artifacts and incremental states. Training
@@ -1913,18 +1917,18 @@ export interface ResourceConfig {
1913
1917
  * </ul>
1914
1918
  * @public
1915
1919
  */
1916
- VolumeKmsKeyId?: string;
1920
+ VolumeKmsKeyId?: string | undefined;
1917
1921
  /**
1918
1922
  * <p>The duration of time in seconds to retain configured resources in a warm pool for
1919
1923
  * subsequent training jobs.</p>
1920
1924
  * @public
1921
1925
  */
1922
- KeepAlivePeriodInSeconds?: number;
1926
+ KeepAlivePeriodInSeconds?: number | undefined;
1923
1927
  /**
1924
1928
  * <p>The configuration of a heterogeneous cluster in JSON format.</p>
1925
1929
  * @public
1926
1930
  */
1927
- InstanceGroups?: InstanceGroup[];
1931
+ InstanceGroups?: InstanceGroup[] | undefined;
1928
1932
  }
1929
1933
  /**
1930
1934
  * <p>Specifies a limit to how long a job can run. When the job reaches the time limit, SageMaker
@@ -1962,7 +1966,7 @@ export interface StoppingCondition {
1962
1966
  * 30 days.</p>
1963
1967
  * @public
1964
1968
  */
1965
- MaxRuntimeInSeconds?: number;
1969
+ MaxRuntimeInSeconds?: number | undefined;
1966
1970
  /**
1967
1971
  * <p>The maximum length of time, in seconds, that a managed Spot training job has to
1968
1972
  * complete. It is the amount of time spent waiting for Spot capacity plus the amount of
@@ -1974,13 +1978,13 @@ export interface StoppingCondition {
1974
1978
  * in total, not each individual attempt.</p>
1975
1979
  * @public
1976
1980
  */
1977
- MaxWaitTimeInSeconds?: number;
1981
+ MaxWaitTimeInSeconds?: number | undefined;
1978
1982
  /**
1979
1983
  * <p>The maximum length of time, in seconds, that a training or compilation job can be
1980
1984
  * pending before it is stopped.</p>
1981
1985
  * @public
1982
1986
  */
1983
- MaxPendingTimeInSeconds?: number;
1987
+ MaxPendingTimeInSeconds?: number | undefined;
1984
1988
  }
1985
1989
  /**
1986
1990
  * <p>Defines the input needed to run a training job using the algorithm.</p>
@@ -2028,7 +2032,7 @@ export interface TrainingJobDefinition {
2028
2032
  * <p>The hyperparameters used for the training job.</p>
2029
2033
  * @public
2030
2034
  */
2031
- HyperParameters?: Record<string, string>;
2035
+ HyperParameters?: Record<string, string> | undefined;
2032
2036
  /**
2033
2037
  * <p>An array of <code>Channel</code> objects, each of which specifies an input
2034
2038
  * source.</p>
@@ -2189,7 +2193,7 @@ export interface TransformInput {
2189
2193
  * transfer data to the transform job.</p>
2190
2194
  * @public
2191
2195
  */
2192
- ContentType?: string;
2196
+ ContentType?: string | undefined;
2193
2197
  /**
2194
2198
  * <p>If your transform data
2195
2199
  * is
@@ -2198,7 +2202,7 @@ export interface TransformInput {
2198
2202
  * <code>None</code>.</p>
2199
2203
  * @public
2200
2204
  */
2201
- CompressionType?: CompressionType;
2205
+ CompressionType?: CompressionType | undefined;
2202
2206
  /**
2203
2207
  * <p>The method to use to split the transform job's data files into smaller batches.
2204
2208
  * Splitting is necessary when the total size of each object is too large to fit in a
@@ -2235,7 +2239,7 @@ export interface TransformInput {
2235
2239
  * </note>
2236
2240
  * @public
2237
2241
  */
2238
- SplitType?: SplitType;
2242
+ SplitType?: SplitType | undefined;
2239
2243
  }
2240
2244
  /**
2241
2245
  * @public
@@ -2277,7 +2281,7 @@ export interface TransformOutput {
2277
2281
  * call to transfer data from the transform job.</p>
2278
2282
  * @public
2279
2283
  */
2280
- Accept?: string;
2284
+ Accept?: string | undefined;
2281
2285
  /**
2282
2286
  * <p>Defines how to assemble the results of the transform job as a single S3 object. Choose
2283
2287
  * a format that is most convenient to you. To concatenate the results in binary format,
@@ -2286,7 +2290,7 @@ export interface TransformOutput {
2286
2290
  * <code>Line</code>.</p>
2287
2291
  * @public
2288
2292
  */
2289
- AssembleWith?: AssemblyType;
2293
+ AssembleWith?: AssemblyType | undefined;
2290
2294
  /**
2291
2295
  * <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
2292
2296
  * Amazon S3 server-side encryption. The <code>KmsKeyId</code> can be any of the following
@@ -2323,7 +2327,7 @@ export interface TransformOutput {
2323
2327
  * Guide</i>.</p>
2324
2328
  * @public
2325
2329
  */
2326
- KmsKeyId?: string;
2330
+ KmsKeyId?: string | undefined;
2327
2331
  }
2328
2332
  /**
2329
2333
  * <p>Describes the resources, including ML instance types and ML instance count, to use for
@@ -2385,7 +2389,7 @@ export interface TransformResources {
2385
2389
  * </ul>
2386
2390
  * @public
2387
2391
  */
2388
- VolumeKmsKeyId?: string;
2392
+ VolumeKmsKeyId?: string | undefined;
2389
2393
  }
2390
2394
  /**
2391
2395
  * <p>Defines the input needed to run a transform job using the inference specification
@@ -2398,13 +2402,13 @@ export interface TransformJobDefinition {
2398
2402
  * transform job. The default value is 1.</p>
2399
2403
  * @public
2400
2404
  */
2401
- MaxConcurrentTransforms?: number;
2405
+ MaxConcurrentTransforms?: number | undefined;
2402
2406
  /**
2403
2407
  * <p>The maximum payload size allowed, in MB. A payload is the data portion of a record
2404
2408
  * (without metadata).</p>
2405
2409
  * @public
2406
2410
  */
2407
- MaxPayloadInMB?: number;
2411
+ MaxPayloadInMB?: number | undefined;
2408
2412
  /**
2409
2413
  * <p>A string that determines the number of records included in a single mini-batch.</p>
2410
2414
  * <p>
@@ -2413,13 +2417,13 @@ export interface TransformJobDefinition {
2413
2417
  * can fit within the <code>MaxPayloadInMB</code> limit.</p>
2414
2418
  * @public
2415
2419
  */
2416
- BatchStrategy?: BatchStrategy;
2420
+ BatchStrategy?: BatchStrategy | undefined;
2417
2421
  /**
2418
2422
  * <p>The environment variables to set in the Docker container. We support up to 16 key and
2419
2423
  * values entries in the map.</p>
2420
2424
  * @public
2421
2425
  */
2422
- Environment?: Record<string, string>;
2426
+ Environment?: Record<string, string> | undefined;
2423
2427
  /**
2424
2428
  * <p>A description of the input source and the way the transform job consumes it.</p>
2425
2429
  * @public
@@ -2462,7 +2466,7 @@ export interface AlgorithmValidationProfile {
2462
2466
  * SageMaker runs to validate your algorithm.</p>
2463
2467
  * @public
2464
2468
  */
2465
- TransformJobDefinition?: TransformJobDefinition;
2469
+ TransformJobDefinition?: TransformJobDefinition | undefined;
2466
2470
  }
2467
2471
  /**
2468
2472
  * <p>Specifies configurations for one or more training jobs that SageMaker runs to test the
@@ -2503,12 +2507,12 @@ export interface AmazonQSettings {
2503
2507
  * <p>Whether Amazon Q has been enabled within the domain.</p>
2504
2508
  * @public
2505
2509
  */
2506
- Status?: FeatureStatus;
2510
+ Status?: FeatureStatus | undefined;
2507
2511
  /**
2508
2512
  * <p>The ARN of the Amazon Q profile used within the domain.</p>
2509
2513
  * @public
2510
2514
  */
2511
- QProfileArn?: string;
2515
+ QProfileArn?: string | undefined;
2512
2516
  }
2513
2517
  /**
2514
2518
  * <p>Configures how labels are consolidated across human workers and processes output data.</p>
@@ -4188,17 +4192,17 @@ export interface ResourceSpec {
4188
4192
  * <p>The ARN of the SageMaker image that the image version belongs to.</p>
4189
4193
  * @public
4190
4194
  */
4191
- SageMakerImageArn?: string;
4195
+ SageMakerImageArn?: string | undefined;
4192
4196
  /**
4193
4197
  * <p>The ARN of the image version created on the instance.</p>
4194
4198
  * @public
4195
4199
  */
4196
- SageMakerImageVersionArn?: string;
4200
+ SageMakerImageVersionArn?: string | undefined;
4197
4201
  /**
4198
4202
  * <p>The SageMakerImageVersionAlias of the image to launch with. This value is in SemVer 2.0.0 versioning format.</p>
4199
4203
  * @public
4200
4204
  */
4201
- SageMakerImageVersionAlias?: string;
4205
+ SageMakerImageVersionAlias?: string | undefined;
4202
4206
  /**
4203
4207
  * <p>The instance type that the image version runs on.</p>
4204
4208
  * <note>
@@ -4210,13 +4214,13 @@ export interface ResourceSpec {
4210
4214
  * </note>
4211
4215
  * @public
4212
4216
  */
4213
- InstanceType?: AppInstanceType;
4217
+ InstanceType?: AppInstanceType | undefined;
4214
4218
  /**
4215
4219
  * <p> The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the
4216
4220
  * Resource.</p>
4217
4221
  * @public
4218
4222
  */
4219
- LifecycleConfigArn?: string;
4223
+ LifecycleConfigArn?: string | undefined;
4220
4224
  }
4221
4225
  /**
4222
4226
  * @public
@@ -4242,43 +4246,43 @@ export interface AppDetails {
4242
4246
  * <p>The domain ID.</p>
4243
4247
  * @public
4244
4248
  */
4245
- DomainId?: string;
4249
+ DomainId?: string | undefined;
4246
4250
  /**
4247
4251
  * <p>The user profile name.</p>
4248
4252
  * @public
4249
4253
  */
4250
- UserProfileName?: string;
4254
+ UserProfileName?: string | undefined;
4251
4255
  /**
4252
4256
  * <p>The name of the space.</p>
4253
4257
  * @public
4254
4258
  */
4255
- SpaceName?: string;
4259
+ SpaceName?: string | undefined;
4256
4260
  /**
4257
4261
  * <p>The type of app.</p>
4258
4262
  * @public
4259
4263
  */
4260
- AppType?: AppType;
4264
+ AppType?: AppType | undefined;
4261
4265
  /**
4262
4266
  * <p>The name of the app.</p>
4263
4267
  * @public
4264
4268
  */
4265
- AppName?: string;
4269
+ AppName?: string | undefined;
4266
4270
  /**
4267
4271
  * <p>The status.</p>
4268
4272
  * @public
4269
4273
  */
4270
- Status?: AppStatus;
4274
+ Status?: AppStatus | undefined;
4271
4275
  /**
4272
4276
  * <p>The creation time.</p>
4273
4277
  * @public
4274
4278
  */
4275
- CreationTime?: Date;
4279
+ CreationTime?: Date | undefined;
4276
4280
  /**
4277
4281
  * <p>Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that
4278
4282
  * the version runs on.</p>
4279
4283
  * @public
4280
4284
  */
4281
- ResourceSpec?: ResourceSpec;
4285
+ ResourceSpec?: ResourceSpec | undefined;
4282
4286
  }
4283
4287
  /**
4284
4288
  * <p>The configuration used to run the application image container.</p>
@@ -4289,17 +4293,17 @@ export interface ContainerConfig {
4289
4293
  * <p>The arguments for the container when you're running the application.</p>
4290
4294
  * @public
4291
4295
  */
4292
- ContainerArguments?: string[];
4296
+ ContainerArguments?: string[] | undefined;
4293
4297
  /**
4294
4298
  * <p>The entrypoint used to run the application in the container.</p>
4295
4299
  * @public
4296
4300
  */
4297
- ContainerEntrypoint?: string[];
4301
+ ContainerEntrypoint?: string[] | undefined;
4298
4302
  /**
4299
4303
  * <p>The environment variables to set in the container</p>
4300
4304
  * @public
4301
4305
  */
4302
- ContainerEnvironmentVariables?: Record<string, string>;
4306
+ ContainerEnvironmentVariables?: Record<string, string> | undefined;
4303
4307
  }
4304
4308
  /**
4305
4309
  * <p>The Amazon Elastic File System storage configuration for a SageMaker image.</p>
@@ -4311,17 +4315,17 @@ export interface FileSystemConfig {
4311
4315
  * should be empty. If not specified, defaults to <i>/home/sagemaker-user</i>.</p>
4312
4316
  * @public
4313
4317
  */
4314
- MountPath?: string;
4318
+ MountPath?: string | undefined;
4315
4319
  /**
4316
4320
  * <p>The default POSIX user ID (UID). If not specified, defaults to <code>1000</code>.</p>
4317
4321
  * @public
4318
4322
  */
4319
- DefaultUid?: number;
4323
+ DefaultUid?: number | undefined;
4320
4324
  /**
4321
4325
  * <p>The default POSIX group ID (GID). If not specified, defaults to <code>100</code>.</p>
4322
4326
  * @public
4323
4327
  */
4324
- DefaultGid?: number;
4328
+ DefaultGid?: number | undefined;
4325
4329
  }
4326
4330
  /**
4327
4331
  * <p>The configuration for the file system and kernels in a SageMaker image running as a Code Editor app.
@@ -4333,12 +4337,12 @@ export interface CodeEditorAppImageConfig {
4333
4337
  * <p>The Amazon Elastic File System storage configuration for a SageMaker image.</p>
4334
4338
  * @public
4335
4339
  */
4336
- FileSystemConfig?: FileSystemConfig;
4340
+ FileSystemConfig?: FileSystemConfig | undefined;
4337
4341
  /**
4338
4342
  * <p>The configuration used to run the application image container.</p>
4339
4343
  * @public
4340
4344
  */
4341
- ContainerConfig?: ContainerConfig;
4345
+ ContainerConfig?: ContainerConfig | undefined;
4342
4346
  }
4343
4347
  /**
4344
4348
  * <p>The configuration for the file system and kernels in a SageMaker image running as a JupyterLab app. The <code>FileSystemConfig</code> object is not supported.</p>
@@ -4349,12 +4353,12 @@ export interface JupyterLabAppImageConfig {
4349
4353
  * <p>The Amazon Elastic File System storage configuration for a SageMaker image.</p>
4350
4354
  * @public
4351
4355
  */
4352
- FileSystemConfig?: FileSystemConfig;
4356
+ FileSystemConfig?: FileSystemConfig | undefined;
4353
4357
  /**
4354
4358
  * <p>The configuration used to run the application image container.</p>
4355
4359
  * @public
4356
4360
  */
4357
- ContainerConfig?: ContainerConfig;
4361
+ ContainerConfig?: ContainerConfig | undefined;
4358
4362
  }
4359
4363
  /**
4360
4364
  * <p>The specification of a Jupyter kernel.</p>
@@ -4370,7 +4374,7 @@ export interface KernelSpec {
4370
4374
  * <p>The display name of the kernel.</p>
4371
4375
  * @public
4372
4376
  */
4373
- DisplayName?: string;
4377
+ DisplayName?: string | undefined;
4374
4378
  }
4375
4379
  /**
4376
4380
  * <p>The configuration for the file system and kernels in a SageMaker image running as a
@@ -4387,7 +4391,7 @@ export interface KernelGatewayImageConfig {
4387
4391
  * <p>The Amazon Elastic File System storage configuration for a SageMaker image.</p>
4388
4392
  * @public
4389
4393
  */
4390
- FileSystemConfig?: FileSystemConfig;
4394
+ FileSystemConfig?: FileSystemConfig | undefined;
4391
4395
  }
4392
4396
  /**
4393
4397
  * <p>The configuration for running a SageMaker image as a KernelGateway app.</p>
@@ -4398,38 +4402,38 @@ export interface AppImageConfigDetails {
4398
4402
  * <p>The ARN of the AppImageConfig.</p>
4399
4403
  * @public
4400
4404
  */
4401
- AppImageConfigArn?: string;
4405
+ AppImageConfigArn?: string | undefined;
4402
4406
  /**
4403
4407
  * <p>The name of the AppImageConfig. Must be unique to your account.</p>
4404
4408
  * @public
4405
4409
  */
4406
- AppImageConfigName?: string;
4410
+ AppImageConfigName?: string | undefined;
4407
4411
  /**
4408
4412
  * <p>When the AppImageConfig was created.</p>
4409
4413
  * @public
4410
4414
  */
4411
- CreationTime?: Date;
4415
+ CreationTime?: Date | undefined;
4412
4416
  /**
4413
4417
  * <p>When the AppImageConfig was last modified.</p>
4414
4418
  * @public
4415
4419
  */
4416
- LastModifiedTime?: Date;
4420
+ LastModifiedTime?: Date | undefined;
4417
4421
  /**
4418
4422
  * <p>The configuration for the file system and kernels in the SageMaker image.</p>
4419
4423
  * @public
4420
4424
  */
4421
- KernelGatewayImageConfig?: KernelGatewayImageConfig;
4425
+ KernelGatewayImageConfig?: KernelGatewayImageConfig | undefined;
4422
4426
  /**
4423
4427
  * <p>The configuration for the file system and the runtime, such as the environment variables and entry point.</p>
4424
4428
  * @public
4425
4429
  */
4426
- JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
4430
+ JupyterLabAppImageConfig?: JupyterLabAppImageConfig | undefined;
4427
4431
  /**
4428
4432
  * <p>The configuration for the file system and the runtime,
4429
4433
  * such as the environment variables and entry point.</p>
4430
4434
  * @public
4431
4435
  */
4432
- CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
4436
+ CodeEditorAppImageConfig?: CodeEditorAppImageConfig | undefined;
4433
4437
  }
4434
4438
  /**
4435
4439
  * @public
@@ -4465,23 +4469,23 @@ export interface IdleSettings {
4465
4469
  * <p>Indicates whether idle shutdown is activated for the application type.</p>
4466
4470
  * @public
4467
4471
  */
4468
- LifecycleManagement?: LifecycleManagement;
4472
+ LifecycleManagement?: LifecycleManagement | undefined;
4469
4473
  /**
4470
4474
  * <p>The time that SageMaker waits after the application becomes idle before shutting it
4471
4475
  * down.</p>
4472
4476
  * @public
4473
4477
  */
4474
- IdleTimeoutInMinutes?: number;
4478
+ IdleTimeoutInMinutes?: number | undefined;
4475
4479
  /**
4476
4480
  * <p>The minimum value in minutes that custom idle shutdown can be set to by the user.</p>
4477
4481
  * @public
4478
4482
  */
4479
- MinIdleTimeoutInMinutes?: number;
4483
+ MinIdleTimeoutInMinutes?: number | undefined;
4480
4484
  /**
4481
4485
  * <p>The maximum value in minutes that custom idle shutdown can be set to by the user.</p>
4482
4486
  * @public
4483
4487
  */
4484
- MaxIdleTimeoutInMinutes?: number;
4488
+ MaxIdleTimeoutInMinutes?: number | undefined;
4485
4489
  }
4486
4490
  /**
4487
4491
  * <p>Settings that are used to configure and manage the lifecycle of Amazon SageMaker Studio
@@ -4493,7 +4497,7 @@ export interface AppLifecycleManagement {
4493
4497
  * <p>Settings related to idle shutdown of Studio applications.</p>
4494
4498
  * @public
4495
4499
  */
4496
- IdleSettings?: IdleSettings;
4500
+ IdleSettings?: IdleSettings | undefined;
4497
4501
  }
4498
4502
  /**
4499
4503
  * @public
@@ -4544,12 +4548,12 @@ export interface AppSpecification {
4544
4548
  * <p>The entrypoint for a container used to run a processing job.</p>
4545
4549
  * @public
4546
4550
  */
4547
- ContainerEntrypoint?: string[];
4551
+ ContainerEntrypoint?: string[] | undefined;
4548
4552
  /**
4549
4553
  * <p>The arguments for a container used to run a processing job.</p>
4550
4554
  * @public
4551
4555
  */
4552
- ContainerArguments?: string[];
4556
+ ContainerArguments?: string[] | undefined;
4553
4557
  }
4554
4558
  /**
4555
4559
  * @public
@@ -4595,7 +4599,7 @@ export interface ArtifactSource {
4595
4599
  * <p>A list of source types.</p>
4596
4600
  * @public
4597
4601
  */
4598
- SourceTypes?: ArtifactSourceType[];
4602
+ SourceTypes?: ArtifactSourceType[] | undefined;
4599
4603
  }
4600
4604
  /**
4601
4605
  * <p>Lists a summary of the properties of an artifact. An artifact represents a URI
@@ -4607,32 +4611,32 @@ export interface ArtifactSummary {
4607
4611
  * <p>The Amazon Resource Name (ARN) of the artifact.</p>
4608
4612
  * @public
4609
4613
  */
4610
- ArtifactArn?: string;
4614
+ ArtifactArn?: string | undefined;
4611
4615
  /**
4612
4616
  * <p>The name of the artifact.</p>
4613
4617
  * @public
4614
4618
  */
4615
- ArtifactName?: string;
4619
+ ArtifactName?: string | undefined;
4616
4620
  /**
4617
4621
  * <p>The source of the artifact.</p>
4618
4622
  * @public
4619
4623
  */
4620
- Source?: ArtifactSource;
4624
+ Source?: ArtifactSource | undefined;
4621
4625
  /**
4622
4626
  * <p>The type of the artifact.</p>
4623
4627
  * @public
4624
4628
  */
4625
- ArtifactType?: string;
4629
+ ArtifactType?: string | undefined;
4626
4630
  /**
4627
4631
  * <p>When the artifact was created.</p>
4628
4632
  * @public
4629
4633
  */
4630
- CreationTime?: Date;
4634
+ CreationTime?: Date | undefined;
4631
4635
  /**
4632
4636
  * <p>When the artifact was last modified.</p>
4633
4637
  * @public
4634
4638
  */
4635
- LastModifiedTime?: Date;
4639
+ LastModifiedTime?: Date | undefined;
4636
4640
  }
4637
4641
  /**
4638
4642
  * @public
@@ -4657,12 +4661,12 @@ export interface AssociateTrialComponentResponse {
4657
4661
  * <p>The Amazon Resource Name (ARN) of the trial component.</p>
4658
4662
  * @public
4659
4663
  */
4660
- TrialComponentArn?: string;
4664
+ TrialComponentArn?: string | undefined;
4661
4665
  /**
4662
4666
  * <p>The Amazon Resource Name (ARN) of the trial.</p>
4663
4667
  * @public
4664
4668
  */
4665
- TrialArn?: string;
4669
+ TrialArn?: string | undefined;
4666
4670
  }
4667
4671
  /**
4668
4672
  * <p>The IAM Identity details associated with the user. These details are
@@ -4674,17 +4678,17 @@ export interface IamIdentity {
4674
4678
  * <p>The Amazon Resource Name (ARN) of the IAM identity.</p>
4675
4679
  * @public
4676
4680
  */
4677
- Arn?: string;
4681
+ Arn?: string | undefined;
4678
4682
  /**
4679
4683
  * <p>The ID of the principal that assumes the IAM identity.</p>
4680
4684
  * @public
4681
4685
  */
4682
- PrincipalId?: string;
4686
+ PrincipalId?: string | undefined;
4683
4687
  /**
4684
4688
  * <p>The person or application which assumes the IAM identity.</p>
4685
4689
  * @public
4686
4690
  */
4687
- SourceIdentity?: string;
4691
+ SourceIdentity?: string | undefined;
4688
4692
  }
4689
4693
  /**
4690
4694
  * <p>Information about the user who created or modified an experiment, trial, trial
@@ -4696,23 +4700,23 @@ export interface UserContext {
4696
4700
  * <p>The Amazon Resource Name (ARN) of the user's profile.</p>
4697
4701
  * @public
4698
4702
  */
4699
- UserProfileArn?: string;
4703
+ UserProfileArn?: string | undefined;
4700
4704
  /**
4701
4705
  * <p>The name of the user's profile.</p>
4702
4706
  * @public
4703
4707
  */
4704
- UserProfileName?: string;
4708
+ UserProfileName?: string | undefined;
4705
4709
  /**
4706
4710
  * <p>The domain associated with the user.</p>
4707
4711
  * @public
4708
4712
  */
4709
- DomainId?: string;
4713
+ DomainId?: string | undefined;
4710
4714
  /**
4711
4715
  * <p>The IAM Identity details associated with the user. These details are
4712
4716
  * associated with model package groups, model packages, and project entities only.</p>
4713
4717
  * @public
4714
4718
  */
4715
- IamIdentity?: IamIdentity;
4719
+ IamIdentity?: IamIdentity | undefined;
4716
4720
  }
4717
4721
  /**
4718
4722
  * <p>Lists a summary of the properties of an association. An association is an entity that
@@ -4725,48 +4729,48 @@ export interface AssociationSummary {
4725
4729
  * <p>The ARN of the source.</p>
4726
4730
  * @public
4727
4731
  */
4728
- SourceArn?: string;
4732
+ SourceArn?: string | undefined;
4729
4733
  /**
4730
4734
  * <p>The Amazon Resource Name (ARN) of the destination.</p>
4731
4735
  * @public
4732
4736
  */
4733
- DestinationArn?: string;
4737
+ DestinationArn?: string | undefined;
4734
4738
  /**
4735
4739
  * <p>The source type.</p>
4736
4740
  * @public
4737
4741
  */
4738
- SourceType?: string;
4742
+ SourceType?: string | undefined;
4739
4743
  /**
4740
4744
  * <p>The destination type.</p>
4741
4745
  * @public
4742
4746
  */
4743
- DestinationType?: string;
4747
+ DestinationType?: string | undefined;
4744
4748
  /**
4745
4749
  * <p>The type of the association.</p>
4746
4750
  * @public
4747
4751
  */
4748
- AssociationType?: AssociationEdgeType;
4752
+ AssociationType?: AssociationEdgeType | undefined;
4749
4753
  /**
4750
4754
  * <p>The name of the source.</p>
4751
4755
  * @public
4752
4756
  */
4753
- SourceName?: string;
4757
+ SourceName?: string | undefined;
4754
4758
  /**
4755
4759
  * <p>The name of the destination.</p>
4756
4760
  * @public
4757
4761
  */
4758
- DestinationName?: string;
4762
+ DestinationName?: string | undefined;
4759
4763
  /**
4760
4764
  * <p>When the association was created.</p>
4761
4765
  * @public
4762
4766
  */
4763
- CreationTime?: Date;
4767
+ CreationTime?: Date | undefined;
4764
4768
  /**
4765
4769
  * <p>Information about the user who created or modified an experiment, trial, trial
4766
4770
  * component, lineage group, project, or model card.</p>
4767
4771
  * @public
4768
4772
  */
4769
- CreatedBy?: UserContext;
4773
+ CreatedBy?: UserContext | undefined;
4770
4774
  }
4771
4775
  /**
4772
4776
  * <p>Configures the behavior of the client used by SageMaker to interact with the model
@@ -4779,7 +4783,7 @@ export interface AsyncInferenceClientConfig {
4779
4783
  * container. If no value is provided, SageMaker chooses an optimal value.</p>
4780
4784
  * @public
4781
4785
  */
4782
- MaxConcurrentInvocationsPerInstance?: number;
4786
+ MaxConcurrentInvocationsPerInstance?: number | undefined;
4783
4787
  }
4784
4788
  /**
4785
4789
  * @public
@@ -4804,13 +4808,13 @@ export interface AsyncInferenceNotificationConfig {
4804
4808
  * topic is provided, no notification is sent on success.</p>
4805
4809
  * @public
4806
4810
  */
4807
- SuccessTopic?: string;
4811
+ SuccessTopic?: string | undefined;
4808
4812
  /**
4809
4813
  * <p>Amazon SNS topic to post a notification to when inference fails. If no topic is provided,
4810
4814
  * no notification is sent on failure.</p>
4811
4815
  * @public
4812
4816
  */
4813
- ErrorTopic?: string;
4817
+ ErrorTopic?: string | undefined;
4814
4818
  /**
4815
4819
  * <p>The Amazon SNS topics where you want the inference response to be included.</p>
4816
4820
  * <note>
@@ -4819,7 +4823,7 @@ export interface AsyncInferenceNotificationConfig {
4819
4823
  * </note>
4820
4824
  * @public
4821
4825
  */
4822
- IncludeInferenceResponseIn?: AsyncNotificationTopicTypes[];
4826
+ IncludeInferenceResponseIn?: AsyncNotificationTopicTypes[] | undefined;
4823
4827
  }
4824
4828
  /**
4825
4829
  * <p>Specifies the configuration for asynchronous inference invocation outputs.</p>
@@ -4832,23 +4836,23 @@ export interface AsyncInferenceOutputConfig {
4832
4836
  * <p></p>
4833
4837
  * @public
4834
4838
  */
4835
- KmsKeyId?: string;
4839
+ KmsKeyId?: string | undefined;
4836
4840
  /**
4837
4841
  * <p>The Amazon S3 location to upload inference responses to.</p>
4838
4842
  * @public
4839
4843
  */
4840
- S3OutputPath?: string;
4844
+ S3OutputPath?: string | undefined;
4841
4845
  /**
4842
4846
  * <p>Specifies the configuration for notifications of inference results for asynchronous
4843
4847
  * inference.</p>
4844
4848
  * @public
4845
4849
  */
4846
- NotificationConfig?: AsyncInferenceNotificationConfig;
4850
+ NotificationConfig?: AsyncInferenceNotificationConfig | undefined;
4847
4851
  /**
4848
4852
  * <p>The Amazon S3 location to upload failure inference responses to.</p>
4849
4853
  * @public
4850
4854
  */
4851
- S3FailurePath?: string;
4855
+ S3FailurePath?: string | undefined;
4852
4856
  }
4853
4857
  /**
4854
4858
  * <p>Specifies configuration for how an endpoint performs asynchronous inference.</p>
@@ -4860,7 +4864,7 @@ export interface AsyncInferenceConfig {
4860
4864
  * container during asynchronous inference.</p>
4861
4865
  * @public
4862
4866
  */
4863
- ClientConfig?: AsyncInferenceClientConfig;
4867
+ ClientConfig?: AsyncInferenceClientConfig | undefined;
4864
4868
  /**
4865
4869
  * <p>Specifies the configuration for asynchronous inference invocation outputs.</p>
4866
4870
  * @public
@@ -4919,7 +4923,7 @@ export interface AthenaDatasetDefinition {
4919
4923
  * <p>The name of the workgroup in which the Athena query is being started.</p>
4920
4924
  * @public
4921
4925
  */
4922
- WorkGroup?: string;
4926
+ WorkGroup?: string | undefined;
4923
4927
  /**
4924
4928
  * <p>The location in Amazon S3 where Athena query results are stored.</p>
4925
4929
  * @public
@@ -4930,7 +4934,7 @@ export interface AthenaDatasetDefinition {
4930
4934
  * an Athena query execution.</p>
4931
4935
  * @public
4932
4936
  */
4933
- KmsKeyId?: string;
4937
+ KmsKeyId?: string | undefined;
4934
4938
  /**
4935
4939
  * <p>The data storage format for Athena query results.</p>
4936
4940
  * @public
@@ -4940,7 +4944,7 @@ export interface AthenaDatasetDefinition {
4940
4944
  * <p>The compression used for Athena query results.</p>
4941
4945
  * @public
4942
4946
  */
4943
- OutputCompression?: AthenaResultCompressionType;
4947
+ OutputCompression?: AthenaResultCompressionType | undefined;
4944
4948
  }
4945
4949
  /**
4946
4950
  * @public
@@ -5097,14 +5101,14 @@ export interface CandidateArtifactLocations {
5097
5101
  * candidate.</p>
5098
5102
  * @public
5099
5103
  */
5100
- ModelInsights?: string;
5104
+ ModelInsights?: string | undefined;
5101
5105
  /**
5102
5106
  * <p>The Amazon S3 prefix to the accuracy metrics and the inference results observed
5103
5107
  * over the testing window. Available only for the time-series forecasting problem
5104
5108
  * type.</p>
5105
5109
  * @public
5106
5110
  */
5107
- BacktestResults?: string;
5111
+ BacktestResults?: string | undefined;
5108
5112
  }
5109
5113
  /**
5110
5114
  * @public
@@ -5191,7 +5195,7 @@ export interface MetricDatum {
5191
5195
  * <p>The name of the metric.</p>
5192
5196
  * @public
5193
5197
  */
5194
- MetricName?: AutoMLMetricEnum;
5198
+ MetricName?: AutoMLMetricEnum | undefined;
5195
5199
  /**
5196
5200
  * <p>The name of the standard metric. </p>
5197
5201
  * <note>
@@ -5201,17 +5205,17 @@ export interface MetricDatum {
5201
5205
  * </note>
5202
5206
  * @public
5203
5207
  */
5204
- StandardMetricName?: AutoMLMetricExtendedEnum;
5208
+ StandardMetricName?: AutoMLMetricExtendedEnum | undefined;
5205
5209
  /**
5206
5210
  * <p>The value of the metric.</p>
5207
5211
  * @public
5208
5212
  */
5209
- Value?: number;
5213
+ Value?: number | undefined;
5210
5214
  /**
5211
5215
  * <p>The dataset split from which the AutoML job produced the metric.</p>
5212
5216
  * @public
5213
5217
  */
5214
- Set?: MetricSetSource;
5218
+ Set?: MetricSetSource | undefined;
5215
5219
  }
5216
5220
  /**
5217
5221
  * <p>The properties of an AutoML candidate job.</p>
@@ -5222,12 +5226,12 @@ export interface CandidateProperties {
5222
5226
  * <p>The Amazon S3 prefix to the artifacts generated for an AutoML candidate.</p>
5223
5227
  * @public
5224
5228
  */
5225
- CandidateArtifactLocations?: CandidateArtifactLocations;
5229
+ CandidateArtifactLocations?: CandidateArtifactLocations | undefined;
5226
5230
  /**
5227
5231
  * <p>Information about the candidate metrics for an AutoML job.</p>
5228
5232
  * @public
5229
5233
  */
5230
- CandidateMetrics?: MetricDatum[];
5234
+ CandidateMetrics?: MetricDatum[] | undefined;
5231
5235
  }
5232
5236
  /**
5233
5237
  * @public
@@ -5299,7 +5303,7 @@ export interface FinalAutoMLJobObjectiveMetric {
5299
5303
  * <p>The type of metric with the best result.</p>
5300
5304
  * @public
5301
5305
  */
5302
- Type?: AutoMLJobObjectiveType;
5306
+ Type?: AutoMLJobObjectiveType | undefined;
5303
5307
  /**
5304
5308
  * <p>The name of the metric with the best result. For a description of the possible objective
5305
5309
  * metrics, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLJobObjective.html">AutoMLJobObjective$MetricName</a>.</p>
@@ -5316,7 +5320,7 @@ export interface FinalAutoMLJobObjectiveMetric {
5316
5320
  * candidate metrics</a>.</p>
5317
5321
  * @public
5318
5322
  */
5319
- StandardMetricName?: AutoMLMetricEnum;
5323
+ StandardMetricName?: AutoMLMetricEnum | undefined;
5320
5324
  }
5321
5325
  /**
5322
5326
  * @public
@@ -5355,7 +5359,7 @@ export interface AutoMLContainerDefinition {
5355
5359
  * ContainerDefinition</a>.</p>
5356
5360
  * @public
5357
5361
  */
5358
- Environment?: Record<string, string>;
5362
+ Environment?: Record<string, string> | undefined;
5359
5363
  }
5360
5364
  /**
5361
5365
  * @public
@@ -5385,7 +5389,7 @@ export interface AutoMLCandidate {
5385
5389
  * <p>The best candidate result from an AutoML training job.</p>
5386
5390
  * @public
5387
5391
  */
5388
- FinalAutoMLJobObjectiveMetric?: FinalAutoMLJobObjectiveMetric;
5392
+ FinalAutoMLJobObjectiveMetric?: FinalAutoMLJobObjectiveMetric | undefined;
5389
5393
  /**
5390
5394
  * <p>The objective's status.</p>
5391
5395
  * @public
@@ -5405,7 +5409,7 @@ export interface AutoMLCandidate {
5405
5409
  * <p>Information about the recommended inference container definitions.</p>
5406
5410
  * @public
5407
5411
  */
5408
- InferenceContainers?: AutoMLContainerDefinition[];
5412
+ InferenceContainers?: AutoMLContainerDefinition[] | undefined;
5409
5413
  /**
5410
5414
  * <p>The creation time.</p>
5411
5415
  * @public
@@ -5415,7 +5419,7 @@ export interface AutoMLCandidate {
5415
5419
  * <p>The end time.</p>
5416
5420
  * @public
5417
5421
  */
5418
- EndTime?: Date;
5422
+ EndTime?: Date | undefined;
5419
5423
  /**
5420
5424
  * <p>The last modified time.</p>
5421
5425
  * @public
@@ -5425,12 +5429,12 @@ export interface AutoMLCandidate {
5425
5429
  * <p>The failure reason.</p>
5426
5430
  * @public
5427
5431
  */
5428
- FailureReason?: string;
5432
+ FailureReason?: string | undefined;
5429
5433
  /**
5430
5434
  * <p>The properties of an AutoML candidate job.</p>
5431
5435
  * @public
5432
5436
  */
5433
- CandidateProperties?: CandidateProperties;
5437
+ CandidateProperties?: CandidateProperties | undefined;
5434
5438
  /**
5435
5439
  * <p>The mapping of all supported processing unit (CPU, GPU, etc...) to inference container
5436
5440
  * definitions for the candidate. This field is populated for the AutoML jobs V2 (for example,
@@ -5438,7 +5442,7 @@ export interface AutoMLCandidate {
5438
5442
  * classification problem types only.</p>
5439
5443
  * @public
5440
5444
  */
5441
- InferenceContainerDefinitions?: Partial<Record<AutoMLProcessingUnit, AutoMLContainerDefinition[]>>;
5445
+ InferenceContainerDefinitions?: Partial<Record<AutoMLProcessingUnit, AutoMLContainerDefinition[]>> | undefined;
5442
5446
  }
5443
5447
  /**
5444
5448
  * <p>Stores the configuration information for how a candidate is generated (optional).</p>
@@ -5474,7 +5478,7 @@ export interface AutoMLCandidateGenerationConfig {
5474
5478
  * of columns provided must not include the target column.</p>
5475
5479
  * @public
5476
5480
  */
5477
- FeatureSpecificationS3Uri?: string;
5481
+ FeatureSpecificationS3Uri?: string | undefined;
5478
5482
  /**
5479
5483
  * <p>Stores the configuration information for the selection of algorithms trained on tabular
5480
5484
  * data.</p>
@@ -5506,7 +5510,7 @@ export interface AutoMLCandidateGenerationConfig {
5506
5510
  * <p>For more information on each algorithm, see the <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-model-support-validation.html#autopilot-algorithm-support">Algorithm support</a> section in Autopilot developer guide.</p>
5507
5511
  * @public
5508
5512
  */
5509
- AlgorithmsConfig?: AutoMLAlgorithmConfig[];
5513
+ AlgorithmsConfig?: AutoMLAlgorithmConfig[] | undefined;
5510
5514
  }
5511
5515
  /**
5512
5516
  * @public
@@ -5622,13 +5626,13 @@ export interface AutoMLChannel {
5622
5626
  * <p>The data source for an AutoML channel.</p>
5623
5627
  * @public
5624
5628
  */
5625
- DataSource?: AutoMLDataSource;
5629
+ DataSource?: AutoMLDataSource | undefined;
5626
5630
  /**
5627
5631
  * <p>You can use <code>Gzip</code> or <code>None</code>. The default value is
5628
5632
  * <code>None</code>.</p>
5629
5633
  * @public
5630
5634
  */
5631
- CompressionType?: CompressionType;
5635
+ CompressionType?: CompressionType | undefined;
5632
5636
  /**
5633
5637
  * <p>The name of the target variable in supervised learning, usually represented by
5634
5638
  * 'y'.</p>
@@ -5641,7 +5645,7 @@ export interface AutoMLChannel {
5641
5645
  * The default value is <code>text/csv;header=present</code>.</p>
5642
5646
  * @public
5643
5647
  */
5644
- ContentType?: string;
5648
+ ContentType?: string | undefined;
5645
5649
  /**
5646
5650
  * <p>The channel type (optional) is an <code>enum</code> string. The default value is
5647
5651
  * <code>training</code>. Channels for training and validation must share the same
@@ -5649,7 +5653,7 @@ export interface AutoMLChannel {
5649
5653
  * 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>
5650
5654
  * @public
5651
5655
  */
5652
- ChannelType?: AutoMLChannelType;
5656
+ ChannelType?: AutoMLChannelType | undefined;
5653
5657
  /**
5654
5658
  * <p>If specified, this column name indicates which column of the dataset should be treated
5655
5659
  * as sample weights for use by the objective metric during the training, evaluation, and the
@@ -5663,7 +5667,7 @@ export interface AutoMLChannel {
5663
5667
  * mode only.</p>
5664
5668
  * @public
5665
5669
  */
5666
- SampleWeightAttributeName?: string;
5670
+ SampleWeightAttributeName?: string | undefined;
5667
5671
  }
5668
5672
  /**
5669
5673
  * <note>
@@ -5709,7 +5713,7 @@ export interface AutoMLComputeConfig {
5709
5713
  * datasets larger than 30 GB.</p>
5710
5714
  * @public
5711
5715
  */
5712
- EmrServerlessComputeConfig?: EmrServerlessComputeConfig;
5716
+ EmrServerlessComputeConfig?: EmrServerlessComputeConfig | undefined;
5713
5717
  }
5714
5718
  /**
5715
5719
  * <p>This structure specifies how to split the data into train and validation
@@ -5726,7 +5730,7 @@ export interface AutoMLDataSplitConfig {
5726
5730
  * than 0 and less than 1. We recommend setting this value to be less than 0.5.</p>
5727
5731
  * @public
5728
5732
  */
5729
- ValidationFraction?: number;
5733
+ ValidationFraction?: number | undefined;
5730
5734
  }
5731
5735
  /**
5732
5736
  * <p>The artifacts that are generated during an AutoML job.</p>
@@ -5737,12 +5741,12 @@ export interface AutoMLJobArtifacts {
5737
5741
  * <p>The URL of the notebook location.</p>
5738
5742
  * @public
5739
5743
  */
5740
- CandidateDefinitionNotebookLocation?: string;
5744
+ CandidateDefinitionNotebookLocation?: string | undefined;
5741
5745
  /**
5742
5746
  * <p>The URL of the notebook location.</p>
5743
5747
  * @public
5744
5748
  */
5745
- DataExplorationNotebookLocation?: string;
5749
+ DataExplorationNotebookLocation?: string | undefined;
5746
5750
  }
5747
5751
  /**
5748
5752
  * <p>A channel is a named input source that training algorithms can consume. This channel is
@@ -5761,7 +5765,7 @@ export interface AutoMLJobChannel {
5761
5765
  * </note>
5762
5766
  * @public
5763
5767
  */
5764
- ChannelType?: AutoMLChannelType;
5768
+ ChannelType?: AutoMLChannelType | undefined;
5765
5769
  /**
5766
5770
  * <p>The content type of the data from the input source. The following are the allowed
5767
5771
  * content types for different problems:</p>
@@ -5793,7 +5797,7 @@ export interface AutoMLJobChannel {
5793
5797
  * </ul>
5794
5798
  * @public
5795
5799
  */
5796
- ContentType?: string;
5800
+ ContentType?: string | undefined;
5797
5801
  /**
5798
5802
  * <p>The allowed compression types depend on the input format and problem type. We allow the
5799
5803
  * compression type <code>Gzip</code> for <code>S3Prefix</code> inputs on tabular data only.
@@ -5801,12 +5805,12 @@ export interface AutoMLJobChannel {
5801
5805
  * type is provided, we default to <code>None</code>.</p>
5802
5806
  * @public
5803
5807
  */
5804
- CompressionType?: CompressionType;
5808
+ CompressionType?: CompressionType | undefined;
5805
5809
  /**
5806
5810
  * <p>The data source for an AutoML channel (Required).</p>
5807
5811
  * @public
5808
5812
  */
5809
- DataSource?: AutoMLDataSource;
5813
+ DataSource?: AutoMLDataSource | undefined;
5810
5814
  }
5811
5815
  /**
5812
5816
  * <p>How long a job is allowed to run, or how many candidates a job is allowed to
@@ -5821,7 +5825,7 @@ export interface AutoMLJobCompletionCriteria {
5821
5825
  * maximum value is 750.</p>
5822
5826
  * @public
5823
5827
  */
5824
- MaxCandidates?: number;
5828
+ MaxCandidates?: number | undefined;
5825
5829
  /**
5826
5830
  * <p>The maximum time, in seconds, that each training job executed inside hyperparameter
5827
5831
  * tuning is allowed to run as part of a hyperparameter tuning job. For more information, see
@@ -5833,7 +5837,7 @@ export interface AutoMLJobCompletionCriteria {
5833
5837
  * (259200 seconds).</p>
5834
5838
  * @public
5835
5839
  */
5836
- MaxRuntimePerTrainingJobInSeconds?: number;
5840
+ MaxRuntimePerTrainingJobInSeconds?: number | undefined;
5837
5841
  /**
5838
5842
  * <p>The maximum runtime, in seconds, an AutoML job has to complete.</p>
5839
5843
  * <p>If an AutoML job exceeds the maximum runtime, the job is stopped automatically and its
@@ -5842,7 +5846,7 @@ export interface AutoMLJobCompletionCriteria {
5842
5846
  * as automatic one-click Autopilot model deployment, are not completed.</p>
5843
5847
  * @public
5844
5848
  */
5845
- MaxAutoMLJobRuntimeInSeconds?: number;
5849
+ MaxAutoMLJobRuntimeInSeconds?: number | undefined;
5846
5850
  }
5847
5851
  /**
5848
5852
  * @public
@@ -5888,17 +5892,17 @@ export interface AutoMLSecurityConfig {
5888
5892
  * <p>The key used to encrypt stored data.</p>
5889
5893
  * @public
5890
5894
  */
5891
- VolumeKmsKeyId?: string;
5895
+ VolumeKmsKeyId?: string | undefined;
5892
5896
  /**
5893
5897
  * <p>Whether to use traffic encryption between the container layers.</p>
5894
5898
  * @public
5895
5899
  */
5896
- EnableInterContainerTrafficEncryption?: boolean;
5900
+ EnableInterContainerTrafficEncryption?: boolean | undefined;
5897
5901
  /**
5898
5902
  * <p>The VPC configuration.</p>
5899
5903
  * @public
5900
5904
  */
5901
- VpcConfig?: VpcConfig;
5905
+ VpcConfig?: VpcConfig | undefined;
5902
5906
  }
5903
5907
  /**
5904
5908
  * <p>A collection of settings used for an AutoML job.</p>
@@ -5910,23 +5914,23 @@ export interface AutoMLJobConfig {
5910
5914
  * generate.</p>
5911
5915
  * @public
5912
5916
  */
5913
- CompletionCriteria?: AutoMLJobCompletionCriteria;
5917
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
5914
5918
  /**
5915
5919
  * <p>The security configuration for traffic encryption or Amazon VPC settings.</p>
5916
5920
  * @public
5917
5921
  */
5918
- SecurityConfig?: AutoMLSecurityConfig;
5922
+ SecurityConfig?: AutoMLSecurityConfig | undefined;
5919
5923
  /**
5920
5924
  * <p>The configuration for generating a candidate for an AutoML job (optional). </p>
5921
5925
  * @public
5922
5926
  */
5923
- CandidateGenerationConfig?: AutoMLCandidateGenerationConfig;
5927
+ CandidateGenerationConfig?: AutoMLCandidateGenerationConfig | undefined;
5924
5928
  /**
5925
5929
  * <p>The configuration for splitting the input training dataset.</p>
5926
5930
  * <p>Type: AutoMLDataSplitConfig</p>
5927
5931
  * @public
5928
5932
  */
5929
- DataSplitConfig?: AutoMLDataSplitConfig;
5933
+ DataSplitConfig?: AutoMLDataSplitConfig | undefined;
5930
5934
  /**
5931
5935
  * <p>The method that Autopilot uses to train the data. You can either specify the mode manually
5932
5936
  * or let Autopilot choose for you based on the dataset size by selecting <code>AUTO</code>. In
@@ -5946,7 +5950,7 @@ export interface AutoMLJobConfig {
5946
5950
  * <code>HYPERPARAMETER_TUNING</code> mode.</p>
5947
5951
  * @public
5948
5952
  */
5949
- Mode?: AutoMLMode;
5953
+ Mode?: AutoMLMode | undefined;
5950
5954
  }
5951
5955
  /**
5952
5956
  * <p>Specifies a metric to minimize or maximize as the objective of an AutoML job.</p>
@@ -6103,7 +6107,7 @@ export interface AutoMLJobStepMetadata {
6103
6107
  * <p>The Amazon Resource Name (ARN) of the AutoML job.</p>
6104
6108
  * @public
6105
6109
  */
6106
- Arn?: string;
6110
+ Arn?: string | undefined;
6107
6111
  }
6108
6112
  /**
6109
6113
  * <p>The reason for a partial failure of an AutoML job.</p>
@@ -6114,7 +6118,7 @@ export interface AutoMLPartialFailureReason {
6114
6118
  * <p>The message containing the reason for a partial failure of an AutoML job.</p>
6115
6119
  * @public
6116
6120
  */
6117
- PartialFailureMessage?: string;
6121
+ PartialFailureMessage?: string | undefined;
6118
6122
  }
6119
6123
  /**
6120
6124
  * <p>Provides a summary about an AutoML job.</p>
@@ -6150,7 +6154,7 @@ export interface AutoMLJobSummary {
6150
6154
  * <p>The end time of an AutoML job.</p>
6151
6155
  * @public
6152
6156
  */
6153
- EndTime?: Date;
6157
+ EndTime?: Date | undefined;
6154
6158
  /**
6155
6159
  * <p>When the AutoML job was last modified.</p>
6156
6160
  * @public
@@ -6160,12 +6164,12 @@ export interface AutoMLJobSummary {
6160
6164
  * <p>The failure reason of an AutoML job.</p>
6161
6165
  * @public
6162
6166
  */
6163
- FailureReason?: string;
6167
+ FailureReason?: string | undefined;
6164
6168
  /**
6165
6169
  * <p>The list of reasons for partial failures within an AutoML job.</p>
6166
6170
  * @public
6167
6171
  */
6168
- PartialFailureReasons?: AutoMLPartialFailureReason[];
6172
+ PartialFailureReasons?: AutoMLPartialFailureReason[] | undefined;
6169
6173
  }
6170
6174
  /**
6171
6175
  * <p>The output data configuration.</p>
@@ -6176,7 +6180,7 @@ export interface AutoMLOutputDataConfig {
6176
6180
  * <p>The Key Management Service encryption key ID.</p>
6177
6181
  * @public
6178
6182
  */
6179
- KmsKeyId?: string;
6183
+ KmsKeyId?: string | undefined;
6180
6184
  /**
6181
6185
  * <p>The Amazon S3 output path. Must be 512 characters or less.</p>
6182
6186
  * @public
@@ -6194,7 +6198,7 @@ export interface ImageClassificationJobConfig {
6194
6198
  * generate.</p>
6195
6199
  * @public
6196
6200
  */
6197
- CompletionCriteria?: AutoMLJobCompletionCriteria;
6201
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
6198
6202
  }
6199
6203
  /**
6200
6204
  * <p>Stores the configuration information for how model candidates are generated using an
@@ -6269,7 +6273,7 @@ export interface CandidateGenerationConfig {
6269
6273
  * </ul>
6270
6274
  * @public
6271
6275
  */
6272
- AlgorithmsConfig?: AutoMLAlgorithmConfig[];
6276
+ AlgorithmsConfig?: AutoMLAlgorithmConfig[] | undefined;
6273
6277
  }
6274
6278
  /**
6275
6279
  * @public
@@ -6293,13 +6297,13 @@ export interface TabularJobConfig {
6293
6297
  * <p>The configuration information of how model candidates are generated.</p>
6294
6298
  * @public
6295
6299
  */
6296
- CandidateGenerationConfig?: CandidateGenerationConfig;
6300
+ CandidateGenerationConfig?: CandidateGenerationConfig | undefined;
6297
6301
  /**
6298
6302
  * <p>How long a job is allowed to run, or how many candidates a job is allowed to
6299
6303
  * generate.</p>
6300
6304
  * @public
6301
6305
  */
6302
- CompletionCriteria?: AutoMLJobCompletionCriteria;
6306
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
6303
6307
  /**
6304
6308
  * <p>A URL to the Amazon S3 data source containing selected features from the input
6305
6309
  * data source to run an Autopilot job V2. You can input <code>FeatureAttributeNames</code>
@@ -6329,7 +6333,7 @@ export interface TabularJobConfig {
6329
6333
  * of columns provided must not include the target column.</p>
6330
6334
  * @public
6331
6335
  */
6332
- FeatureSpecificationS3Uri?: string;
6336
+ FeatureSpecificationS3Uri?: string | undefined;
6333
6337
  /**
6334
6338
  * <p>The method that Autopilot uses to train the data. You can either specify the mode manually
6335
6339
  * or let Autopilot choose for you based on the dataset size by selecting <code>AUTO</code>. In
@@ -6349,13 +6353,13 @@ export interface TabularJobConfig {
6349
6353
  * <code>HYPERPARAMETER_TUNING</code> mode.</p>
6350
6354
  * @public
6351
6355
  */
6352
- Mode?: AutoMLMode;
6356
+ Mode?: AutoMLMode | undefined;
6353
6357
  /**
6354
6358
  * <p>Generates possible candidates without training the models. A model candidate is a
6355
6359
  * combination of data preprocessors, algorithms, and algorithm parameter settings.</p>
6356
6360
  * @public
6357
6361
  */
6358
- GenerateCandidateDefinitionsOnly?: boolean;
6362
+ GenerateCandidateDefinitionsOnly?: boolean | undefined;
6359
6363
  /**
6360
6364
  * <p>The type of supervised learning problem available for the model candidates of the AutoML
6361
6365
  * job V2. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-datasets-problem-types.html#autopilot-problem-types">
@@ -6366,7 +6370,7 @@ export interface TabularJobConfig {
6366
6370
  * </note>
6367
6371
  * @public
6368
6372
  */
6369
- ProblemType?: ProblemType;
6373
+ ProblemType?: ProblemType | undefined;
6370
6374
  /**
6371
6375
  * <p>The name of the target variable in supervised learning, usually represented by
6372
6376
  * 'y'.</p>
@@ -6386,7 +6390,7 @@ export interface TabularJobConfig {
6386
6390
  * mode only.</p>
6387
6391
  * @public
6388
6392
  */
6389
- SampleWeightAttributeName?: string;
6393
+ SampleWeightAttributeName?: string | undefined;
6390
6394
  }
6391
6395
  /**
6392
6396
  * <p>The collection of settings used by an AutoML job V2 for the text classification problem
@@ -6399,7 +6403,7 @@ export interface TextClassificationJobConfig {
6399
6403
  * generate.</p>
6400
6404
  * @public
6401
6405
  */
6402
- CompletionCriteria?: AutoMLJobCompletionCriteria;
6406
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
6403
6407
  /**
6404
6408
  * <p>The name of the column used to provide the sentences to be classified. It should not be
6405
6409
  * the same as the target column.</p>
@@ -6430,14 +6434,14 @@ export interface TextGenerationJobConfig {
6430
6434
  * <code>AutoMLJobCompletionCriteria</code> defaults to 72h (259200s).</p>
6431
6435
  * @public
6432
6436
  */
6433
- CompletionCriteria?: AutoMLJobCompletionCriteria;
6437
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
6434
6438
  /**
6435
6439
  * <p>The name of the base model to fine-tune. Autopilot supports fine-tuning a variety of large
6436
6440
  * language models. For information on the list of supported models, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-llms-finetuning-models.html#autopilot-llms-finetuning-supported-llms">Text generation models supporting fine-tuning in Autopilot</a>. If no
6437
6441
  * <code>BaseModelName</code> is provided, the default model used is <b>Falcon7BInstruct</b>. </p>
6438
6442
  * @public
6439
6443
  */
6440
- BaseModelName?: string;
6444
+ BaseModelName?: string | undefined;
6441
6445
  /**
6442
6446
  * <p>The hyperparameters used to configure and optimize the learning process of the base
6443
6447
  * model. You can set any combination of the following hyperparameters for all base models.
@@ -6477,7 +6481,7 @@ export interface TextGenerationJobConfig {
6477
6481
  * </p>
6478
6482
  * @public
6479
6483
  */
6480
- TextGenerationHyperParameters?: Record<string, string>;
6484
+ TextGenerationHyperParameters?: Record<string, string> | undefined;
6481
6485
  /**
6482
6486
  * <p>The access configuration file to control access to the ML model. You can explicitly accept the model
6483
6487
  * end-user license agreement (EULA) within the <code>ModelAccessConfig</code>.</p>
@@ -6494,7 +6498,7 @@ export interface TextGenerationJobConfig {
6494
6498
  * </ul>
6495
6499
  * @public
6496
6500
  */
6497
- ModelAccessConfig?: ModelAccessConfig;
6501
+ ModelAccessConfig?: ModelAccessConfig | undefined;
6498
6502
  }
6499
6503
  /**
6500
6504
  * <p>Stores the holiday featurization attributes applicable to each item of time-series
@@ -6509,7 +6513,7 @@ export interface HolidayConfigAttributes {
6509
6513
  * choice.</p>
6510
6514
  * @public
6511
6515
  */
6512
- CountryCode?: string;
6516
+ CountryCode?: string | undefined;
6513
6517
  }
6514
6518
  /**
6515
6519
  * <p>The collection of components that defines the time-series.</p>
@@ -6539,7 +6543,7 @@ export interface TimeSeriesConfig {
6539
6543
  * composite key for which a target value is predicted.</p>
6540
6544
  * @public
6541
6545
  */
6542
- GroupingAttributeNames?: string[];
6546
+ GroupingAttributeNames?: string[] | undefined;
6543
6547
  }
6544
6548
  /**
6545
6549
  * @public
@@ -6604,7 +6608,7 @@ export interface TimeSeriesTransformations {
6604
6608
  * <code>"backfill": "value"</code> and <code>"backfill_value":"2"</code>.</p>
6605
6609
  * @public
6606
6610
  */
6607
- Filling?: Record<string, Partial<Record<FillingType, string>>>;
6611
+ Filling?: Record<string, Partial<Record<FillingType, string>>> | undefined;
6608
6612
  /**
6609
6613
  * <p>A key value pair defining the aggregation method for a column, where the key is the
6610
6614
  * column name and the value is the aggregation method.</p>
@@ -6615,7 +6619,7 @@ export interface TimeSeriesTransformations {
6615
6619
  * </note>
6616
6620
  * @public
6617
6621
  */
6618
- Aggregation?: Record<string, AggregationTransformationValue>;
6622
+ Aggregation?: Record<string, AggregationTransformationValue> | undefined;
6619
6623
  }
6620
6624
  /**
6621
6625
  * <p>The collection of settings used by an AutoML job V2 for the time-series forecasting
@@ -6648,13 +6652,13 @@ export interface TimeSeriesForecastingJobConfig {
6648
6652
  * </note>
6649
6653
  * @public
6650
6654
  */
6651
- FeatureSpecificationS3Uri?: string;
6655
+ FeatureSpecificationS3Uri?: string | undefined;
6652
6656
  /**
6653
6657
  * <p>How long a job is allowed to run, or how many candidates a job is allowed to
6654
6658
  * generate.</p>
6655
6659
  * @public
6656
6660
  */
6657
- CompletionCriteria?: AutoMLJobCompletionCriteria;
6661
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
6658
6662
  /**
6659
6663
  * <p>The frequency of predictions in a forecast.</p>
6660
6664
  * <p>Valid intervals are an integer followed by Y (Year), M (Month), W (Week), D (Day), H
@@ -6701,13 +6705,13 @@ export interface TimeSeriesForecastingJobConfig {
6701
6705
  * p50, and p90 as default.</p>
6702
6706
  * @public
6703
6707
  */
6704
- ForecastQuantiles?: string[];
6708
+ ForecastQuantiles?: string[] | undefined;
6705
6709
  /**
6706
6710
  * <p>The transformations modifying specific attributes of the time-series, such as filling
6707
6711
  * strategies for missing values.</p>
6708
6712
  * @public
6709
6713
  */
6710
- Transformations?: TimeSeriesTransformations;
6714
+ Transformations?: TimeSeriesTransformations | undefined;
6711
6715
  /**
6712
6716
  * <p>The collection of components that defines the time-series.</p>
6713
6717
  * @public
@@ -6718,13 +6722,13 @@ export interface TimeSeriesForecastingJobConfig {
6718
6722
  * information into your forecasting model.</p>
6719
6723
  * @public
6720
6724
  */
6721
- HolidayConfig?: HolidayConfigAttributes[];
6725
+ HolidayConfig?: HolidayConfigAttributes[] | undefined;
6722
6726
  /**
6723
6727
  * <p>Stores the configuration information for how model candidates are generated using an
6724
6728
  * AutoML job V2.</p>
6725
6729
  * @public
6726
6730
  */
6727
- CandidateGenerationConfig?: CandidateGenerationConfig;
6731
+ CandidateGenerationConfig?: CandidateGenerationConfig | undefined;
6728
6732
  }
6729
6733
  /**
6730
6734
  * <p>A collection of settings specific to the problem type used to configure an AutoML job V2.
@@ -6854,7 +6858,7 @@ export interface TabularResolvedAttributes {
6854
6858
  * SageMaker Autopilot problem types</a>.</p>
6855
6859
  * @public
6856
6860
  */
6857
- ProblemType?: ProblemType;
6861
+ ProblemType?: ProblemType | undefined;
6858
6862
  }
6859
6863
  /**
6860
6864
  * <p>The resolved attributes specific to the text generation problem type.</p>
@@ -6865,7 +6869,7 @@ export interface TextGenerationResolvedAttributes {
6865
6869
  * <p>The name of the base model to fine-tune.</p>
6866
6870
  * @public
6867
6871
  */
6868
- BaseModelName?: string;
6872
+ BaseModelName?: string | undefined;
6869
6873
  }
6870
6874
  /**
6871
6875
  * <p>Stores resolved attributes specific to the problem type of an AutoML job V2.</p>
@@ -6918,18 +6922,18 @@ export interface AutoMLResolvedAttributes {
6918
6922
  * <p>Specifies a metric to minimize or maximize as the objective of an AutoML job.</p>
6919
6923
  * @public
6920
6924
  */
6921
- AutoMLJobObjective?: AutoMLJobObjective;
6925
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
6922
6926
  /**
6923
6927
  * <p>How long a job is allowed to run, or how many candidates a job is allowed to
6924
6928
  * generate.</p>
6925
6929
  * @public
6926
6930
  */
6927
- CompletionCriteria?: AutoMLJobCompletionCriteria;
6931
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
6928
6932
  /**
6929
6933
  * <p>Defines the resolved attributes specific to a problem type.</p>
6930
6934
  * @public
6931
6935
  */
6932
- AutoMLProblemTypeResolvedAttributes?: AutoMLProblemTypeResolvedAttributes;
6936
+ AutoMLProblemTypeResolvedAttributes?: AutoMLProblemTypeResolvedAttributes | undefined;
6933
6937
  }
6934
6938
  /**
6935
6939
  * @public
@@ -6999,7 +7003,7 @@ export interface AutoRollbackConfig {
6999
7003
  * deployment.</p>
7000
7004
  * @public
7001
7005
  */
7002
- Alarms?: Alarm[];
7006
+ Alarms?: Alarm[] | undefined;
7003
7007
  }
7004
7008
  /**
7005
7009
  * @public
@@ -7107,12 +7111,12 @@ export interface BatchDataCaptureConfig {
7107
7111
  * </ul>
7108
7112
  * @public
7109
7113
  */
7110
- KmsKeyId?: string;
7114
+ KmsKeyId?: string | undefined;
7111
7115
  /**
7112
7116
  * <p>Flag that indicates whether to append inference id to the output.</p>
7113
7117
  * @public
7114
7118
  */
7115
- GenerateInferenceId?: boolean;
7119
+ GenerateInferenceId?: boolean | undefined;
7116
7120
  }
7117
7121
  /**
7118
7122
  * @public
@@ -7178,12 +7182,12 @@ export interface BatchDeleteClusterNodesResponse {
7178
7182
  * <p>A list of errors encountered when deleting the specified nodes.</p>
7179
7183
  * @public
7180
7184
  */
7181
- Failed?: BatchDeleteClusterNodesError[];
7185
+ Failed?: BatchDeleteClusterNodesError[] | undefined;
7182
7186
  /**
7183
7187
  * <p>A list of node IDs that were successfully deleted from the specified cluster.</p>
7184
7188
  * @public
7185
7189
  */
7186
- Successful?: string[];
7190
+ Successful?: string[] | undefined;
7187
7191
  }
7188
7192
  /**
7189
7193
  * @public
@@ -7228,24 +7232,24 @@ export interface InferenceSpecification {
7228
7232
  * models.</p>
7229
7233
  * @public
7230
7234
  */
7231
- SupportedTransformInstanceTypes?: TransformInstanceType[];
7235
+ SupportedTransformInstanceTypes?: TransformInstanceType[] | undefined;
7232
7236
  /**
7233
7237
  * <p>A list of the instance types that are used to generate inferences in real-time.</p>
7234
7238
  * <p>This parameter is required for unversioned models, and optional for versioned
7235
7239
  * models.</p>
7236
7240
  * @public
7237
7241
  */
7238
- SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[];
7242
+ SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[] | undefined;
7239
7243
  /**
7240
7244
  * <p>The supported MIME types for the input data.</p>
7241
7245
  * @public
7242
7246
  */
7243
- SupportedContentTypes?: string[];
7247
+ SupportedContentTypes?: string[] | undefined;
7244
7248
  /**
7245
7249
  * <p>The supported MIME types for the output data.</p>
7246
7250
  * @public
7247
7251
  */
7248
- SupportedResponseMIMETypes?: string[];
7252
+ SupportedResponseMIMETypes?: string[] | undefined;
7249
7253
  }
7250
7254
  /**
7251
7255
  * @public
@@ -7289,7 +7293,7 @@ export interface BatchDescribeModelPackageSummary {
7289
7293
  * <p>The version number of a versioned model.</p>
7290
7294
  * @public
7291
7295
  */
7292
- ModelPackageVersion?: number;
7296
+ ModelPackageVersion?: number | undefined;
7293
7297
  /**
7294
7298
  * <p>The Amazon Resource Name (ARN) of the model package.</p>
7295
7299
  * @public
@@ -7299,7 +7303,7 @@ export interface BatchDescribeModelPackageSummary {
7299
7303
  * <p>The description of the model package.</p>
7300
7304
  * @public
7301
7305
  */
7302
- ModelPackageDescription?: string;
7306
+ ModelPackageDescription?: string | undefined;
7303
7307
  /**
7304
7308
  * <p>The creation time of the mortgage package summary.</p>
7305
7309
  * @public
@@ -7319,7 +7323,7 @@ export interface BatchDescribeModelPackageSummary {
7319
7323
  * <p>The approval status of the model.</p>
7320
7324
  * @public
7321
7325
  */
7322
- ModelApprovalStatus?: ModelApprovalStatus;
7326
+ ModelApprovalStatus?: ModelApprovalStatus | undefined;
7323
7327
  }
7324
7328
  /**
7325
7329
  * @public
@@ -7329,13 +7333,13 @@ export interface BatchDescribeModelPackageOutput {
7329
7333
  * <p>The summaries for the model package versions</p>
7330
7334
  * @public
7331
7335
  */
7332
- ModelPackageSummaries?: Record<string, BatchDescribeModelPackageSummary>;
7336
+ ModelPackageSummaries?: Record<string, BatchDescribeModelPackageSummary> | undefined;
7333
7337
  /**
7334
7338
  * <p>A map of the resource and BatchDescribeModelPackageError objects
7335
7339
  * reporting the error associated with describing the model package.</p>
7336
7340
  * @public
7337
7341
  */
7338
- BatchDescribeModelPackageErrorMap?: Record<string, BatchDescribeModelPackageError>;
7342
+ BatchDescribeModelPackageErrorMap?: Record<string, BatchDescribeModelPackageError> | undefined;
7339
7343
  }
7340
7344
  /**
7341
7345
  * <p>Represents the CSV dataset format used when running a monitoring job.</p>
@@ -7346,7 +7350,7 @@ export interface MonitoringCsvDatasetFormat {
7346
7350
  * <p>Indicates if the CSV data has a header.</p>
7347
7351
  * @public
7348
7352
  */
7349
- Header?: boolean;
7353
+ Header?: boolean | undefined;
7350
7354
  }
7351
7355
  /**
7352
7356
  * <p>Represents the JSON dataset format used when running a monitoring job.</p>
@@ -7357,7 +7361,7 @@ export interface MonitoringJsonDatasetFormat {
7357
7361
  * <p>Indicates if the file should be read as a JSON object per line. </p>
7358
7362
  * @public
7359
7363
  */
7360
- Line?: boolean;
7364
+ Line?: boolean | undefined;
7361
7365
  }
7362
7366
  /**
7363
7367
  * <p>Represents the Parquet dataset format used when running a monitoring job.</p>
@@ -7374,17 +7378,17 @@ export interface MonitoringDatasetFormat {
7374
7378
  * <p>The CSV dataset used in the monitoring job.</p>
7375
7379
  * @public
7376
7380
  */
7377
- Csv?: MonitoringCsvDatasetFormat;
7381
+ Csv?: MonitoringCsvDatasetFormat | undefined;
7378
7382
  /**
7379
7383
  * <p>The JSON dataset used in the monitoring job</p>
7380
7384
  * @public
7381
7385
  */
7382
- Json?: MonitoringJsonDatasetFormat;
7386
+ Json?: MonitoringJsonDatasetFormat | undefined;
7383
7387
  /**
7384
7388
  * <p>The Parquet dataset used in the monitoring job</p>
7385
7389
  * @public
7386
7390
  */
7387
- Parquet?: MonitoringParquetDatasetFormat;
7391
+ Parquet?: MonitoringParquetDatasetFormat | undefined;
7388
7392
  }
7389
7393
  /**
7390
7394
  * @public
@@ -7437,53 +7441,53 @@ export interface BatchTransformInput {
7437
7441
  * <code>File</code>.</p>
7438
7442
  * @public
7439
7443
  */
7440
- S3InputMode?: ProcessingS3InputMode;
7444
+ S3InputMode?: ProcessingS3InputMode | undefined;
7441
7445
  /**
7442
7446
  * <p>Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key.
7443
7447
  * Defaults to <code>FullyReplicated</code>
7444
7448
  * </p>
7445
7449
  * @public
7446
7450
  */
7447
- S3DataDistributionType?: ProcessingS3DataDistributionType;
7451
+ S3DataDistributionType?: ProcessingS3DataDistributionType | undefined;
7448
7452
  /**
7449
7453
  * <p>The attributes of the input data that are the input features.</p>
7450
7454
  * @public
7451
7455
  */
7452
- FeaturesAttribute?: string;
7456
+ FeaturesAttribute?: string | undefined;
7453
7457
  /**
7454
7458
  * <p>The attribute of the input data that represents the ground truth label.</p>
7455
7459
  * @public
7456
7460
  */
7457
- InferenceAttribute?: string;
7461
+ InferenceAttribute?: string | undefined;
7458
7462
  /**
7459
7463
  * <p>In a classification problem, the attribute that represents the class probability.</p>
7460
7464
  * @public
7461
7465
  */
7462
- ProbabilityAttribute?: string;
7466
+ ProbabilityAttribute?: string | undefined;
7463
7467
  /**
7464
7468
  * <p>The threshold for the class probability to be evaluated as a positive result.</p>
7465
7469
  * @public
7466
7470
  */
7467
- ProbabilityThresholdAttribute?: number;
7471
+ ProbabilityThresholdAttribute?: number | undefined;
7468
7472
  /**
7469
7473
  * <p>If specified, monitoring jobs substract this time from the start time. For information
7470
7474
  * about using offsets for scheduling monitoring jobs, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-model-quality-schedule.html">Schedule Model
7471
7475
  * Quality Monitoring Jobs</a>.</p>
7472
7476
  * @public
7473
7477
  */
7474
- StartTimeOffset?: string;
7478
+ StartTimeOffset?: string | undefined;
7475
7479
  /**
7476
7480
  * <p>If specified, monitoring jobs subtract this time from the end time. For information
7477
7481
  * about using offsets for scheduling monitoring jobs, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-model-quality-schedule.html">Schedule Model
7478
7482
  * Quality Monitoring Jobs</a>.</p>
7479
7483
  * @public
7480
7484
  */
7481
- EndTimeOffset?: string;
7485
+ EndTimeOffset?: string | undefined;
7482
7486
  /**
7483
7487
  * <p>The attributes of the input data to exclude from the analysis.</p>
7484
7488
  * @public
7485
7489
  */
7486
- ExcludeFeaturesAttribute?: string;
7490
+ ExcludeFeaturesAttribute?: string | undefined;
7487
7491
  }
7488
7492
  /**
7489
7493
  * <p>A structure that keeps track of which training jobs launched by your hyperparameter
@@ -7497,7 +7501,7 @@ export interface BestObjectiveNotImproving {
7497
7501
  * greater over prior training jobs as evaluated against an objective function.</p>
7498
7502
  * @public
7499
7503
  */
7500
- MaxNumberOfTrainingJobsNotImproving?: number;
7504
+ MaxNumberOfTrainingJobsNotImproving?: number | undefined;
7501
7505
  }
7502
7506
  /**
7503
7507
  * <p>Details about the metrics source.</p>
@@ -7513,7 +7517,7 @@ export interface MetricsSource {
7513
7517
  * <p>The hash key used for the metrics source.</p>
7514
7518
  * @public
7515
7519
  */
7516
- ContentDigest?: string;
7520
+ ContentDigest?: string | undefined;
7517
7521
  /**
7518
7522
  * <p>The S3 URI for the metrics source.</p>
7519
7523
  * @public
@@ -7529,17 +7533,17 @@ export interface Bias {
7529
7533
  * <p>The bias report for a model</p>
7530
7534
  * @public
7531
7535
  */
7532
- Report?: MetricsSource;
7536
+ Report?: MetricsSource | undefined;
7533
7537
  /**
7534
7538
  * <p>The pre-training bias report for a model.</p>
7535
7539
  * @public
7536
7540
  */
7537
- PreTrainingReport?: MetricsSource;
7541
+ PreTrainingReport?: MetricsSource | undefined;
7538
7542
  /**
7539
7543
  * <p>The post-training bias report for a model.</p>
7540
7544
  * @public
7541
7545
  */
7542
- PostTrainingReport?: MetricsSource;
7546
+ PostTrainingReport?: MetricsSource | undefined;
7543
7547
  }
7544
7548
  /**
7545
7549
  * @public
@@ -7643,13 +7647,13 @@ export interface TrafficRoutingConfig {
7643
7647
  * or equal to 50% of the variant's total instance count.</p>
7644
7648
  * @public
7645
7649
  */
7646
- CanarySize?: CapacitySize;
7650
+ CanarySize?: CapacitySize | undefined;
7647
7651
  /**
7648
7652
  * <p>Batch size for each step to turn on traffic on the new endpoint fleet. <code>Value</code> must be
7649
7653
  * 10-50% of the variant's total instance count.</p>
7650
7654
  * @public
7651
7655
  */
7652
- LinearStepSize?: CapacitySize;
7656
+ LinearStepSize?: CapacitySize | undefined;
7653
7657
  }
7654
7658
  /**
7655
7659
  * <p>Update policy for a blue/green deployment. If this update policy is specified, SageMaker
@@ -7672,14 +7676,14 @@ export interface BlueGreenUpdatePolicy {
7672
7676
  * before terminating the old endpoint fleet. Default is 0.</p>
7673
7677
  * @public
7674
7678
  */
7675
- TerminationWaitInSeconds?: number;
7679
+ TerminationWaitInSeconds?: number | undefined;
7676
7680
  /**
7677
7681
  * <p>Maximum execution timeout for the deployment. Note that the timeout value should be
7678
7682
  * larger than the total waiting time specified in <code>TerminationWaitInSeconds</code>
7679
7683
  * and <code>WaitIntervalInSeconds</code>.</p>
7680
7684
  * @public
7681
7685
  */
7682
- MaximumExecutionTimeoutInSeconds?: number;
7686
+ MaximumExecutionTimeoutInSeconds?: number | undefined;
7683
7687
  }
7684
7688
  /**
7685
7689
  * @public
@@ -7702,7 +7706,7 @@ export interface CacheHitResult {
7702
7706
  * <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
7703
7707
  * @public
7704
7708
  */
7705
- SourcePipelineExecutionArn?: string;
7709
+ SourcePipelineExecutionArn?: string | undefined;
7706
7710
  }
7707
7711
  /**
7708
7712
  * <p>An output parameter of a pipeline step.</p>
@@ -7729,17 +7733,17 @@ export interface CallbackStepMetadata {
7729
7733
  * <p>The pipeline generated token from the Amazon SQS queue.</p>
7730
7734
  * @public
7731
7735
  */
7732
- CallbackToken?: string;
7736
+ CallbackToken?: string | undefined;
7733
7737
  /**
7734
7738
  * <p>The URL of the Amazon Simple Queue Service (Amazon SQS) queue used by the callback step.</p>
7735
7739
  * @public
7736
7740
  */
7737
- SqsQueueUrl?: string;
7741
+ SqsQueueUrl?: string | undefined;
7738
7742
  /**
7739
7743
  * <p>A list of the output parameters of the callback step.</p>
7740
7744
  * @public
7741
7745
  */
7742
- OutputParameters?: OutputParameter[];
7746
+ OutputParameters?: OutputParameter[] | undefined;
7743
7747
  }
7744
7748
  /**
7745
7749
  * @public
@@ -7768,7 +7772,7 @@ export interface DirectDeploySettings {
7768
7772
  * <p>Describes whether model deployment permissions are enabled or disabled in the Canvas application.</p>
7769
7773
  * @public
7770
7774
  */
7771
- Status?: FeatureStatus;
7775
+ Status?: FeatureStatus | undefined;
7772
7776
  }
7773
7777
  /**
7774
7778
  * <p>The settings for running Amazon EMR Serverless jobs in SageMaker Canvas.</p>
@@ -7782,13 +7786,13 @@ export interface EmrServerlessSettings {
7782
7786
  * EMR Serverless.</p>
7783
7787
  * @public
7784
7788
  */
7785
- ExecutionRoleArn?: string;
7789
+ ExecutionRoleArn?: string | undefined;
7786
7790
  /**
7787
7791
  * <p>Describes whether Amazon EMR Serverless job capabilities are enabled or disabled in the SageMaker
7788
7792
  * Canvas application.</p>
7789
7793
  * @public
7790
7794
  */
7791
- Status?: FeatureStatus;
7795
+ Status?: FeatureStatus | undefined;
7792
7796
  }
7793
7797
  /**
7794
7798
  * <p>The generative AI settings for the SageMaker Canvas application.</p>
@@ -7804,7 +7808,7 @@ export interface GenerativeAiSettings {
7804
7808
  * establishes <code>bedrock.amazonaws.com</code> as a service principal.</p>
7805
7809
  * @public
7806
7810
  */
7807
- AmazonBedrockRoleArn?: string;
7811
+ AmazonBedrockRoleArn?: string | undefined;
7808
7812
  }
7809
7813
  /**
7810
7814
  * @public
@@ -7828,19 +7832,19 @@ export interface IdentityProviderOAuthSetting {
7828
7832
  * <p>The name of the data source that you're connecting to. Canvas currently supports OAuth for Snowflake and Salesforce Data Cloud.</p>
7829
7833
  * @public
7830
7834
  */
7831
- DataSourceName?: DataSourceName;
7835
+ DataSourceName?: DataSourceName | undefined;
7832
7836
  /**
7833
7837
  * <p>Describes whether OAuth for a data source is enabled or disabled in the Canvas
7834
7838
  * application.</p>
7835
7839
  * @public
7836
7840
  */
7837
- Status?: FeatureStatus;
7841
+ Status?: FeatureStatus | undefined;
7838
7842
  /**
7839
7843
  * <p>The ARN of an Amazon Web Services Secrets Manager secret that stores the credentials from your
7840
7844
  * identity provider, such as the client ID and secret, authorization URL, and token URL. </p>
7841
7845
  * @public
7842
7846
  */
7843
- SecretArn?: string;
7847
+ SecretArn?: string | undefined;
7844
7848
  }
7845
7849
  /**
7846
7850
  * <p>The Amazon SageMaker Canvas application setting where you configure
@@ -7853,7 +7857,7 @@ export interface KendraSettings {
7853
7857
  * or disabled in the Canvas application.</p>
7854
7858
  * @public
7855
7859
  */
7856
- Status?: FeatureStatus;
7860
+ Status?: FeatureStatus | undefined;
7857
7861
  }
7858
7862
  /**
7859
7863
  * <p>The model registry settings for the SageMaker Canvas application.</p>
@@ -7865,14 +7869,14 @@ export interface ModelRegisterSettings {
7865
7869
  * Canvas application.</p>
7866
7870
  * @public
7867
7871
  */
7868
- Status?: FeatureStatus;
7872
+ Status?: FeatureStatus | undefined;
7869
7873
  /**
7870
7874
  * <p>The Amazon Resource Name (ARN) of the SageMaker model registry account. Required only to register model versions
7871
7875
  * created by a different SageMaker Canvas Amazon Web Services account than the Amazon Web Services
7872
7876
  * account in which SageMaker model registry is set up.</p>
7873
7877
  * @public
7874
7878
  */
7875
- CrossAccountModelRegisterRoleArn?: string;
7879
+ CrossAccountModelRegisterRoleArn?: string | undefined;
7876
7880
  }
7877
7881
  /**
7878
7882
  * <p>Time series forecast settings for the SageMaker Canvas application.</p>
@@ -7884,7 +7888,7 @@ export interface TimeSeriesForecastingSettings {
7884
7888
  * application.</p>
7885
7889
  * @public
7886
7890
  */
7887
- Status?: FeatureStatus;
7891
+ Status?: FeatureStatus | undefined;
7888
7892
  /**
7889
7893
  * <p>The IAM role that Canvas passes to Amazon Forecast for time series forecasting. By default,
7890
7894
  * Canvas uses the execution role specified in the <code>UserProfile</code> that launches the
@@ -7896,7 +7900,7 @@ export interface TimeSeriesForecastingSettings {
7896
7900
  * principal.</p>
7897
7901
  * @public
7898
7902
  */
7899
- AmazonForecastRoleArn?: string;
7903
+ AmazonForecastRoleArn?: string | undefined;
7900
7904
  }
7901
7905
  /**
7902
7906
  * <p>The workspace settings for the SageMaker Canvas application.</p>
@@ -7909,12 +7913,12 @@ export interface WorkspaceSettings {
7909
7913
  * must log out and log back in to apply the new location.</p>
7910
7914
  * @public
7911
7915
  */
7912
- S3ArtifactPath?: string;
7916
+ S3ArtifactPath?: string | undefined;
7913
7917
  /**
7914
7918
  * <p>The Amazon Web Services Key Management Service (KMS) encryption key ID that is used to encrypt artifacts generated by Canvas in the Amazon S3 bucket.</p>
7915
7919
  * @public
7916
7920
  */
7917
- S3KmsKeyId?: string;
7921
+ S3KmsKeyId?: string | undefined;
7918
7922
  }
7919
7923
  /**
7920
7924
  * <p>The SageMaker Canvas application settings.</p>
@@ -7925,42 +7929,42 @@ export interface CanvasAppSettings {
7925
7929
  * <p>Time series forecast settings for the SageMaker Canvas application.</p>
7926
7930
  * @public
7927
7931
  */
7928
- TimeSeriesForecastingSettings?: TimeSeriesForecastingSettings;
7932
+ TimeSeriesForecastingSettings?: TimeSeriesForecastingSettings | undefined;
7929
7933
  /**
7930
7934
  * <p>The model registry settings for the SageMaker Canvas application.</p>
7931
7935
  * @public
7932
7936
  */
7933
- ModelRegisterSettings?: ModelRegisterSettings;
7937
+ ModelRegisterSettings?: ModelRegisterSettings | undefined;
7934
7938
  /**
7935
7939
  * <p>The workspace settings for the SageMaker Canvas application.</p>
7936
7940
  * @public
7937
7941
  */
7938
- WorkspaceSettings?: WorkspaceSettings;
7942
+ WorkspaceSettings?: WorkspaceSettings | undefined;
7939
7943
  /**
7940
7944
  * <p>The settings for connecting to an external data source with OAuth.</p>
7941
7945
  * @public
7942
7946
  */
7943
- IdentityProviderOAuthSettings?: IdentityProviderOAuthSetting[];
7947
+ IdentityProviderOAuthSettings?: IdentityProviderOAuthSetting[] | undefined;
7944
7948
  /**
7945
7949
  * <p>The model deployment settings for the SageMaker Canvas application.</p>
7946
7950
  * @public
7947
7951
  */
7948
- DirectDeploySettings?: DirectDeploySettings;
7952
+ DirectDeploySettings?: DirectDeploySettings | undefined;
7949
7953
  /**
7950
7954
  * <p>The settings for document querying.</p>
7951
7955
  * @public
7952
7956
  */
7953
- KendraSettings?: KendraSettings;
7957
+ KendraSettings?: KendraSettings | undefined;
7954
7958
  /**
7955
7959
  * <p>The generative AI settings for the SageMaker Canvas application.</p>
7956
7960
  * @public
7957
7961
  */
7958
- GenerativeAiSettings?: GenerativeAiSettings;
7962
+ GenerativeAiSettings?: GenerativeAiSettings | undefined;
7959
7963
  /**
7960
7964
  * <p>The settings for running Amazon EMR Serverless data processing jobs in SageMaker Canvas.</p>
7961
7965
  * @public
7962
7966
  */
7963
- EmrServerlessSettings?: EmrServerlessSettings;
7967
+ EmrServerlessSettings?: EmrServerlessSettings | undefined;
7964
7968
  }
7965
7969
  /**
7966
7970
  * <p>Configuration specifying how to treat different headers. If no headers are specified
@@ -7973,13 +7977,13 @@ export interface CaptureContentTypeHeader {
7973
7977
  * capture accordingly.</p>
7974
7978
  * @public
7975
7979
  */
7976
- CsvContentTypes?: string[];
7980
+ CsvContentTypes?: string[] | undefined;
7977
7981
  /**
7978
7982
  * <p>The list of all content type headers that SageMaker will treat as JSON and
7979
7983
  * capture accordingly.</p>
7980
7984
  * @public
7981
7985
  */
7982
- JsonContentTypes?: string[];
7986
+ JsonContentTypes?: string[] | undefined;
7983
7987
  }
7984
7988
  /**
7985
7989
  * @public
@@ -8076,12 +8080,12 @@ export interface ChannelSpecification {
8076
8080
  * <p>A brief description of the channel.</p>
8077
8081
  * @public
8078
8082
  */
8079
- Description?: string;
8083
+ Description?: string | undefined;
8080
8084
  /**
8081
8085
  * <p>Indicates whether the channel is required by the algorithm.</p>
8082
8086
  * @public
8083
8087
  */
8084
- IsRequired?: boolean;
8088
+ IsRequired?: boolean | undefined;
8085
8089
  /**
8086
8090
  * <p>The supported MIME types for the data.</p>
8087
8091
  * @public
@@ -8091,7 +8095,7 @@ export interface ChannelSpecification {
8091
8095
  * <p>The allowed compression types, if data compression is used.</p>
8092
8096
  * @public
8093
8097
  */
8094
- SupportedCompressionTypes?: CompressionType[];
8098
+ SupportedCompressionTypes?: CompressionType[] | undefined;
8095
8099
  /**
8096
8100
  * <p>The allowed input mode, either FILE or PIPE.</p>
8097
8101
  * <p>In FILE mode, Amazon SageMaker copies the data from the input source onto the local Amazon
@@ -8120,7 +8124,7 @@ export interface CheckpointConfig {
8120
8124
  * <code>/opt/ml/checkpoints/</code>. </p>
8121
8125
  * @public
8122
8126
  */
8123
- LocalPath?: string;
8127
+ LocalPath?: string | undefined;
8124
8128
  }
8125
8129
  /**
8126
8130
  * <p>The container for the metadata for the ClarifyCheck step. For more information,
@@ -8133,38 +8137,38 @@ export interface ClarifyCheckStepMetadata {
8133
8137
  * <p>The type of the Clarify Check step</p>
8134
8138
  * @public
8135
8139
  */
8136
- CheckType?: string;
8140
+ CheckType?: string | undefined;
8137
8141
  /**
8138
8142
  * <p>The Amazon S3 URI of baseline constraints file to be used for the drift check.</p>
8139
8143
  * @public
8140
8144
  */
8141
- BaselineUsedForDriftCheckConstraints?: string;
8145
+ BaselineUsedForDriftCheckConstraints?: string | undefined;
8142
8146
  /**
8143
8147
  * <p>The Amazon S3 URI of the newly calculated baseline constraints file.</p>
8144
8148
  * @public
8145
8149
  */
8146
- CalculatedBaselineConstraints?: string;
8150
+ CalculatedBaselineConstraints?: string | undefined;
8147
8151
  /**
8148
8152
  * <p>The model package group name.</p>
8149
8153
  * @public
8150
8154
  */
8151
- ModelPackageGroupName?: string;
8155
+ ModelPackageGroupName?: string | undefined;
8152
8156
  /**
8153
8157
  * <p>The Amazon S3 URI of the violation report if violations are detected.</p>
8154
8158
  * @public
8155
8159
  */
8156
- ViolationReport?: string;
8160
+ ViolationReport?: string | undefined;
8157
8161
  /**
8158
8162
  * <p>The Amazon Resource Name (ARN) of the check processing job that was run by this step's execution.</p>
8159
8163
  * @public
8160
8164
  */
8161
- CheckJobArn?: string;
8165
+ CheckJobArn?: string | undefined;
8162
8166
  /**
8163
8167
  * <p>This flag indicates if the drift check against the previous baseline will be skipped or not.
8164
8168
  * If it is set to <code>False</code>, the previous baseline of the configured check type must be available.</p>
8165
8169
  * @public
8166
8170
  */
8167
- SkipCheck?: boolean;
8171
+ SkipCheck?: boolean | undefined;
8168
8172
  /**
8169
8173
  * <p>This flag indicates if a newly calculated baseline can be accessed through step properties
8170
8174
  * <code>BaselineUsedForDriftCheckConstraints</code> and <code>BaselineUsedForDriftCheckStatistics</code>.
@@ -8172,7 +8176,7 @@ export interface ClarifyCheckStepMetadata {
8172
8176
  * These can be accessed through the <code>BaselineUsedForDriftCheckConstraints</code> property. </p>
8173
8177
  * @public
8174
8178
  */
8175
- RegisterNewBaseline?: boolean;
8179
+ RegisterNewBaseline?: boolean | undefined;
8176
8180
  }
8177
8181
  /**
8178
8182
  * @public
@@ -8199,7 +8203,7 @@ export interface ClarifyInferenceConfig {
8199
8203
  * <code>[1,2,3]</code> from request data <code>'\{"myfeatures":[1,2,3]\}'</code>.</p>
8200
8204
  * @public
8201
8205
  */
8202
- FeaturesAttribute?: string;
8206
+ FeaturesAttribute?: string | undefined;
8203
8207
  /**
8204
8208
  * <p>A template string used to format a JSON record into an acceptable model container
8205
8209
  * input. For example, a <code>ContentTemplate</code> string
@@ -8208,7 +8212,7 @@ export interface ClarifyInferenceConfig {
8208
8212
  * Required only when the model container input is in JSON Lines format.</p>
8209
8213
  * @public
8210
8214
  */
8211
- ContentTemplate?: string;
8215
+ ContentTemplate?: string | undefined;
8212
8216
  /**
8213
8217
  * <p>The maximum number of records in a request that the model container can process when
8214
8218
  * querying the model container for the predictions of a <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/clarify-online-explainability-create-endpoint.html#clarify-online-explainability-create-endpoint-synthetic">synthetic dataset</a>. A record is a unit of input data that inference can be
@@ -8220,13 +8224,13 @@ export interface ClarifyInferenceConfig {
8220
8224
  * runtime.</p>
8221
8225
  * @public
8222
8226
  */
8223
- MaxRecordCount?: number;
8227
+ MaxRecordCount?: number | undefined;
8224
8228
  /**
8225
8229
  * <p>The maximum payload size (MB) allowed of a request from the explainer to the model
8226
8230
  * container. Defaults to <code>6</code> MB.</p>
8227
8231
  * @public
8228
8232
  */
8229
- MaxPayloadInMB?: number;
8233
+ MaxPayloadInMB?: number | undefined;
8230
8234
  /**
8231
8235
  * <p>A zero-based index used to extract a probability value (score) or list from model
8232
8236
  * container output in CSV format. If this value is not provided, the entire model
@@ -8244,7 +8248,7 @@ export interface ClarifyInferenceConfig {
8244
8248
  * <code>[0.1,0.6,0.3]</code>.</p>
8245
8249
  * @public
8246
8250
  */
8247
- ProbabilityIndex?: number;
8251
+ ProbabilityIndex?: number | undefined;
8248
8252
  /**
8249
8253
  * <p>A zero-based index used to extract a label header or list of label headers from model
8250
8254
  * container output in CSV format.</p>
@@ -8256,7 +8260,7 @@ export interface ClarifyInferenceConfig {
8256
8260
  * <code>['cat','dog','fish']</code>.</p>
8257
8261
  * @public
8258
8262
  */
8259
- LabelIndex?: number;
8263
+ LabelIndex?: number | undefined;
8260
8264
  /**
8261
8265
  * <p>A JMESPath expression used to extract the probability (or score) from the model
8262
8266
  * container output if the model container is in JSON Lines format.</p>
@@ -8266,7 +8270,7 @@ export interface ClarifyInferenceConfig {
8266
8270
  * <code>ProbabilityAttribute</code> to <code>'probability'</code>.</p>
8267
8271
  * @public
8268
8272
  */
8269
- ProbabilityAttribute?: string;
8273
+ ProbabilityAttribute?: string | undefined;
8270
8274
  /**
8271
8275
  * <p>A JMESPath expression used to locate the list of label headers in the model container
8272
8276
  * output.</p>
@@ -8278,7 +8282,7 @@ export interface ClarifyInferenceConfig {
8278
8282
  * </p>
8279
8283
  * @public
8280
8284
  */
8281
- LabelAttribute?: string;
8285
+ LabelAttribute?: string | undefined;
8282
8286
  /**
8283
8287
  * <p>For multiclass classification problems, the label headers are the names of the
8284
8288
  * classes. Otherwise, the label header is the name of the predicted label. These are used
@@ -8288,14 +8292,14 @@ export interface ClarifyInferenceConfig {
8288
8292
  * container output, provide them manually using this parameter.</p>
8289
8293
  * @public
8290
8294
  */
8291
- LabelHeaders?: string[];
8295
+ LabelHeaders?: string[] | undefined;
8292
8296
  /**
8293
8297
  * <p>The names of the features. If provided, these are included in the endpoint response
8294
8298
  * payload to help readability of the <code>InvokeEndpoint</code> output. 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>
8295
8299
  * in the Developer Guide for more information.</p>
8296
8300
  * @public
8297
8301
  */
8298
- FeatureHeaders?: string[];
8302
+ FeatureHeaders?: string[] | undefined;
8299
8303
  /**
8300
8304
  * <p>A list of data types of the features (optional). Applicable only to NLP
8301
8305
  * explainability. If provided, <code>FeatureTypes</code> must have at least one
@@ -8306,7 +8310,7 @@ export interface ClarifyInferenceConfig {
8306
8310
  * in the Developer Guide for more information.</p>
8307
8311
  * @public
8308
8312
  */
8309
- FeatureTypes?: ClarifyFeatureType[];
8313
+ FeatureTypes?: ClarifyFeatureType[] | undefined;
8310
8314
  }
8311
8315
  /**
8312
8316
  * <p>The configuration for the <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/clarify-feature-attribute-shap-baselines.html">SHAP
@@ -8336,7 +8340,7 @@ export interface ClarifyShapBaselineConfig {
8336
8340
  * <code>'application/jsonlines'</code>. Defaults to <code>'text/csv'</code>.</p>
8337
8341
  * @public
8338
8342
  */
8339
- MimeType?: string;
8343
+ MimeType?: string | undefined;
8340
8344
  /**
8341
8345
  * <p>The inline SHAP baseline data in string format. <code>ShapBaseline</code> can have one
8342
8346
  * or multiple records to be used as the baseline dataset. The format of the SHAP baseline
@@ -8350,7 +8354,7 @@ export interface ClarifyShapBaselineConfig {
8350
8354
  * of baseline data.</p>
8351
8355
  * @public
8352
8356
  */
8353
- ShapBaseline?: string;
8357
+ ShapBaseline?: string | undefined;
8354
8358
  /**
8355
8359
  * <p>The uniform resource identifier (URI) of the S3 bucket where the SHAP baseline file is
8356
8360
  * stored. The format of the SHAP baseline file should be the same format as the format of
@@ -8363,7 +8367,7 @@ export interface ClarifyShapBaselineConfig {
8363
8367
  * Resources in your Amazon Virtual Private Cloud</a>.</p>
8364
8368
  * @public
8365
8369
  */
8366
- ShapBaselineUri?: string;
8370
+ ShapBaselineUri?: string | undefined;
8367
8371
  }
8368
8372
  /**
8369
8373
  * @public
@@ -8492,26 +8496,26 @@ export interface ClarifyShapConfig {
8492
8496
  * </note>
8493
8497
  * @public
8494
8498
  */
8495
- NumberOfSamples?: number;
8499
+ NumberOfSamples?: number | undefined;
8496
8500
  /**
8497
8501
  * <p>A Boolean toggle to indicate if you want to use the logit function (true) or log-odds
8498
8502
  * units (false) for model predictions. Defaults to false.</p>
8499
8503
  * @public
8500
8504
  */
8501
- UseLogit?: boolean;
8505
+ UseLogit?: boolean | undefined;
8502
8506
  /**
8503
8507
  * <p>The starting value used to initialize the random number generator in the explainer.
8504
8508
  * Provide a value for this parameter to obtain a deterministic SHAP result.</p>
8505
8509
  * @public
8506
8510
  */
8507
- Seed?: number;
8511
+ Seed?: number | undefined;
8508
8512
  /**
8509
8513
  * <p>A parameter that indicates if text features are treated as text and explanations are
8510
8514
  * provided for individual units of text. Required for natural language processing (NLP)
8511
8515
  * explainability only.</p>
8512
8516
  * @public
8513
8517
  */
8514
- TextConfig?: ClarifyTextConfig;
8518
+ TextConfig?: ClarifyTextConfig | undefined;
8515
8519
  }
8516
8520
  /**
8517
8521
  * <p>The configuration parameters for the SageMaker Clarify explainer.</p>
@@ -8525,12 +8529,12 @@ export interface ClarifyExplainerConfig {
8525
8529
  * </a>for additional information.</p>
8526
8530
  * @public
8527
8531
  */
8528
- EnableExplanations?: string;
8532
+ EnableExplanations?: string | undefined;
8529
8533
  /**
8530
8534
  * <p>The inference configuration parameter for the model container.</p>
8531
8535
  * @public
8532
8536
  */
8533
- InferenceConfig?: ClarifyInferenceConfig;
8537
+ InferenceConfig?: ClarifyInferenceConfig | undefined;
8534
8538
  /**
8535
8539
  * <p>The configuration for SHAP analysis.</p>
8536
8540
  * @public
@@ -8699,33 +8703,33 @@ export interface ClusterInstanceGroupDetails {
8699
8703
  * cluster.</p>
8700
8704
  * @public
8701
8705
  */
8702
- CurrentCount?: number;
8706
+ CurrentCount?: number | undefined;
8703
8707
  /**
8704
8708
  * <p>The number of instances you specified to add to the instance group of a SageMaker HyperPod
8705
8709
  * cluster.</p>
8706
8710
  * @public
8707
8711
  */
8708
- TargetCount?: number;
8712
+ TargetCount?: number | undefined;
8709
8713
  /**
8710
8714
  * <p>The name of the instance group of a SageMaker HyperPod cluster.</p>
8711
8715
  * @public
8712
8716
  */
8713
- InstanceGroupName?: string;
8717
+ InstanceGroupName?: string | undefined;
8714
8718
  /**
8715
8719
  * <p>The instance type of the instance group of a SageMaker HyperPod cluster.</p>
8716
8720
  * @public
8717
8721
  */
8718
- InstanceType?: ClusterInstanceType;
8722
+ InstanceType?: ClusterInstanceType | undefined;
8719
8723
  /**
8720
8724
  * <p>Details of LifeCycle configuration for the instance group.</p>
8721
8725
  * @public
8722
8726
  */
8723
- LifeCycleConfig?: ClusterLifeCycleConfig;
8727
+ LifeCycleConfig?: ClusterLifeCycleConfig | undefined;
8724
8728
  /**
8725
8729
  * <p>The execution role for the instance group to assume.</p>
8726
8730
  * @public
8727
8731
  */
8728
- ExecutionRole?: string;
8732
+ ExecutionRole?: string | undefined;
8729
8733
  /**
8730
8734
  * <p>The number you specified to <code>TreadsPerCore</code> in <code>CreateCluster</code> for
8731
8735
  * enabling or disabling multithreading. For instance types that support multithreading, you
@@ -8735,19 +8739,19 @@ export interface ClusterInstanceGroupDetails {
8735
8739
  * Guide</i>.</p>
8736
8740
  * @public
8737
8741
  */
8738
- ThreadsPerCore?: number;
8742
+ ThreadsPerCore?: number | undefined;
8739
8743
  /**
8740
8744
  * <p>The additional storage configurations for the instances in the SageMaker HyperPod cluster instance
8741
8745
  * group.</p>
8742
8746
  * @public
8743
8747
  */
8744
- InstanceStorageConfigs?: ClusterInstanceStorageConfig[];
8748
+ InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
8745
8749
  /**
8746
8750
  * <p>A flag indicating whether deep health checks should be performed when the cluster
8747
8751
  * instance group is created or updated.</p>
8748
8752
  * @public
8749
8753
  */
8750
- OnStartDeepHealthChecks?: DeepHealthCheckType[];
8754
+ OnStartDeepHealthChecks?: DeepHealthCheckType[] | undefined;
8751
8755
  }
8752
8756
  /**
8753
8757
  * <p>The specifications of an instance group that you need to define.</p>
@@ -8790,19 +8794,19 @@ export interface ClusterInstanceGroupSpecification {
8790
8794
  * Guide</i>.</p>
8791
8795
  * @public
8792
8796
  */
8793
- ThreadsPerCore?: number;
8797
+ ThreadsPerCore?: number | undefined;
8794
8798
  /**
8795
8799
  * <p>Specifies the additional storage configurations for the instances in the SageMaker HyperPod cluster
8796
8800
  * instance group.</p>
8797
8801
  * @public
8798
8802
  */
8799
- InstanceStorageConfigs?: ClusterInstanceStorageConfig[];
8803
+ InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
8800
8804
  /**
8801
8805
  * <p>A flag indicating whether deep health checks should be performed when the cluster
8802
8806
  * instance group is created or updated.</p>
8803
8807
  * @public
8804
8808
  */
8805
- OnStartDeepHealthChecks?: DeepHealthCheckType[];
8809
+ OnStartDeepHealthChecks?: DeepHealthCheckType[] | undefined;
8806
8810
  }
8807
8811
  /**
8808
8812
  * <p>Specifies the placement details for the node in the SageMaker HyperPod cluster, including the
@@ -8814,13 +8818,13 @@ export interface ClusterInstancePlacement {
8814
8818
  * <p>The Availability Zone where the node in the SageMaker HyperPod cluster is launched.</p>
8815
8819
  * @public
8816
8820
  */
8817
- AvailabilityZone?: string;
8821
+ AvailabilityZone?: string | undefined;
8818
8822
  /**
8819
8823
  * <p>The unique identifier (ID) of the Availability Zone where the node in the SageMaker HyperPod cluster
8820
8824
  * is launched.</p>
8821
8825
  * @public
8822
8826
  */
8823
- AvailabilityZoneId?: string;
8827
+ AvailabilityZoneId?: string | undefined;
8824
8828
  }
8825
8829
  /**
8826
8830
  * @public
@@ -8852,7 +8856,7 @@ export interface ClusterInstanceStatusDetails {
8852
8856
  * <p>The message from an instance in a SageMaker HyperPod cluster.</p>
8853
8857
  * @public
8854
8858
  */
8855
- Message?: string;
8859
+ Message?: string | undefined;
8856
8860
  }
8857
8861
  /**
8858
8862
  * <p>Details of an instance (also called a <i>node</i> interchangeably) in a
@@ -8864,59 +8868,59 @@ export interface ClusterNodeDetails {
8864
8868
  * <p>The instance group name in which the instance is.</p>
8865
8869
  * @public
8866
8870
  */
8867
- InstanceGroupName?: string;
8871
+ InstanceGroupName?: string | undefined;
8868
8872
  /**
8869
8873
  * <p>The ID of the instance.</p>
8870
8874
  * @public
8871
8875
  */
8872
- InstanceId?: string;
8876
+ InstanceId?: string | undefined;
8873
8877
  /**
8874
8878
  * <p>The status of the instance.</p>
8875
8879
  * @public
8876
8880
  */
8877
- InstanceStatus?: ClusterInstanceStatusDetails;
8881
+ InstanceStatus?: ClusterInstanceStatusDetails | undefined;
8878
8882
  /**
8879
8883
  * <p>The type of the instance.</p>
8880
8884
  * @public
8881
8885
  */
8882
- InstanceType?: ClusterInstanceType;
8886
+ InstanceType?: ClusterInstanceType | undefined;
8883
8887
  /**
8884
8888
  * <p>The time when the instance is launched.</p>
8885
8889
  * @public
8886
8890
  */
8887
- LaunchTime?: Date;
8891
+ LaunchTime?: Date | undefined;
8888
8892
  /**
8889
8893
  * <p>The LifeCycle configuration applied to the instance.</p>
8890
8894
  * @public
8891
8895
  */
8892
- LifeCycleConfig?: ClusterLifeCycleConfig;
8896
+ LifeCycleConfig?: ClusterLifeCycleConfig | undefined;
8893
8897
  /**
8894
8898
  * <p>The number of threads per CPU core you specified under
8895
8899
  * <code>CreateCluster</code>.</p>
8896
8900
  * @public
8897
8901
  */
8898
- ThreadsPerCore?: number;
8902
+ ThreadsPerCore?: number | undefined;
8899
8903
  /**
8900
8904
  * <p>The configurations of additional storage specified to the instance group where the
8901
8905
  * instance (node) is launched.</p>
8902
8906
  * @public
8903
8907
  */
8904
- InstanceStorageConfigs?: ClusterInstanceStorageConfig[];
8908
+ InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
8905
8909
  /**
8906
8910
  * <p>The private primary IP address of the SageMaker HyperPod cluster node.</p>
8907
8911
  * @public
8908
8912
  */
8909
- PrivatePrimaryIp?: string;
8913
+ PrivatePrimaryIp?: string | undefined;
8910
8914
  /**
8911
8915
  * <p>The private DNS hostname of the SageMaker HyperPod cluster node.</p>
8912
8916
  * @public
8913
8917
  */
8914
- PrivateDnsHostname?: string;
8918
+ PrivateDnsHostname?: string | undefined;
8915
8919
  /**
8916
8920
  * <p>The placement details of the SageMaker HyperPod cluster node.</p>
8917
8921
  * @public
8918
8922
  */
8919
- Placement?: ClusterInstancePlacement;
8923
+ Placement?: ClusterInstancePlacement | undefined;
8920
8924
  }
8921
8925
  /**
8922
8926
  * @public
@@ -9056,7 +9060,7 @@ export interface CustomImage {
9056
9060
  * <p>The version number of the CustomImage.</p>
9057
9061
  * @public
9058
9062
  */
9059
- ImageVersionNumber?: number;
9063
+ ImageVersionNumber?: number | undefined;
9060
9064
  /**
9061
9065
  * <p>The name of the AppImageConfig.</p>
9062
9066
  * @public
@@ -9075,30 +9079,30 @@ export interface CodeEditorAppSettings {
9075
9079
  * the version runs on.</p>
9076
9080
  * @public
9077
9081
  */
9078
- DefaultResourceSpec?: ResourceSpec;
9082
+ DefaultResourceSpec?: ResourceSpec | undefined;
9079
9083
  /**
9080
9084
  * <p>A list of custom SageMaker images that are configured to run as a Code Editor app.</p>
9081
9085
  * @public
9082
9086
  */
9083
- CustomImages?: CustomImage[];
9087
+ CustomImages?: CustomImage[] | undefined;
9084
9088
  /**
9085
9089
  * <p>The Amazon Resource Name (ARN) of the Code Editor application
9086
9090
  * lifecycle configuration.</p>
9087
9091
  * @public
9088
9092
  */
9089
- LifecycleConfigArns?: string[];
9093
+ LifecycleConfigArns?: string[] | undefined;
9090
9094
  /**
9091
9095
  * <p>Settings that are used to configure and manage the lifecycle of CodeEditor
9092
9096
  * applications.</p>
9093
9097
  * @public
9094
9098
  */
9095
- AppLifecycleManagement?: AppLifecycleManagement;
9099
+ AppLifecycleManagement?: AppLifecycleManagement | undefined;
9096
9100
  /**
9097
9101
  * <p>The lifecycle configuration that runs before the default lifecycle configuration. It can
9098
9102
  * override changes made in the default lifecycle configuration.</p>
9099
9103
  * @public
9100
9104
  */
9101
- BuiltInLifecycleConfigArn?: string;
9105
+ BuiltInLifecycleConfigArn?: string | undefined;
9102
9106
  }
9103
9107
  /**
9104
9108
  * <p>A Git repository that SageMaker automatically displays to users for cloning in the
@@ -9152,7 +9156,7 @@ export interface GitConfig {
9152
9156
  * <p>The default branch for the Git repository.</p>
9153
9157
  * @public
9154
9158
  */
9155
- Branch?: string;
9159
+ Branch?: string | undefined;
9156
9160
  /**
9157
9161
  * <p>The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that
9158
9162
  * contains the credentials used to access the git repository. The secret must have a
@@ -9163,7 +9167,7 @@ export interface GitConfig {
9163
9167
  * </p>
9164
9168
  * @public
9165
9169
  */
9166
- SecretArn?: string;
9170
+ SecretArn?: string | undefined;
9167
9171
  }
9168
9172
  /**
9169
9173
  * <p>Specifies summary information about a Git repository.</p>
@@ -9196,7 +9200,7 @@ export interface CodeRepositorySummary {
9196
9200
  * credentials used to access the repository.</p>
9197
9201
  * @public
9198
9202
  */
9199
- GitConfig?: GitConfig;
9203
+ GitConfig?: GitConfig | undefined;
9200
9204
  }
9201
9205
  /**
9202
9206
  * <p>Use this parameter to configure your Amazon Cognito workforce.
@@ -9301,7 +9305,7 @@ export interface CollectionConfiguration {
9301
9305
  * <p>The name of the tensor collection. The name must be unique relative to other rule configuration names.</p>
9302
9306
  * @public
9303
9307
  */
9304
- CollectionName?: string;
9308
+ CollectionName?: string | undefined;
9305
9309
  /**
9306
9310
  * <p>Parameter values for the tensor collection. The allowed parameters are
9307
9311
  * <code>"name"</code>, <code>"include_regex"</code>, <code>"reduction_config"</code>,
@@ -9309,7 +9313,7 @@ export interface CollectionConfiguration {
9309
9313
  * <code>"save_histogram"</code>.</p>
9310
9314
  * @public
9311
9315
  */
9312
- CollectionParameters?: Record<string, string>;
9316
+ CollectionParameters?: Record<string, string> | undefined;
9313
9317
  }
9314
9318
  /**
9315
9319
  * @public
@@ -9452,41 +9456,41 @@ export interface CompilationJobSummary {
9452
9456
  * <p>The time when the model compilation job started.</p>
9453
9457
  * @public
9454
9458
  */
9455
- CompilationStartTime?: Date;
9459
+ CompilationStartTime?: Date | undefined;
9456
9460
  /**
9457
9461
  * <p>The time when the model compilation job completed.</p>
9458
9462
  * @public
9459
9463
  */
9460
- CompilationEndTime?: Date;
9464
+ CompilationEndTime?: Date | undefined;
9461
9465
  /**
9462
9466
  * <p>The type of device that the model will run on after the compilation job has
9463
9467
  * completed.</p>
9464
9468
  * @public
9465
9469
  */
9466
- CompilationTargetDevice?: TargetDevice;
9470
+ CompilationTargetDevice?: TargetDevice | undefined;
9467
9471
  /**
9468
9472
  * <p>The type of OS that the model will run on after the compilation job has
9469
9473
  * completed.</p>
9470
9474
  * @public
9471
9475
  */
9472
- CompilationTargetPlatformOs?: TargetPlatformOs;
9476
+ CompilationTargetPlatformOs?: TargetPlatformOs | undefined;
9473
9477
  /**
9474
9478
  * <p>The type of architecture that the model will run on after the compilation job has
9475
9479
  * completed.</p>
9476
9480
  * @public
9477
9481
  */
9478
- CompilationTargetPlatformArch?: TargetPlatformArch;
9482
+ CompilationTargetPlatformArch?: TargetPlatformArch | undefined;
9479
9483
  /**
9480
9484
  * <p>The type of accelerator that the model will run on after the compilation job has
9481
9485
  * completed.</p>
9482
9486
  * @public
9483
9487
  */
9484
- CompilationTargetPlatformAccelerator?: TargetPlatformAccelerator;
9488
+ CompilationTargetPlatformAccelerator?: TargetPlatformAccelerator | undefined;
9485
9489
  /**
9486
9490
  * <p>The time when the model compilation job was last modified.</p>
9487
9491
  * @public
9488
9492
  */
9489
- LastModifiedTime?: Date;
9493
+ LastModifiedTime?: Date | undefined;
9490
9494
  /**
9491
9495
  * <p>The status of the model compilation job.</p>
9492
9496
  * @public
@@ -9526,7 +9530,7 @@ export interface ConditionStepMetadata {
9526
9530
  * <p>The outcome of the Condition step evaluation.</p>
9527
9531
  * @public
9528
9532
  */
9529
- Outcome?: ConditionOutcome;
9533
+ Outcome?: ConditionOutcome | undefined;
9530
9534
  }
9531
9535
  /**
9532
9536
  * <p>There was a conflict when you attempted to modify a SageMaker entity such as an
@@ -9536,7 +9540,7 @@ export interface ConditionStepMetadata {
9536
9540
  export declare class ConflictException extends __BaseException {
9537
9541
  readonly name: "ConflictException";
9538
9542
  readonly $fault: "client";
9539
- Message?: string;
9543
+ Message?: string | undefined;
9540
9544
  /**
9541
9545
  * @internal
9542
9546
  */
@@ -9605,7 +9609,7 @@ export interface ImageConfig {
9605
9609
  * authentication.</p>
9606
9610
  * @public
9607
9611
  */
9608
- RepositoryAuthConfig?: RepositoryAuthConfig;
9612
+ RepositoryAuthConfig?: RepositoryAuthConfig | undefined;
9609
9613
  }
9610
9614
  /**
9611
9615
  * @public
@@ -9645,7 +9649,7 @@ export interface MultiModelConfig {
9645
9649
  * this parameter to <code>Disabled</code>.</p>
9646
9650
  * @public
9647
9651
  */
9648
- ModelCacheSetting?: ModelCacheSetting;
9652
+ ModelCacheSetting?: ModelCacheSetting | undefined;
9649
9653
  }
9650
9654
  /**
9651
9655
  * <p>Describes the container, as part of model definition.</p>
@@ -9668,7 +9672,7 @@ export interface ContainerDefinition {
9668
9672
  * in that pipeline.</p>
9669
9673
  * @public
9670
9674
  */
9671
- ContainerHostname?: string;
9675
+ ContainerHostname?: string | undefined;
9672
9676
  /**
9673
9677
  * <p>The path where inference code is stored. This can be either in Amazon EC2 Container Registry or in a
9674
9678
  * Docker registry that is accessible from the same VPC that you configure for your
@@ -9684,7 +9688,7 @@ export interface ContainerDefinition {
9684
9688
  * </note>
9685
9689
  * @public
9686
9690
  */
9687
- Image?: string;
9691
+ Image?: string | undefined;
9688
9692
  /**
9689
9693
  * <p>Specifies whether the model container is in Amazon ECR or a private Docker registry
9690
9694
  * accessible from your Amazon Virtual Private Cloud (VPC). For information about storing containers in a
@@ -9697,12 +9701,12 @@ export interface ContainerDefinition {
9697
9701
  * </note>
9698
9702
  * @public
9699
9703
  */
9700
- ImageConfig?: ImageConfig;
9704
+ ImageConfig?: ImageConfig | undefined;
9701
9705
  /**
9702
9706
  * <p>Whether the container hosts a single model or multiple models.</p>
9703
9707
  * @public
9704
9708
  */
9705
- Mode?: ContainerMode;
9709
+ Mode?: ContainerMode | undefined;
9706
9710
  /**
9707
9711
  * <p>The S3 path where the model artifacts, which result from model training, are stored.
9708
9712
  * This path must point to a single gzip compressed tar archive (.tar.gz suffix). The S3
@@ -9726,7 +9730,7 @@ export interface ContainerDefinition {
9726
9730
  * </important>
9727
9731
  * @public
9728
9732
  */
9729
- ModelDataUrl?: string;
9733
+ ModelDataUrl?: string | undefined;
9730
9734
  /**
9731
9735
  * <p>Specifies the location of ML model data to deploy.</p>
9732
9736
  * <note>
@@ -9736,12 +9740,12 @@ export interface ContainerDefinition {
9736
9740
  * </note>
9737
9741
  * @public
9738
9742
  */
9739
- ModelDataSource?: ModelDataSource;
9743
+ ModelDataSource?: ModelDataSource | undefined;
9740
9744
  /**
9741
9745
  * <p>Data sources that are available to your model in addition to the one that you specify for <code>ModelDataSource</code> when you use the <code>CreateModel</code> action.</p>
9742
9746
  * @public
9743
9747
  */
9744
- AdditionalModelDataSources?: AdditionalModelDataSource[];
9748
+ AdditionalModelDataSources?: AdditionalModelDataSource[] | undefined;
9745
9749
  /**
9746
9750
  * <p>The environment variables to set in the Docker container. Don't include any
9747
9751
  * sensitive data in your environment variables.</p>
@@ -9751,23 +9755,23 @@ export interface ContainerDefinition {
9751
9755
  * length of all of their maps, combined, is also 32 KB.</p>
9752
9756
  * @public
9753
9757
  */
9754
- Environment?: Record<string, string>;
9758
+ Environment?: Record<string, string> | undefined;
9755
9759
  /**
9756
9760
  * <p>The name or Amazon Resource Name (ARN) of the model package to use to create the
9757
9761
  * model.</p>
9758
9762
  * @public
9759
9763
  */
9760
- ModelPackageName?: string;
9764
+ ModelPackageName?: string | undefined;
9761
9765
  /**
9762
9766
  * <p>The inference specification name in the model package version.</p>
9763
9767
  * @public
9764
9768
  */
9765
- InferenceSpecificationName?: string;
9769
+ InferenceSpecificationName?: string | undefined;
9766
9770
  /**
9767
9771
  * <p>Specifies additional configuration for multi-model endpoints.</p>
9768
9772
  * @public
9769
9773
  */
9770
- MultiModelConfig?: MultiModelConfig;
9774
+ MultiModelConfig?: MultiModelConfig | undefined;
9771
9775
  }
9772
9776
  /**
9773
9777
  * @public
@@ -9795,12 +9799,12 @@ export interface ContextSource {
9795
9799
  * <p>The type of the source.</p>
9796
9800
  * @public
9797
9801
  */
9798
- SourceType?: string;
9802
+ SourceType?: string | undefined;
9799
9803
  /**
9800
9804
  * <p>The ID of the source.</p>
9801
9805
  * @public
9802
9806
  */
9803
- SourceId?: string;
9807
+ SourceId?: string | undefined;
9804
9808
  }
9805
9809
  /**
9806
9810
  * <p>Lists a summary of the properties of a context. A context provides a logical grouping
@@ -9812,32 +9816,32 @@ export interface ContextSummary {
9812
9816
  * <p>The Amazon Resource Name (ARN) of the context.</p>
9813
9817
  * @public
9814
9818
  */
9815
- ContextArn?: string;
9819
+ ContextArn?: string | undefined;
9816
9820
  /**
9817
9821
  * <p>The name of the context.</p>
9818
9822
  * @public
9819
9823
  */
9820
- ContextName?: string;
9824
+ ContextName?: string | undefined;
9821
9825
  /**
9822
9826
  * <p>The source of the context.</p>
9823
9827
  * @public
9824
9828
  */
9825
- Source?: ContextSource;
9829
+ Source?: ContextSource | undefined;
9826
9830
  /**
9827
9831
  * <p>The type of the context.</p>
9828
9832
  * @public
9829
9833
  */
9830
- ContextType?: string;
9834
+ ContextType?: string | undefined;
9831
9835
  /**
9832
9836
  * <p>When the context was created.</p>
9833
9837
  * @public
9834
9838
  */
9835
- CreationTime?: Date;
9839
+ CreationTime?: Date | undefined;
9836
9840
  /**
9837
9841
  * <p>When the context was last modified.</p>
9838
9842
  * @public
9839
9843
  */
9840
- LastModifiedTime?: Date;
9844
+ LastModifiedTime?: Date | undefined;
9841
9845
  }
9842
9846
  /**
9843
9847
  * @public
@@ -9908,7 +9912,7 @@ export interface ContinuousParameterRange {
9908
9912
  * </dl>
9909
9913
  * @public
9910
9914
  */
9911
- ScalingType?: HyperParameterScalingType;
9915
+ ScalingType?: HyperParameterScalingType | undefined;
9912
9916
  }
9913
9917
  /**
9914
9918
  * <p>Defines the possible values for a continuous hyperparameter.</p>
@@ -9937,7 +9941,7 @@ export interface ConvergenceDetected {
9937
9941
  * <p>A flag to stop a tuning job once AMT has detected that the job has converged.</p>
9938
9942
  * @public
9939
9943
  */
9940
- CompleteOnConvergence?: CompleteOnConvergence;
9944
+ CompleteOnConvergence?: CompleteOnConvergence | undefined;
9941
9945
  }
9942
9946
  /**
9943
9947
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
@@ -9948,22 +9952,22 @@ export interface MetadataProperties {
9948
9952
  * <p>The commit ID.</p>
9949
9953
  * @public
9950
9954
  */
9951
- CommitId?: string;
9955
+ CommitId?: string | undefined;
9952
9956
  /**
9953
9957
  * <p>The repository.</p>
9954
9958
  * @public
9955
9959
  */
9956
- Repository?: string;
9960
+ Repository?: string | undefined;
9957
9961
  /**
9958
9962
  * <p>The entity this entity was generated by.</p>
9959
9963
  * @public
9960
9964
  */
9961
- GeneratedBy?: string;
9965
+ GeneratedBy?: string | undefined;
9962
9966
  /**
9963
9967
  * <p>The project ID.</p>
9964
9968
  * @public
9965
9969
  */
9966
- ProjectId?: string;
9970
+ ProjectId?: string | undefined;
9967
9971
  }
9968
9972
  /**
9969
9973
  * @public
@@ -9988,27 +9992,27 @@ export interface CreateActionRequest {
9988
9992
  * <p>The description of the action.</p>
9989
9993
  * @public
9990
9994
  */
9991
- Description?: string;
9995
+ Description?: string | undefined;
9992
9996
  /**
9993
9997
  * <p>The status of the action.</p>
9994
9998
  * @public
9995
9999
  */
9996
- Status?: ActionStatus;
10000
+ Status?: ActionStatus | undefined;
9997
10001
  /**
9998
10002
  * <p>A list of properties to add to the action.</p>
9999
10003
  * @public
10000
10004
  */
10001
- Properties?: Record<string, string>;
10005
+ Properties?: Record<string, string> | undefined;
10002
10006
  /**
10003
10007
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
10004
10008
  * @public
10005
10009
  */
10006
- MetadataProperties?: MetadataProperties;
10010
+ MetadataProperties?: MetadataProperties | undefined;
10007
10011
  /**
10008
10012
  * <p>A list of tags to apply to the action.</p>
10009
10013
  * @public
10010
10014
  */
10011
- Tags?: Tag[];
10015
+ Tags?: Tag[] | undefined;
10012
10016
  }
10013
10017
  /**
10014
10018
  * @public
@@ -10018,7 +10022,7 @@ export interface CreateActionResponse {
10018
10022
  * <p>The Amazon Resource Name (ARN) of the action.</p>
10019
10023
  * @public
10020
10024
  */
10021
- ActionArn?: string;
10025
+ ActionArn?: string | undefined;
10022
10026
  }
10023
10027
  /**
10024
10028
  * <p>Defines the possible values for an integer hyperparameter.</p>
@@ -10047,19 +10051,19 @@ export interface ParameterRange {
10047
10051
  * values for an integer hyperparameter.</p>
10048
10052
  * @public
10049
10053
  */
10050
- IntegerParameterRangeSpecification?: IntegerParameterRangeSpecification;
10054
+ IntegerParameterRangeSpecification?: IntegerParameterRangeSpecification | undefined;
10051
10055
  /**
10052
10056
  * <p>A <code>ContinuousParameterRangeSpecification</code> object that defines the possible
10053
10057
  * values for a continuous hyperparameter.</p>
10054
10058
  * @public
10055
10059
  */
10056
- ContinuousParameterRangeSpecification?: ContinuousParameterRangeSpecification;
10060
+ ContinuousParameterRangeSpecification?: ContinuousParameterRangeSpecification | undefined;
10057
10061
  /**
10058
10062
  * <p>A <code>CategoricalParameterRangeSpecification</code> object that defines the possible
10059
10063
  * values for a categorical hyperparameter.</p>
10060
10064
  * @public
10061
10065
  */
10062
- CategoricalParameterRangeSpecification?: CategoricalParameterRangeSpecification;
10066
+ CategoricalParameterRangeSpecification?: CategoricalParameterRangeSpecification | undefined;
10063
10067
  }
10064
10068
  /**
10065
10069
  * @public
@@ -10089,7 +10093,7 @@ export interface HyperParameterSpecification {
10089
10093
  * <p>A brief description of the hyperparameter.</p>
10090
10094
  * @public
10091
10095
  */
10092
- Description?: string;
10096
+ Description?: string | undefined;
10093
10097
  /**
10094
10098
  * <p>The type of this hyperparameter. The valid types are <code>Integer</code>,
10095
10099
  * <code>Continuous</code>, <code>Categorical</code>, and <code>FreeText</code>.</p>
@@ -10100,24 +10104,24 @@ export interface HyperParameterSpecification {
10100
10104
  * <p>The allowed range for this hyperparameter.</p>
10101
10105
  * @public
10102
10106
  */
10103
- Range?: ParameterRange;
10107
+ Range?: ParameterRange | undefined;
10104
10108
  /**
10105
10109
  * <p>Indicates whether this hyperparameter is tunable in a hyperparameter tuning
10106
10110
  * job.</p>
10107
10111
  * @public
10108
10112
  */
10109
- IsTunable?: boolean;
10113
+ IsTunable?: boolean | undefined;
10110
10114
  /**
10111
10115
  * <p>Indicates whether this hyperparameter is required.</p>
10112
10116
  * @public
10113
10117
  */
10114
- IsRequired?: boolean;
10118
+ IsRequired?: boolean | undefined;
10115
10119
  /**
10116
10120
  * <p>The default value for this hyperparameter. If a default value is specified, a
10117
10121
  * hyperparameter cannot be required.</p>
10118
10122
  * @public
10119
10123
  */
10120
- DefaultValue?: string;
10124
+ DefaultValue?: string | undefined;
10121
10125
  }
10122
10126
  /**
10123
10127
  * @public
@@ -10168,14 +10172,14 @@ export interface TrainingSpecification {
10168
10172
  * training.</p>
10169
10173
  * @public
10170
10174
  */
10171
- TrainingImageDigest?: string;
10175
+ TrainingImageDigest?: string | undefined;
10172
10176
  /**
10173
10177
  * <p>A list of the <code>HyperParameterSpecification</code> objects, that define the
10174
10178
  * supported hyperparameters. This is required if the algorithm supports automatic model
10175
10179
  * tuning.></p>
10176
10180
  * @public
10177
10181
  */
10178
- SupportedHyperParameters?: HyperParameterSpecification[];
10182
+ SupportedHyperParameters?: HyperParameterSpecification[] | undefined;
10179
10183
  /**
10180
10184
  * <p>A list of the instance types that this algorithm can use for training.</p>
10181
10185
  * @public
@@ -10186,13 +10190,13 @@ export interface TrainingSpecification {
10186
10190
  * can't request more than one instance during training.</p>
10187
10191
  * @public
10188
10192
  */
10189
- SupportsDistributedTraining?: boolean;
10193
+ SupportsDistributedTraining?: boolean | undefined;
10190
10194
  /**
10191
10195
  * <p>A list of <code>MetricDefinition</code> objects, which are used for parsing metrics
10192
10196
  * generated by the algorithm.</p>
10193
10197
  * @public
10194
10198
  */
10195
- MetricDefinitions?: MetricDefinition[];
10199
+ MetricDefinitions?: MetricDefinition[] | undefined;
10196
10200
  /**
10197
10201
  * <p>A list of <code>ChannelSpecification</code> objects, which specify the input sources
10198
10202
  * to be used by the algorithm.</p>
@@ -10204,10 +10208,10 @@ export interface TrainingSpecification {
10204
10208
  * metric in a hyperparameter tuning job.</p>
10205
10209
  * @public
10206
10210
  */
10207
- SupportedTuningJobObjectiveMetrics?: HyperParameterTuningJobObjective[];
10211
+ SupportedTuningJobObjectiveMetrics?: HyperParameterTuningJobObjective[] | undefined;
10208
10212
  /**
10209
10213
  * <p>The additional data source used during the training job.</p>
10210
10214
  * @public
10211
10215
  */
10212
- AdditionalS3DataSource?: AdditionalS3DataSource;
10216
+ AdditionalS3DataSource?: AdditionalS3DataSource | undefined;
10213
10217
  }