@aws-sdk/client-sagemaker 3.686.0 → 3.691.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.
@@ -14,7 +14,7 @@ export interface CreateAlgorithmInput {
14
14
  * <p>A description of the algorithm.</p>
15
15
  * @public
16
16
  */
17
- AlgorithmDescription?: string;
17
+ AlgorithmDescription?: string | undefined;
18
18
  /**
19
19
  * <p>Specifies details about training jobs run by this algorithm, including the
20
20
  * following:</p>
@@ -67,27 +67,27 @@ export interface CreateAlgorithmInput {
67
67
  * </ul>
68
68
  * @public
69
69
  */
70
- InferenceSpecification?: InferenceSpecification;
70
+ InferenceSpecification?: InferenceSpecification | undefined;
71
71
  /**
72
72
  * <p>Specifies configurations for one or more training jobs and that SageMaker runs to test the
73
73
  * algorithm's training code and, optionally, one or more batch transform jobs that SageMaker
74
74
  * runs to test the algorithm's inference code.</p>
75
75
  * @public
76
76
  */
77
- ValidationSpecification?: AlgorithmValidationSpecification;
77
+ ValidationSpecification?: AlgorithmValidationSpecification | undefined;
78
78
  /**
79
79
  * <p>Whether to certify the algorithm so that it can be listed in Amazon Web Services
80
80
  * Marketplace.</p>
81
81
  * @public
82
82
  */
83
- CertifyForMarketplace?: boolean;
83
+ CertifyForMarketplace?: boolean | undefined;
84
84
  /**
85
85
  * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
86
86
  * resources in different ways, for example, by purpose, owner, or environment. For more
87
87
  * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
88
88
  * @public
89
89
  */
90
- Tags?: Tag[];
90
+ Tags?: Tag[] | undefined;
91
91
  }
92
92
  /**
93
93
  * @public
@@ -113,13 +113,13 @@ export interface CreateAppRequest {
113
113
  * set.</p>
114
114
  * @public
115
115
  */
116
- UserProfileName?: string;
116
+ UserProfileName?: string | undefined;
117
117
  /**
118
118
  * <p>The name of the space. If this value is not set, then <code>UserProfileName</code> must be
119
119
  * set.</p>
120
120
  * @public
121
121
  */
122
- SpaceName?: string;
122
+ SpaceName?: string | undefined;
123
123
  /**
124
124
  * <p>The type of app.</p>
125
125
  * @public
@@ -135,7 +135,7 @@ export interface CreateAppRequest {
135
135
  * resource.</p>
136
136
  * @public
137
137
  */
138
- Tags?: Tag[];
138
+ Tags?: Tag[] | undefined;
139
139
  /**
140
140
  * <p>The instance type and the Amazon Resource Name (ARN) of the SageMaker image
141
141
  * created on the instance.</p>
@@ -149,7 +149,7 @@ export interface CreateAppRequest {
149
149
  * </note>
150
150
  * @public
151
151
  */
152
- ResourceSpec?: ResourceSpec;
152
+ ResourceSpec?: ResourceSpec | undefined;
153
153
  }
154
154
  /**
155
155
  * @public
@@ -159,7 +159,7 @@ export interface CreateAppResponse {
159
159
  * <p>The Amazon Resource Name (ARN) of the app.</p>
160
160
  * @public
161
161
  */
162
- AppArn?: string;
162
+ AppArn?: string | undefined;
163
163
  }
164
164
  /**
165
165
  * <p>Resource being accessed is in use.</p>
@@ -168,7 +168,7 @@ export interface CreateAppResponse {
168
168
  export declare class ResourceInUse extends __BaseException {
169
169
  readonly name: "ResourceInUse";
170
170
  readonly $fault: "client";
171
- Message?: string;
171
+ Message?: string | undefined;
172
172
  /**
173
173
  * @internal
174
174
  */
@@ -187,26 +187,26 @@ export interface CreateAppImageConfigRequest {
187
187
  * <p>A list of tags to apply to the AppImageConfig.</p>
188
188
  * @public
189
189
  */
190
- Tags?: Tag[];
190
+ Tags?: Tag[] | undefined;
191
191
  /**
192
192
  * <p>The KernelGatewayImageConfig. You can only specify one image kernel in the
193
193
  * AppImageConfig API. This kernel will be shown to users before the
194
194
  * image starts. Once the image runs, all kernels are visible in JupyterLab.</p>
195
195
  * @public
196
196
  */
197
- KernelGatewayImageConfig?: KernelGatewayImageConfig;
197
+ KernelGatewayImageConfig?: KernelGatewayImageConfig | undefined;
198
198
  /**
199
199
  * <p>The <code>JupyterLabAppImageConfig</code>. You can only specify one image kernel in the <code>AppImageConfig</code> API. This kernel is shown to users before the image starts. After the image runs, all kernels are visible in JupyterLab.</p>
200
200
  * @public
201
201
  */
202
- JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
202
+ JupyterLabAppImageConfig?: JupyterLabAppImageConfig | undefined;
203
203
  /**
204
204
  * <p>The <code>CodeEditorAppImageConfig</code>. You can only specify one image kernel
205
205
  * in the AppImageConfig API. This kernel is shown to users before the image starts.
206
206
  * After the image runs, all kernels are visible in Code Editor.</p>
207
207
  * @public
208
208
  */
209
- CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
209
+ CodeEditorAppImageConfig?: CodeEditorAppImageConfig | undefined;
210
210
  }
211
211
  /**
212
212
  * @public
@@ -216,7 +216,7 @@ export interface CreateAppImageConfigResponse {
216
216
  * <p>The ARN of the AppImageConfig.</p>
217
217
  * @public
218
218
  */
219
- AppImageConfigArn?: string;
219
+ AppImageConfigArn?: string | undefined;
220
220
  }
221
221
  /**
222
222
  * @public
@@ -226,7 +226,7 @@ export interface CreateArtifactRequest {
226
226
  * <p>The name of the artifact. Must be unique to your account in an Amazon Web Services Region.</p>
227
227
  * @public
228
228
  */
229
- ArtifactName?: string;
229
+ ArtifactName?: string | undefined;
230
230
  /**
231
231
  * <p>The ID, ID type, and URI of the source.</p>
232
232
  * @public
@@ -241,17 +241,17 @@ export interface CreateArtifactRequest {
241
241
  * <p>A list of properties to add to the artifact.</p>
242
242
  * @public
243
243
  */
244
- Properties?: Record<string, string>;
244
+ Properties?: Record<string, string> | undefined;
245
245
  /**
246
246
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
247
247
  * @public
248
248
  */
249
- MetadataProperties?: MetadataProperties;
249
+ MetadataProperties?: MetadataProperties | undefined;
250
250
  /**
251
251
  * <p>A list of tags to apply to the artifact.</p>
252
252
  * @public
253
253
  */
254
- Tags?: Tag[];
254
+ Tags?: Tag[] | undefined;
255
255
  }
256
256
  /**
257
257
  * @public
@@ -261,7 +261,7 @@ export interface CreateArtifactResponse {
261
261
  * <p>The Amazon Resource Name (ARN) of the artifact.</p>
262
262
  * @public
263
263
  */
264
- ArtifactArn?: string;
264
+ ArtifactArn?: string | undefined;
265
265
  }
266
266
  /**
267
267
  * <p>Specifies how to generate the endpoint name for an automatic one-click Autopilot model
@@ -279,7 +279,7 @@ export interface ModelDeployConfig {
279
279
  * </note>
280
280
  * @public
281
281
  */
282
- AutoGenerateEndpointName?: boolean;
282
+ AutoGenerateEndpointName?: boolean | undefined;
283
283
  /**
284
284
  * <p>Specifies the endpoint name to use for a one-click Autopilot model deployment if the
285
285
  * endpoint name is not generated automatically.</p>
@@ -290,7 +290,7 @@ export interface ModelDeployConfig {
290
290
  * </note>
291
291
  * @public
292
292
  */
293
- EndpointName?: string;
293
+ EndpointName?: string | undefined;
294
294
  }
295
295
  /**
296
296
  * @public
@@ -322,18 +322,18 @@ export interface CreateAutoMLJobRequest {
322
322
  * SageMaker Autopilot problem types</a>.</p>
323
323
  * @public
324
324
  */
325
- ProblemType?: ProblemType;
325
+ ProblemType?: ProblemType | undefined;
326
326
  /**
327
327
  * <p>Specifies a metric to minimize or maximize as the objective of a job. If not specified,
328
328
  * the default objective metric depends on the problem type. See <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLJobObjective.html">AutoMLJobObjective</a> for the default values.</p>
329
329
  * @public
330
330
  */
331
- AutoMLJobObjective?: AutoMLJobObjective;
331
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
332
332
  /**
333
333
  * <p>A collection of settings used to configure an AutoML job.</p>
334
334
  * @public
335
335
  */
336
- AutoMLJobConfig?: AutoMLJobConfig;
336
+ AutoMLJobConfig?: AutoMLJobConfig | undefined;
337
337
  /**
338
338
  * <p>The ARN of the role that is used to access the data.</p>
339
339
  * @public
@@ -344,7 +344,7 @@ export interface CreateAutoMLJobRequest {
344
344
  * of data preprocessors, algorithms, and algorithm parameter settings.</p>
345
345
  * @public
346
346
  */
347
- GenerateCandidateDefinitionsOnly?: boolean;
347
+ GenerateCandidateDefinitionsOnly?: boolean | undefined;
348
348
  /**
349
349
  * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
350
350
  * resources in different ways, for example, by purpose, owner, or environment. For more
@@ -352,13 +352,13 @@ export interface CreateAutoMLJobRequest {
352
352
  * resource.</p>
353
353
  * @public
354
354
  */
355
- Tags?: Tag[];
355
+ Tags?: Tag[] | undefined;
356
356
  /**
357
357
  * <p>Specifies how to generate the endpoint name for an automatic one-click Autopilot model
358
358
  * deployment.</p>
359
359
  * @public
360
360
  */
361
- ModelDeployConfig?: ModelDeployConfig;
361
+ ModelDeployConfig?: ModelDeployConfig | undefined;
362
362
  }
363
363
  /**
364
364
  * @public
@@ -429,12 +429,12 @@ export interface CreateAutoMLJobV2Request {
429
429
  * resource.</p>
430
430
  * @public
431
431
  */
432
- Tags?: Tag[];
432
+ Tags?: Tag[] | undefined;
433
433
  /**
434
434
  * <p>The security configuration for traffic encryption or Amazon VPC settings.</p>
435
435
  * @public
436
436
  */
437
- SecurityConfig?: AutoMLSecurityConfig;
437
+ SecurityConfig?: AutoMLSecurityConfig | undefined;
438
438
  /**
439
439
  * <p>Specifies a metric to minimize or maximize as the objective of a job. If not specified,
440
440
  * the default objective metric depends on the problem type. For the list of default values
@@ -462,13 +462,13 @@ export interface CreateAutoMLJobV2Request {
462
462
  * </note>
463
463
  * @public
464
464
  */
465
- AutoMLJobObjective?: AutoMLJobObjective;
465
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
466
466
  /**
467
467
  * <p>Specifies how to generate the endpoint name for an automatic one-click Autopilot model
468
468
  * deployment.</p>
469
469
  * @public
470
470
  */
471
- ModelDeployConfig?: ModelDeployConfig;
471
+ ModelDeployConfig?: ModelDeployConfig | undefined;
472
472
  /**
473
473
  * <p>This structure specifies how to split the data into train and validation
474
474
  * datasets.</p>
@@ -481,12 +481,12 @@ export interface CreateAutoMLJobV2Request {
481
481
  * </note>
482
482
  * @public
483
483
  */
484
- DataSplitConfig?: AutoMLDataSplitConfig;
484
+ DataSplitConfig?: AutoMLDataSplitConfig | undefined;
485
485
  /**
486
486
  * <p>Specifies the compute configuration for the AutoML job V2.</p>
487
487
  * @public
488
488
  */
489
- AutoMLComputeConfig?: AutoMLComputeConfig;
489
+ AutoMLComputeConfig?: AutoMLComputeConfig | undefined;
490
490
  }
491
491
  /**
492
492
  * @public
@@ -519,7 +519,7 @@ export interface CreateClusterRequest {
519
519
  * Resources in your Amazon VPC</a>. </p>
520
520
  * @public
521
521
  */
522
- VpcConfig?: VpcConfig;
522
+ VpcConfig?: VpcConfig | undefined;
523
523
  /**
524
524
  * <p>Custom tags for managing the SageMaker HyperPod cluster as an Amazon Web Services resource. You can
525
525
  * add tags to your cluster in the same way you add them in other Amazon Web Services services
@@ -528,14 +528,14 @@ export interface CreateClusterRequest {
528
528
  * Amazon Web Services Resources User Guide</a>.</p>
529
529
  * @public
530
530
  */
531
- Tags?: Tag[];
531
+ Tags?: Tag[] | undefined;
532
532
  /**
533
533
  * <p>The type of orchestrator to use for the SageMaker HyperPod cluster. Currently, the only supported
534
534
  * value is <code>"eks"</code>, which is to use an Amazon Elastic Kubernetes Service (EKS)
535
535
  * cluster as the orchestrator.</p>
536
536
  * @public
537
537
  */
538
- Orchestrator?: ClusterOrchestrator;
538
+ Orchestrator?: ClusterOrchestrator | undefined;
539
539
  /**
540
540
  * <p>The node recovery mode for the SageMaker HyperPod cluster. When set to <code>Automatic</code>,
541
541
  * SageMaker HyperPod will automatically reboot or replace faulty nodes when issues are detected. When set
@@ -543,7 +543,7 @@ export interface CreateClusterRequest {
543
543
  * cluster instances.</p>
544
544
  * @public
545
545
  */
546
- NodeRecovery?: ClusterNodeRecovery;
546
+ NodeRecovery?: ClusterNodeRecovery | undefined;
547
547
  }
548
548
  /**
549
549
  * @public
@@ -577,7 +577,7 @@ export interface CreateCodeRepositoryInput {
577
577
  * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
578
578
  * @public
579
579
  */
580
- Tags?: Tag[];
580
+ Tags?: Tag[] | undefined;
581
581
  }
582
582
  /**
583
583
  * @public
@@ -965,7 +965,7 @@ export interface InputConfig {
965
965
  * </ul>
966
966
  * @public
967
967
  */
968
- DataInputConfig?: string;
968
+ DataInputConfig?: string | undefined;
969
969
  /**
970
970
  * <p>Identifies the framework in which the model was trained. For example:
971
971
  * TENSORFLOW.</p>
@@ -981,7 +981,7 @@ export interface InputConfig {
981
981
  * Frameworks</a>.</p>
982
982
  * @public
983
983
  */
984
- FrameworkVersion?: string;
984
+ FrameworkVersion?: string | undefined;
985
985
  }
986
986
  /**
987
987
  * <p>Contains information about a target platform that you want your model to run on, such
@@ -1056,7 +1056,7 @@ export interface TargetPlatform {
1056
1056
  * </ul>
1057
1057
  * @public
1058
1058
  */
1059
- Accelerator?: TargetPlatformAccelerator;
1059
+ Accelerator?: TargetPlatformAccelerator | undefined;
1060
1060
  }
1061
1061
  /**
1062
1062
  * <p>Contains information about the output location for the compiled model and the target
@@ -1086,7 +1086,7 @@ export interface OutputConfig {
1086
1086
  * </note>
1087
1087
  * @public
1088
1088
  */
1089
- TargetDevice?: TargetDevice;
1089
+ TargetDevice?: TargetDevice | undefined;
1090
1090
  /**
1091
1091
  * <p>Contains information about a target platform that you want your model to run on, such
1092
1092
  * as OS, architecture, and accelerators. It is an alternative of
@@ -1153,7 +1153,7 @@ export interface OutputConfig {
1153
1153
  * </ul>
1154
1154
  * @public
1155
1155
  */
1156
- TargetPlatform?: TargetPlatform;
1156
+ TargetPlatform?: TargetPlatform | undefined;
1157
1157
  /**
1158
1158
  * <p>Specifies additional parameters for compiler options in JSON format. The compiler
1159
1159
  * options are <code>TargetPlatform</code> specific. It is required for NVIDIA accelerators
@@ -1278,7 +1278,7 @@ export interface OutputConfig {
1278
1278
  * </ul>
1279
1279
  * @public
1280
1280
  */
1281
- CompilerOptions?: string;
1281
+ CompilerOptions?: string | undefined;
1282
1282
  /**
1283
1283
  * <p>The Amazon Web Services Key Management Service key (Amazon Web Services KMS) that Amazon SageMaker
1284
1284
  * uses to encrypt your output models with Amazon S3 server-side encryption after compilation
@@ -1310,7 +1310,7 @@ export interface OutputConfig {
1310
1310
  * </ul>
1311
1311
  * @public
1312
1312
  */
1313
- KmsKeyId?: string;
1313
+ KmsKeyId?: string | undefined;
1314
1314
  }
1315
1315
  /**
1316
1316
  * <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> configuration object that specifies the VPC that you want the
@@ -1375,13 +1375,13 @@ export interface CreateCompilationJobRequest {
1375
1375
  * request will return an exception.</p>
1376
1376
  * @public
1377
1377
  */
1378
- ModelPackageVersionArn?: string;
1378
+ ModelPackageVersionArn?: string | undefined;
1379
1379
  /**
1380
1380
  * <p>Provides information about the location of input model artifacts, the name and shape
1381
1381
  * of the expected data inputs, and the framework in which the model was trained.</p>
1382
1382
  * @public
1383
1383
  */
1384
- InputConfig?: InputConfig;
1384
+ InputConfig?: InputConfig | undefined;
1385
1385
  /**
1386
1386
  * <p>Provides information about the output location for the compiled model and the target
1387
1387
  * device the model runs on.</p>
@@ -1394,7 +1394,7 @@ export interface CreateCompilationJobRequest {
1394
1394
  * information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/neo-vpc.html">Protect Compilation Jobs by Using an Amazon Virtual Private Cloud</a>.</p>
1395
1395
  * @public
1396
1396
  */
1397
- VpcConfig?: NeoVpcConfig;
1397
+ VpcConfig?: NeoVpcConfig | undefined;
1398
1398
  /**
1399
1399
  * <p>Specifies a limit to how long a model compilation job can run. When the job reaches
1400
1400
  * the time limit, Amazon SageMaker ends the compilation job. Use this API to cap model training
@@ -1408,7 +1408,7 @@ export interface CreateCompilationJobRequest {
1408
1408
  * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
1409
1409
  * @public
1410
1410
  */
1411
- Tags?: Tag[];
1411
+ Tags?: Tag[] | undefined;
1412
1412
  }
1413
1413
  /**
1414
1414
  * @public
@@ -1451,17 +1451,17 @@ export interface CreateContextRequest {
1451
1451
  * <p>The description of the context.</p>
1452
1452
  * @public
1453
1453
  */
1454
- Description?: string;
1454
+ Description?: string | undefined;
1455
1455
  /**
1456
1456
  * <p>A list of properties to add to the context.</p>
1457
1457
  * @public
1458
1458
  */
1459
- Properties?: Record<string, string>;
1459
+ Properties?: Record<string, string> | undefined;
1460
1460
  /**
1461
1461
  * <p>A list of tags to apply to the context.</p>
1462
1462
  * @public
1463
1463
  */
1464
- Tags?: Tag[];
1464
+ Tags?: Tag[] | undefined;
1465
1465
  }
1466
1466
  /**
1467
1467
  * @public
@@ -1471,7 +1471,7 @@ export interface CreateContextResponse {
1471
1471
  * <p>The Amazon Resource Name (ARN) of the context.</p>
1472
1472
  * @public
1473
1473
  */
1474
- ContextArn?: string;
1474
+ ContextArn?: string | undefined;
1475
1475
  }
1476
1476
  /**
1477
1477
  * <p>Information about the container that a data quality monitoring job runs.</p>
@@ -1487,30 +1487,30 @@ export interface DataQualityAppSpecification {
1487
1487
  * <p>The entrypoint for a container used to run a monitoring job.</p>
1488
1488
  * @public
1489
1489
  */
1490
- ContainerEntrypoint?: string[];
1490
+ ContainerEntrypoint?: string[] | undefined;
1491
1491
  /**
1492
1492
  * <p>The arguments to send to the container that the monitoring job runs.</p>
1493
1493
  * @public
1494
1494
  */
1495
- ContainerArguments?: string[];
1495
+ ContainerArguments?: string[] | undefined;
1496
1496
  /**
1497
1497
  * <p>An Amazon S3 URI to a script that is called per row prior to running analysis. It can
1498
1498
  * base64 decode the payload and convert it into a flattened JSON so that the built-in container can use
1499
1499
  * the converted data. Applicable only for the built-in (first party) containers.</p>
1500
1500
  * @public
1501
1501
  */
1502
- RecordPreprocessorSourceUri?: string;
1502
+ RecordPreprocessorSourceUri?: string | undefined;
1503
1503
  /**
1504
1504
  * <p>An Amazon S3 URI to a script that is called after analysis has been performed. Applicable
1505
1505
  * only for the built-in (first party) containers.</p>
1506
1506
  * @public
1507
1507
  */
1508
- PostAnalyticsProcessorSourceUri?: string;
1508
+ PostAnalyticsProcessorSourceUri?: string | undefined;
1509
1509
  /**
1510
1510
  * <p>Sets the environment variables in the container that the monitoring job runs.</p>
1511
1511
  * @public
1512
1512
  */
1513
- Environment?: Record<string, string>;
1513
+ Environment?: Record<string, string> | undefined;
1514
1514
  }
1515
1515
  /**
1516
1516
  * <p>The constraints resource for a monitoring job.</p>
@@ -1521,7 +1521,7 @@ export interface MonitoringConstraintsResource {
1521
1521
  * <p>The Amazon S3 URI for the constraints resource.</p>
1522
1522
  * @public
1523
1523
  */
1524
- S3Uri?: string;
1524
+ S3Uri?: string | undefined;
1525
1525
  }
1526
1526
  /**
1527
1527
  * <p>The statistics resource for a monitoring job.</p>
@@ -1532,7 +1532,7 @@ export interface MonitoringStatisticsResource {
1532
1532
  * <p>The Amazon S3 URI for the statistics resource.</p>
1533
1533
  * @public
1534
1534
  */
1535
- S3Uri?: string;
1535
+ S3Uri?: string | undefined;
1536
1536
  }
1537
1537
  /**
1538
1538
  * <p>Configuration for monitoring constraints and monitoring statistics. These baseline resources are
@@ -1545,17 +1545,17 @@ export interface DataQualityBaselineConfig {
1545
1545
  * <p>The name of the job that performs baselining for the data quality monitoring job.</p>
1546
1546
  * @public
1547
1547
  */
1548
- BaseliningJobName?: string;
1548
+ BaseliningJobName?: string | undefined;
1549
1549
  /**
1550
1550
  * <p>The constraints resource for a monitoring job.</p>
1551
1551
  * @public
1552
1552
  */
1553
- ConstraintsResource?: MonitoringConstraintsResource;
1553
+ ConstraintsResource?: MonitoringConstraintsResource | undefined;
1554
1554
  /**
1555
1555
  * <p>The statistics resource for a monitoring job.</p>
1556
1556
  * @public
1557
1557
  */
1558
- StatisticsResource?: MonitoringStatisticsResource;
1558
+ StatisticsResource?: MonitoringStatisticsResource | undefined;
1559
1559
  }
1560
1560
  /**
1561
1561
  * <p>Input object for the endpoint</p>
@@ -1580,53 +1580,53 @@ export interface EndpointInput {
1580
1580
  * <code>File</code>.</p>
1581
1581
  * @public
1582
1582
  */
1583
- S3InputMode?: ProcessingS3InputMode;
1583
+ S3InputMode?: ProcessingS3InputMode | undefined;
1584
1584
  /**
1585
1585
  * <p>Whether input data distributed in Amazon S3 is fully replicated or sharded by an
1586
1586
  * Amazon S3 key. Defaults to <code>FullyReplicated</code>
1587
1587
  * </p>
1588
1588
  * @public
1589
1589
  */
1590
- S3DataDistributionType?: ProcessingS3DataDistributionType;
1590
+ S3DataDistributionType?: ProcessingS3DataDistributionType | undefined;
1591
1591
  /**
1592
1592
  * <p>The attributes of the input data that are the input features.</p>
1593
1593
  * @public
1594
1594
  */
1595
- FeaturesAttribute?: string;
1595
+ FeaturesAttribute?: string | undefined;
1596
1596
  /**
1597
1597
  * <p>The attribute of the input data that represents the ground truth label.</p>
1598
1598
  * @public
1599
1599
  */
1600
- InferenceAttribute?: string;
1600
+ InferenceAttribute?: string | undefined;
1601
1601
  /**
1602
1602
  * <p>In a classification problem, the attribute that represents the class probability.</p>
1603
1603
  * @public
1604
1604
  */
1605
- ProbabilityAttribute?: string;
1605
+ ProbabilityAttribute?: string | undefined;
1606
1606
  /**
1607
1607
  * <p>The threshold for the class probability to be evaluated as a positive result.</p>
1608
1608
  * @public
1609
1609
  */
1610
- ProbabilityThresholdAttribute?: number;
1610
+ ProbabilityThresholdAttribute?: number | undefined;
1611
1611
  /**
1612
1612
  * <p>If specified, monitoring jobs substract this time from the start time. For information
1613
1613
  * 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
1614
1614
  * Quality Monitoring Jobs</a>.</p>
1615
1615
  * @public
1616
1616
  */
1617
- StartTimeOffset?: string;
1617
+ StartTimeOffset?: string | undefined;
1618
1618
  /**
1619
1619
  * <p>If specified, monitoring jobs substract this time from the end time. For information
1620
1620
  * 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
1621
1621
  * Quality Monitoring Jobs</a>.</p>
1622
1622
  * @public
1623
1623
  */
1624
- EndTimeOffset?: string;
1624
+ EndTimeOffset?: string | undefined;
1625
1625
  /**
1626
1626
  * <p>The attributes of the input data to exclude from the analysis.</p>
1627
1627
  * @public
1628
1628
  */
1629
- ExcludeFeaturesAttribute?: string;
1629
+ ExcludeFeaturesAttribute?: string | undefined;
1630
1630
  }
1631
1631
  /**
1632
1632
  * <p>The input for the data quality monitoring job. Currently endpoints are supported for
@@ -1638,12 +1638,12 @@ export interface DataQualityJobInput {
1638
1638
  * <p>Input object for the endpoint</p>
1639
1639
  * @public
1640
1640
  */
1641
- EndpointInput?: EndpointInput;
1641
+ EndpointInput?: EndpointInput | undefined;
1642
1642
  /**
1643
1643
  * <p>Input object for the batch transform job.</p>
1644
1644
  * @public
1645
1645
  */
1646
- BatchTransformInput?: BatchTransformInput;
1646
+ BatchTransformInput?: BatchTransformInput | undefined;
1647
1647
  }
1648
1648
  /**
1649
1649
  * @public
@@ -1681,7 +1681,7 @@ export interface MonitoringS3Output {
1681
1681
  * completes.</p>
1682
1682
  * @public
1683
1683
  */
1684
- S3UploadMode?: ProcessingS3UploadMode;
1684
+ S3UploadMode?: ProcessingS3UploadMode | undefined;
1685
1685
  }
1686
1686
  /**
1687
1687
  * <p>The output object for a monitoring job.</p>
@@ -1711,7 +1711,7 @@ export interface MonitoringOutputConfig {
1711
1711
  * encrypt the model artifacts at rest using Amazon S3 server-side encryption.</p>
1712
1712
  * @public
1713
1713
  */
1714
- KmsKeyId?: string;
1714
+ KmsKeyId?: string | undefined;
1715
1715
  }
1716
1716
  /**
1717
1717
  * @public
@@ -1811,7 +1811,7 @@ export interface MonitoringClusterConfig {
1811
1811
  * model monitoring job.</p>
1812
1812
  * @public
1813
1813
  */
1814
- VolumeKmsKeyId?: string;
1814
+ VolumeKmsKeyId?: string | undefined;
1815
1815
  }
1816
1816
  /**
1817
1817
  * <p>Identifies the resources to deploy for a monitoring job.</p>
@@ -1835,13 +1835,13 @@ export interface MonitoringNetworkConfig {
1835
1835
  * security for distributed jobs, but the processing might take longer.</p>
1836
1836
  * @public
1837
1837
  */
1838
- EnableInterContainerTrafficEncryption?: boolean;
1838
+ EnableInterContainerTrafficEncryption?: boolean | undefined;
1839
1839
  /**
1840
1840
  * <p>Whether to allow inbound and outbound network calls to and from the containers used for
1841
1841
  * the monitoring job.</p>
1842
1842
  * @public
1843
1843
  */
1844
- EnableNetworkIsolation?: boolean;
1844
+ EnableNetworkIsolation?: boolean | undefined;
1845
1845
  /**
1846
1846
  * <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
1847
1847
  * have access to. You can control access to and from your resources by configuring a VPC.
@@ -1849,7 +1849,7 @@ export interface MonitoringNetworkConfig {
1849
1849
  * Resources in your Amazon VPC</a>. </p>
1850
1850
  * @public
1851
1851
  */
1852
- VpcConfig?: VpcConfig;
1852
+ VpcConfig?: VpcConfig | undefined;
1853
1853
  }
1854
1854
  /**
1855
1855
  * <p>A time limit for how long the monitoring job is allowed to run before stopping.</p>
@@ -1881,7 +1881,7 @@ export interface CreateDataQualityJobDefinitionRequest {
1881
1881
  * <p>Configures the constraints and baselines for the monitoring job.</p>
1882
1882
  * @public
1883
1883
  */
1884
- DataQualityBaselineConfig?: DataQualityBaselineConfig;
1884
+ DataQualityBaselineConfig?: DataQualityBaselineConfig | undefined;
1885
1885
  /**
1886
1886
  * <p>Specifies the container that runs the monitoring job.</p>
1887
1887
  * @public
@@ -1907,7 +1907,7 @@ export interface CreateDataQualityJobDefinitionRequest {
1907
1907
  * <p>Specifies networking configuration for the monitoring job.</p>
1908
1908
  * @public
1909
1909
  */
1910
- NetworkConfig?: MonitoringNetworkConfig;
1910
+ NetworkConfig?: MonitoringNetworkConfig | undefined;
1911
1911
  /**
1912
1912
  * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can
1913
1913
  * assume to perform tasks on your behalf.</p>
@@ -1918,14 +1918,14 @@ export interface CreateDataQualityJobDefinitionRequest {
1918
1918
  * <p>A time limit for how long the monitoring job is allowed to run before stopping.</p>
1919
1919
  * @public
1920
1920
  */
1921
- StoppingCondition?: MonitoringStoppingCondition;
1921
+ StoppingCondition?: MonitoringStoppingCondition | undefined;
1922
1922
  /**
1923
1923
  * <p>(Optional) An array of key-value pairs. For more information, see
1924
1924
  * <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL">
1925
1925
  * Using Cost Allocation Tags</a> in the <i>Amazon Web Services Billing and Cost Management User Guide</i>.</p>
1926
1926
  * @public
1927
1927
  */
1928
- Tags?: Tag[];
1928
+ Tags?: Tag[] | undefined;
1929
1929
  }
1930
1930
  /**
1931
1931
  * @public
@@ -1963,13 +1963,13 @@ export interface EdgeOutputConfig {
1963
1963
  * If you don't provide a KMS key ID, Amazon SageMaker uses the default KMS key for Amazon S3 for your role's account.</p>
1964
1964
  * @public
1965
1965
  */
1966
- KmsKeyId?: string;
1966
+ KmsKeyId?: string | undefined;
1967
1967
  /**
1968
1968
  * <p>The deployment type SageMaker Edge Manager will create.
1969
1969
  * Currently only supports Amazon Web Services IoT Greengrass Version 2 components.</p>
1970
1970
  * @public
1971
1971
  */
1972
- PresetDeploymentType?: EdgePresetDeploymentType;
1972
+ PresetDeploymentType?: EdgePresetDeploymentType | undefined;
1973
1973
  /**
1974
1974
  * <p>The configuration used to create deployment artifacts.
1975
1975
  * Specify configuration options with a JSON string. The available configuration options for each type are:</p>
@@ -2007,7 +2007,7 @@ export interface EdgeOutputConfig {
2007
2007
  * </ul>
2008
2008
  * @public
2009
2009
  */
2010
- PresetDeploymentConfig?: string;
2010
+ PresetDeploymentConfig?: string | undefined;
2011
2011
  }
2012
2012
  /**
2013
2013
  * @public
@@ -2022,12 +2022,12 @@ export interface CreateDeviceFleetRequest {
2022
2022
  * <p>The Amazon Resource Name (ARN) that has access to Amazon Web Services Internet of Things (IoT).</p>
2023
2023
  * @public
2024
2024
  */
2025
- RoleArn?: string;
2025
+ RoleArn?: string | undefined;
2026
2026
  /**
2027
2027
  * <p>A description of the fleet.</p>
2028
2028
  * @public
2029
2029
  */
2030
- Description?: string;
2030
+ Description?: string | undefined;
2031
2031
  /**
2032
2032
  * <p>The output configuration for storing sample data collected by the fleet.</p>
2033
2033
  * @public
@@ -2037,7 +2037,7 @@ export interface CreateDeviceFleetRequest {
2037
2037
  * <p>Creates tags for the specified fleet.</p>
2038
2038
  * @public
2039
2039
  */
2040
- Tags?: Tag[];
2040
+ Tags?: Tag[] | undefined;
2041
2041
  /**
2042
2042
  * <p>Whether to create an Amazon Web Services IoT Role Alias during device fleet creation.
2043
2043
  * The name of the role alias generated will match this pattern:
@@ -2046,7 +2046,7 @@ export interface CreateDeviceFleetRequest {
2046
2046
  * the role alias will be "SageMakerEdge-demo-fleet".</p>
2047
2047
  * @public
2048
2048
  */
2049
- EnableIotRoleAlias?: boolean;
2049
+ EnableIotRoleAlias?: boolean | undefined;
2050
2050
  }
2051
2051
  /**
2052
2052
  * <p>The settings for assigning a custom Amazon EFS file system to a user profile or
@@ -2064,7 +2064,7 @@ export interface EFSFileSystemConfig {
2064
2064
  * Permitted users can access only this directory and below.</p>
2065
2065
  * @public
2066
2066
  */
2067
- FileSystemPath?: string;
2067
+ FileSystemPath?: string | undefined;
2068
2068
  }
2069
2069
  /**
2070
2070
  * <p>The settings for assigning a custom file system to a user profile or space for an Amazon SageMaker Domain. Permitted users can access this file system in Amazon SageMaker
@@ -2132,7 +2132,7 @@ export interface EmrSettings {
2132
2132
  * domain.</p>
2133
2133
  * @public
2134
2134
  */
2135
- AssumableRoleArns?: string[];
2135
+ AssumableRoleArns?: string[] | undefined;
2136
2136
  /**
2137
2137
  * <p>An array of Amazon Resource Names (ARNs) of the IAM roles used by the Amazon EMR cluster instances
2138
2138
  * or job execution environments to access other Amazon Web Services services and resources needed during the
@@ -2140,7 +2140,7 @@ export interface EmrSettings {
2140
2140
  * Amazon Web Services services based on the particular workload requirements.</p>
2141
2141
  * @public
2142
2142
  */
2143
- ExecutionRoleArns?: string[];
2143
+ ExecutionRoleArns?: string[] | undefined;
2144
2144
  }
2145
2145
  /**
2146
2146
  * <p>The settings for the JupyterLab application.</p>
@@ -2152,27 +2152,27 @@ export interface JupyterLabAppSettings {
2152
2152
  * the version runs on.</p>
2153
2153
  * @public
2154
2154
  */
2155
- DefaultResourceSpec?: ResourceSpec;
2155
+ DefaultResourceSpec?: ResourceSpec | undefined;
2156
2156
  /**
2157
2157
  * <p>A list of custom SageMaker images that are configured to run as a JupyterLab app.</p>
2158
2158
  * @public
2159
2159
  */
2160
- CustomImages?: CustomImage[];
2160
+ CustomImages?: CustomImage[] | undefined;
2161
2161
  /**
2162
2162
  * <p>The Amazon Resource Name (ARN) of the lifecycle configurations attached to the user profile or domain. To remove a lifecycle config, you must set <code>LifecycleConfigArns</code> to an empty list.</p>
2163
2163
  * @public
2164
2164
  */
2165
- LifecycleConfigArns?: string[];
2165
+ LifecycleConfigArns?: string[] | undefined;
2166
2166
  /**
2167
2167
  * <p>A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application.</p>
2168
2168
  * @public
2169
2169
  */
2170
- CodeRepositories?: CodeRepository[];
2170
+ CodeRepositories?: CodeRepository[] | undefined;
2171
2171
  /**
2172
2172
  * <p>Indicates whether idle shutdown is activated for JupyterLab applications.</p>
2173
2173
  * @public
2174
2174
  */
2175
- AppLifecycleManagement?: AppLifecycleManagement;
2175
+ AppLifecycleManagement?: AppLifecycleManagement | undefined;
2176
2176
  /**
2177
2177
  * <p>The configuration parameters that specify the IAM roles assumed by the execution role of
2178
2178
  * SageMaker (assumable roles) and the cluster instances or job execution environments
@@ -2180,13 +2180,13 @@ export interface JupyterLabAppSettings {
2180
2180
  * clusters or Amazon EMR Serverless applications.</p>
2181
2181
  * @public
2182
2182
  */
2183
- EmrSettings?: EmrSettings;
2183
+ EmrSettings?: EmrSettings | undefined;
2184
2184
  /**
2185
2185
  * <p>The lifecycle configuration that runs before the default lifecycle configuration. It can
2186
2186
  * override changes made in the default lifecycle configuration.</p>
2187
2187
  * @public
2188
2188
  */
2189
- BuiltInLifecycleConfigArn?: string;
2189
+ BuiltInLifecycleConfigArn?: string | undefined;
2190
2190
  }
2191
2191
  /**
2192
2192
  * <p>The JupyterServer app settings.</p>
@@ -2198,7 +2198,7 @@ export interface JupyterServerAppSettings {
2198
2198
  * <code>LifecycleConfigArns</code> parameter, then this parameter is also required.</p>
2199
2199
  * @public
2200
2200
  */
2201
- DefaultResourceSpec?: ResourceSpec;
2201
+ DefaultResourceSpec?: ResourceSpec | undefined;
2202
2202
  /**
2203
2203
  * <p> The Amazon Resource Name (ARN) of the Lifecycle Configurations attached to the
2204
2204
  * JupyterServerApp. If you use this parameter, the <code>DefaultResourceSpec</code> parameter is
@@ -2209,13 +2209,13 @@ export interface JupyterServerAppSettings {
2209
2209
  * </note>
2210
2210
  * @public
2211
2211
  */
2212
- LifecycleConfigArns?: string[];
2212
+ LifecycleConfigArns?: string[] | undefined;
2213
2213
  /**
2214
2214
  * <p>A list of Git repositories that SageMaker automatically displays to users for
2215
2215
  * cloning in the JupyterServer application.</p>
2216
2216
  * @public
2217
2217
  */
2218
- CodeRepositories?: CodeRepository[];
2218
+ CodeRepositories?: CodeRepository[] | undefined;
2219
2219
  }
2220
2220
  /**
2221
2221
  * <p>The KernelGateway app settings.</p>
@@ -2231,13 +2231,13 @@ export interface KernelGatewayAppSettings {
2231
2231
  * </note>
2232
2232
  * @public
2233
2233
  */
2234
- DefaultResourceSpec?: ResourceSpec;
2234
+ DefaultResourceSpec?: ResourceSpec | undefined;
2235
2235
  /**
2236
2236
  * <p>A list of custom SageMaker images that are configured to run as a KernelGateway
2237
2237
  * app.</p>
2238
2238
  * @public
2239
2239
  */
2240
- CustomImages?: CustomImage[];
2240
+ CustomImages?: CustomImage[] | undefined;
2241
2241
  /**
2242
2242
  * <p> The Amazon Resource Name (ARN) of the Lifecycle Configurations attached to the the user
2243
2243
  * profile or domain.</p>
@@ -2247,7 +2247,7 @@ export interface KernelGatewayAppSettings {
2247
2247
  * </note>
2248
2248
  * @public
2249
2249
  */
2250
- LifecycleConfigArns?: string[];
2250
+ LifecycleConfigArns?: string[] | undefined;
2251
2251
  }
2252
2252
  /**
2253
2253
  * <p>A collection of default EBS storage settings that apply to spaces created within a domain or user profile.</p>
@@ -2274,7 +2274,7 @@ export interface DefaultSpaceStorageSettings {
2274
2274
  * <p>The default EBS storage settings for a space.</p>
2275
2275
  * @public
2276
2276
  */
2277
- DefaultEbsStorageSettings?: DefaultEbsStorageSettings;
2277
+ DefaultEbsStorageSettings?: DefaultEbsStorageSettings | undefined;
2278
2278
  }
2279
2279
  /**
2280
2280
  * <p>The default settings for shared spaces that users create in the domain.</p>
@@ -2287,44 +2287,44 @@ export interface DefaultSpaceSettings {
2287
2287
  * <p>The ARN of the execution role for the space.</p>
2288
2288
  * @public
2289
2289
  */
2290
- ExecutionRole?: string;
2290
+ ExecutionRole?: string | undefined;
2291
2291
  /**
2292
2292
  * <p>The security group IDs for the Amazon VPC that the space uses for
2293
2293
  * communication.</p>
2294
2294
  * @public
2295
2295
  */
2296
- SecurityGroups?: string[];
2296
+ SecurityGroups?: string[] | undefined;
2297
2297
  /**
2298
2298
  * <p>The JupyterServer app settings.</p>
2299
2299
  * @public
2300
2300
  */
2301
- JupyterServerAppSettings?: JupyterServerAppSettings;
2301
+ JupyterServerAppSettings?: JupyterServerAppSettings | undefined;
2302
2302
  /**
2303
2303
  * <p>The KernelGateway app settings.</p>
2304
2304
  * @public
2305
2305
  */
2306
- KernelGatewayAppSettings?: KernelGatewayAppSettings;
2306
+ KernelGatewayAppSettings?: KernelGatewayAppSettings | undefined;
2307
2307
  /**
2308
2308
  * <p>The settings for the JupyterLab application.</p>
2309
2309
  * @public
2310
2310
  */
2311
- JupyterLabAppSettings?: JupyterLabAppSettings;
2311
+ JupyterLabAppSettings?: JupyterLabAppSettings | undefined;
2312
2312
  /**
2313
2313
  * <p>The default storage settings for a space.</p>
2314
2314
  * @public
2315
2315
  */
2316
- SpaceStorageSettings?: DefaultSpaceStorageSettings;
2316
+ SpaceStorageSettings?: DefaultSpaceStorageSettings | undefined;
2317
2317
  /**
2318
2318
  * <p>Details about the POSIX identity that is used for file system operations.</p>
2319
2319
  * @public
2320
2320
  */
2321
- CustomPosixUserConfig?: CustomPosixUserConfig;
2321
+ CustomPosixUserConfig?: CustomPosixUserConfig | undefined;
2322
2322
  /**
2323
2323
  * <p>The settings for assigning a custom file system to a domain. Permitted users can access
2324
2324
  * this file system in Amazon SageMaker Studio.</p>
2325
2325
  * @public
2326
2326
  */
2327
- CustomFileSystemConfigs?: CustomFileSystemConfig[];
2327
+ CustomFileSystemConfigs?: CustomFileSystemConfig[] | undefined;
2328
2328
  }
2329
2329
  /**
2330
2330
  * <p>A collection of settings that apply to an <code>RSessionGateway</code> app.</p>
@@ -2336,13 +2336,13 @@ export interface RSessionAppSettings {
2336
2336
  * the version runs on.</p>
2337
2337
  * @public
2338
2338
  */
2339
- DefaultResourceSpec?: ResourceSpec;
2339
+ DefaultResourceSpec?: ResourceSpec | undefined;
2340
2340
  /**
2341
2341
  * <p>A list of custom SageMaker images that are configured to run as a RSession
2342
2342
  * app.</p>
2343
2343
  * @public
2344
2344
  */
2345
- CustomImages?: CustomImage[];
2345
+ CustomImages?: CustomImage[] | undefined;
2346
2346
  }
2347
2347
  /**
2348
2348
  * @public
@@ -2379,14 +2379,14 @@ export interface RStudioServerProAppSettings {
2379
2379
  * app.</p>
2380
2380
  * @public
2381
2381
  */
2382
- AccessStatus?: RStudioServerProAccessStatus;
2382
+ AccessStatus?: RStudioServerProAccessStatus | undefined;
2383
2383
  /**
2384
2384
  * <p>The level of permissions that the user has within the <code>RStudioServerPro</code> app.
2385
2385
  * This value defaults to `User`. The `Admin` value allows the user access to the RStudio
2386
2386
  * Administrative Dashboard.</p>
2387
2387
  * @public
2388
2388
  */
2389
- UserGroup?: RStudioServerProUserGroup;
2389
+ UserGroup?: RStudioServerProUserGroup | undefined;
2390
2390
  }
2391
2391
  /**
2392
2392
  * @public
@@ -2414,20 +2414,20 @@ export interface SharingSettings {
2414
2414
  * <code>Disabled</code>.</p>
2415
2415
  * @public
2416
2416
  */
2417
- NotebookOutputOption?: NotebookOutputOption;
2417
+ NotebookOutputOption?: NotebookOutputOption | undefined;
2418
2418
  /**
2419
2419
  * <p>When <code>NotebookOutputOption</code> is <code>Allowed</code>, the Amazon S3
2420
2420
  * bucket used to store the shared notebook snapshots.</p>
2421
2421
  * @public
2422
2422
  */
2423
- S3OutputPath?: string;
2423
+ S3OutputPath?: string | undefined;
2424
2424
  /**
2425
2425
  * <p>When <code>NotebookOutputOption</code> is <code>Allowed</code>, the Amazon Web Services Key
2426
2426
  * Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the
2427
2427
  * Amazon S3 bucket.</p>
2428
2428
  * @public
2429
2429
  */
2430
- S3KmsKeyId?: string;
2430
+ S3KmsKeyId?: string | undefined;
2431
2431
  }
2432
2432
  /**
2433
2433
  * @public
@@ -2487,12 +2487,12 @@ export interface HiddenSageMakerImage {
2487
2487
  * <p> The SageMaker image name that you are hiding from the Studio user interface. </p>
2488
2488
  * @public
2489
2489
  */
2490
- SageMakerImageName?: SageMakerImageName;
2490
+ SageMakerImageName?: SageMakerImageName | undefined;
2491
2491
  /**
2492
2492
  * <p> The version aliases you are hiding from the Studio user interface. </p>
2493
2493
  * @public
2494
2494
  */
2495
- VersionAliases?: string[];
2495
+ VersionAliases?: string[] | undefined;
2496
2496
  }
2497
2497
  /**
2498
2498
  * <p>Studio settings. If these settings are applied on a user level, they take priority over
@@ -2504,23 +2504,23 @@ export interface StudioWebPortalSettings {
2504
2504
  * <p>The machine learning tools that are hidden from the Studio left navigation pane.</p>
2505
2505
  * @public
2506
2506
  */
2507
- HiddenMlTools?: MlTools[];
2507
+ HiddenMlTools?: MlTools[] | undefined;
2508
2508
  /**
2509
2509
  * <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/studio-updated-apps.html">Applications supported in Studio</a> that are hidden from the Studio left navigation
2510
2510
  * pane.</p>
2511
2511
  * @public
2512
2512
  */
2513
- HiddenAppTypes?: AppType[];
2513
+ HiddenAppTypes?: AppType[] | undefined;
2514
2514
  /**
2515
2515
  * <p> The instance types you are hiding from the Studio user interface. </p>
2516
2516
  * @public
2517
2517
  */
2518
- HiddenInstanceTypes?: AppInstanceType[];
2518
+ HiddenInstanceTypes?: AppInstanceType[] | undefined;
2519
2519
  /**
2520
2520
  * <p> The version aliases you are hiding from the Studio user interface. </p>
2521
2521
  * @public
2522
2522
  */
2523
- HiddenSageMakerImageVersionAliases?: HiddenSageMakerImage[];
2523
+ HiddenSageMakerImageVersionAliases?: HiddenSageMakerImage[] | undefined;
2524
2524
  }
2525
2525
  /**
2526
2526
  * <p>The TensorBoard app settings.</p>
@@ -2532,7 +2532,7 @@ export interface TensorBoardAppSettings {
2532
2532
  * image created on the instance.</p>
2533
2533
  * @public
2534
2534
  */
2535
- DefaultResourceSpec?: ResourceSpec;
2535
+ DefaultResourceSpec?: ResourceSpec | undefined;
2536
2536
  }
2537
2537
  /**
2538
2538
  * <p>A collection of settings that apply to users in a domain. These settings are specified
@@ -2550,7 +2550,7 @@ export interface UserSettings {
2550
2550
  * <p>SageMaker applies this setting only to private spaces that the user creates in the domain. SageMaker doesn't apply this setting to shared spaces.</p>
2551
2551
  * @public
2552
2552
  */
2553
- ExecutionRole?: string;
2553
+ ExecutionRole?: string | undefined;
2554
2554
  /**
2555
2555
  * <p>The security groups for the Amazon Virtual Private Cloud (VPC) that the domain uses for
2556
2556
  * communication.</p>
@@ -2564,63 +2564,63 @@ export interface UserSettings {
2564
2564
  * <p>SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.</p>
2565
2565
  * @public
2566
2566
  */
2567
- SecurityGroups?: string[];
2567
+ SecurityGroups?: string[] | undefined;
2568
2568
  /**
2569
2569
  * <p>Specifies options for sharing Amazon SageMaker Studio notebooks.</p>
2570
2570
  * @public
2571
2571
  */
2572
- SharingSettings?: SharingSettings;
2572
+ SharingSettings?: SharingSettings | undefined;
2573
2573
  /**
2574
2574
  * <p>The Jupyter server's app settings.</p>
2575
2575
  * @public
2576
2576
  */
2577
- JupyterServerAppSettings?: JupyterServerAppSettings;
2577
+ JupyterServerAppSettings?: JupyterServerAppSettings | undefined;
2578
2578
  /**
2579
2579
  * <p>The kernel gateway app settings.</p>
2580
2580
  * @public
2581
2581
  */
2582
- KernelGatewayAppSettings?: KernelGatewayAppSettings;
2582
+ KernelGatewayAppSettings?: KernelGatewayAppSettings | undefined;
2583
2583
  /**
2584
2584
  * <p>The TensorBoard app settings.</p>
2585
2585
  * @public
2586
2586
  */
2587
- TensorBoardAppSettings?: TensorBoardAppSettings;
2587
+ TensorBoardAppSettings?: TensorBoardAppSettings | undefined;
2588
2588
  /**
2589
2589
  * <p>A collection of settings that configure user interaction with the
2590
2590
  * <code>RStudioServerPro</code> app.</p>
2591
2591
  * @public
2592
2592
  */
2593
- RStudioServerProAppSettings?: RStudioServerProAppSettings;
2593
+ RStudioServerProAppSettings?: RStudioServerProAppSettings | undefined;
2594
2594
  /**
2595
2595
  * <p>A collection of settings that configure the <code>RSessionGateway</code> app.</p>
2596
2596
  * @public
2597
2597
  */
2598
- RSessionAppSettings?: RSessionAppSettings;
2598
+ RSessionAppSettings?: RSessionAppSettings | undefined;
2599
2599
  /**
2600
2600
  * <p>The Canvas app settings.</p>
2601
2601
  * <p>SageMaker applies these settings only to private spaces that SageMaker creates for the Canvas
2602
2602
  * app.</p>
2603
2603
  * @public
2604
2604
  */
2605
- CanvasAppSettings?: CanvasAppSettings;
2605
+ CanvasAppSettings?: CanvasAppSettings | undefined;
2606
2606
  /**
2607
2607
  * <p>The Code Editor application settings.</p>
2608
2608
  * <p>SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.</p>
2609
2609
  * @public
2610
2610
  */
2611
- CodeEditorAppSettings?: CodeEditorAppSettings;
2611
+ CodeEditorAppSettings?: CodeEditorAppSettings | undefined;
2612
2612
  /**
2613
2613
  * <p>The settings for the JupyterLab application.</p>
2614
2614
  * <p>SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.</p>
2615
2615
  * @public
2616
2616
  */
2617
- JupyterLabAppSettings?: JupyterLabAppSettings;
2617
+ JupyterLabAppSettings?: JupyterLabAppSettings | undefined;
2618
2618
  /**
2619
2619
  * <p>The storage settings for a space.</p>
2620
2620
  * <p>SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.</p>
2621
2621
  * @public
2622
2622
  */
2623
- SpaceStorageSettings?: DefaultSpaceStorageSettings;
2623
+ SpaceStorageSettings?: DefaultSpaceStorageSettings | undefined;
2624
2624
  /**
2625
2625
  * <p>The default experience that the user is directed to when accessing the domain. The
2626
2626
  * supported values are:</p>
@@ -2638,32 +2638,32 @@ export interface UserSettings {
2638
2638
  * </ul>
2639
2639
  * @public
2640
2640
  */
2641
- DefaultLandingUri?: string;
2641
+ DefaultLandingUri?: string | undefined;
2642
2642
  /**
2643
2643
  * <p>Whether the user can access Studio. If this value is set to <code>DISABLED</code>, the
2644
2644
  * user cannot access Studio, even if that is the default experience for the domain.</p>
2645
2645
  * @public
2646
2646
  */
2647
- StudioWebPortal?: StudioWebPortal;
2647
+ StudioWebPortal?: StudioWebPortal | undefined;
2648
2648
  /**
2649
2649
  * <p>Details about the POSIX identity that is used for file system operations.</p>
2650
2650
  * <p>SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.</p>
2651
2651
  * @public
2652
2652
  */
2653
- CustomPosixUserConfig?: CustomPosixUserConfig;
2653
+ CustomPosixUserConfig?: CustomPosixUserConfig | undefined;
2654
2654
  /**
2655
2655
  * <p>The settings for assigning a custom file system to a user profile. Permitted users can
2656
2656
  * access this file system in Amazon SageMaker Studio.</p>
2657
2657
  * <p>SageMaker applies these settings only to private spaces that the user creates in the domain. SageMaker doesn't apply these settings to shared spaces.</p>
2658
2658
  * @public
2659
2659
  */
2660
- CustomFileSystemConfigs?: CustomFileSystemConfig[];
2660
+ CustomFileSystemConfigs?: CustomFileSystemConfig[] | undefined;
2661
2661
  /**
2662
2662
  * <p>Studio settings. If these settings are applied on a user level, they take priority over
2663
2663
  * the settings applied on a domain level.</p>
2664
2664
  * @public
2665
2665
  */
2666
- StudioWebPortalSettings?: StudioWebPortalSettings;
2666
+ StudioWebPortalSettings?: StudioWebPortalSettings | undefined;
2667
2667
  /**
2668
2668
  * <p>Indicates whether auto-mounting of an EFS volume is supported for the user profile. The
2669
2669
  * <code>DefaultAsDomain</code> value is only supported for user profiles. Do not use the
@@ -2671,7 +2671,7 @@ export interface UserSettings {
2671
2671
  * <p>SageMaker applies this setting only to private spaces that the user creates in the domain. SageMaker doesn't apply this setting to shared spaces.</p>
2672
2672
  * @public
2673
2673
  */
2674
- AutoMountHomeEFS?: AutoMountHomeEFS;
2674
+ AutoMountHomeEFS?: AutoMountHomeEFS | undefined;
2675
2675
  }
2676
2676
  /**
2677
2677
  * <p>A collection of settings that configure the domain's Docker interaction.</p>
@@ -2682,13 +2682,13 @@ export interface DockerSettings {
2682
2682
  * <p>Indicates whether the domain can access Docker.</p>
2683
2683
  * @public
2684
2684
  */
2685
- EnableDockerAccess?: FeatureStatus;
2685
+ EnableDockerAccess?: FeatureStatus | undefined;
2686
2686
  /**
2687
2687
  * <p>The list of Amazon Web Services accounts that are trusted when the domain is created in
2688
2688
  * VPC-only mode.</p>
2689
2689
  * @public
2690
2690
  */
2691
- VpcOnlyTrustedAccounts?: string[];
2691
+ VpcOnlyTrustedAccounts?: string[] | undefined;
2692
2692
  }
2693
2693
  /**
2694
2694
  * @public
@@ -2718,18 +2718,18 @@ export interface RStudioServerProDomainSettings {
2718
2718
  * <p>A URL pointing to an RStudio Connect server.</p>
2719
2719
  * @public
2720
2720
  */
2721
- RStudioConnectUrl?: string;
2721
+ RStudioConnectUrl?: string | undefined;
2722
2722
  /**
2723
2723
  * <p>A URL pointing to an RStudio Package Manager server.</p>
2724
2724
  * @public
2725
2725
  */
2726
- RStudioPackageManagerUrl?: string;
2726
+ RStudioPackageManagerUrl?: string | undefined;
2727
2727
  /**
2728
2728
  * <p>Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that
2729
2729
  * the version runs on.</p>
2730
2730
  * @public
2731
2731
  */
2732
- DefaultResourceSpec?: ResourceSpec;
2732
+ DefaultResourceSpec?: ResourceSpec | undefined;
2733
2733
  }
2734
2734
  /**
2735
2735
  * <p>A collection of settings that apply to the <code>SageMaker Domain</code>. These settings
@@ -2742,30 +2742,30 @@ export interface DomainSettings {
2742
2742
  * communication between Domain-level apps and user apps.</p>
2743
2743
  * @public
2744
2744
  */
2745
- SecurityGroupIds?: string[];
2745
+ SecurityGroupIds?: string[] | undefined;
2746
2746
  /**
2747
2747
  * <p>A collection of settings that configure the <code>RStudioServerPro</code> Domain-level
2748
2748
  * app.</p>
2749
2749
  * @public
2750
2750
  */
2751
- RStudioServerProDomainSettings?: RStudioServerProDomainSettings;
2751
+ RStudioServerProDomainSettings?: RStudioServerProDomainSettings | undefined;
2752
2752
  /**
2753
2753
  * <p>The configuration for attaching a SageMaker user profile name to the execution
2754
2754
  * role as a <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html">sts:SourceIdentity key</a>.</p>
2755
2755
  * @public
2756
2756
  */
2757
- ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
2757
+ ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | undefined;
2758
2758
  /**
2759
2759
  * <p>A collection of settings that configure the domain's Docker interaction.</p>
2760
2760
  * @public
2761
2761
  */
2762
- DockerSettings?: DockerSettings;
2762
+ DockerSettings?: DockerSettings | undefined;
2763
2763
  /**
2764
2764
  * <p>A collection of settings that configure the Amazon Q experience within the domain. The
2765
2765
  * <code>AuthMode</code> that you use to create the domain must be <code>SSO</code>.</p>
2766
2766
  * @public
2767
2767
  */
2768
- AmazonQSettings?: AmazonQSettings;
2768
+ AmazonQSettings?: AmazonQSettings | undefined;
2769
2769
  }
2770
2770
  /**
2771
2771
  * @public
@@ -2807,7 +2807,7 @@ export interface CreateDomainRequest {
2807
2807
  * <p>A collection of <code>Domain</code> settings.</p>
2808
2808
  * @public
2809
2809
  */
2810
- DomainSettings?: DomainSettings;
2810
+ DomainSettings?: DomainSettings | undefined;
2811
2811
  /**
2812
2812
  * <p>The VPC subnets that the domain uses for communication.</p>
2813
2813
  * @public
@@ -2826,7 +2826,7 @@ export interface CreateDomainRequest {
2826
2826
  * launches.</p>
2827
2827
  * @public
2828
2828
  */
2829
- Tags?: Tag[];
2829
+ Tags?: Tag[] | undefined;
2830
2830
  /**
2831
2831
  * <p>Specifies the VPC used for non-EFS traffic. The default value is
2832
2832
  * <code>PublicInternetOnly</code>.</p>
@@ -2842,21 +2842,21 @@ export interface CreateDomainRequest {
2842
2842
  * </ul>
2843
2843
  * @public
2844
2844
  */
2845
- AppNetworkAccessType?: AppNetworkAccessType;
2845
+ AppNetworkAccessType?: AppNetworkAccessType | undefined;
2846
2846
  /**
2847
2847
  * @deprecated
2848
2848
  *
2849
2849
  * <p>Use <code>KmsKeyId</code>.</p>
2850
2850
  * @public
2851
2851
  */
2852
- HomeEfsFileSystemKmsKeyId?: string;
2852
+ HomeEfsFileSystemKmsKeyId?: string | undefined;
2853
2853
  /**
2854
2854
  * <p>SageMaker uses Amazon Web Services KMS to encrypt EFS and EBS volumes attached to
2855
2855
  * the domain with an Amazon Web Services managed key by default. For more control, specify a
2856
2856
  * customer managed key.</p>
2857
2857
  * @public
2858
2858
  */
2859
- KmsKeyId?: string;
2859
+ KmsKeyId?: string | undefined;
2860
2860
  /**
2861
2861
  * <p>The entity that creates and manages the required security groups for inter-app
2862
2862
  * communication in <code>VPCOnly</code> mode. Required when
@@ -2866,18 +2866,18 @@ export interface CreateDomainRequest {
2866
2866
  * <code>Service</code>.</p>
2867
2867
  * @public
2868
2868
  */
2869
- AppSecurityGroupManagement?: AppSecurityGroupManagement;
2869
+ AppSecurityGroupManagement?: AppSecurityGroupManagement | undefined;
2870
2870
  /**
2871
2871
  * <p>Indicates whether custom tag propagation is supported for the domain. Defaults to
2872
2872
  * <code>DISABLED</code>.</p>
2873
2873
  * @public
2874
2874
  */
2875
- TagPropagation?: TagPropagation;
2875
+ TagPropagation?: TagPropagation | undefined;
2876
2876
  /**
2877
2877
  * <p>The default settings for shared spaces that users create in the domain.</p>
2878
2878
  * @public
2879
2879
  */
2880
- DefaultSpaceSettings?: DefaultSpaceSettings;
2880
+ DefaultSpaceSettings?: DefaultSpaceSettings | undefined;
2881
2881
  }
2882
2882
  /**
2883
2883
  * @public
@@ -2887,12 +2887,12 @@ export interface CreateDomainResponse {
2887
2887
  * <p>The Amazon Resource Name (ARN) of the created domain.</p>
2888
2888
  * @public
2889
2889
  */
2890
- DomainArn?: string;
2890
+ DomainArn?: string | undefined;
2891
2891
  /**
2892
2892
  * <p>The URL to the created domain.</p>
2893
2893
  * @public
2894
2894
  */
2895
- Url?: string;
2895
+ Url?: string | undefined;
2896
2896
  }
2897
2897
  /**
2898
2898
  * <p>Contains information about the configuration of a model in a deployment.</p>
@@ -2962,17 +2962,17 @@ export interface DeviceSelectionConfig {
2962
2962
  * <p>Percentage of devices in the fleet to deploy to the current stage.</p>
2963
2963
  * @public
2964
2964
  */
2965
- Percentage?: number;
2965
+ Percentage?: number | undefined;
2966
2966
  /**
2967
2967
  * <p>List of devices chosen to deploy.</p>
2968
2968
  * @public
2969
2969
  */
2970
- DeviceNames?: string[];
2970
+ DeviceNames?: string[] | undefined;
2971
2971
  /**
2972
2972
  * <p>A filter to select devices with names containing this name.</p>
2973
2973
  * @public
2974
2974
  */
2975
- DeviceNameContains?: string;
2975
+ DeviceNameContains?: string | undefined;
2976
2976
  }
2977
2977
  /**
2978
2978
  * <p>Contains information about a stage in an edge deployment plan.</p>
@@ -2993,7 +2993,7 @@ export interface DeploymentStage {
2993
2993
  * <p>Configuration of the deployment details.</p>
2994
2994
  * @public
2995
2995
  */
2996
- DeploymentConfig?: EdgeDeploymentConfig;
2996
+ DeploymentConfig?: EdgeDeploymentConfig | undefined;
2997
2997
  }
2998
2998
  /**
2999
2999
  * @public
@@ -3019,12 +3019,12 @@ export interface CreateEdgeDeploymentPlanRequest {
3019
3019
  * deployment.</p>
3020
3020
  * @public
3021
3021
  */
3022
- Stages?: DeploymentStage[];
3022
+ Stages?: DeploymentStage[] | undefined;
3023
3023
  /**
3024
3024
  * <p>List of tags with which to tag the edge deployment plan.</p>
3025
3025
  * @public
3026
3026
  */
3027
- Tags?: Tag[];
3027
+ Tags?: Tag[] | undefined;
3028
3028
  }
3029
3029
  /**
3030
3030
  * @public
@@ -3089,12 +3089,12 @@ export interface CreateEdgePackagingJobRequest {
3089
3089
  * <p>The Amazon Web Services KMS key to use when encrypting the EBS volume the edge packaging job runs on.</p>
3090
3090
  * @public
3091
3091
  */
3092
- ResourceKey?: string;
3092
+ ResourceKey?: string | undefined;
3093
3093
  /**
3094
3094
  * <p>Creates tags for the packaging job.</p>
3095
3095
  * @public
3096
3096
  */
3097
- Tags?: Tag[];
3097
+ Tags?: Tag[] | undefined;
3098
3098
  }
3099
3099
  /**
3100
3100
  * <p>Specifies a rolling deployment strategy for updating a SageMaker endpoint.</p>
@@ -3118,7 +3118,7 @@ export interface RollingUpdatePolicy {
3118
3118
  * <p>The time limit for the total deployment. Exceeding this limit causes a timeout.</p>
3119
3119
  * @public
3120
3120
  */
3121
- MaximumExecutionTimeoutInSeconds?: number;
3121
+ MaximumExecutionTimeoutInSeconds?: number | undefined;
3122
3122
  /**
3123
3123
  * <p>Batch size for rollback to the old endpoint fleet. Each rolling step to provision
3124
3124
  * capacity and turn on traffic on the old endpoint fleet, and terminate capacity on the
@@ -3127,7 +3127,7 @@ export interface RollingUpdatePolicy {
3127
3127
  * during rollback.</p>
3128
3128
  * @public
3129
3129
  */
3130
- RollbackMaximumBatchSize?: CapacitySize;
3130
+ RollbackMaximumBatchSize?: CapacitySize | undefined;
3131
3131
  }
3132
3132
  /**
3133
3133
  * <p>The deployment configuration for an endpoint, which contains the desired deployment
@@ -3144,18 +3144,18 @@ export interface DeploymentConfig {
3144
3144
  * by default.</p>
3145
3145
  * @public
3146
3146
  */
3147
- BlueGreenUpdatePolicy?: BlueGreenUpdatePolicy;
3147
+ BlueGreenUpdatePolicy?: BlueGreenUpdatePolicy | undefined;
3148
3148
  /**
3149
3149
  * <p>Specifies a rolling deployment strategy for updating a SageMaker endpoint.</p>
3150
3150
  * @public
3151
3151
  */
3152
- RollingUpdatePolicy?: RollingUpdatePolicy;
3152
+ RollingUpdatePolicy?: RollingUpdatePolicy | undefined;
3153
3153
  /**
3154
3154
  * <p>Automatic rollback configuration for handling endpoint deployment failures and
3155
3155
  * recovery.</p>
3156
3156
  * @public
3157
3157
  */
3158
- AutoRollbackConfiguration?: AutoRollbackConfig;
3158
+ AutoRollbackConfiguration?: AutoRollbackConfig | undefined;
3159
3159
  }
3160
3160
  /**
3161
3161
  * @public
@@ -3178,14 +3178,14 @@ export interface CreateEndpointInput {
3178
3178
  * strategy and rollback configurations.</p>
3179
3179
  * @public
3180
3180
  */
3181
- DeploymentConfig?: DeploymentConfig;
3181
+ DeploymentConfig?: DeploymentConfig | undefined;
3182
3182
  /**
3183
3183
  * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
3184
3184
  * resources in different ways, for example, by purpose, owner, or environment. For more
3185
3185
  * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
3186
3186
  * @public
3187
3187
  */
3188
- Tags?: Tag[];
3188
+ Tags?: Tag[] | undefined;
3189
3189
  }
3190
3190
  /**
3191
3191
  * @public
@@ -3206,7 +3206,7 @@ export interface DataCaptureConfig {
3206
3206
  * <p>Whether data capture should be enabled or disabled (defaults to enabled).</p>
3207
3207
  * @public
3208
3208
  */
3209
- EnableCapture?: boolean;
3209
+ EnableCapture?: boolean | undefined;
3210
3210
  /**
3211
3211
  * <p>The percentage of requests SageMaker will capture. A lower value is recommended
3212
3212
  * for Endpoints with high traffic.</p>
@@ -3245,7 +3245,7 @@ export interface DataCaptureConfig {
3245
3245
  * </ul>
3246
3246
  * @public
3247
3247
  */
3248
- KmsKeyId?: string;
3248
+ KmsKeyId?: string | undefined;
3249
3249
  /**
3250
3250
  * <p>Specifies data Model Monitor will capture. You can configure whether to collect only
3251
3251
  * input, only output, or both</p>
@@ -3257,7 +3257,7 @@ export interface DataCaptureConfig {
3257
3257
  * SageMaker will by default base64 encode when capturing the data.</p>
3258
3258
  * @public
3259
3259
  */
3260
- CaptureContentTypeHeader?: CaptureContentTypeHeader;
3260
+ CaptureContentTypeHeader?: CaptureContentTypeHeader | undefined;
3261
3261
  }
3262
3262
  /**
3263
3263
  * <p>A parameter to activate explainers.</p>
@@ -3269,7 +3269,7 @@ export interface ExplainerConfig {
3269
3269
  * the SageMaker Clarify explainer.</p>
3270
3270
  * @public
3271
3271
  */
3272
- ClarifyExplainerConfig?: ClarifyExplainerConfig;
3272
+ ClarifyExplainerConfig?: ClarifyExplainerConfig | undefined;
3273
3273
  }
3274
3274
  /**
3275
3275
  * @public
@@ -3344,7 +3344,7 @@ export interface ProductionVariantCoreDumpConfig {
3344
3344
  * Service Developer Guide</i>.</p>
3345
3345
  * @public
3346
3346
  */
3347
- KmsKeyId?: string;
3347
+ KmsKeyId?: string | undefined;
3348
3348
  }
3349
3349
  /**
3350
3350
  * @public
@@ -3379,19 +3379,19 @@ export interface ProductionVariantManagedInstanceScaling {
3379
3379
  * <p>Indicates whether managed instance scaling is enabled.</p>
3380
3380
  * @public
3381
3381
  */
3382
- Status?: ManagedInstanceScalingStatus;
3382
+ Status?: ManagedInstanceScalingStatus | undefined;
3383
3383
  /**
3384
3384
  * <p>The minimum number of instances that the endpoint must retain when it scales down to
3385
3385
  * accommodate a decrease in traffic.</p>
3386
3386
  * @public
3387
3387
  */
3388
- MinInstanceCount?: number;
3388
+ MinInstanceCount?: number | undefined;
3389
3389
  /**
3390
3390
  * <p>The maximum number of instances that the endpoint can provision when it scales up to
3391
3391
  * accommodate an increase in traffic.</p>
3392
3392
  * @public
3393
3393
  */
3394
- MaxInstanceCount?: number;
3394
+ MaxInstanceCount?: number | undefined;
3395
3395
  }
3396
3396
  /**
3397
3397
  * @public
@@ -3454,7 +3454,7 @@ export interface ProductionVariantServerlessConfig {
3454
3454
  * </note>
3455
3455
  * @public
3456
3456
  */
3457
- ProvisionedConcurrency?: number;
3457
+ ProvisionedConcurrency?: number | undefined;
3458
3458
  }
3459
3459
  /**
3460
3460
  * <p> Identifies a model that you want to host and the resources chosen to deploy for
@@ -3475,17 +3475,17 @@ export interface ProductionVariant {
3475
3475
  * when creating the model.</p>
3476
3476
  * @public
3477
3477
  */
3478
- ModelName?: string;
3478
+ ModelName?: string | undefined;
3479
3479
  /**
3480
3480
  * <p>Number of instances to launch initially.</p>
3481
3481
  * @public
3482
3482
  */
3483
- InitialInstanceCount?: number;
3483
+ InitialInstanceCount?: number | undefined;
3484
3484
  /**
3485
3485
  * <p>The ML compute instance type.</p>
3486
3486
  * @public
3487
3487
  */
3488
- InstanceType?: ProductionVariantInstanceType;
3488
+ InstanceType?: ProductionVariantInstanceType | undefined;
3489
3489
  /**
3490
3490
  * <p>Determines initial traffic distribution among all of the models that you specify in
3491
3491
  * the endpoint configuration. The traffic to a production variant is determined by the
@@ -3494,7 +3494,7 @@ export interface ProductionVariant {
3494
3494
  * </p>
3495
3495
  * @public
3496
3496
  */
3497
- InitialVariantWeight?: number;
3497
+ InitialVariantWeight?: number | undefined;
3498
3498
  /**
3499
3499
  * <p>This parameter is no longer supported. Elastic Inference (EI) is no longer
3500
3500
  * available.</p>
@@ -3502,38 +3502,38 @@ export interface ProductionVariant {
3502
3502
  * production variant.</p>
3503
3503
  * @public
3504
3504
  */
3505
- AcceleratorType?: ProductionVariantAcceleratorType;
3505
+ AcceleratorType?: ProductionVariantAcceleratorType | undefined;
3506
3506
  /**
3507
3507
  * <p>Specifies configuration for a core dump from the model container when the process
3508
3508
  * crashes.</p>
3509
3509
  * @public
3510
3510
  */
3511
- CoreDumpConfig?: ProductionVariantCoreDumpConfig;
3511
+ CoreDumpConfig?: ProductionVariantCoreDumpConfig | undefined;
3512
3512
  /**
3513
3513
  * <p>The serverless configuration for an endpoint. Specifies a serverless endpoint configuration instead of an instance-based endpoint configuration.</p>
3514
3514
  * @public
3515
3515
  */
3516
- ServerlessConfig?: ProductionVariantServerlessConfig;
3516
+ ServerlessConfig?: ProductionVariantServerlessConfig | undefined;
3517
3517
  /**
3518
3518
  * <p>The size, in GB, of the ML storage volume attached to individual inference instance
3519
3519
  * associated with the production variant. Currently only Amazon EBS gp2 storage volumes are
3520
3520
  * supported.</p>
3521
3521
  * @public
3522
3522
  */
3523
- VolumeSizeInGB?: number;
3523
+ VolumeSizeInGB?: number | undefined;
3524
3524
  /**
3525
3525
  * <p>The timeout value, in seconds, to download and extract the model that you want to host
3526
3526
  * from Amazon S3 to the individual inference instance associated with this production
3527
3527
  * variant.</p>
3528
3528
  * @public
3529
3529
  */
3530
- ModelDataDownloadTimeoutInSeconds?: number;
3530
+ ModelDataDownloadTimeoutInSeconds?: number | undefined;
3531
3531
  /**
3532
3532
  * <p>The timeout value, in seconds, for your inference container to pass health check by
3533
3533
  * SageMaker Hosting. For more information about health check, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-inference-code.html#your-algorithms-inference-algo-ping-requests">How Your Container Should Respond to Health Check (Ping) Requests</a>.</p>
3534
3534
  * @public
3535
3535
  */
3536
- ContainerStartupHealthCheckTimeoutInSeconds?: number;
3536
+ ContainerStartupHealthCheckTimeoutInSeconds?: number | undefined;
3537
3537
  /**
3538
3538
  * <p> You can use this parameter to turn on native Amazon Web Services Systems Manager (SSM)
3539
3539
  * access for a production variant behind an endpoint. By default, SSM access is disabled
@@ -3542,19 +3542,19 @@ export interface ProductionVariant {
3542
3542
  * configuration and calling <code>UpdateEndpoint</code>. </p>
3543
3543
  * @public
3544
3544
  */
3545
- EnableSSMAccess?: boolean;
3545
+ EnableSSMAccess?: boolean | undefined;
3546
3546
  /**
3547
3547
  * <p>Settings that control the range in the number of instances that the endpoint provisions
3548
3548
  * as it scales up or down to accommodate traffic. </p>
3549
3549
  * @public
3550
3550
  */
3551
- ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling;
3551
+ ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling | undefined;
3552
3552
  /**
3553
3553
  * <p>Settings that control how the endpoint routes incoming traffic to the instances that the
3554
3554
  * endpoint hosts.</p>
3555
3555
  * @public
3556
3556
  */
3557
- RoutingConfig?: ProductionVariantRoutingConfig;
3557
+ RoutingConfig?: ProductionVariantRoutingConfig | undefined;
3558
3558
  /**
3559
3559
  * <p>Specifies an option from a collection of preconfigured Amazon Machine Image (AMI)
3560
3560
  * images. Each image is configured by Amazon Web Services with a set of software and driver
@@ -3586,7 +3586,7 @@ export interface ProductionVariant {
3586
3586
  * </dl>
3587
3587
  * @public
3588
3588
  */
3589
- InferenceAmiVersion?: ProductionVariantInferenceAmiVersion;
3589
+ InferenceAmiVersion?: ProductionVariantInferenceAmiVersion | undefined;
3590
3590
  }
3591
3591
  /**
3592
3592
  * @public
@@ -3607,14 +3607,14 @@ export interface CreateEndpointConfigInput {
3607
3607
  * <p>Configuration to control how SageMaker captures inference data.</p>
3608
3608
  * @public
3609
3609
  */
3610
- DataCaptureConfig?: DataCaptureConfig;
3610
+ DataCaptureConfig?: DataCaptureConfig | undefined;
3611
3611
  /**
3612
3612
  * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
3613
3613
  * resources in different ways, for example, by purpose, owner, or environment. For more
3614
3614
  * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
3615
3615
  * @public
3616
3616
  */
3617
- Tags?: Tag[];
3617
+ Tags?: Tag[] | undefined;
3618
3618
  /**
3619
3619
  * <p>The Amazon Resource Name (ARN) of a Amazon Web Services Key Management Service key that
3620
3620
  * SageMaker uses to encrypt data on the storage volume attached to the ML compute instance that
@@ -3660,18 +3660,18 @@ export interface CreateEndpointConfigInput {
3660
3660
  * </note>
3661
3661
  * @public
3662
3662
  */
3663
- KmsKeyId?: string;
3663
+ KmsKeyId?: string | undefined;
3664
3664
  /**
3665
3665
  * <p>Specifies configuration for how an endpoint performs asynchronous inference. This is a
3666
3666
  * required field in order for your Endpoint to be invoked using <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_runtime_InvokeEndpointAsync.html">InvokeEndpointAsync</a>.</p>
3667
3667
  * @public
3668
3668
  */
3669
- AsyncInferenceConfig?: AsyncInferenceConfig;
3669
+ AsyncInferenceConfig?: AsyncInferenceConfig | undefined;
3670
3670
  /**
3671
3671
  * <p>A member of <code>CreateEndpointConfig</code> that enables explainers.</p>
3672
3672
  * @public
3673
3673
  */
3674
- ExplainerConfig?: ExplainerConfig;
3674
+ ExplainerConfig?: ExplainerConfig | undefined;
3675
3675
  /**
3676
3676
  * <p>An array of <code>ProductionVariant</code> objects, one for each model that you want
3677
3677
  * to host at this endpoint in shadow mode with production traffic replicated from the
@@ -3680,7 +3680,7 @@ export interface CreateEndpointConfigInput {
3680
3680
  * <code>ShadowProductionVariants</code>.</p>
3681
3681
  * @public
3682
3682
  */
3683
- ShadowProductionVariants?: ProductionVariant[];
3683
+ ShadowProductionVariants?: ProductionVariant[] | undefined;
3684
3684
  /**
3685
3685
  * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform actions on your behalf. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html">SageMaker
3686
3686
  * Roles</a>. </p>
@@ -3690,7 +3690,7 @@ export interface CreateEndpointConfigInput {
3690
3690
  * </note>
3691
3691
  * @public
3692
3692
  */
3693
- ExecutionRoleArn?: string;
3693
+ ExecutionRoleArn?: string | undefined;
3694
3694
  /**
3695
3695
  * <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
3696
3696
  * have access to. You can control access to and from your resources by configuring a VPC.
@@ -3698,13 +3698,13 @@ export interface CreateEndpointConfigInput {
3698
3698
  * Resources in your Amazon VPC</a>. </p>
3699
3699
  * @public
3700
3700
  */
3701
- VpcConfig?: VpcConfig;
3701
+ VpcConfig?: VpcConfig | undefined;
3702
3702
  /**
3703
3703
  * <p>Sets whether all model containers deployed to the endpoint are isolated. If they are, no
3704
3704
  * inbound or outbound network calls can be made to or from the model containers.</p>
3705
3705
  * @public
3706
3706
  */
3707
- EnableNetworkIsolation?: boolean;
3707
+ EnableNetworkIsolation?: boolean | undefined;
3708
3708
  }
3709
3709
  /**
3710
3710
  * @public
@@ -3732,18 +3732,18 @@ export interface CreateExperimentRequest {
3732
3732
  * displayed.</p>
3733
3733
  * @public
3734
3734
  */
3735
- DisplayName?: string;
3735
+ DisplayName?: string | undefined;
3736
3736
  /**
3737
3737
  * <p>The description of the experiment.</p>
3738
3738
  * @public
3739
3739
  */
3740
- Description?: string;
3740
+ Description?: string | undefined;
3741
3741
  /**
3742
3742
  * <p>A list of tags to associate with the experiment. You can use <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Search.html">Search</a> API
3743
3743
  * to search on the tags.</p>
3744
3744
  * @public
3745
3745
  */
3746
- Tags?: Tag[];
3746
+ Tags?: Tag[] | undefined;
3747
3747
  }
3748
3748
  /**
3749
3749
  * @public
@@ -3753,7 +3753,7 @@ export interface CreateExperimentResponse {
3753
3753
  * <p>The Amazon Resource Name (ARN) of the experiment.</p>
3754
3754
  * @public
3755
3755
  */
3756
- ExperimentArn?: string;
3756
+ ExperimentArn?: string | undefined;
3757
3757
  }
3758
3758
  /**
3759
3759
  * @public
@@ -3819,12 +3819,12 @@ export interface FeatureDefinition {
3819
3819
  * </ul>
3820
3820
  * @public
3821
3821
  */
3822
- CollectionType?: CollectionType;
3822
+ CollectionType?: CollectionType | undefined;
3823
3823
  /**
3824
3824
  * <p>Configuration for your collection.</p>
3825
3825
  * @public
3826
3826
  */
3827
- CollectionConfig?: CollectionConfig;
3827
+ CollectionConfig?: CollectionConfig | undefined;
3828
3828
  }
3829
3829
  /**
3830
3830
  * <p>The meta data of the Glue table which serves as data catalog for the
@@ -3876,12 +3876,12 @@ export interface S3StorageConfig {
3876
3876
  * </ul>
3877
3877
  * @public
3878
3878
  */
3879
- KmsKeyId?: string;
3879
+ KmsKeyId?: string | undefined;
3880
3880
  /**
3881
3881
  * <p>The S3 path where offline records are written.</p>
3882
3882
  * @public
3883
3883
  */
3884
- ResolvedOutputS3Uri?: string;
3884
+ ResolvedOutputS3Uri?: string | undefined;
3885
3885
  }
3886
3886
  /**
3887
3887
  * @public
@@ -3918,18 +3918,18 @@ export interface OfflineStoreConfig {
3918
3918
  * <p>The default value is <code>False</code>.</p>
3919
3919
  * @public
3920
3920
  */
3921
- DisableGlueTableCreation?: boolean;
3921
+ DisableGlueTableCreation?: boolean | undefined;
3922
3922
  /**
3923
3923
  * <p>The meta data of the Glue table that is autogenerated when an <code>OfflineStore</code>
3924
3924
  * is created. </p>
3925
3925
  * @public
3926
3926
  */
3927
- DataCatalogConfig?: DataCatalogConfig;
3927
+ DataCatalogConfig?: DataCatalogConfig | undefined;
3928
3928
  /**
3929
3929
  * <p>Format for the offline store table. Supported formats are Glue (Default) and <a href="https://iceberg.apache.org/">Apache Iceberg</a>.</p>
3930
3930
  * @public
3931
3931
  */
3932
- TableFormat?: TableFormat;
3932
+ TableFormat?: TableFormat | undefined;
3933
3933
  }
3934
3934
  /**
3935
3935
  * <p>The security configuration for <code>OnlineStore</code>.</p>
@@ -4012,7 +4012,7 @@ export interface OnlineStoreSecurityConfig {
4012
4012
  * </ul>
4013
4013
  * @public
4014
4014
  */
4015
- KmsKeyId?: string;
4015
+ KmsKeyId?: string | undefined;
4016
4016
  }
4017
4017
  /**
4018
4018
  * @public
@@ -4053,13 +4053,13 @@ export interface TtlDuration {
4053
4053
  * <code>TtlDuration</code> time unit.</p>
4054
4054
  * @public
4055
4055
  */
4056
- Unit?: TtlDurationUnit;
4056
+ Unit?: TtlDurationUnit | undefined;
4057
4057
  /**
4058
4058
  * <p>
4059
4059
  * <code>TtlDuration</code> time value.</p>
4060
4060
  * @public
4061
4061
  */
4062
- Value?: number;
4062
+ Value?: number | undefined;
4063
4063
  }
4064
4064
  /**
4065
4065
  * <p>Use this to specify the Amazon Web Services Key Management Service (KMS) Key ID, or
@@ -4075,7 +4075,7 @@ export interface OnlineStoreConfig {
4075
4075
  * <code>OnlineStore</code>.</p>
4076
4076
  * @public
4077
4077
  */
4078
- SecurityConfig?: OnlineStoreSecurityConfig;
4078
+ SecurityConfig?: OnlineStoreSecurityConfig | undefined;
4079
4079
  /**
4080
4080
  * <p>Turn <code>OnlineStore</code> off by specifying <code>False</code> for the
4081
4081
  * <code>EnableOnlineStore</code> flag. Turn <code>OnlineStore</code> on by specifying
@@ -4083,14 +4083,14 @@ export interface OnlineStoreConfig {
4083
4083
  * <p>The default value is <code>False</code>.</p>
4084
4084
  * @public
4085
4085
  */
4086
- EnableOnlineStore?: boolean;
4086
+ EnableOnlineStore?: boolean | undefined;
4087
4087
  /**
4088
4088
  * <p>Time to live duration, where the record is hard deleted after the expiration time is
4089
4089
  * reached; <code>ExpiresAt</code> = <code>EventTime</code> + <code>TtlDuration</code>. For
4090
4090
  * information on HardDelete, see the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_DeleteRecord.html">DeleteRecord</a> API in the Amazon SageMaker API Reference guide.</p>
4091
4091
  * @public
4092
4092
  */
4093
- TtlDuration?: TtlDuration;
4093
+ TtlDuration?: TtlDuration | undefined;
4094
4094
  /**
4095
4095
  * <p>Option for different tiers of low latency storage for real-time data retrieval.</p>
4096
4096
  * <ul>
@@ -4106,7 +4106,7 @@ export interface OnlineStoreConfig {
4106
4106
  * </ul>
4107
4107
  * @public
4108
4108
  */
4109
- StorageType?: StorageType;
4109
+ StorageType?: StorageType | undefined;
4110
4110
  }
4111
4111
  /**
4112
4112
  * @public
@@ -4149,14 +4149,14 @@ export interface ThroughputConfig {
4149
4149
  * <p>This field is not applicable for on-demand feature groups. </p>
4150
4150
  * @public
4151
4151
  */
4152
- ProvisionedReadCapacityUnits?: number;
4152
+ ProvisionedReadCapacityUnits?: number | undefined;
4153
4153
  /**
4154
4154
  * <p> For provisioned feature groups, this indicates the write throughput you are billed for
4155
4155
  * and can consume without throttling. </p>
4156
4156
  * <p>This field is not applicable for on-demand feature groups. </p>
4157
4157
  * @public
4158
4158
  */
4159
- ProvisionedWriteCapacityUnits?: number;
4159
+ ProvisionedWriteCapacityUnits?: number | undefined;
4160
4160
  }
4161
4161
  /**
4162
4162
  * @public
@@ -4248,7 +4248,7 @@ export interface CreateFeatureGroupRequest {
4248
4248
  * <p>The default value is <code>False</code>.</p>
4249
4249
  * @public
4250
4250
  */
4251
- OnlineStoreConfig?: OnlineStoreConfig;
4251
+ OnlineStoreConfig?: OnlineStoreConfig | undefined;
4252
4252
  /**
4253
4253
  * <p>Use this to configure an <code>OfflineFeatureStore</code>. This parameter allows you to
4254
4254
  * specify:</p>
@@ -4276,7 +4276,7 @@ export interface CreateFeatureGroupRequest {
4276
4276
  * <p>To learn more about this parameter, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OfflineStoreConfig.html">OfflineStoreConfig</a>.</p>
4277
4277
  * @public
4278
4278
  */
4279
- OfflineStoreConfig?: OfflineStoreConfig;
4279
+ OfflineStoreConfig?: OfflineStoreConfig | undefined;
4280
4280
  /**
4281
4281
  * <p>Used to set feature group throughput configuration. There are two modes:
4282
4282
  * <code>ON_DEMAND</code> and <code>PROVISIONED</code>. With on-demand mode, you are
@@ -4293,23 +4293,23 @@ export interface CreateFeatureGroupRequest {
4293
4293
  * </a> tier online store. </p>
4294
4294
  * @public
4295
4295
  */
4296
- ThroughputConfig?: ThroughputConfig;
4296
+ ThroughputConfig?: ThroughputConfig | undefined;
4297
4297
  /**
4298
4298
  * <p>The Amazon Resource Name (ARN) of the IAM execution role used to persist data into the
4299
4299
  * <code>OfflineStore</code> if an <code>OfflineStoreConfig</code> is provided.</p>
4300
4300
  * @public
4301
4301
  */
4302
- RoleArn?: string;
4302
+ RoleArn?: string | undefined;
4303
4303
  /**
4304
4304
  * <p>A free-form description of a <code>FeatureGroup</code>.</p>
4305
4305
  * @public
4306
4306
  */
4307
- Description?: string;
4307
+ Description?: string | undefined;
4308
4308
  /**
4309
4309
  * <p>Tags used to identify <code>Features</code> in each <code>FeatureGroup</code>.</p>
4310
4310
  * @public
4311
4311
  */
4312
- Tags?: Tag[];
4312
+ Tags?: Tag[] | undefined;
4313
4313
  }
4314
4314
  /**
4315
4315
  * @public
@@ -4358,17 +4358,17 @@ export interface USD {
4358
4358
  * <p>The whole number of dollars in the amount.</p>
4359
4359
  * @public
4360
4360
  */
4361
- Dollars?: number;
4361
+ Dollars?: number | undefined;
4362
4362
  /**
4363
4363
  * <p>The fractional portion, in cents, of the amount. </p>
4364
4364
  * @public
4365
4365
  */
4366
- Cents?: number;
4366
+ Cents?: number | undefined;
4367
4367
  /**
4368
4368
  * <p>Fractions of a cent, in tenths.</p>
4369
4369
  * @public
4370
4370
  */
4371
- TenthFractionsOfACent?: number;
4371
+ TenthFractionsOfACent?: number | undefined;
4372
4372
  }
4373
4373
  /**
4374
4374
  * <p>Defines the amount of money paid to an Amazon Mechanical Turk worker for each task performed. </p>
@@ -4680,7 +4680,7 @@ export interface PublicWorkforceTaskPrice {
4680
4680
  * <p>Defines the amount of money paid to an Amazon Mechanical Turk worker in United States dollars.</p>
4681
4681
  * @public
4682
4682
  */
4683
- AmountInUsd?: USD;
4683
+ AmountInUsd?: USD | undefined;
4684
4684
  }
4685
4685
  /**
4686
4686
  * <p>Describes the work to be performed by human workers.</p>
@@ -4727,18 +4727,18 @@ export interface HumanLoopConfig {
4727
4727
  * <p>The length of time that a task remains available for review by human workers.</p>
4728
4728
  * @public
4729
4729
  */
4730
- TaskAvailabilityLifetimeInSeconds?: number;
4730
+ TaskAvailabilityLifetimeInSeconds?: number | undefined;
4731
4731
  /**
4732
4732
  * <p>The amount of time that a worker has to complete a task. The default value is 3,600
4733
4733
  * seconds (1 hour).</p>
4734
4734
  * @public
4735
4735
  */
4736
- TaskTimeLimitInSeconds?: number;
4736
+ TaskTimeLimitInSeconds?: number | undefined;
4737
4737
  /**
4738
4738
  * <p>Keywords used to describe the task so that workers can discover the task.</p>
4739
4739
  * @public
4740
4740
  */
4741
- TaskKeywords?: string[];
4741
+ TaskKeywords?: string[] | undefined;
4742
4742
  /**
4743
4743
  * <p>Defines the amount of money paid to an Amazon Mechanical Turk worker for each task performed. </p>
4744
4744
  * <p>Use one of the following prices for bounding box tasks. Prices are in US dollars and
@@ -5044,7 +5044,7 @@ export interface HumanLoopConfig {
5044
5044
  * </ul>
5045
5045
  * @public
5046
5046
  */
5047
- PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice;
5047
+ PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice | undefined;
5048
5048
  }
5049
5049
  /**
5050
5050
  * <p>Container for configuring the source of human task requests.</p>
@@ -5074,7 +5074,7 @@ export interface FlowDefinitionOutputConfig {
5074
5074
  * <p>The Amazon Key Management Service (KMS) key ID for server-side encryption.</p>
5075
5075
  * @public
5076
5076
  */
5077
- KmsKeyId?: string;
5077
+ KmsKeyId?: string | undefined;
5078
5078
  }
5079
5079
  /**
5080
5080
  * @public
@@ -5090,17 +5090,17 @@ export interface CreateFlowDefinitionRequest {
5090
5090
  * Amazon Rekognition or Amazon Textract is used as an integration source.</p>
5091
5091
  * @public
5092
5092
  */
5093
- HumanLoopRequestSource?: HumanLoopRequestSource;
5093
+ HumanLoopRequestSource?: HumanLoopRequestSource | undefined;
5094
5094
  /**
5095
5095
  * <p>An object containing information about the events that trigger a human workflow.</p>
5096
5096
  * @public
5097
5097
  */
5098
- HumanLoopActivationConfig?: HumanLoopActivationConfig;
5098
+ HumanLoopActivationConfig?: HumanLoopActivationConfig | undefined;
5099
5099
  /**
5100
5100
  * <p>An object containing information about the tasks the human reviewers will perform.</p>
5101
5101
  * @public
5102
5102
  */
5103
- HumanLoopConfig?: HumanLoopConfig;
5103
+ HumanLoopConfig?: HumanLoopConfig | undefined;
5104
5104
  /**
5105
5105
  * <p>An object containing information about where the human review results will be uploaded.</p>
5106
5106
  * @public
@@ -5115,7 +5115,7 @@ export interface CreateFlowDefinitionRequest {
5115
5115
  * <p>An array of key-value pairs that contain metadata to help you categorize and organize a flow definition. Each tag consists of a key and a value, both of which you define.</p>
5116
5116
  * @public
5117
5117
  */
5118
- Tags?: Tag[];
5118
+ Tags?: Tag[] | undefined;
5119
5119
  }
5120
5120
  /**
5121
5121
  * @public
@@ -5136,7 +5136,7 @@ export interface HubS3StorageConfig {
5136
5136
  * <p>The Amazon S3 bucket prefix for hosting hub content.</p>
5137
5137
  * @public
5138
5138
  */
5139
- S3OutputPath?: string;
5139
+ S3OutputPath?: string | undefined;
5140
5140
  }
5141
5141
  /**
5142
5142
  * @public
@@ -5156,22 +5156,22 @@ export interface CreateHubRequest {
5156
5156
  * <p>The display name of the hub.</p>
5157
5157
  * @public
5158
5158
  */
5159
- HubDisplayName?: string;
5159
+ HubDisplayName?: string | undefined;
5160
5160
  /**
5161
5161
  * <p>The searchable keywords for the hub.</p>
5162
5162
  * @public
5163
5163
  */
5164
- HubSearchKeywords?: string[];
5164
+ HubSearchKeywords?: string[] | undefined;
5165
5165
  /**
5166
5166
  * <p>The Amazon S3 storage configuration for the hub.</p>
5167
5167
  * @public
5168
5168
  */
5169
- S3StorageConfig?: HubS3StorageConfig;
5169
+ S3StorageConfig?: HubS3StorageConfig | undefined;
5170
5170
  /**
5171
5171
  * <p>Any tags to associate with the hub.</p>
5172
5172
  * @public
5173
5173
  */
5174
- Tags?: Tag[];
5174
+ Tags?: Tag[] | undefined;
5175
5175
  }
5176
5176
  /**
5177
5177
  * @public
@@ -5201,17 +5201,17 @@ export interface CreateHubContentReferenceRequest {
5201
5201
  * <p>The name of the hub content to reference.</p>
5202
5202
  * @public
5203
5203
  */
5204
- HubContentName?: string;
5204
+ HubContentName?: string | undefined;
5205
5205
  /**
5206
5206
  * <p>The minimum version of the hub content to reference.</p>
5207
5207
  * @public
5208
5208
  */
5209
- MinVersion?: string;
5209
+ MinVersion?: string | undefined;
5210
5210
  /**
5211
5211
  * <p>Any tags associated with the hub content to reference.</p>
5212
5212
  * @public
5213
5213
  */
5214
- Tags?: Tag[];
5214
+ Tags?: Tag[] | undefined;
5215
5215
  }
5216
5216
  /**
5217
5217
  * @public
@@ -5257,7 +5257,7 @@ export interface CreateHumanTaskUiRequest {
5257
5257
  * <p>An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface. Each tag consists of a key and a value, both of which you define.</p>
5258
5258
  * @public
5259
5259
  */
5260
- Tags?: Tag[];
5260
+ Tags?: Tag[] | undefined;
5261
5261
  }
5262
5262
  /**
5263
5263
  * @public
@@ -5319,7 +5319,7 @@ export interface IntegerParameterRange {
5319
5319
  * </dl>
5320
5320
  * @public
5321
5321
  */
5322
- ScalingType?: HyperParameterScalingType;
5322
+ ScalingType?: HyperParameterScalingType | undefined;
5323
5323
  }
5324
5324
  /**
5325
5325
  * <p>Specifies ranges of integer, continuous, and categorical hyperparameters that a
@@ -5341,25 +5341,25 @@ export interface ParameterRanges {
5341
5341
  * hyperparameters that a hyperparameter tuning job searches.</p>
5342
5342
  * @public
5343
5343
  */
5344
- IntegerParameterRanges?: IntegerParameterRange[];
5344
+ IntegerParameterRanges?: IntegerParameterRange[] | undefined;
5345
5345
  /**
5346
5346
  * <p>The array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ContinuousParameterRange.html">ContinuousParameterRange</a> objects that specify ranges of continuous
5347
5347
  * hyperparameters that a hyperparameter tuning job searches.</p>
5348
5348
  * @public
5349
5349
  */
5350
- ContinuousParameterRanges?: ContinuousParameterRange[];
5350
+ ContinuousParameterRanges?: ContinuousParameterRange[] | undefined;
5351
5351
  /**
5352
5352
  * <p>The array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CategoricalParameterRange.html">CategoricalParameterRange</a> objects that specify ranges of categorical
5353
5353
  * hyperparameters that a hyperparameter tuning job searches.</p>
5354
5354
  * @public
5355
5355
  */
5356
- CategoricalParameterRanges?: CategoricalParameterRange[];
5356
+ CategoricalParameterRanges?: CategoricalParameterRange[] | undefined;
5357
5357
  /**
5358
5358
  * <p>A list containing hyperparameter names and example values to be used by Autotune to
5359
5359
  * determine optimal ranges for your tuning job.</p>
5360
5360
  * @public
5361
5361
  */
5362
- AutoParameters?: AutoParameter[];
5362
+ AutoParameters?: AutoParameter[] | undefined;
5363
5363
  }
5364
5364
  /**
5365
5365
  * <p>Specifies the maximum number of training jobs and parallel training jobs that a
@@ -5372,7 +5372,7 @@ export interface ResourceLimits {
5372
5372
  * launch.</p>
5373
5373
  * @public
5374
5374
  */
5375
- MaxNumberOfTrainingJobs?: number;
5375
+ MaxNumberOfTrainingJobs?: number | undefined;
5376
5376
  /**
5377
5377
  * <p>The maximum number of concurrent training jobs that a hyperparameter tuning job can
5378
5378
  * launch.</p>
@@ -5383,7 +5383,7 @@ export interface ResourceLimits {
5383
5383
  * <p>The maximum time in seconds that a hyperparameter tuning job can run.</p>
5384
5384
  * @public
5385
5385
  */
5386
- MaxRuntimeInSeconds?: number;
5386
+ MaxRuntimeInSeconds?: number | undefined;
5387
5387
  }
5388
5388
  /**
5389
5389
  * @public
@@ -5415,7 +5415,7 @@ export interface HyperbandStrategyConfig {
5415
5415
  * been reached, the training job is not stopped by <code>Hyperband</code>.</p>
5416
5416
  * @public
5417
5417
  */
5418
- MinResource?: number;
5418
+ MinResource?: number | undefined;
5419
5419
  /**
5420
5420
  * <p>The maximum number of resources (such as epochs) that can be used by a training job
5421
5421
  * launched by a hyperparameter tuning job. Once a job reaches the <code>MaxResource</code>
@@ -5459,7 +5459,7 @@ export interface HyperbandStrategyConfig {
5459
5459
  * jobs may make an incorrect stopping decision and stop the job prematurely. </p>
5460
5460
  * @public
5461
5461
  */
5462
- MaxResource?: number;
5462
+ MaxResource?: number | undefined;
5463
5463
  }
5464
5464
  /**
5465
5465
  * <p>The configuration for a training job launched by a hyperparameter tuning job. Choose
@@ -5477,7 +5477,7 @@ export interface HyperParameterTuningJobStrategyConfig {
5477
5477
  * <code>Strategy</code> within the <code>HyperParameterTuningJobConfig</code> API.</p>
5478
5478
  * @public
5479
5479
  */
5480
- HyperbandStrategyConfig?: HyperbandStrategyConfig;
5480
+ HyperbandStrategyConfig?: HyperbandStrategyConfig | undefined;
5481
5481
  }
5482
5482
  /**
5483
5483
  * @public
@@ -5500,20 +5500,20 @@ export interface TuningJobCompletionCriteria {
5500
5500
  * <p>The value of the objective metric.</p>
5501
5501
  * @public
5502
5502
  */
5503
- TargetObjectiveMetricValue?: number;
5503
+ TargetObjectiveMetricValue?: number | undefined;
5504
5504
  /**
5505
5505
  * <p>A flag to stop your hyperparameter tuning job if model performance fails to improve as
5506
5506
  * evaluated against an objective function.</p>
5507
5507
  * @public
5508
5508
  */
5509
- BestObjectiveNotImproving?: BestObjectiveNotImproving;
5509
+ BestObjectiveNotImproving?: BestObjectiveNotImproving | undefined;
5510
5510
  /**
5511
5511
  * <p>A flag to top your hyperparameter tuning job if automatic model tuning (AMT) has
5512
5512
  * detected that your model has converged as evaluated against your objective
5513
5513
  * function.</p>
5514
5514
  * @public
5515
5515
  */
5516
- ConvergenceDetected?: ConvergenceDetected;
5516
+ ConvergenceDetected?: ConvergenceDetected | undefined;
5517
5517
  }
5518
5518
  /**
5519
5519
  * <p>Configures a hyperparameter tuning job.</p>
@@ -5534,13 +5534,13 @@ export interface HyperParameterTuningJobConfig {
5534
5534
  * <code>HyperParameterTuningJobConfig</code>.</p>
5535
5535
  * @public
5536
5536
  */
5537
- StrategyConfig?: HyperParameterTuningJobStrategyConfig;
5537
+ StrategyConfig?: HyperParameterTuningJobStrategyConfig | undefined;
5538
5538
  /**
5539
5539
  * <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobObjective.html">HyperParameterTuningJobObjective</a> specifies the objective metric used to
5540
5540
  * evaluate the performance of training jobs launched by this tuning job.</p>
5541
5541
  * @public
5542
5542
  */
5543
- HyperParameterTuningJobObjective?: HyperParameterTuningJobObjective;
5543
+ HyperParameterTuningJobObjective?: HyperParameterTuningJobObjective | undefined;
5544
5544
  /**
5545
5545
  * <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ResourceLimits.html">ResourceLimits</a>
5546
5546
  * object that specifies the maximum number of training and parallel training jobs that can
@@ -5555,7 +5555,7 @@ export interface HyperParameterTuningJobConfig {
5555
5555
  * objective metric. </p>
5556
5556
  * @public
5557
5557
  */
5558
- ParameterRanges?: ParameterRanges;
5558
+ ParameterRanges?: ParameterRanges | undefined;
5559
5559
  /**
5560
5560
  * <p>Specifies whether to use early stopping for training jobs launched by the
5561
5561
  * hyperparameter tuning job. Because the <code>Hyperband</code> strategy has its own
@@ -5577,19 +5577,19 @@ export interface HyperParameterTuningJobConfig {
5577
5577
  * </dl>
5578
5578
  * @public
5579
5579
  */
5580
- TrainingJobEarlyStoppingType?: TrainingJobEarlyStoppingType;
5580
+ TrainingJobEarlyStoppingType?: TrainingJobEarlyStoppingType | undefined;
5581
5581
  /**
5582
5582
  * <p>The tuning job's completion criteria.</p>
5583
5583
  * @public
5584
5584
  */
5585
- TuningJobCompletionCriteria?: TuningJobCompletionCriteria;
5585
+ TuningJobCompletionCriteria?: TuningJobCompletionCriteria | undefined;
5586
5586
  /**
5587
5587
  * <p>A value used to initialize a pseudo-random number generator. Setting a random seed and
5588
5588
  * using the same seed later for the same tuning job will allow hyperparameter optimization
5589
5589
  * to find more a consistent hyperparameter configuration between the two runs.</p>
5590
5590
  * @public
5591
5591
  */
5592
- RandomSeed?: number;
5592
+ RandomSeed?: number | undefined;
5593
5593
  }
5594
5594
  /**
5595
5595
  * <p>Specifies
@@ -5608,7 +5608,7 @@ export interface HyperParameterAlgorithmSpecification {
5608
5608
  * Amazon SageMaker</a>.</p>
5609
5609
  * @public
5610
5610
  */
5611
- TrainingImage?: string;
5611
+ TrainingImage?: string | undefined;
5612
5612
  /**
5613
5613
  * <p>The training input mode that the algorithm supports. For more information about input
5614
5614
  * modes, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html">Algorithms</a>.</p>
@@ -5652,14 +5652,14 @@ export interface HyperParameterAlgorithmSpecification {
5652
5652
  * <code>TrainingImage</code>.</p>
5653
5653
  * @public
5654
5654
  */
5655
- AlgorithmName?: string;
5655
+ AlgorithmName?: string | undefined;
5656
5656
  /**
5657
5657
  * <p>An array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_MetricDefinition.html">MetricDefinition</a> objects that specify the
5658
5658
  * metrics
5659
5659
  * that the algorithm emits.</p>
5660
5660
  * @public
5661
5661
  */
5662
- MetricDefinitions?: MetricDefinition[];
5662
+ MetricDefinitions?: MetricDefinition[] | undefined;
5663
5663
  }
5664
5664
  /**
5665
5665
  * @public
@@ -5727,12 +5727,12 @@ export interface HyperParameterTuningResourceConfig {
5727
5727
  * instance types</a> for more information.</p>
5728
5728
  * @public
5729
5729
  */
5730
- InstanceType?: TrainingInstanceType;
5730
+ InstanceType?: TrainingInstanceType | undefined;
5731
5731
  /**
5732
5732
  * <p>The number of compute instances of type <code>InstanceType</code> to use. For <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/data-parallel-use-api.html">distributed training</a>, select a value greater than 1.</p>
5733
5733
  * @public
5734
5734
  */
5735
- InstanceCount?: number;
5735
+ InstanceCount?: number | undefined;
5736
5736
  /**
5737
5737
  * <p>The volume size in GB for the storage volume to be used in processing hyperparameter
5738
5738
  * optimization jobs (optional). These volumes store model artifacts, incremental states
@@ -5748,7 +5748,7 @@ export interface HyperParameterTuningResourceConfig {
5748
5748
  * </note>
5749
5749
  * @public
5750
5750
  */
5751
- VolumeSizeInGB?: number;
5751
+ VolumeSizeInGB?: number | undefined;
5752
5752
  /**
5753
5753
  * <p>A key used by Amazon Web Services Key Management Service to encrypt data on the storage volume
5754
5754
  * attached to the compute instances used to run the training job. You can use either of
@@ -5769,13 +5769,13 @@ export interface HyperParameterTuningResourceConfig {
5769
5769
  * encryption</a> for more information.</p>
5770
5770
  * @public
5771
5771
  */
5772
- VolumeKmsKeyId?: string;
5772
+ VolumeKmsKeyId?: string | undefined;
5773
5773
  /**
5774
5774
  * <p>The strategy that determines the order of preference for resources specified in
5775
5775
  * <code>InstanceConfigs</code> used in hyperparameter optimization.</p>
5776
5776
  * @public
5777
5777
  */
5778
- AllocationStrategy?: HyperParameterTuningAllocationStrategy;
5778
+ AllocationStrategy?: HyperParameterTuningAllocationStrategy | undefined;
5779
5779
  /**
5780
5780
  * <p>A list containing the configuration(s) for one or more resources for processing
5781
5781
  * hyperparameter jobs. These resources include compute instances and storage volumes to
@@ -5793,7 +5793,7 @@ export interface HyperParameterTuningResourceConfig {
5793
5793
  * </note>
5794
5794
  * @public
5795
5795
  */
5796
- InstanceConfigs?: HyperParameterTuningInstanceConfig[];
5796
+ InstanceConfigs?: HyperParameterTuningInstanceConfig[] | undefined;
5797
5797
  }
5798
5798
  /**
5799
5799
  * <p>The retry strategy to use when a training job fails due to an
@@ -5821,7 +5821,7 @@ export interface HyperParameterTrainingJobDefinition {
5821
5821
  * <p>The job definition name.</p>
5822
5822
  * @public
5823
5823
  */
5824
- DefinitionName?: string;
5824
+ DefinitionName?: string | undefined;
5825
5825
  /**
5826
5826
  * <p>Defines the objective metric for a hyperparameter tuning job. Hyperparameter tuning
5827
5827
  * uses the value of this metric to evaluate the training jobs it launches, and returns the
@@ -5830,7 +5830,7 @@ export interface HyperParameterTrainingJobDefinition {
5830
5830
  * define a custom objective metric, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-define-metrics-variables.html">Define metrics and environment variables</a>.</p>
5831
5831
  * @public
5832
5832
  */
5833
- TuningObjective?: HyperParameterTuningJobObjective;
5833
+ TuningObjective?: HyperParameterTuningJobObjective | undefined;
5834
5834
  /**
5835
5835
  * <p>Specifies ranges of integer, continuous, and categorical hyperparameters that a
5836
5836
  * hyperparameter tuning job searches. The hyperparameter tuning job launches training jobs
@@ -5845,14 +5845,14 @@ export interface HyperParameterTrainingJobDefinition {
5845
5845
  * </note>
5846
5846
  * @public
5847
5847
  */
5848
- HyperParameterRanges?: ParameterRanges;
5848
+ HyperParameterRanges?: ParameterRanges | undefined;
5849
5849
  /**
5850
5850
  * <p>Specifies the values of hyperparameters
5851
5851
  * that
5852
5852
  * do not change for the tuning job.</p>
5853
5853
  * @public
5854
5854
  */
5855
- StaticHyperParameters?: Record<string, string>;
5855
+ StaticHyperParameters?: Record<string, string> | undefined;
5856
5856
  /**
5857
5857
  * <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterAlgorithmSpecification.html">HyperParameterAlgorithmSpecification</a> object that
5858
5858
  * specifies
@@ -5876,7 +5876,7 @@ export interface HyperParameterTrainingJobDefinition {
5876
5876
  * input for the training jobs that the tuning job launches.</p>
5877
5877
  * @public
5878
5878
  */
5879
- InputDataConfig?: Channel[];
5879
+ InputDataConfig?: Channel[] | undefined;
5880
5880
  /**
5881
5881
  * <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> object that specifies the VPC that you want the training jobs
5882
5882
  * that this hyperparameter tuning job launches to connect to. Control access to and from
@@ -5884,7 +5884,7 @@ export interface HyperParameterTrainingJobDefinition {
5884
5884
  * by Using an Amazon Virtual Private Cloud</a>.</p>
5885
5885
  * @public
5886
5886
  */
5887
- VpcConfig?: VpcConfig;
5887
+ VpcConfig?: VpcConfig | undefined;
5888
5888
  /**
5889
5889
  * <p>Specifies the path to the Amazon S3 bucket where you
5890
5890
  * store
@@ -5912,7 +5912,7 @@ export interface HyperParameterTrainingJobDefinition {
5912
5912
  * </note>
5913
5913
  * @public
5914
5914
  */
5915
- ResourceConfig?: ResourceConfig;
5915
+ ResourceConfig?: ResourceConfig | undefined;
5916
5916
  /**
5917
5917
  * <p>The configuration for the hyperparameter tuning resources, including the compute
5918
5918
  * instances and storage volumes, used for training jobs launched by the tuning job. By
@@ -5922,7 +5922,7 @@ export interface HyperParameterTrainingJobDefinition {
5922
5922
  * the storage volume (optional).</p>
5923
5923
  * @public
5924
5924
  */
5925
- HyperParameterTuningResourceConfig?: HyperParameterTuningResourceConfig;
5925
+ HyperParameterTuningResourceConfig?: HyperParameterTuningResourceConfig | undefined;
5926
5926
  /**
5927
5927
  * <p>Specifies a limit to how long a model hyperparameter training job can run. It also
5928
5928
  * specifies how long a managed spot training job has to complete. When the job reaches the
@@ -5938,7 +5938,7 @@ export interface HyperParameterTrainingJobDefinition {
5938
5938
  * the training container does not have network access.</p>
5939
5939
  * @public
5940
5940
  */
5941
- EnableNetworkIsolation?: boolean;
5941
+ EnableNetworkIsolation?: boolean | undefined;
5942
5942
  /**
5943
5943
  * <p>To encrypt all communications between ML compute instances in distributed training,
5944
5944
  * choose <code>True</code>. Encryption provides greater security for distributed training,
@@ -5947,25 +5947,25 @@ export interface HyperParameterTrainingJobDefinition {
5947
5947
  * distributed training.</p>
5948
5948
  * @public
5949
5949
  */
5950
- EnableInterContainerTrafficEncryption?: boolean;
5950
+ EnableInterContainerTrafficEncryption?: boolean | undefined;
5951
5951
  /**
5952
5952
  * <p>A Boolean indicating whether managed spot training is enabled (<code>True</code>) or
5953
5953
  * not (<code>False</code>).</p>
5954
5954
  * @public
5955
5955
  */
5956
- EnableManagedSpotTraining?: boolean;
5956
+ EnableManagedSpotTraining?: boolean | undefined;
5957
5957
  /**
5958
5958
  * <p>Contains information about the output location for managed spot training checkpoint
5959
5959
  * data. </p>
5960
5960
  * @public
5961
5961
  */
5962
- CheckpointConfig?: CheckpointConfig;
5962
+ CheckpointConfig?: CheckpointConfig | undefined;
5963
5963
  /**
5964
5964
  * <p>The number of times to retry the job when the job fails due to an
5965
5965
  * <code>InternalServerError</code>.</p>
5966
5966
  * @public
5967
5967
  */
5968
- RetryStrategy?: RetryStrategy;
5968
+ RetryStrategy?: RetryStrategy | undefined;
5969
5969
  /**
5970
5970
  * <p>An environment variable that you can pass into the SageMaker <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html">CreateTrainingJob</a> API. You can use an existing <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html#sagemaker-CreateTrainingJob-request-Environment">environment variable from the training container</a> or use your own. See
5971
5971
  * <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-define-metrics-variables.html">Define metrics and variables</a> for more information.</p>
@@ -5978,7 +5978,7 @@ export interface HyperParameterTrainingJobDefinition {
5978
5978
  * </note>
5979
5979
  * @public
5980
5980
  */
5981
- Environment?: Record<string, string>;
5981
+ Environment?: Record<string, string> | undefined;
5982
5982
  }
5983
5983
  /**
5984
5984
  * <p>A previously completed or stopped hyperparameter tuning job to be used as a starting
@@ -5991,7 +5991,7 @@ export interface ParentHyperParameterTuningJob {
5991
5991
  * hyperparameter tuning job.</p>
5992
5992
  * @public
5993
5993
  */
5994
- HyperParameterTuningJobName?: string;
5994
+ HyperParameterTuningJobName?: string | undefined;
5995
5995
  }
5996
5996
  /**
5997
5997
  * @public
@@ -6095,13 +6095,13 @@ export interface CreateHyperParameterTuningJobRequest {
6095
6095
  * condition.</p>
6096
6096
  * @public
6097
6097
  */
6098
- TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
6098
+ TrainingJobDefinition?: HyperParameterTrainingJobDefinition | undefined;
6099
6099
  /**
6100
6100
  * <p>A list of the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTrainingJobDefinition.html">HyperParameterTrainingJobDefinition</a> objects launched for this tuning
6101
6101
  * job.</p>
6102
6102
  * @public
6103
6103
  */
6104
- TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
6104
+ TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[] | undefined;
6105
6105
  /**
6106
6106
  * <p>Specifies the configuration for starting the hyperparameter tuning job using one or
6107
6107
  * more previous tuning jobs as a starting point. The results of previous tuning jobs are
@@ -6120,7 +6120,7 @@ export interface CreateHyperParameterTuningJobRequest {
6120
6120
  * </note>
6121
6121
  * @public
6122
6122
  */
6123
- WarmStartConfig?: HyperParameterTuningJobWarmStartConfig;
6123
+ WarmStartConfig?: HyperParameterTuningJobWarmStartConfig | undefined;
6124
6124
  /**
6125
6125
  * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
6126
6126
  * resources in different ways, for example, by purpose, owner, or environment. For more
@@ -6129,7 +6129,7 @@ export interface CreateHyperParameterTuningJobRequest {
6129
6129
  * tuning job launches.</p>
6130
6130
  * @public
6131
6131
  */
6132
- Tags?: Tag[];
6132
+ Tags?: Tag[] | undefined;
6133
6133
  /**
6134
6134
  * <p>Configures SageMaker Automatic model tuning (AMT) to automatically find optimal
6135
6135
  * parameters for the following fields:</p>
@@ -6170,7 +6170,7 @@ export interface CreateHyperParameterTuningJobRequest {
6170
6170
  * </ul>
6171
6171
  * @public
6172
6172
  */
6173
- Autotune?: Autotune;
6173
+ Autotune?: Autotune | undefined;
6174
6174
  }
6175
6175
  /**
6176
6176
  * @public
@@ -6191,12 +6191,12 @@ export interface CreateImageRequest {
6191
6191
  * <p>The description of the image.</p>
6192
6192
  * @public
6193
6193
  */
6194
- Description?: string;
6194
+ Description?: string | undefined;
6195
6195
  /**
6196
6196
  * <p>The display name of the image. If not provided, <code>ImageName</code> is displayed.</p>
6197
6197
  * @public
6198
6198
  */
6199
- DisplayName?: string;
6199
+ DisplayName?: string | undefined;
6200
6200
  /**
6201
6201
  * <p>The name of the image. Must be unique to your account.</p>
6202
6202
  * @public
@@ -6211,7 +6211,7 @@ export interface CreateImageRequest {
6211
6211
  * <p>A list of tags to apply to the image.</p>
6212
6212
  * @public
6213
6213
  */
6214
- Tags?: Tag[];
6214
+ Tags?: Tag[] | undefined;
6215
6215
  }
6216
6216
  /**
6217
6217
  * @public
@@ -6221,7 +6221,7 @@ export interface CreateImageResponse {
6221
6221
  * <p>The ARN of the image.</p>
6222
6222
  * @public
6223
6223
  */
6224
- ImageArn?: string;
6224
+ ImageArn?: string | undefined;
6225
6225
  }
6226
6226
  /**
6227
6227
  * @public
@@ -6280,7 +6280,7 @@ export interface CreateImageVersionRequest {
6280
6280
  * (Boto3), add a unique value to the call.</p>
6281
6281
  * @public
6282
6282
  */
6283
- ClientToken?: string;
6283
+ ClientToken?: string | undefined;
6284
6284
  /**
6285
6285
  * <p>The <code>ImageName</code> of the <code>Image</code> to create a version of.</p>
6286
6286
  * @public
@@ -6290,7 +6290,7 @@ export interface CreateImageVersionRequest {
6290
6290
  * <p>A list of aliases created with the image version.</p>
6291
6291
  * @public
6292
6292
  */
6293
- Aliases?: string[];
6293
+ Aliases?: string[] | undefined;
6294
6294
  /**
6295
6295
  * <p>The stability of the image version, specified by the maintainer.</p>
6296
6296
  * <ul>
@@ -6313,7 +6313,7 @@ export interface CreateImageVersionRequest {
6313
6313
  * </ul>
6314
6314
  * @public
6315
6315
  */
6316
- VendorGuidance?: VendorGuidance;
6316
+ VendorGuidance?: VendorGuidance | undefined;
6317
6317
  /**
6318
6318
  * <p>Indicates SageMaker job type compatibility.</p>
6319
6319
  * <ul>
@@ -6332,17 +6332,17 @@ export interface CreateImageVersionRequest {
6332
6332
  * </ul>
6333
6333
  * @public
6334
6334
  */
6335
- JobType?: JobType;
6335
+ JobType?: JobType | undefined;
6336
6336
  /**
6337
6337
  * <p>The machine learning framework vended in the image version.</p>
6338
6338
  * @public
6339
6339
  */
6340
- MLFramework?: string;
6340
+ MLFramework?: string | undefined;
6341
6341
  /**
6342
6342
  * <p>The supported programming language and its version.</p>
6343
6343
  * @public
6344
6344
  */
6345
- ProgrammingLang?: string;
6345
+ ProgrammingLang?: string | undefined;
6346
6346
  /**
6347
6347
  * <p>Indicates CPU or GPU compatibility.</p>
6348
6348
  * <ul>
@@ -6357,17 +6357,17 @@ export interface CreateImageVersionRequest {
6357
6357
  * </ul>
6358
6358
  * @public
6359
6359
  */
6360
- Processor?: Processor;
6360
+ Processor?: Processor | undefined;
6361
6361
  /**
6362
6362
  * <p>Indicates Horovod compatibility.</p>
6363
6363
  * @public
6364
6364
  */
6365
- Horovod?: boolean;
6365
+ Horovod?: boolean | undefined;
6366
6366
  /**
6367
6367
  * <p>The maintainer description of the image version.</p>
6368
6368
  * @public
6369
6369
  */
6370
- ReleaseNotes?: string;
6370
+ ReleaseNotes?: string | undefined;
6371
6371
  }
6372
6372
  /**
6373
6373
  * @public
@@ -6377,7 +6377,7 @@ export interface CreateImageVersionResponse {
6377
6377
  * <p>The ARN of the image version.</p>
6378
6378
  * @public
6379
6379
  */
6380
- ImageVersionArn?: string;
6380
+ ImageVersionArn?: string | undefined;
6381
6381
  }
6382
6382
  /**
6383
6383
  * <p>Runtime settings for a model that is deployed with an inference component.</p>
@@ -6402,13 +6402,13 @@ export interface InferenceComponentComputeResourceRequirements {
6402
6402
  * component.</p>
6403
6403
  * @public
6404
6404
  */
6405
- NumberOfCpuCoresRequired?: number;
6405
+ NumberOfCpuCoresRequired?: number | undefined;
6406
6406
  /**
6407
6407
  * <p>The number of accelerators to allocate to run a model that you assign to an inference
6408
6408
  * component. Accelerators include GPUs and Amazon Web Services Inferentia.</p>
6409
6409
  * @public
6410
6410
  */
6411
- NumberOfAcceleratorDevicesRequired?: number;
6411
+ NumberOfAcceleratorDevicesRequired?: number | undefined;
6412
6412
  /**
6413
6413
  * <p>The minimum MB of memory to allocate to run a model that you assign to an inference
6414
6414
  * component.</p>
@@ -6420,7 +6420,7 @@ export interface InferenceComponentComputeResourceRequirements {
6420
6420
  * component.</p>
6421
6421
  * @public
6422
6422
  */
6423
- MaxMemoryRequiredInMb?: number;
6423
+ MaxMemoryRequiredInMb?: number | undefined;
6424
6424
  }
6425
6425
  /**
6426
6426
  * <p>Defines a container that provides the runtime environment for a model that you deploy
@@ -6432,21 +6432,21 @@ export interface InferenceComponentContainerSpecification {
6432
6432
  * <p>The Amazon Elastic Container Registry (Amazon ECR) path where the Docker image for the model is stored.</p>
6433
6433
  * @public
6434
6434
  */
6435
- Image?: string;
6435
+ Image?: string | undefined;
6436
6436
  /**
6437
6437
  * <p>The Amazon S3 path where the model artifacts, which result from model training,
6438
6438
  * are stored. This path must point to a single gzip compressed tar archive (.tar.gz
6439
6439
  * suffix).</p>
6440
6440
  * @public
6441
6441
  */
6442
- ArtifactUrl?: string;
6442
+ ArtifactUrl?: string | undefined;
6443
6443
  /**
6444
6444
  * <p>The environment variables to set in the Docker container. Each key and value in the
6445
6445
  * Environment string-to-string map can have length of up to 1024. We support up to 16 entries
6446
6446
  * in the map.</p>
6447
6447
  * @public
6448
6448
  */
6449
- Environment?: Record<string, string>;
6449
+ Environment?: Record<string, string> | undefined;
6450
6450
  }
6451
6451
  /**
6452
6452
  * <p>Settings that take effect while the model container starts up.</p>
@@ -6459,13 +6459,13 @@ export interface InferenceComponentStartupParameters {
6459
6459
  * component.</p>
6460
6460
  * @public
6461
6461
  */
6462
- ModelDataDownloadTimeoutInSeconds?: number;
6462
+ ModelDataDownloadTimeoutInSeconds?: number | undefined;
6463
6463
  /**
6464
6464
  * <p>The timeout value, in seconds, for your inference container to pass health check by
6465
6465
  * Amazon S3 Hosting. For more information about health check, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-inference-code.html#your-algorithms-inference-algo-ping-requests">How Your Container Should Respond to Health Check (Ping) Requests</a>.</p>
6466
6466
  * @public
6467
6467
  */
6468
- ContainerStartupHealthCheckTimeoutInSeconds?: number;
6468
+ ContainerStartupHealthCheckTimeoutInSeconds?: number | undefined;
6469
6469
  }
6470
6470
  /**
6471
6471
  * <p>Details about the resources to deploy with this inference component, including the
@@ -6478,18 +6478,18 @@ export interface InferenceComponentSpecification {
6478
6478
  * deploy with the inference component.</p>
6479
6479
  * @public
6480
6480
  */
6481
- ModelName?: string;
6481
+ ModelName?: string | undefined;
6482
6482
  /**
6483
6483
  * <p>Defines a container that provides the runtime environment for a model that you deploy
6484
6484
  * with an inference component.</p>
6485
6485
  * @public
6486
6486
  */
6487
- Container?: InferenceComponentContainerSpecification;
6487
+ Container?: InferenceComponentContainerSpecification | undefined;
6488
6488
  /**
6489
6489
  * <p>Settings that take effect while the model container starts up.</p>
6490
6490
  * @public
6491
6491
  */
6492
- StartupParameters?: InferenceComponentStartupParameters;
6492
+ StartupParameters?: InferenceComponentStartupParameters | undefined;
6493
6493
  /**
6494
6494
  * <p>The compute resources allocated to run the model assigned
6495
6495
  * to the inference component.</p>
@@ -6534,7 +6534,7 @@ export interface CreateInferenceComponentInput {
6534
6534
  * Reference</i>.</p>
6535
6535
  * @public
6536
6536
  */
6537
- Tags?: Tag[];
6537
+ Tags?: Tag[] | undefined;
6538
6538
  }
6539
6539
  /**
6540
6540
  * @public
@@ -6563,13 +6563,13 @@ export interface InferenceExperimentDataStorageConfig {
6563
6563
  * </p>
6564
6564
  * @public
6565
6565
  */
6566
- KmsKey?: string;
6566
+ KmsKey?: string | undefined;
6567
6567
  /**
6568
6568
  * <p>Configuration specifying how to treat different headers. If no headers are specified
6569
6569
  * Amazon SageMaker will by default base64 encode when capturing the data.</p>
6570
6570
  * @public
6571
6571
  */
6572
- ContentType?: CaptureContentTypeHeader;
6572
+ ContentType?: CaptureContentTypeHeader | undefined;
6573
6573
  }
6574
6574
  /**
6575
6575
  * @public
@@ -6826,12 +6826,12 @@ export interface InferenceExperimentSchedule {
6826
6826
  * <p>The timestamp at which the inference experiment started or will start.</p>
6827
6827
  * @public
6828
6828
  */
6829
- StartTime?: Date;
6829
+ StartTime?: Date | undefined;
6830
6830
  /**
6831
6831
  * <p>The timestamp at which the inference experiment ended or will end.</p>
6832
6832
  * @public
6833
6833
  */
6834
- EndTime?: Date;
6834
+ EndTime?: Date | undefined;
6835
6835
  }
6836
6836
  /**
6837
6837
  * <p>The name and sampling percentage of a shadow variant.</p>
@@ -6915,12 +6915,12 @@ export interface CreateInferenceExperimentRequest {
6915
6915
  * </p>
6916
6916
  * @public
6917
6917
  */
6918
- Schedule?: InferenceExperimentSchedule;
6918
+ Schedule?: InferenceExperimentSchedule | undefined;
6919
6919
  /**
6920
6920
  * <p>A description for the inference experiment.</p>
6921
6921
  * @public
6922
6922
  */
6923
- Description?: string;
6923
+ Description?: string | undefined;
6924
6924
  /**
6925
6925
  * <p>
6926
6926
  * The ARN of the IAM role that Amazon SageMaker can assume to access model artifacts and container images, and manage
@@ -6954,7 +6954,7 @@ export interface CreateInferenceExperimentRequest {
6954
6954
  * </p>
6955
6955
  * @public
6956
6956
  */
6957
- DataStorageConfig?: InferenceExperimentDataStorageConfig;
6957
+ DataStorageConfig?: InferenceExperimentDataStorageConfig | undefined;
6958
6958
  /**
6959
6959
  * <p>
6960
6960
  * The configuration of <code>ShadowMode</code> inference experiment type. Use this field to specify a
@@ -7013,7 +7013,7 @@ export interface CreateInferenceExperimentRequest {
7013
7013
  * </p>
7014
7014
  * @public
7015
7015
  */
7016
- KmsKey?: string;
7016
+ KmsKey?: string | undefined;
7017
7017
  /**
7018
7018
  * <p>
7019
7019
  * Array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different
@@ -7021,7 +7021,7 @@ export interface CreateInferenceExperimentRequest {
7021
7021
  * </p>
7022
7022
  * @public
7023
7023
  */
7024
- Tags?: Tag[];
7024
+ Tags?: Tag[] | undefined;
7025
7025
  }
7026
7026
  /**
7027
7027
  * @public
@@ -7042,12 +7042,12 @@ export interface RecommendationJobPayloadConfig {
7042
7042
  * <p>The Amazon Simple Storage Service (Amazon S3) path where the sample payload is stored. This path must point to a single gzip compressed tar archive (.tar.gz suffix).</p>
7043
7043
  * @public
7044
7044
  */
7045
- SamplePayloadUrl?: string;
7045
+ SamplePayloadUrl?: string | undefined;
7046
7046
  /**
7047
7047
  * <p>The supported MIME types for the input data.</p>
7048
7048
  * @public
7049
7049
  */
7050
- SupportedContentTypes?: string[];
7050
+ SupportedContentTypes?: string[] | undefined;
7051
7051
  }
7052
7052
  /**
7053
7053
  * @public
@@ -7076,7 +7076,7 @@ export interface RecommendationJobContainerConfig {
7076
7076
  * </p>
7077
7077
  * @public
7078
7078
  */
7079
- Domain?: string;
7079
+ Domain?: string | undefined;
7080
7080
  /**
7081
7081
  * <p>The machine learning task that the model accomplishes.</p>
7082
7082
  * <p>Valid Values: <code>IMAGE_CLASSIFICATION | OBJECT_DETECTION
@@ -7085,24 +7085,24 @@ export interface RecommendationJobContainerConfig {
7085
7085
  * </p>
7086
7086
  * @public
7087
7087
  */
7088
- Task?: string;
7088
+ Task?: string | undefined;
7089
7089
  /**
7090
7090
  * <p>The machine learning framework of the container image.</p>
7091
7091
  * <p>Valid Values: <code>TENSORFLOW | PYTORCH | XGBOOST | SAGEMAKER-SCIKIT-LEARN</code>
7092
7092
  * </p>
7093
7093
  * @public
7094
7094
  */
7095
- Framework?: string;
7095
+ Framework?: string | undefined;
7096
7096
  /**
7097
7097
  * <p>The framework version of the container image.</p>
7098
7098
  * @public
7099
7099
  */
7100
- FrameworkVersion?: string;
7100
+ FrameworkVersion?: string | undefined;
7101
7101
  /**
7102
7102
  * <p>Specifies the <code>SamplePayloadUrl</code> and all other sample payload-related fields.</p>
7103
7103
  * @public
7104
7104
  */
7105
- PayloadConfig?: RecommendationJobPayloadConfig;
7105
+ PayloadConfig?: RecommendationJobPayloadConfig | undefined;
7106
7106
  /**
7107
7107
  * <p>The name of a pre-trained machine learning model benchmarked by Amazon SageMaker Inference Recommender that matches your model.</p>
7108
7108
  * <p>Valid Values: <code>efficientnetb7 | unet | xgboost | faster-rcnn-resnet101 | nasnetlarge | vgg16 | inception-v3 | mask-rcnn | sagemaker-scikit-learn |
@@ -7110,31 +7110,31 @@ export interface RecommendationJobContainerConfig {
7110
7110
  * </p>
7111
7111
  * @public
7112
7112
  */
7113
- NearestModelName?: string;
7113
+ NearestModelName?: string | undefined;
7114
7114
  /**
7115
7115
  * <p>A list of the instance types that are used to generate inferences in real-time.</p>
7116
7116
  * @public
7117
7117
  */
7118
- SupportedInstanceTypes?: string[];
7118
+ SupportedInstanceTypes?: string[] | undefined;
7119
7119
  /**
7120
7120
  * <p>The endpoint type to receive recommendations for. By default this is null, and the results of
7121
7121
  * the inference recommendation job return a combined list of both real-time and serverless benchmarks.
7122
7122
  * By specifying a value for this field, you can receive a longer list of benchmarks for the desired endpoint type.</p>
7123
7123
  * @public
7124
7124
  */
7125
- SupportedEndpointType?: RecommendationJobSupportedEndpointType;
7125
+ SupportedEndpointType?: RecommendationJobSupportedEndpointType | undefined;
7126
7126
  /**
7127
7127
  * <p>Specifies the name and shape of the expected data inputs for your trained model with a JSON dictionary form.
7128
7128
  * This field is used for optimizing your model using SageMaker Neo. For more information, see
7129
7129
  * <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_InputConfig.html#sagemaker-Type-InputConfig-DataInputConfig">DataInputConfig</a>.</p>
7130
7130
  * @public
7131
7131
  */
7132
- DataInputConfig?: string;
7132
+ DataInputConfig?: string | undefined;
7133
7133
  /**
7134
7134
  * <p>The supported MIME types for the output data.</p>
7135
7135
  * @public
7136
7136
  */
7137
- SupportedResponseMIMETypes?: string[];
7137
+ SupportedResponseMIMETypes?: string[] | undefined;
7138
7138
  }
7139
7139
  /**
7140
7140
  * <p>Specifies the range of environment parameters</p>
@@ -7145,7 +7145,7 @@ export interface EnvironmentParameterRanges {
7145
7145
  * <p>Specified a list of parameters for each category.</p>
7146
7146
  * @public
7147
7147
  */
7148
- CategoricalParameterRanges?: CategoricalParameter[];
7148
+ CategoricalParameterRanges?: CategoricalParameter[] | undefined;
7149
7149
  }
7150
7150
  /**
7151
7151
  * <p>The endpoint configuration for the load test.</p>
@@ -7156,22 +7156,22 @@ export interface EndpointInputConfiguration {
7156
7156
  * <p>The instance types to use for the load test.</p>
7157
7157
  * @public
7158
7158
  */
7159
- InstanceType?: ProductionVariantInstanceType;
7159
+ InstanceType?: ProductionVariantInstanceType | undefined;
7160
7160
  /**
7161
7161
  * <p>Specifies the serverless configuration for an endpoint variant.</p>
7162
7162
  * @public
7163
7163
  */
7164
- ServerlessConfig?: ProductionVariantServerlessConfig;
7164
+ ServerlessConfig?: ProductionVariantServerlessConfig | undefined;
7165
7165
  /**
7166
7166
  * <p>The inference specification name in the model package version.</p>
7167
7167
  * @public
7168
7168
  */
7169
- InferenceSpecificationName?: string;
7169
+ InferenceSpecificationName?: string | undefined;
7170
7170
  /**
7171
7171
  * <p> The parameter you want to benchmark against.</p>
7172
7172
  * @public
7173
7173
  */
7174
- EnvironmentParameterRanges?: EnvironmentParameterRanges;
7174
+ EnvironmentParameterRanges?: EnvironmentParameterRanges | undefined;
7175
7175
  }
7176
7176
  /**
7177
7177
  * <p>Details about a customer endpoint that was compared in an Inference Recommender job.</p>
@@ -7182,7 +7182,7 @@ export interface EndpointInfo {
7182
7182
  * <p>The name of a customer's endpoint.</p>
7183
7183
  * @public
7184
7184
  */
7185
- EndpointName?: string;
7185
+ EndpointName?: string | undefined;
7186
7186
  }
7187
7187
  /**
7188
7188
  * <p>Specifies the maximum number of jobs that can run in parallel
@@ -7194,12 +7194,12 @@ export interface RecommendationJobResourceLimit {
7194
7194
  * <p>Defines the maximum number of load tests.</p>
7195
7195
  * @public
7196
7196
  */
7197
- MaxNumberOfTests?: number;
7197
+ MaxNumberOfTests?: number | undefined;
7198
7198
  /**
7199
7199
  * <p>Defines the maximum number of parallel load tests.</p>
7200
7200
  * @public
7201
7201
  */
7202
- MaxParallelOfTests?: number;
7202
+ MaxParallelOfTests?: number | undefined;
7203
7203
  }
7204
7204
  /**
7205
7205
  * <p>Defines the traffic pattern.</p>
@@ -7210,18 +7210,18 @@ export interface Phase {
7210
7210
  * <p>Specifies how many concurrent users to start with. The value should be between 1 and 3.</p>
7211
7211
  * @public
7212
7212
  */
7213
- InitialNumberOfUsers?: number;
7213
+ InitialNumberOfUsers?: number | undefined;
7214
7214
  /**
7215
7215
  * <p>Specified how many new users to spawn in a minute.</p>
7216
7216
  * @public
7217
7217
  */
7218
- SpawnRate?: number;
7218
+ SpawnRate?: number | undefined;
7219
7219
  /**
7220
7220
  * <p>Specifies how long a traffic phase should be. For custom load tests, the value should be between 120 and 3600.
7221
7221
  * This value should not exceed <code>JobDurationInSeconds</code>.</p>
7222
7222
  * @public
7223
7223
  */
7224
- DurationInSeconds?: number;
7224
+ DurationInSeconds?: number | undefined;
7225
7225
  }
7226
7226
  /**
7227
7227
  * <p>Defines the stairs traffic pattern for an Inference Recommender load test. This pattern
@@ -7234,17 +7234,17 @@ export interface Stairs {
7234
7234
  * <p>Defines how long each traffic step should be.</p>
7235
7235
  * @public
7236
7236
  */
7237
- DurationInSeconds?: number;
7237
+ DurationInSeconds?: number | undefined;
7238
7238
  /**
7239
7239
  * <p>Specifies how many steps to perform during traffic.</p>
7240
7240
  * @public
7241
7241
  */
7242
- NumberOfSteps?: number;
7242
+ NumberOfSteps?: number | undefined;
7243
7243
  /**
7244
7244
  * <p>Specifies how many new users to spawn in each step.</p>
7245
7245
  * @public
7246
7246
  */
7247
- UsersPerStep?: number;
7247
+ UsersPerStep?: number | undefined;
7248
7248
  }
7249
7249
  /**
7250
7250
  * @public
@@ -7267,17 +7267,17 @@ export interface TrafficPattern {
7267
7267
  * <p>Defines the traffic patterns. Choose either <code>PHASES</code> or <code>STAIRS</code>.</p>
7268
7268
  * @public
7269
7269
  */
7270
- TrafficType?: TrafficType;
7270
+ TrafficType?: TrafficType | undefined;
7271
7271
  /**
7272
7272
  * <p>Defines the phases traffic specification.</p>
7273
7273
  * @public
7274
7274
  */
7275
- Phases?: Phase[];
7275
+ Phases?: Phase[] | undefined;
7276
7276
  /**
7277
7277
  * <p>Defines the stairs traffic pattern.</p>
7278
7278
  * @public
7279
7279
  */
7280
- Stairs?: Stairs;
7280
+ Stairs?: Stairs | undefined;
7281
7281
  }
7282
7282
  /**
7283
7283
  * <p>Inference Recommender provisions SageMaker endpoints with access to VPC in the inference recommendation job.</p>
@@ -7305,32 +7305,32 @@ export interface RecommendationJobInputConfig {
7305
7305
  * <p>The Amazon Resource Name (ARN) of a versioned model package.</p>
7306
7306
  * @public
7307
7307
  */
7308
- ModelPackageVersionArn?: string;
7308
+ ModelPackageVersionArn?: string | undefined;
7309
7309
  /**
7310
7310
  * <p>The name of the created model.</p>
7311
7311
  * @public
7312
7312
  */
7313
- ModelName?: string;
7313
+ ModelName?: string | undefined;
7314
7314
  /**
7315
7315
  * <p>Specifies the maximum duration of the job, in seconds. The maximum value is 18,000 seconds.</p>
7316
7316
  * @public
7317
7317
  */
7318
- JobDurationInSeconds?: number;
7318
+ JobDurationInSeconds?: number | undefined;
7319
7319
  /**
7320
7320
  * <p>Specifies the traffic pattern of the job.</p>
7321
7321
  * @public
7322
7322
  */
7323
- TrafficPattern?: TrafficPattern;
7323
+ TrafficPattern?: TrafficPattern | undefined;
7324
7324
  /**
7325
7325
  * <p>Defines the resource limit of the job.</p>
7326
7326
  * @public
7327
7327
  */
7328
- ResourceLimit?: RecommendationJobResourceLimit;
7328
+ ResourceLimit?: RecommendationJobResourceLimit | undefined;
7329
7329
  /**
7330
7330
  * <p>Specifies the endpoint configuration to use for a job.</p>
7331
7331
  * @public
7332
7332
  */
7333
- EndpointConfigurations?: EndpointInputConfiguration[];
7333
+ EndpointConfigurations?: EndpointInputConfiguration[] | undefined;
7334
7334
  /**
7335
7335
  * <p>The Amazon Resource Name (ARN) of a Amazon Web Services Key Management Service (Amazon Web Services KMS) key
7336
7336
  * that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance that hosts the endpoint.
@@ -7371,23 +7371,23 @@ export interface RecommendationJobInputConfig {
7371
7371
  * Amazon Web Services Key Management Service (Amazon Web Services KMS) documentation.</p>
7372
7372
  * @public
7373
7373
  */
7374
- VolumeKmsKeyId?: string;
7374
+ VolumeKmsKeyId?: string | undefined;
7375
7375
  /**
7376
7376
  * <p>Specifies mandatory fields for running an Inference Recommender job. The fields specified in <code>ContainerConfig</code>
7377
7377
  * override the corresponding fields in the model package.</p>
7378
7378
  * @public
7379
7379
  */
7380
- ContainerConfig?: RecommendationJobContainerConfig;
7380
+ ContainerConfig?: RecommendationJobContainerConfig | undefined;
7381
7381
  /**
7382
7382
  * <p>Existing customer endpoints on which to run an Inference Recommender job.</p>
7383
7383
  * @public
7384
7384
  */
7385
- Endpoints?: EndpointInfo[];
7385
+ Endpoints?: EndpointInfo[] | undefined;
7386
7386
  /**
7387
7387
  * <p>Inference Recommender provisions SageMaker endpoints with access to VPC in the inference recommendation job.</p>
7388
7388
  * @public
7389
7389
  */
7390
- VpcConfig?: RecommendationJobVpcConfig;
7390
+ VpcConfig?: RecommendationJobVpcConfig | undefined;
7391
7391
  }
7392
7392
  /**
7393
7393
  * @public
@@ -7412,7 +7412,7 @@ export interface RecommendationJobCompiledOutputConfig {
7412
7412
  * compiled model artifacts.</p>
7413
7413
  * @public
7414
7414
  */
7415
- S3OutputUri?: string;
7415
+ S3OutputUri?: string | undefined;
7416
7416
  }
7417
7417
  /**
7418
7418
  * <p>Provides information about the output configuration for the compiled model.</p>
@@ -7455,13 +7455,13 @@ export interface RecommendationJobOutputConfig {
7455
7455
  * Amazon Web Services Key Management Service (Amazon Web Services KMS) documentation.</p>
7456
7456
  * @public
7457
7457
  */
7458
- KmsKeyId?: string;
7458
+ KmsKeyId?: string | undefined;
7459
7459
  /**
7460
7460
  * <p>Provides information about the output configuration for the compiled
7461
7461
  * model.</p>
7462
7462
  * @public
7463
7463
  */
7464
- CompiledOutputConfig?: RecommendationJobCompiledOutputConfig;
7464
+ CompiledOutputConfig?: RecommendationJobCompiledOutputConfig | undefined;
7465
7465
  }
7466
7466
  /**
7467
7467
  * @public
@@ -7485,12 +7485,12 @@ export interface ModelLatencyThreshold {
7485
7485
  * For custom load tests, specify the value as <code>P95</code>.</p>
7486
7486
  * @public
7487
7487
  */
7488
- Percentile?: string;
7488
+ Percentile?: string | undefined;
7489
7489
  /**
7490
7490
  * <p>The model latency percentile value in milliseconds.</p>
7491
7491
  * @public
7492
7492
  */
7493
- ValueInMilliseconds?: number;
7493
+ ValueInMilliseconds?: number | undefined;
7494
7494
  }
7495
7495
  /**
7496
7496
  * <p>Specifies conditions for stopping a job. When a job reaches a
@@ -7502,7 +7502,7 @@ export interface RecommendationJobStoppingConditions {
7502
7502
  * <p>The maximum number of requests per minute expected for the endpoint.</p>
7503
7503
  * @public
7504
7504
  */
7505
- MaxInvocations?: number;
7505
+ MaxInvocations?: number | undefined;
7506
7506
  /**
7507
7507
  * <p>The interval of time taken by a model to respond as viewed from SageMaker.
7508
7508
  * The interval includes the local communication time taken to send the request
@@ -7510,14 +7510,14 @@ export interface RecommendationJobStoppingConditions {
7510
7510
  * complete the inference in the container.</p>
7511
7511
  * @public
7512
7512
  */
7513
- ModelLatencyThresholds?: ModelLatencyThreshold[];
7513
+ ModelLatencyThresholds?: ModelLatencyThreshold[] | undefined;
7514
7514
  /**
7515
7515
  * <p>Stops a load test when the number of invocations (TPS) peaks and flattens,
7516
7516
  * which means that the instance has reached capacity. The default value is <code>Stop</code>.
7517
7517
  * If you want the load test to continue after invocations have flattened, set the value to <code>Continue</code>.</p>
7518
7518
  * @public
7519
7519
  */
7520
- FlatInvocations?: FlatInvocations;
7520
+ FlatInvocations?: FlatInvocations | undefined;
7521
7521
  }
7522
7522
  /**
7523
7523
  * @public
@@ -7555,19 +7555,19 @@ export interface CreateInferenceRecommendationsJobRequest {
7555
7555
  * <p>Description of the recommendation job.</p>
7556
7556
  * @public
7557
7557
  */
7558
- JobDescription?: string;
7558
+ JobDescription?: string | undefined;
7559
7559
  /**
7560
7560
  * <p>A set of conditions for stopping a recommendation job. If any of
7561
7561
  * the conditions are met, the job is automatically stopped.</p>
7562
7562
  * @public
7563
7563
  */
7564
- StoppingConditions?: RecommendationJobStoppingConditions;
7564
+ StoppingConditions?: RecommendationJobStoppingConditions | undefined;
7565
7565
  /**
7566
7566
  * <p>Provides information about the output artifacts and the KMS key
7567
7567
  * to use for Amazon S3 server-side encryption.</p>
7568
7568
  * @public
7569
7569
  */
7570
- OutputConfig?: RecommendationJobOutputConfig;
7570
+ OutputConfig?: RecommendationJobOutputConfig | undefined;
7571
7571
  /**
7572
7572
  * <p>The metadata that you apply to Amazon Web Services resources to help you
7573
7573
  * categorize and organize them. Each tag consists of a key and a value, both of
@@ -7576,7 +7576,7 @@ export interface CreateInferenceRecommendationsJobRequest {
7576
7576
  * in the Amazon Web Services General Reference.</p>
7577
7577
  * @public
7578
7578
  */
7579
- Tags?: Tag[];
7579
+ Tags?: Tag[] | undefined;
7580
7580
  }
7581
7581
  /**
7582
7582
  * @public
@@ -7606,7 +7606,7 @@ export interface UiConfig {
7606
7606
  * Labeling Task Template</a>.</p>
7607
7607
  * @public
7608
7608
  */
7609
- UiTemplateS3Uri?: string;
7609
+ UiTemplateS3Uri?: string | undefined;
7610
7610
  /**
7611
7611
  * <p>The ARN of the worker task template used to render the worker UI and tools for
7612
7612
  * labeling job tasks.</p>
@@ -7677,7 +7677,7 @@ export interface UiConfig {
7677
7677
  * </ul>
7678
7678
  * @public
7679
7679
  */
7680
- HumanTaskUiArn?: string;
7680
+ HumanTaskUiArn?: string | undefined;
7681
7681
  }
7682
7682
  /**
7683
7683
  * <p>Information required for human workers to complete a labeling task.</p>
@@ -9172,13 +9172,13 @@ export interface HumanTaskConfig {
9172
9172
  * </ul>
9173
9173
  * @public
9174
9174
  */
9175
- PreHumanTaskLambdaArn?: string;
9175
+ PreHumanTaskLambdaArn?: string | undefined;
9176
9176
  /**
9177
9177
  * <p>Keywords used to describe the task so that workers on Amazon Mechanical Turk can
9178
9178
  * discover the task.</p>
9179
9179
  * @public
9180
9180
  */
9181
- TaskKeywords?: string[];
9181
+ TaskKeywords?: string[] | undefined;
9182
9182
  /**
9183
9183
  * <p>A title for the task for your human workers.</p>
9184
9184
  * @public
@@ -9228,24 +9228,24 @@ export interface HumanTaskConfig {
9228
9228
  * </ul>
9229
9229
  * @public
9230
9230
  */
9231
- TaskAvailabilityLifetimeInSeconds?: number;
9231
+ TaskAvailabilityLifetimeInSeconds?: number | undefined;
9232
9232
  /**
9233
9233
  * <p>Defines the maximum number of data objects that can be labeled by human workers at the
9234
9234
  * same time. Also referred to as batch size. Each object may have more than one worker at one time.
9235
9235
  * The default value is 1000 objects. To increase the maximum value to 5000 objects, contact Amazon Web Services Support.</p>
9236
9236
  * @public
9237
9237
  */
9238
- MaxConcurrentTaskCount?: number;
9238
+ MaxConcurrentTaskCount?: number | undefined;
9239
9239
  /**
9240
9240
  * <p>Configures how labels are consolidated across human workers.</p>
9241
9241
  * @public
9242
9242
  */
9243
- AnnotationConsolidationConfig?: AnnotationConsolidationConfig;
9243
+ AnnotationConsolidationConfig?: AnnotationConsolidationConfig | undefined;
9244
9244
  /**
9245
9245
  * <p>The price that you pay for each task performed by an Amazon Mechanical Turk worker.</p>
9246
9246
  * @public
9247
9247
  */
9248
- PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice;
9248
+ PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice | undefined;
9249
9249
  }
9250
9250
  /**
9251
9251
  * <p>Attributes of the data specified by the customer. Use these to describe the data to be
@@ -9259,7 +9259,7 @@ export interface LabelingJobDataAttributes {
9259
9259
  * based on this information.</p>
9260
9260
  * @public
9261
9261
  */
9262
- ContentClassifiers?: ContentClassifier[];
9262
+ ContentClassifiers?: ContentClassifier[] | undefined;
9263
9263
  }
9264
9264
  /**
9265
9265
  * <p>The Amazon S3 location of the input data objects.</p>
@@ -9318,12 +9318,12 @@ export interface LabelingJobDataSource {
9318
9318
  * <p>The Amazon S3 location of the input data objects.</p>
9319
9319
  * @public
9320
9320
  */
9321
- S3DataSource?: LabelingJobS3DataSource;
9321
+ S3DataSource?: LabelingJobS3DataSource | undefined;
9322
9322
  /**
9323
9323
  * <p>An Amazon SNS data source used for streaming labeling jobs. To learn more, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sms-streaming-labeling-job.html#sms-streaming-how-it-works-send-data">Send Data to a Streaming Labeling Job</a>. </p>
9324
9324
  * @public
9325
9325
  */
9326
- SnsDataSource?: LabelingJobSnsDataSource;
9326
+ SnsDataSource?: LabelingJobSnsDataSource | undefined;
9327
9327
  }
9328
9328
  /**
9329
9329
  * <p>Input configuration information for a labeling job.</p>
@@ -9339,7 +9339,7 @@ export interface LabelingJobInputConfig {
9339
9339
  * <p>Attributes of the data specified by the customer.</p>
9340
9340
  * @public
9341
9341
  */
9342
- DataAttributes?: LabelingJobDataAttributes;
9342
+ DataAttributes?: LabelingJobDataAttributes | undefined;
9343
9343
  }
9344
9344
  /**
9345
9345
  * <p>Configure encryption on the storage volume attached to the ML compute instance used to
@@ -9374,7 +9374,7 @@ export interface LabelingJobResourceConfig {
9374
9374
  * </ul>
9375
9375
  * @public
9376
9376
  */
9377
- VolumeKmsKeyId?: string;
9377
+ VolumeKmsKeyId?: string | undefined;
9378
9378
  /**
9379
9379
  * <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
9380
9380
  * have access to. You can control access to and from your resources by configuring a VPC.
@@ -9382,7 +9382,7 @@ export interface LabelingJobResourceConfig {
9382
9382
  * Resources in your Amazon VPC</a>. </p>
9383
9383
  * @public
9384
9384
  */
9385
- VpcConfig?: VpcConfig;
9385
+ VpcConfig?: VpcConfig | undefined;
9386
9386
  }
9387
9387
  /**
9388
9388
  * <p>Provides configuration information for auto-labeling of your data objects. A
@@ -9437,12 +9437,12 @@ export interface LabelingJobAlgorithmsConfig {
9437
9437
  * subsequent similar jobs by providing the ARN of the model here. </p>
9438
9438
  * @public
9439
9439
  */
9440
- InitialActiveLearningModelArn?: string;
9440
+ InitialActiveLearningModelArn?: string | undefined;
9441
9441
  /**
9442
9442
  * <p>Provides configuration information for a labeling job.</p>
9443
9443
  * @public
9444
9444
  */
9445
- LabelingJobResourceConfig?: LabelingJobResourceConfig;
9445
+ LabelingJobResourceConfig?: LabelingJobResourceConfig | undefined;
9446
9446
  }
9447
9447
  /**
9448
9448
  * <p>Output configuration information for a labeling job.</p>
@@ -9468,7 +9468,7 @@ export interface LabelingJobOutputConfig {
9468
9468
  * </p>
9469
9469
  * @public
9470
9470
  */
9471
- KmsKeyId?: string;
9471
+ KmsKeyId?: string | undefined;
9472
9472
  /**
9473
9473
  * <p>An Amazon Simple Notification Service (Amazon SNS) output topic ARN. Provide a <code>SnsTopicArn</code> if you want to
9474
9474
  * do real time chaining to another streaming job and receive an Amazon SNS notifications each
@@ -9480,7 +9480,7 @@ export interface LabelingJobOutputConfig {
9480
9480
  * Job</a>. </p>
9481
9481
  * @public
9482
9482
  */
9483
- SnsTopicArn?: string;
9483
+ SnsTopicArn?: string | undefined;
9484
9484
  }
9485
9485
  /**
9486
9486
  * <p>A set of conditions for stopping a labeling job. If any of the conditions are met, the
@@ -9496,12 +9496,12 @@ export interface LabelingJobStoppingConditions {
9496
9496
  * <p>The maximum number of objects that can be labeled by human workers.</p>
9497
9497
  * @public
9498
9498
  */
9499
- MaxHumanLabeledObjectCount?: number;
9499
+ MaxHumanLabeledObjectCount?: number | undefined;
9500
9500
  /**
9501
9501
  * <p>The maximum number of input data objects that should be labeled.</p>
9502
9502
  * @public
9503
9503
  */
9504
- MaxPercentageOfInputDatasetLabeled?: number;
9504
+ MaxPercentageOfInputDatasetLabeled?: number | undefined;
9505
9505
  }
9506
9506
  /**
9507
9507
  * @public
@@ -9666,19 +9666,19 @@ export interface CreateLabelingJobRequest {
9666
9666
  * </ul>
9667
9667
  * @public
9668
9668
  */
9669
- LabelCategoryConfigS3Uri?: string;
9669
+ LabelCategoryConfigS3Uri?: string | undefined;
9670
9670
  /**
9671
9671
  * <p>A set of conditions for stopping the labeling job. If any of the conditions are met,
9672
9672
  * the job is automatically stopped. You can use these conditions to control the cost of
9673
9673
  * data labeling.</p>
9674
9674
  * @public
9675
9675
  */
9676
- StoppingConditions?: LabelingJobStoppingConditions;
9676
+ StoppingConditions?: LabelingJobStoppingConditions | undefined;
9677
9677
  /**
9678
9678
  * <p>Configures the information required to perform automated data labeling.</p>
9679
9679
  * @public
9680
9680
  */
9681
- LabelingJobAlgorithmsConfig?: LabelingJobAlgorithmsConfig;
9681
+ LabelingJobAlgorithmsConfig?: LabelingJobAlgorithmsConfig | undefined;
9682
9682
  /**
9683
9683
  * <p>Configures the labeling task and how it is presented to workers; including, but not limited to price, keywords, and batch size (task count).</p>
9684
9684
  * @public
@@ -9689,7 +9689,7 @@ export interface CreateLabelingJobRequest {
9689
9689
  * User Guide</i>.</p>
9690
9690
  * @public
9691
9691
  */
9692
- Tags?: Tag[];
9692
+ Tags?: Tag[] | undefined;
9693
9693
  }
9694
9694
  /**
9695
9695
  * @public
@@ -9741,13 +9741,13 @@ export interface CreateMlflowTrackingServerRequest {
9741
9741
  * server for teams of up to 50 users, and a large tracking server for teams of up to 100 users. </p>
9742
9742
  * @public
9743
9743
  */
9744
- TrackingServerSize?: TrackingServerSize;
9744
+ TrackingServerSize?: TrackingServerSize | undefined;
9745
9745
  /**
9746
9746
  * <p>The version of MLflow that the tracking server uses. To see which MLflow versions are
9747
9747
  * available to use, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow.html#mlflow-create-tracking-server-how-it-works">How it works</a>.</p>
9748
9748
  * @public
9749
9749
  */
9750
- MlflowVersion?: string;
9750
+ MlflowVersion?: string | undefined;
9751
9751
  /**
9752
9752
  * <p>The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to
9753
9753
  * access the artifact store in Amazon S3. The role should have <code>AmazonS3FullAccess</code>
@@ -9761,17 +9761,17 @@ export interface CreateMlflowTrackingServerRequest {
9761
9761
  * To disable automatic model registration, set this value to <code>False</code>. If not specified, <code>AutomaticModelRegistration</code> defaults to <code>False</code>.</p>
9762
9762
  * @public
9763
9763
  */
9764
- AutomaticModelRegistration?: boolean;
9764
+ AutomaticModelRegistration?: boolean | undefined;
9765
9765
  /**
9766
9766
  * <p>The day and time of the week in Coordinated Universal Time (UTC) 24-hour standard time that weekly maintenance updates are scheduled. For example: TUE:03:30.</p>
9767
9767
  * @public
9768
9768
  */
9769
- WeeklyMaintenanceWindowStart?: string;
9769
+ WeeklyMaintenanceWindowStart?: string | undefined;
9770
9770
  /**
9771
9771
  * <p>Tags consisting of key-value pairs used to manage metadata for the tracking server.</p>
9772
9772
  * @public
9773
9773
  */
9774
- Tags?: Tag[];
9774
+ Tags?: Tag[] | undefined;
9775
9775
  }
9776
9776
  /**
9777
9777
  * @public
@@ -9781,7 +9781,7 @@ export interface CreateMlflowTrackingServerResponse {
9781
9781
  * <p>The ARN of the tracking server.</p>
9782
9782
  * @public
9783
9783
  */
9784
- TrackingServerArn?: string;
9784
+ TrackingServerArn?: string | undefined;
9785
9785
  }
9786
9786
  /**
9787
9787
  * @public
@@ -9832,17 +9832,17 @@ export interface CreateModelInput {
9832
9832
  * deployed for predictions. </p>
9833
9833
  * @public
9834
9834
  */
9835
- PrimaryContainer?: ContainerDefinition;
9835
+ PrimaryContainer?: ContainerDefinition | undefined;
9836
9836
  /**
9837
9837
  * <p>Specifies the containers in the inference pipeline.</p>
9838
9838
  * @public
9839
9839
  */
9840
- Containers?: ContainerDefinition[];
9840
+ Containers?: ContainerDefinition[] | undefined;
9841
9841
  /**
9842
9842
  * <p>Specifies details of how containers in a multi-container endpoint are called.</p>
9843
9843
  * @public
9844
9844
  */
9845
- InferenceExecutionConfig?: InferenceExecutionConfig;
9845
+ InferenceExecutionConfig?: InferenceExecutionConfig | undefined;
9846
9846
  /**
9847
9847
  * <p>The Amazon Resource Name (ARN) of the IAM role that SageMaker can assume to access model
9848
9848
  * artifacts and docker image for deployment on ML compute instances or for batch transform
@@ -9855,14 +9855,14 @@ export interface CreateModelInput {
9855
9855
  * </note>
9856
9856
  * @public
9857
9857
  */
9858
- ExecutionRoleArn?: string;
9858
+ ExecutionRoleArn?: string | undefined;
9859
9859
  /**
9860
9860
  * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
9861
9861
  * resources in different ways, for example, by purpose, owner, or environment. For more
9862
9862
  * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
9863
9863
  * @public
9864
9864
  */
9865
- Tags?: Tag[];
9865
+ Tags?: Tag[] | undefined;
9866
9866
  /**
9867
9867
  * <p>A <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> object that specifies the VPC that you want your model to connect
9868
9868
  * to. Control access to and from your model container by configuring the VPC.
@@ -9871,13 +9871,13 @@ export interface CreateModelInput {
9871
9871
  * Transform Jobs by Using an Amazon Virtual Private Cloud</a>.</p>
9872
9872
  * @public
9873
9873
  */
9874
- VpcConfig?: VpcConfig;
9874
+ VpcConfig?: VpcConfig | undefined;
9875
9875
  /**
9876
9876
  * <p>Isolates the model container. No inbound or outbound network calls can be made to or
9877
9877
  * from the model container.</p>
9878
9878
  * @public
9879
9879
  */
9880
- EnableNetworkIsolation?: boolean;
9880
+ EnableNetworkIsolation?: boolean | undefined;
9881
9881
  }
9882
9882
  /**
9883
9883
  * @public
@@ -9910,7 +9910,7 @@ export interface ModelBiasAppSpecification {
9910
9910
  * <p>Sets the environment variables in the Docker container.</p>
9911
9911
  * @public
9912
9912
  */
9913
- Environment?: Record<string, string>;
9913
+ Environment?: Record<string, string> | undefined;
9914
9914
  }
9915
9915
  /**
9916
9916
  * <p>The configuration for a baseline model bias job.</p>
@@ -9921,12 +9921,12 @@ export interface ModelBiasBaselineConfig {
9921
9921
  * <p>The name of the baseline model bias job.</p>
9922
9922
  * @public
9923
9923
  */
9924
- BaseliningJobName?: string;
9924
+ BaseliningJobName?: string | undefined;
9925
9925
  /**
9926
9926
  * <p>The constraints resource for a monitoring job.</p>
9927
9927
  * @public
9928
9928
  */
9929
- ConstraintsResource?: MonitoringConstraintsResource;
9929
+ ConstraintsResource?: MonitoringConstraintsResource | undefined;
9930
9930
  }
9931
9931
  /**
9932
9932
  * <p>The ground truth labels for the dataset used for the monitoring job.</p>
@@ -9937,7 +9937,7 @@ export interface MonitoringGroundTruthS3Input {
9937
9937
  * <p>The address of the Amazon S3 location of the ground truth labels.</p>
9938
9938
  * @public
9939
9939
  */
9940
- S3Uri?: string;
9940
+ S3Uri?: string | undefined;
9941
9941
  }
9942
9942
  /**
9943
9943
  * <p>Inputs for the model bias job.</p>
@@ -9948,12 +9948,12 @@ export interface ModelBiasJobInput {
9948
9948
  * <p>Input object for the endpoint</p>
9949
9949
  * @public
9950
9950
  */
9951
- EndpointInput?: EndpointInput;
9951
+ EndpointInput?: EndpointInput | undefined;
9952
9952
  /**
9953
9953
  * <p>Input object for the batch transform job.</p>
9954
9954
  * @public
9955
9955
  */
9956
- BatchTransformInput?: BatchTransformInput;
9956
+ BatchTransformInput?: BatchTransformInput | undefined;
9957
9957
  /**
9958
9958
  * <p>Location of ground truth labels to use in model bias job.</p>
9959
9959
  * @public
@@ -9974,7 +9974,7 @@ export interface CreateModelBiasJobDefinitionRequest {
9974
9974
  * <p>The baseline configuration for a model bias job.</p>
9975
9975
  * @public
9976
9976
  */
9977
- ModelBiasBaselineConfig?: ModelBiasBaselineConfig;
9977
+ ModelBiasBaselineConfig?: ModelBiasBaselineConfig | undefined;
9978
9978
  /**
9979
9979
  * <p>Configures the model bias job to run a specified Docker container image.</p>
9980
9980
  * @public
@@ -9999,7 +9999,7 @@ export interface CreateModelBiasJobDefinitionRequest {
9999
9999
  * <p>Networking options for a model bias job.</p>
10000
10000
  * @public
10001
10001
  */
10002
- NetworkConfig?: MonitoringNetworkConfig;
10002
+ NetworkConfig?: MonitoringNetworkConfig | undefined;
10003
10003
  /**
10004
10004
  * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can
10005
10005
  * assume to perform tasks on your behalf.</p>
@@ -10010,14 +10010,14 @@ export interface CreateModelBiasJobDefinitionRequest {
10010
10010
  * <p>A time limit for how long the monitoring job is allowed to run before stopping.</p>
10011
10011
  * @public
10012
10012
  */
10013
- StoppingCondition?: MonitoringStoppingCondition;
10013
+ StoppingCondition?: MonitoringStoppingCondition | undefined;
10014
10014
  /**
10015
10015
  * <p>(Optional) An array of key-value pairs. For more information, see
10016
10016
  * <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL">
10017
10017
  * Using Cost Allocation Tags</a> in the <i>Amazon Web Services Billing and Cost Management User Guide</i>.</p>
10018
10018
  * @public
10019
10019
  */
10020
- Tags?: Tag[];
10020
+ Tags?: Tag[] | undefined;
10021
10021
  }
10022
10022
  /**
10023
10023
  * @public
@@ -10054,7 +10054,7 @@ export interface ModelCardSecurityConfig {
10054
10054
  * ID</a> to use for encrypting a model card.</p>
10055
10055
  * @public
10056
10056
  */
10057
- KmsKeyId?: string;
10057
+ KmsKeyId?: string | undefined;
10058
10058
  }
10059
10059
  /**
10060
10060
  * @public
@@ -10071,7 +10071,7 @@ export interface CreateModelCardRequest {
10071
10071
  * highly sensitive data.</p>
10072
10072
  * @public
10073
10073
  */
10074
- SecurityConfig?: ModelCardSecurityConfig;
10074
+ SecurityConfig?: ModelCardSecurityConfig | undefined;
10075
10075
  /**
10076
10076
  * <p>The content of the model card. Content must be in <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-cards.html#model-cards-json-schema">model card JSON schema</a> and provided as a string.</p>
10077
10077
  * @public
@@ -10105,7 +10105,7 @@ export interface CreateModelCardRequest {
10105
10105
  * <p>Key-value pairs used to manage metadata for model cards.</p>
10106
10106
  * @public
10107
10107
  */
10108
- Tags?: Tag[];
10108
+ Tags?: Tag[] | undefined;
10109
10109
  }
10110
10110
  /**
10111
10111
  * @public
@@ -10141,7 +10141,7 @@ export interface CreateModelCardExportJobRequest {
10141
10141
  * <p>The version of the model card to export. If a version is not provided, then the latest version of the model card is exported.</p>
10142
10142
  * @public
10143
10143
  */
10144
- ModelCardVersion?: number;
10144
+ ModelCardVersion?: number | undefined;
10145
10145
  /**
10146
10146
  * <p>The name of the model card export job.</p>
10147
10147
  * @public
@@ -10183,7 +10183,7 @@ export interface ModelExplainabilityAppSpecification {
10183
10183
  * <p>Sets the environment variables in the Docker container.</p>
10184
10184
  * @public
10185
10185
  */
10186
- Environment?: Record<string, string>;
10186
+ Environment?: Record<string, string> | undefined;
10187
10187
  }
10188
10188
  /**
10189
10189
  * <p>The configuration for a baseline model explainability job.</p>
@@ -10194,12 +10194,12 @@ export interface ModelExplainabilityBaselineConfig {
10194
10194
  * <p>The name of the baseline model explainability job.</p>
10195
10195
  * @public
10196
10196
  */
10197
- BaseliningJobName?: string;
10197
+ BaseliningJobName?: string | undefined;
10198
10198
  /**
10199
10199
  * <p>The constraints resource for a monitoring job.</p>
10200
10200
  * @public
10201
10201
  */
10202
- ConstraintsResource?: MonitoringConstraintsResource;
10202
+ ConstraintsResource?: MonitoringConstraintsResource | undefined;
10203
10203
  }
10204
10204
  /**
10205
10205
  * <p>Inputs for the model explainability job.</p>
@@ -10210,12 +10210,12 @@ export interface ModelExplainabilityJobInput {
10210
10210
  * <p>Input object for the endpoint</p>
10211
10211
  * @public
10212
10212
  */
10213
- EndpointInput?: EndpointInput;
10213
+ EndpointInput?: EndpointInput | undefined;
10214
10214
  /**
10215
10215
  * <p>Input object for the batch transform job.</p>
10216
10216
  * @public
10217
10217
  */
10218
- BatchTransformInput?: BatchTransformInput;
10218
+ BatchTransformInput?: BatchTransformInput | undefined;
10219
10219
  }
10220
10220
  /**
10221
10221
  * @public
@@ -10231,7 +10231,7 @@ export interface CreateModelExplainabilityJobDefinitionRequest {
10231
10231
  * <p>The baseline configuration for a model explainability job.</p>
10232
10232
  * @public
10233
10233
  */
10234
- ModelExplainabilityBaselineConfig?: ModelExplainabilityBaselineConfig;
10234
+ ModelExplainabilityBaselineConfig?: ModelExplainabilityBaselineConfig | undefined;
10235
10235
  /**
10236
10236
  * <p>Configures the model explainability job to run a specified Docker container image.</p>
10237
10237
  * @public
@@ -10256,7 +10256,7 @@ export interface CreateModelExplainabilityJobDefinitionRequest {
10256
10256
  * <p>Networking options for a model explainability job.</p>
10257
10257
  * @public
10258
10258
  */
10259
- NetworkConfig?: MonitoringNetworkConfig;
10259
+ NetworkConfig?: MonitoringNetworkConfig | undefined;
10260
10260
  /**
10261
10261
  * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can
10262
10262
  * assume to perform tasks on your behalf.</p>
@@ -10267,14 +10267,14 @@ export interface CreateModelExplainabilityJobDefinitionRequest {
10267
10267
  * <p>A time limit for how long the monitoring job is allowed to run before stopping.</p>
10268
10268
  * @public
10269
10269
  */
10270
- StoppingCondition?: MonitoringStoppingCondition;
10270
+ StoppingCondition?: MonitoringStoppingCondition | undefined;
10271
10271
  /**
10272
10272
  * <p>(Optional) An array of key-value pairs. For more information, see
10273
10273
  * <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL">
10274
10274
  * Using Cost Allocation Tags</a> in the <i>Amazon Web Services Billing and Cost Management User Guide</i>.</p>
10275
10275
  * @public
10276
10276
  */
10277
- Tags?: Tag[];
10277
+ Tags?: Tag[] | undefined;
10278
10278
  }
10279
10279
  /**
10280
10280
  * @public
@@ -10295,12 +10295,12 @@ export interface FileSource {
10295
10295
  * <p>The type of content stored in the file source.</p>
10296
10296
  * @public
10297
10297
  */
10298
- ContentType?: string;
10298
+ ContentType?: string | undefined;
10299
10299
  /**
10300
10300
  * <p>The digest of the file source.</p>
10301
10301
  * @public
10302
10302
  */
10303
- ContentDigest?: string;
10303
+ ContentDigest?: string | undefined;
10304
10304
  /**
10305
10305
  * <p>The Amazon S3 URI for the file source.</p>
10306
10306
  * @public
@@ -10317,17 +10317,17 @@ export interface DriftCheckBias {
10317
10317
  * <p>The bias config file for a model.</p>
10318
10318
  * @public
10319
10319
  */
10320
- ConfigFile?: FileSource;
10320
+ ConfigFile?: FileSource | undefined;
10321
10321
  /**
10322
10322
  * <p>The pre-training constraints.</p>
10323
10323
  * @public
10324
10324
  */
10325
- PreTrainingConstraints?: MetricsSource;
10325
+ PreTrainingConstraints?: MetricsSource | undefined;
10326
10326
  /**
10327
10327
  * <p>The post-training constraints.</p>
10328
10328
  * @public
10329
10329
  */
10330
- PostTrainingConstraints?: MetricsSource;
10330
+ PostTrainingConstraints?: MetricsSource | undefined;
10331
10331
  }
10332
10332
  /**
10333
10333
  * <p>Represents the drift check explainability baselines that can be used when the model monitor is set
@@ -10339,12 +10339,12 @@ export interface DriftCheckExplainability {
10339
10339
  * <p>The drift check explainability constraints.</p>
10340
10340
  * @public
10341
10341
  */
10342
- Constraints?: MetricsSource;
10342
+ Constraints?: MetricsSource | undefined;
10343
10343
  /**
10344
10344
  * <p>The explainability config file for the model.</p>
10345
10345
  * @public
10346
10346
  */
10347
- ConfigFile?: FileSource;
10347
+ ConfigFile?: FileSource | undefined;
10348
10348
  }
10349
10349
  /**
10350
10350
  * <p>Represents the drift check data quality baselines that can be used when the model monitor is set using
@@ -10356,12 +10356,12 @@ export interface DriftCheckModelDataQuality {
10356
10356
  * <p>The drift check model data quality statistics.</p>
10357
10357
  * @public
10358
10358
  */
10359
- Statistics?: MetricsSource;
10359
+ Statistics?: MetricsSource | undefined;
10360
10360
  /**
10361
10361
  * <p>The drift check model data quality constraints.</p>
10362
10362
  * @public
10363
10363
  */
10364
- Constraints?: MetricsSource;
10364
+ Constraints?: MetricsSource | undefined;
10365
10365
  }
10366
10366
  /**
10367
10367
  * <p>Represents the drift check model quality baselines that can be used when the model monitor is set using
@@ -10373,12 +10373,12 @@ export interface DriftCheckModelQuality {
10373
10373
  * <p>The drift check model quality statistics.</p>
10374
10374
  * @public
10375
10375
  */
10376
- Statistics?: MetricsSource;
10376
+ Statistics?: MetricsSource | undefined;
10377
10377
  /**
10378
10378
  * <p>The drift check model quality constraints.</p>
10379
10379
  * @public
10380
10380
  */
10381
- Constraints?: MetricsSource;
10381
+ Constraints?: MetricsSource | undefined;
10382
10382
  }
10383
10383
  /**
10384
10384
  * <p>Represents the drift check baselines that can be used when the model monitor is set using the model
@@ -10391,25 +10391,25 @@ export interface DriftCheckBaselines {
10391
10391
  * package. </p>
10392
10392
  * @public
10393
10393
  */
10394
- Bias?: DriftCheckBias;
10394
+ Bias?: DriftCheckBias | undefined;
10395
10395
  /**
10396
10396
  * <p>Represents the drift check explainability baselines that can be used when the model monitor is set using
10397
10397
  * the model package. </p>
10398
10398
  * @public
10399
10399
  */
10400
- Explainability?: DriftCheckExplainability;
10400
+ Explainability?: DriftCheckExplainability | undefined;
10401
10401
  /**
10402
10402
  * <p>Represents the drift check model quality baselines that can be used when the model monitor is set using
10403
10403
  * the model package.</p>
10404
10404
  * @public
10405
10405
  */
10406
- ModelQuality?: DriftCheckModelQuality;
10406
+ ModelQuality?: DriftCheckModelQuality | undefined;
10407
10407
  /**
10408
10408
  * <p>Represents the drift check model data quality baselines that can be used when the model monitor is set
10409
10409
  * using the model package.</p>
10410
10410
  * @public
10411
10411
  */
10412
- ModelDataQuality?: DriftCheckModelDataQuality;
10412
+ ModelDataQuality?: DriftCheckModelDataQuality | undefined;
10413
10413
  }
10414
10414
  /**
10415
10415
  * <p>The model card associated with the model package. Since <code>ModelPackageModelCard</code> is
@@ -10431,7 +10431,7 @@ export interface ModelPackageModelCard {
10431
10431
  * Package Model Card Schema</a>.</p>
10432
10432
  * @public
10433
10433
  */
10434
- ModelCardContent?: string;
10434
+ ModelCardContent?: string | undefined;
10435
10435
  /**
10436
10436
  * <p>The approval status of the model card within your organization. Different organizations might have different criteria for model card review and approval.</p>
10437
10437
  * <ul>
@@ -10456,7 +10456,7 @@ export interface ModelPackageModelCard {
10456
10456
  * </ul>
10457
10457
  * @public
10458
10458
  */
10459
- ModelCardStatus?: ModelCardStatus;
10459
+ ModelCardStatus?: ModelCardStatus | undefined;
10460
10460
  }
10461
10461
  /**
10462
10462
  * <p>
@@ -10485,7 +10485,7 @@ export interface ModelLifeCycle {
10485
10485
  * </p>
10486
10486
  * @public
10487
10487
  */
10488
- StageDescription?: string;
10488
+ StageDescription?: string | undefined;
10489
10489
  }
10490
10490
  /**
10491
10491
  * <p>Contains explainability metrics for a model.</p>
@@ -10496,7 +10496,7 @@ export interface Explainability {
10496
10496
  * <p>The explainability report for a model.</p>
10497
10497
  * @public
10498
10498
  */
10499
- Report?: MetricsSource;
10499
+ Report?: MetricsSource | undefined;
10500
10500
  }
10501
10501
  /**
10502
10502
  * <p>Data quality constraints and statistics for a model.</p>
@@ -10507,12 +10507,12 @@ export interface ModelDataQuality {
10507
10507
  * <p>Data quality statistics for a model.</p>
10508
10508
  * @public
10509
10509
  */
10510
- Statistics?: MetricsSource;
10510
+ Statistics?: MetricsSource | undefined;
10511
10511
  /**
10512
10512
  * <p>Data quality constraints for a model.</p>
10513
10513
  * @public
10514
10514
  */
10515
- Constraints?: MetricsSource;
10515
+ Constraints?: MetricsSource | undefined;
10516
10516
  }
10517
10517
  /**
10518
10518
  * <p>Model quality statistics and constraints.</p>
@@ -10523,12 +10523,12 @@ export interface ModelQuality {
10523
10523
  * <p>Model quality statistics.</p>
10524
10524
  * @public
10525
10525
  */
10526
- Statistics?: MetricsSource;
10526
+ Statistics?: MetricsSource | undefined;
10527
10527
  /**
10528
10528
  * <p>Model quality constraints.</p>
10529
10529
  * @public
10530
10530
  */
10531
- Constraints?: MetricsSource;
10531
+ Constraints?: MetricsSource | undefined;
10532
10532
  }
10533
10533
  /**
10534
10534
  * <p>Contains metrics captured from a model.</p>
@@ -10539,22 +10539,22 @@ export interface ModelMetrics {
10539
10539
  * <p>Metrics that measure the quality of a model.</p>
10540
10540
  * @public
10541
10541
  */
10542
- ModelQuality?: ModelQuality;
10542
+ ModelQuality?: ModelQuality | undefined;
10543
10543
  /**
10544
10544
  * <p>Metrics that measure the quality of the input data for a model.</p>
10545
10545
  * @public
10546
10546
  */
10547
- ModelDataQuality?: ModelDataQuality;
10547
+ ModelDataQuality?: ModelDataQuality | undefined;
10548
10548
  /**
10549
10549
  * <p>Metrics that measure bias in a model.</p>
10550
10550
  * @public
10551
10551
  */
10552
- Bias?: Bias;
10552
+ Bias?: Bias | undefined;
10553
10553
  /**
10554
10554
  * <p>Metrics that help explain a model.</p>
10555
10555
  * @public
10556
10556
  */
10557
- Explainability?: Explainability;
10557
+ Explainability?: Explainability | undefined;
10558
10558
  }
10559
10559
  /**
10560
10560
  * <p>An optional Key Management Service
@@ -10597,12 +10597,12 @@ export interface SourceAlgorithm {
10597
10597
  * </note>
10598
10598
  * @public
10599
10599
  */
10600
- ModelDataUrl?: string;
10600
+ ModelDataUrl?: string | undefined;
10601
10601
  /**
10602
10602
  * <p>Specifies the location of ML model data to deploy during endpoint creation.</p>
10603
10603
  * @public
10604
10604
  */
10605
- ModelDataSource?: ModelDataSource;
10605
+ ModelDataSource?: ModelDataSource | undefined;
10606
10606
  /**
10607
10607
  * <p>The name of an algorithm that was used to create the model package. The algorithm must
10608
10608
  * be either an algorithm resource in your SageMaker account or an algorithm in Amazon Web Services Marketplace that you are subscribed to.</p>
@@ -10669,19 +10669,19 @@ export interface CreateModelPackageInput {
10669
10669
  * models.</p>
10670
10670
  * @public
10671
10671
  */
10672
- ModelPackageName?: string;
10672
+ ModelPackageName?: string | undefined;
10673
10673
  /**
10674
10674
  * <p>The name or Amazon Resource Name (ARN) of the model package group that this model version belongs to.</p>
10675
10675
  * <p>This parameter is required for versioned models, and does not apply to unversioned
10676
10676
  * models.</p>
10677
10677
  * @public
10678
10678
  */
10679
- ModelPackageGroupName?: string;
10679
+ ModelPackageGroupName?: string | undefined;
10680
10680
  /**
10681
10681
  * <p>A description of the model package.</p>
10682
10682
  * @public
10683
10683
  */
10684
- ModelPackageDescription?: string;
10684
+ ModelPackageDescription?: string | undefined;
10685
10685
  /**
10686
10686
  * <p>Specifies details about inference jobs that you can run with models based on this model
10687
10687
  * package, including the following information:</p>
@@ -10701,25 +10701,25 @@ export interface CreateModelPackageInput {
10701
10701
  * </ul>
10702
10702
  * @public
10703
10703
  */
10704
- InferenceSpecification?: InferenceSpecification;
10704
+ InferenceSpecification?: InferenceSpecification | undefined;
10705
10705
  /**
10706
10706
  * <p>Specifies configurations for one or more transform jobs that SageMaker runs to test the
10707
10707
  * model package.</p>
10708
10708
  * @public
10709
10709
  */
10710
- ValidationSpecification?: ModelPackageValidationSpecification;
10710
+ ValidationSpecification?: ModelPackageValidationSpecification | undefined;
10711
10711
  /**
10712
10712
  * <p>Details about the algorithm that was used to create the model package.</p>
10713
10713
  * @public
10714
10714
  */
10715
- SourceAlgorithmSpecification?: SourceAlgorithmSpecification;
10715
+ SourceAlgorithmSpecification?: SourceAlgorithmSpecification | undefined;
10716
10716
  /**
10717
10717
  * <p>Whether to certify the model package for listing on Amazon Web Services Marketplace.</p>
10718
10718
  * <p>This parameter is optional for unversioned models, and does not apply to versioned
10719
10719
  * models.</p>
10720
10720
  * @public
10721
10721
  */
10722
- CertifyForMarketplace?: boolean;
10722
+ CertifyForMarketplace?: boolean | undefined;
10723
10723
  /**
10724
10724
  * <p>A list of key value pairs associated with the model. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services
10725
10725
  * resources</a> in the <i>Amazon Web Services General Reference Guide</i>.</p>
@@ -10729,7 +10729,7 @@ export interface CreateModelPackageInput {
10729
10729
  * </p>
10730
10730
  * @public
10731
10731
  */
10732
- Tags?: Tag[];
10732
+ Tags?: Tag[] | undefined;
10733
10733
  /**
10734
10734
  * <p>Whether the model is approved for deployment.</p>
10735
10735
  * <p>This parameter is optional for versioned models, and does not apply to unversioned
@@ -10738,28 +10738,28 @@ export interface CreateModelPackageInput {
10738
10738
  * to deploy the model.</p>
10739
10739
  * @public
10740
10740
  */
10741
- ModelApprovalStatus?: ModelApprovalStatus;
10741
+ ModelApprovalStatus?: ModelApprovalStatus | undefined;
10742
10742
  /**
10743
10743
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
10744
10744
  * @public
10745
10745
  */
10746
- MetadataProperties?: MetadataProperties;
10746
+ MetadataProperties?: MetadataProperties | undefined;
10747
10747
  /**
10748
10748
  * <p>A structure that contains model metrics reports.</p>
10749
10749
  * @public
10750
10750
  */
10751
- ModelMetrics?: ModelMetrics;
10751
+ ModelMetrics?: ModelMetrics | undefined;
10752
10752
  /**
10753
10753
  * <p>A unique token that guarantees that the call to this API is idempotent.</p>
10754
10754
  * @public
10755
10755
  */
10756
- ClientToken?: string;
10756
+ ClientToken?: string | undefined;
10757
10757
  /**
10758
10758
  * <p>The machine learning domain of your model package and its components. Common
10759
10759
  * machine learning domains include computer vision and natural language processing.</p>
10760
10760
  * @public
10761
10761
  */
10762
- Domain?: string;
10762
+ Domain?: string | undefined;
10763
10763
  /**
10764
10764
  * <p>The machine learning task your model package accomplishes. Common machine
10765
10765
  * learning tasks include object detection and image classification. The following
@@ -10769,7 +10769,7 @@ export interface CreateModelPackageInput {
10769
10769
  * <p>Specify "OTHER" if none of the tasks listed fit your use case.</p>
10770
10770
  * @public
10771
10771
  */
10772
- Task?: string;
10772
+ Task?: string | undefined;
10773
10773
  /**
10774
10774
  * <p>The Amazon Simple Storage Service (Amazon S3) path where the sample payload is stored. This path must point
10775
10775
  * to a single gzip compressed tar archive (.tar.gz suffix). This archive can hold multiple files
@@ -10777,19 +10777,19 @@ export interface CreateModelPackageInput {
10777
10777
  * <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_runtime_InvokeEndpoint.html#API_runtime_InvokeEndpoint_RequestSyntax">InvokeEndpoint</a> call.</p>
10778
10778
  * @public
10779
10779
  */
10780
- SamplePayloadUrl?: string;
10780
+ SamplePayloadUrl?: string | undefined;
10781
10781
  /**
10782
10782
  * <p>The metadata properties associated with the model package versions.</p>
10783
10783
  * @public
10784
10784
  */
10785
- CustomerMetadataProperties?: Record<string, string>;
10785
+ CustomerMetadataProperties?: Record<string, string> | undefined;
10786
10786
  /**
10787
10787
  * <p>Represents the drift check baselines that can be used when the model monitor is set using the model package.
10788
10788
  * For more information, see the topic on <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection">Drift Detection against Previous Baselines in SageMaker Pipelines</a> in the <i>Amazon SageMaker Developer Guide</i>.
10789
10789
  * </p>
10790
10790
  * @public
10791
10791
  */
10792
- DriftCheckBaselines?: DriftCheckBaselines;
10792
+ DriftCheckBaselines?: DriftCheckBaselines | undefined;
10793
10793
  /**
10794
10794
  * <p>An array of additional Inference Specification objects. Each additional
10795
10795
  * Inference Specification specifies artifacts based on this model package that can
@@ -10797,24 +10797,24 @@ export interface CreateModelPackageInput {
10797
10797
  * compiled artifacts. </p>
10798
10798
  * @public
10799
10799
  */
10800
- AdditionalInferenceSpecifications?: AdditionalInferenceSpecificationDefinition[];
10800
+ AdditionalInferenceSpecifications?: AdditionalInferenceSpecificationDefinition[] | undefined;
10801
10801
  /**
10802
10802
  * <p>Indicates if you want to skip model validation.</p>
10803
10803
  * @public
10804
10804
  */
10805
- SkipModelValidation?: SkipModelValidation;
10805
+ SkipModelValidation?: SkipModelValidation | undefined;
10806
10806
  /**
10807
10807
  * <p>The URI of the source for the model package. If you want to clone a model package,
10808
10808
  * set it to the model package Amazon Resource Name (ARN). If you want to register a model,
10809
10809
  * set it to the model ARN.</p>
10810
10810
  * @public
10811
10811
  */
10812
- SourceUri?: string;
10812
+ SourceUri?: string | undefined;
10813
10813
  /**
10814
10814
  * <p>The KMS Key ID (<code>KMSKeyId</code>) used for encryption of model package information.</p>
10815
10815
  * @public
10816
10816
  */
10817
- SecurityConfig?: ModelPackageSecurityConfig;
10817
+ SecurityConfig?: ModelPackageSecurityConfig | undefined;
10818
10818
  /**
10819
10819
  * <p>The model card associated with the model package. Since <code>ModelPackageModelCard</code> is
10820
10820
  * tied to a model package, it is a specific usage of a model card and its schema is
@@ -10828,14 +10828,14 @@ export interface CreateModelPackageInput {
10828
10828
  * the Details of a Model Version</a>.</p>
10829
10829
  * @public
10830
10830
  */
10831
- ModelCard?: ModelPackageModelCard;
10831
+ ModelCard?: ModelPackageModelCard | undefined;
10832
10832
  /**
10833
10833
  * <p>
10834
10834
  * A structure describing the current state of the model in its life cycle.
10835
10835
  * </p>
10836
10836
  * @public
10837
10837
  */
10838
- ModelLifeCycle?: ModelLifeCycle;
10838
+ ModelLifeCycle?: ModelLifeCycle | undefined;
10839
10839
  }
10840
10840
  /**
10841
10841
  * @public
@@ -10860,14 +10860,14 @@ export interface CreateModelPackageGroupInput {
10860
10860
  * <p>A description for the model group.</p>
10861
10861
  * @public
10862
10862
  */
10863
- ModelPackageGroupDescription?: string;
10863
+ ModelPackageGroupDescription?: string | undefined;
10864
10864
  /**
10865
10865
  * <p>A list of key value pairs associated with the model group. For more information, see
10866
10866
  * <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services
10867
10867
  * resources</a> in the <i>Amazon Web Services General Reference Guide</i>.</p>
10868
10868
  * @public
10869
10869
  */
10870
- Tags?: Tag[];
10870
+ Tags?: Tag[] | undefined;
10871
10871
  }
10872
10872
  /**
10873
10873
  * @public
@@ -10906,35 +10906,35 @@ export interface ModelQualityAppSpecification {
10906
10906
  * <p>Specifies the entrypoint for a container that the monitoring job runs.</p>
10907
10907
  * @public
10908
10908
  */
10909
- ContainerEntrypoint?: string[];
10909
+ ContainerEntrypoint?: string[] | undefined;
10910
10910
  /**
10911
10911
  * <p>An array of arguments for the container used to run the monitoring job.</p>
10912
10912
  * @public
10913
10913
  */
10914
- ContainerArguments?: string[];
10914
+ ContainerArguments?: string[] | undefined;
10915
10915
  /**
10916
10916
  * <p>An Amazon S3 URI to a script that is called per row prior to running analysis. It can
10917
10917
  * base64 decode the payload and convert it into a flattened JSON so that the built-in container can use
10918
10918
  * the converted data. Applicable only for the built-in (first party) containers.</p>
10919
10919
  * @public
10920
10920
  */
10921
- RecordPreprocessorSourceUri?: string;
10921
+ RecordPreprocessorSourceUri?: string | undefined;
10922
10922
  /**
10923
10923
  * <p>An Amazon S3 URI to a script that is called after analysis has been performed. Applicable
10924
10924
  * only for the built-in (first party) containers.</p>
10925
10925
  * @public
10926
10926
  */
10927
- PostAnalyticsProcessorSourceUri?: string;
10927
+ PostAnalyticsProcessorSourceUri?: string | undefined;
10928
10928
  /**
10929
10929
  * <p>The machine learning problem type of the model that the monitoring job monitors.</p>
10930
10930
  * @public
10931
10931
  */
10932
- ProblemType?: MonitoringProblemType;
10932
+ ProblemType?: MonitoringProblemType | undefined;
10933
10933
  /**
10934
10934
  * <p>Sets the environment variables in the container that the monitoring job runs.</p>
10935
10935
  * @public
10936
10936
  */
10937
- Environment?: Record<string, string>;
10937
+ Environment?: Record<string, string> | undefined;
10938
10938
  }
10939
10939
  /**
10940
10940
  * <p>Configuration for monitoring constraints and monitoring statistics. These baseline resources are
@@ -10947,12 +10947,12 @@ export interface ModelQualityBaselineConfig {
10947
10947
  * <p>The name of the job that performs baselining for the monitoring job.</p>
10948
10948
  * @public
10949
10949
  */
10950
- BaseliningJobName?: string;
10950
+ BaseliningJobName?: string | undefined;
10951
10951
  /**
10952
10952
  * <p>The constraints resource for a monitoring job.</p>
10953
10953
  * @public
10954
10954
  */
10955
- ConstraintsResource?: MonitoringConstraintsResource;
10955
+ ConstraintsResource?: MonitoringConstraintsResource | undefined;
10956
10956
  }
10957
10957
  /**
10958
10958
  * <p>The input for the model quality monitoring job. Currently endpoints are supported for
@@ -10964,12 +10964,12 @@ export interface ModelQualityJobInput {
10964
10964
  * <p>Input object for the endpoint</p>
10965
10965
  * @public
10966
10966
  */
10967
- EndpointInput?: EndpointInput;
10967
+ EndpointInput?: EndpointInput | undefined;
10968
10968
  /**
10969
10969
  * <p>Input object for the batch transform job.</p>
10970
10970
  * @public
10971
10971
  */
10972
- BatchTransformInput?: BatchTransformInput;
10972
+ BatchTransformInput?: BatchTransformInput | undefined;
10973
10973
  /**
10974
10974
  * <p>The ground truth label provided for the model.</p>
10975
10975
  * @public
@@ -10989,7 +10989,7 @@ export interface CreateModelQualityJobDefinitionRequest {
10989
10989
  * <p>Specifies the constraints and baselines for the monitoring job.</p>
10990
10990
  * @public
10991
10991
  */
10992
- ModelQualityBaselineConfig?: ModelQualityBaselineConfig;
10992
+ ModelQualityBaselineConfig?: ModelQualityBaselineConfig | undefined;
10993
10993
  /**
10994
10994
  * <p>The container that runs the monitoring job.</p>
10995
10995
  * @public
@@ -11014,7 +11014,7 @@ export interface CreateModelQualityJobDefinitionRequest {
11014
11014
  * <p>Specifies the network configuration for the monitoring job.</p>
11015
11015
  * @public
11016
11016
  */
11017
- NetworkConfig?: MonitoringNetworkConfig;
11017
+ NetworkConfig?: MonitoringNetworkConfig | undefined;
11018
11018
  /**
11019
11019
  * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can
11020
11020
  * assume to perform tasks on your behalf.</p>
@@ -11025,14 +11025,14 @@ export interface CreateModelQualityJobDefinitionRequest {
11025
11025
  * <p>A time limit for how long the monitoring job is allowed to run before stopping.</p>
11026
11026
  * @public
11027
11027
  */
11028
- StoppingCondition?: MonitoringStoppingCondition;
11028
+ StoppingCondition?: MonitoringStoppingCondition | undefined;
11029
11029
  /**
11030
11030
  * <p>(Optional) An array of key-value pairs. For more information, see
11031
11031
  * <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL">
11032
11032
  * Using Cost Allocation Tags</a> in the <i>Amazon Web Services Billing and Cost Management User Guide</i>.</p>
11033
11033
  * @public
11034
11034
  */
11035
- Tags?: Tag[];
11035
+ Tags?: Tag[] | undefined;
11036
11036
  }
11037
11037
  /**
11038
11038
  * @public
@@ -11055,19 +11055,19 @@ export interface MonitoringBaselineConfig {
11055
11055
  * <p>The name of the job that performs baselining for the monitoring job.</p>
11056
11056
  * @public
11057
11057
  */
11058
- BaseliningJobName?: string;
11058
+ BaseliningJobName?: string | undefined;
11059
11059
  /**
11060
11060
  * <p>The baseline constraint file in Amazon S3 that the current monitoring job should
11061
11061
  * validated against.</p>
11062
11062
  * @public
11063
11063
  */
11064
- ConstraintsResource?: MonitoringConstraintsResource;
11064
+ ConstraintsResource?: MonitoringConstraintsResource | undefined;
11065
11065
  /**
11066
11066
  * <p>The baseline statistics file in Amazon S3 that the current monitoring job should
11067
11067
  * be validated against.</p>
11068
11068
  * @public
11069
11069
  */
11070
- StatisticsResource?: MonitoringStatisticsResource;
11070
+ StatisticsResource?: MonitoringStatisticsResource | undefined;
11071
11071
  }
11072
11072
  /**
11073
11073
  * <p>Container image configuration object for the monitoring job.</p>
@@ -11083,25 +11083,25 @@ export interface MonitoringAppSpecification {
11083
11083
  * <p>Specifies the entrypoint for a container used to run the monitoring job.</p>
11084
11084
  * @public
11085
11085
  */
11086
- ContainerEntrypoint?: string[];
11086
+ ContainerEntrypoint?: string[] | undefined;
11087
11087
  /**
11088
11088
  * <p>An array of arguments for the container used to run the monitoring job.</p>
11089
11089
  * @public
11090
11090
  */
11091
- ContainerArguments?: string[];
11091
+ ContainerArguments?: string[] | undefined;
11092
11092
  /**
11093
11093
  * <p>An Amazon S3 URI to a script that is called per row prior to running analysis. It can
11094
11094
  * base64 decode the payload and convert it into a flattened JSON so that the built-in container can use
11095
11095
  * the converted data. Applicable only for the built-in (first party) containers.</p>
11096
11096
  * @public
11097
11097
  */
11098
- RecordPreprocessorSourceUri?: string;
11098
+ RecordPreprocessorSourceUri?: string | undefined;
11099
11099
  /**
11100
11100
  * <p>An Amazon S3 URI to a script that is called after analysis has been performed. Applicable
11101
11101
  * only for the built-in (first party) containers.</p>
11102
11102
  * @public
11103
11103
  */
11104
- PostAnalyticsProcessorSourceUri?: string;
11104
+ PostAnalyticsProcessorSourceUri?: string | undefined;
11105
11105
  }
11106
11106
  /**
11107
11107
  * <p>The inputs for a monitoring job.</p>
@@ -11112,12 +11112,12 @@ export interface MonitoringInput {
11112
11112
  * <p>The endpoint for a monitoring job.</p>
11113
11113
  * @public
11114
11114
  */
11115
- EndpointInput?: EndpointInput;
11115
+ EndpointInput?: EndpointInput | undefined;
11116
11116
  /**
11117
11117
  * <p>Input object for the batch transform job.</p>
11118
11118
  * @public
11119
11119
  */
11120
- BatchTransformInput?: BatchTransformInput;
11120
+ BatchTransformInput?: BatchTransformInput | undefined;
11121
11121
  }
11122
11122
  /**
11123
11123
  * <p>Networking options for a job, such as network traffic encryption between containers,
@@ -11132,13 +11132,13 @@ export interface NetworkConfig {
11132
11132
  * processing jobs, but the processing might take longer.</p>
11133
11133
  * @public
11134
11134
  */
11135
- EnableInterContainerTrafficEncryption?: boolean;
11135
+ EnableInterContainerTrafficEncryption?: boolean | undefined;
11136
11136
  /**
11137
11137
  * <p>Whether to allow inbound and outbound network calls to and from the containers used for
11138
11138
  * the processing job.</p>
11139
11139
  * @public
11140
11140
  */
11141
- EnableNetworkIsolation?: boolean;
11141
+ EnableNetworkIsolation?: boolean | undefined;
11142
11142
  /**
11143
11143
  * <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
11144
11144
  * have access to. You can control access to and from your resources by configuring a VPC.
@@ -11146,7 +11146,7 @@ export interface NetworkConfig {
11146
11146
  * Resources in your Amazon VPC</a>. </p>
11147
11147
  * @public
11148
11148
  */
11149
- VpcConfig?: VpcConfig;
11149
+ VpcConfig?: VpcConfig | undefined;
11150
11150
  }
11151
11151
  /**
11152
11152
  * <p>Defines the monitoring job.</p>
@@ -11158,7 +11158,7 @@ export interface MonitoringJobDefinition {
11158
11158
  * constraints and statistics</p>
11159
11159
  * @public
11160
11160
  */
11161
- BaselineConfig?: MonitoringBaselineConfig;
11161
+ BaselineConfig?: MonitoringBaselineConfig | undefined;
11162
11162
  /**
11163
11163
  * <p>The array of inputs for the monitoring job. Currently we support monitoring an Amazon SageMaker Endpoint.</p>
11164
11164
  * @public
@@ -11184,17 +11184,17 @@ export interface MonitoringJobDefinition {
11184
11184
  * <p>Specifies a time limit for how long the monitoring job is allowed to run.</p>
11185
11185
  * @public
11186
11186
  */
11187
- StoppingCondition?: MonitoringStoppingCondition;
11187
+ StoppingCondition?: MonitoringStoppingCondition | undefined;
11188
11188
  /**
11189
11189
  * <p>Sets the environment variables in the Docker container.</p>
11190
11190
  * @public
11191
11191
  */
11192
- Environment?: Record<string, string>;
11192
+ Environment?: Record<string, string> | undefined;
11193
11193
  /**
11194
11194
  * <p>Specifies networking options for an monitoring job.</p>
11195
11195
  * @public
11196
11196
  */
11197
- NetworkConfig?: NetworkConfig;
11197
+ NetworkConfig?: NetworkConfig | undefined;
11198
11198
  /**
11199
11199
  * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can
11200
11200
  * assume to perform tasks on your behalf.</p>
@@ -11302,7 +11302,7 @@ export interface ScheduleConfig {
11302
11302
  * required.</p>
11303
11303
  * @public
11304
11304
  */
11305
- DataAnalysisStartTime?: string;
11305
+ DataAnalysisStartTime?: string | undefined;
11306
11306
  /**
11307
11307
  * <p>Sets the end time for a monitoring job window. Express this time as an offset to the
11308
11308
  * times that you schedule your monitoring jobs to run. You schedule monitoring jobs with the
@@ -11316,7 +11316,7 @@ export interface ScheduleConfig {
11316
11316
  * required.</p>
11317
11317
  * @public
11318
11318
  */
11319
- DataAnalysisEndTime?: string;
11319
+ DataAnalysisEndTime?: string | undefined;
11320
11320
  }
11321
11321
  /**
11322
11322
  * <p>Configures the monitoring schedule and defines the monitoring job.</p>
@@ -11327,22 +11327,22 @@ export interface MonitoringScheduleConfig {
11327
11327
  * <p>Configures the monitoring schedule.</p>
11328
11328
  * @public
11329
11329
  */
11330
- ScheduleConfig?: ScheduleConfig;
11330
+ ScheduleConfig?: ScheduleConfig | undefined;
11331
11331
  /**
11332
11332
  * <p>Defines the monitoring job.</p>
11333
11333
  * @public
11334
11334
  */
11335
- MonitoringJobDefinition?: MonitoringJobDefinition;
11335
+ MonitoringJobDefinition?: MonitoringJobDefinition | undefined;
11336
11336
  /**
11337
11337
  * <p>The name of the monitoring job definition to schedule.</p>
11338
11338
  * @public
11339
11339
  */
11340
- MonitoringJobDefinitionName?: string;
11340
+ MonitoringJobDefinitionName?: string | undefined;
11341
11341
  /**
11342
11342
  * <p>The type of the monitoring job definition to schedule.</p>
11343
11343
  * @public
11344
11344
  */
11345
- MonitoringType?: MonitoringType;
11345
+ MonitoringType?: MonitoringType | undefined;
11346
11346
  }
11347
11347
  /**
11348
11348
  * @public
@@ -11365,7 +11365,7 @@ export interface CreateMonitoringScheduleRequest {
11365
11365
  * Management User Guide</i>.</p>
11366
11366
  * @public
11367
11367
  */
11368
- Tags?: Tag[];
11368
+ Tags?: Tag[] | undefined;
11369
11369
  }
11370
11370
  /**
11371
11371
  * @public
@@ -11450,13 +11450,13 @@ export interface CreateNotebookInstanceInput {
11450
11450
  * your ML compute instance. </p>
11451
11451
  * @public
11452
11452
  */
11453
- SubnetId?: string;
11453
+ SubnetId?: string | undefined;
11454
11454
  /**
11455
11455
  * <p>The VPC security group IDs, in the form sg-xxxxxxxx. The security groups must be
11456
11456
  * for the same VPC as specified in the subnet. </p>
11457
11457
  * @public
11458
11458
  */
11459
- SecurityGroupIds?: string[];
11459
+ SecurityGroupIds?: string[] | undefined;
11460
11460
  /**
11461
11461
  * <p> When you send any requests to Amazon Web Services resources from the notebook
11462
11462
  * instance, SageMaker assumes this role to perform tasks on your behalf. You must
@@ -11478,21 +11478,21 @@ export interface CreateNotebookInstanceInput {
11478
11478
  * Developer Guide</i>.</p>
11479
11479
  * @public
11480
11480
  */
11481
- KmsKeyId?: string;
11481
+ KmsKeyId?: string | undefined;
11482
11482
  /**
11483
11483
  * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
11484
11484
  * resources in different ways, for example, by purpose, owner, or environment. For more
11485
11485
  * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
11486
11486
  * @public
11487
11487
  */
11488
- Tags?: Tag[];
11488
+ Tags?: Tag[] | undefined;
11489
11489
  /**
11490
11490
  * <p>The name of a lifecycle configuration to associate with the notebook instance. For
11491
11491
  * information about lifestyle configurations, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html">Step 2.1: (Optional)
11492
11492
  * Customize a Notebook Instance</a>.</p>
11493
11493
  * @public
11494
11494
  */
11495
- LifecycleConfigName?: string;
11495
+ LifecycleConfigName?: string | undefined;
11496
11496
  /**
11497
11497
  * <p>Sets whether SageMaker provides internet access to the notebook instance. If
11498
11498
  * you set this to <code>Disabled</code> this notebook instance is able to access resources
@@ -11503,13 +11503,13 @@ export interface CreateNotebookInstanceInput {
11503
11503
  * <code>SubnetId</code> parameter.</p>
11504
11504
  * @public
11505
11505
  */
11506
- DirectInternetAccess?: DirectInternetAccess;
11506
+ DirectInternetAccess?: DirectInternetAccess | undefined;
11507
11507
  /**
11508
11508
  * <p>The size, in GB, of the ML storage volume to attach to the notebook instance. The
11509
11509
  * default value is 5 GB.</p>
11510
11510
  * @public
11511
11511
  */
11512
- VolumeSizeInGB?: number;
11512
+ VolumeSizeInGB?: number | undefined;
11513
11513
  /**
11514
11514
  * <p>This parameter is no longer supported. Elastic Inference (EI) is no longer
11515
11515
  * available.</p>
@@ -11517,7 +11517,7 @@ export interface CreateNotebookInstanceInput {
11517
11517
  * notebook instance.</p>
11518
11518
  * @public
11519
11519
  */
11520
- AcceleratorTypes?: NotebookInstanceAcceleratorType[];
11520
+ AcceleratorTypes?: NotebookInstanceAcceleratorType[] | undefined;
11521
11521
  /**
11522
11522
  * <p>A Git repository to associate with the notebook instance as its default code
11523
11523
  * repository. This can be either the name of a Git repository stored as a resource in your
@@ -11527,7 +11527,7 @@ export interface CreateNotebookInstanceInput {
11527
11527
  * Repositories with SageMaker Notebook Instances</a>.</p>
11528
11528
  * @public
11529
11529
  */
11530
- DefaultCodeRepository?: string;
11530
+ DefaultCodeRepository?: string | undefined;
11531
11531
  /**
11532
11532
  * <p>An array of up to three Git repositories to associate with the notebook instance.
11533
11533
  * These can be either the names of Git repositories stored as resources in your account,
@@ -11537,7 +11537,7 @@ export interface CreateNotebookInstanceInput {
11537
11537
  * Repositories with SageMaker Notebook Instances</a>.</p>
11538
11538
  * @public
11539
11539
  */
11540
- AdditionalCodeRepositories?: string[];
11540
+ AdditionalCodeRepositories?: string[] | undefined;
11541
11541
  /**
11542
11542
  * <p>Whether root access is enabled or disabled for users of the notebook instance. The
11543
11543
  * default value is <code>Enabled</code>.</p>
@@ -11549,17 +11549,17 @@ export interface CreateNotebookInstanceInput {
11549
11549
  * </note>
11550
11550
  * @public
11551
11551
  */
11552
- RootAccess?: RootAccess;
11552
+ RootAccess?: RootAccess | undefined;
11553
11553
  /**
11554
11554
  * <p>The platform identifier of the notebook instance runtime environment.</p>
11555
11555
  * @public
11556
11556
  */
11557
- PlatformIdentifier?: string;
11557
+ PlatformIdentifier?: string | undefined;
11558
11558
  /**
11559
11559
  * <p>Information on the IMDS configuration of the notebook instance</p>
11560
11560
  * @public
11561
11561
  */
11562
- InstanceMetadataServiceConfiguration?: InstanceMetadataServiceConfiguration;
11562
+ InstanceMetadataServiceConfiguration?: InstanceMetadataServiceConfiguration | undefined;
11563
11563
  }
11564
11564
  /**
11565
11565
  * @public
@@ -11569,7 +11569,7 @@ export interface CreateNotebookInstanceOutput {
11569
11569
  * <p>The Amazon Resource Name (ARN) of the notebook instance. </p>
11570
11570
  * @public
11571
11571
  */
11572
- NotebookInstanceArn?: string;
11572
+ NotebookInstanceArn?: string | undefined;
11573
11573
  }
11574
11574
  /**
11575
11575
  * <p>Contains the notebook instance lifecycle configuration script.</p>
@@ -11592,7 +11592,7 @@ export interface NotebookInstanceLifecycleHook {
11592
11592
  * configuration.</p>
11593
11593
  * @public
11594
11594
  */
11595
- Content?: string;
11595
+ Content?: string | undefined;
11596
11596
  }
11597
11597
  /**
11598
11598
  * @public
@@ -11608,13 +11608,13 @@ export interface CreateNotebookInstanceLifecycleConfigInput {
11608
11608
  * script must be a base64-encoded string.</p>
11609
11609
  * @public
11610
11610
  */
11611
- OnCreate?: NotebookInstanceLifecycleHook[];
11611
+ OnCreate?: NotebookInstanceLifecycleHook[] | undefined;
11612
11612
  /**
11613
11613
  * <p>A shell script that runs every time you start a notebook instance, including when you
11614
11614
  * create the notebook instance. The shell script must be a base64-encoded string.</p>
11615
11615
  * @public
11616
11616
  */
11617
- OnStart?: NotebookInstanceLifecycleHook[];
11617
+ OnStart?: NotebookInstanceLifecycleHook[] | undefined;
11618
11618
  }
11619
11619
  /**
11620
11620
  * @public
@@ -11624,7 +11624,7 @@ export interface CreateNotebookInstanceLifecycleConfigOutput {
11624
11624
  * <p>The Amazon Resource Name (ARN) of the lifecycle configuration.</p>
11625
11625
  * @public
11626
11626
  */
11627
- NotebookInstanceLifecycleConfigArn?: string;
11627
+ NotebookInstanceLifecycleConfigArn?: string | undefined;
11628
11628
  }
11629
11629
  /**
11630
11630
  * @public
@@ -11686,12 +11686,12 @@ export interface OptimizationJobModelSourceS3 {
11686
11686
  * <p>An Amazon S3 URI that locates a source model to optimize with an optimization job.</p>
11687
11687
  * @public
11688
11688
  */
11689
- S3Uri?: string;
11689
+ S3Uri?: string | undefined;
11690
11690
  /**
11691
11691
  * <p>The access configuration settings for the source ML model for an optimization job, where you can accept the model end-user license agreement (EULA).</p>
11692
11692
  * @public
11693
11693
  */
11694
- ModelAccessConfig?: OptimizationModelAccessConfig;
11694
+ ModelAccessConfig?: OptimizationModelAccessConfig | undefined;
11695
11695
  }
11696
11696
  /**
11697
11697
  * <p>The location of the source model to optimize with an optimization job.</p>
@@ -11702,7 +11702,7 @@ export interface OptimizationJobModelSource {
11702
11702
  * <p>The Amazon S3 location of a source model to optimize with an optimization job.</p>
11703
11703
  * @public
11704
11704
  */
11705
- S3?: OptimizationJobModelSourceS3;
11705
+ S3?: OptimizationJobModelSourceS3 | undefined;
11706
11706
  }
11707
11707
  /**
11708
11708
  * <p>Settings for the model compilation technique that's applied by a model optimization job.</p>
@@ -11713,12 +11713,12 @@ export interface ModelCompilationConfig {
11713
11713
  * <p>The URI of an LMI DLC in Amazon ECR. SageMaker uses this image to run the optimization.</p>
11714
11714
  * @public
11715
11715
  */
11716
- Image?: string;
11716
+ Image?: string | undefined;
11717
11717
  /**
11718
11718
  * <p>Environment variables that override the default ones in the model container.</p>
11719
11719
  * @public
11720
11720
  */
11721
- OverrideEnvironment?: Record<string, string>;
11721
+ OverrideEnvironment?: Record<string, string> | undefined;
11722
11722
  }
11723
11723
  /**
11724
11724
  * <p>Settings for the model quantization technique that's applied by a model optimization job.</p>
@@ -11729,12 +11729,12 @@ export interface ModelQuantizationConfig {
11729
11729
  * <p>The URI of an LMI DLC in Amazon ECR. SageMaker uses this image to run the optimization.</p>
11730
11730
  * @public
11731
11731
  */
11732
- Image?: string;
11732
+ Image?: string | undefined;
11733
11733
  /**
11734
11734
  * <p>Environment variables that override the default ones in the model container.</p>
11735
11735
  * @public
11736
11736
  */
11737
- OverrideEnvironment?: Record<string, string>;
11737
+ OverrideEnvironment?: Record<string, string> | undefined;
11738
11738
  }
11739
11739
  /**
11740
11740
  * <p>Settings for an optimization technique that you apply with a model optimization
@@ -11789,7 +11789,7 @@ export interface OptimizationJobOutputConfig {
11789
11789
  * optimized model when SageMaker uploads the model to Amazon S3.</p>
11790
11790
  * @public
11791
11791
  */
11792
- KmsKeyId?: string;
11792
+ KmsKeyId?: string | undefined;
11793
11793
  /**
11794
11794
  * <p>The Amazon S3 URI for where to store the optimized model that you create with an optimization
11795
11795
  * job.</p>
@@ -11864,7 +11864,7 @@ export interface CreateOptimizationJobRequest {
11864
11864
  * <p>The environment variables to set in the model container.</p>
11865
11865
  * @public
11866
11866
  */
11867
- OptimizationEnvironment?: Record<string, string>;
11867
+ OptimizationEnvironment?: Record<string, string> | undefined;
11868
11868
  /**
11869
11869
  * <p>Settings for each of the optimization techniques that the job applies.</p>
11870
11870
  * @public
@@ -11901,12 +11901,12 @@ export interface CreateOptimizationJobRequest {
11901
11901
  * Guide</i>.</p>
11902
11902
  * @public
11903
11903
  */
11904
- Tags?: Tag[];
11904
+ Tags?: Tag[] | undefined;
11905
11905
  /**
11906
11906
  * <p>A VPC in Amazon VPC that your optimized model has access to.</p>
11907
11907
  * @public
11908
11908
  */
11909
- VpcConfig?: OptimizationVpcConfig;
11909
+ VpcConfig?: OptimizationVpcConfig | undefined;
11910
11910
  }
11911
11911
  /**
11912
11912
  * @internal