@aws-sdk/client-sagemaker 3.687.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.
@@ -44,7 +44,7 @@ export interface PipelineDefinitionS3Location {
44
44
  * will retrieve the latest version.</p>
45
45
  * @public
46
46
  */
47
- VersionId?: string;
47
+ VersionId?: string | undefined;
48
48
  }
49
49
  /**
50
50
  * @public
@@ -59,30 +59,30 @@ export interface CreatePipelineRequest {
59
59
  * <p>The display name of the pipeline.</p>
60
60
  * @public
61
61
  */
62
- PipelineDisplayName?: string;
62
+ PipelineDisplayName?: string | undefined;
63
63
  /**
64
64
  * <p>The <a href="https://aws-sagemaker-mlops.github.io/sagemaker-model-building-pipeline-definition-JSON-schema/">JSON
65
65
  * pipeline definition</a> of the pipeline.</p>
66
66
  * @public
67
67
  */
68
- PipelineDefinition?: string;
68
+ PipelineDefinition?: string | undefined;
69
69
  /**
70
70
  * <p>The location of the pipeline definition stored in Amazon S3. If specified,
71
71
  * SageMaker will retrieve the pipeline definition from this location.</p>
72
72
  * @public
73
73
  */
74
- PipelineDefinitionS3Location?: PipelineDefinitionS3Location;
74
+ PipelineDefinitionS3Location?: PipelineDefinitionS3Location | undefined;
75
75
  /**
76
76
  * <p>A description of the pipeline.</p>
77
77
  * @public
78
78
  */
79
- PipelineDescription?: string;
79
+ PipelineDescription?: string | undefined;
80
80
  /**
81
81
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
82
82
  * operation. An idempotent operation completes no more than one time.</p>
83
83
  * @public
84
84
  */
85
- ClientRequestToken?: string;
85
+ ClientRequestToken?: string | undefined;
86
86
  /**
87
87
  * <p>The Amazon Resource Name (ARN) of the role used by the pipeline to access and create resources.</p>
88
88
  * @public
@@ -92,13 +92,13 @@ export interface CreatePipelineRequest {
92
92
  * <p>A list of tags to apply to the created pipeline.</p>
93
93
  * @public
94
94
  */
95
- Tags?: Tag[];
95
+ Tags?: Tag[] | undefined;
96
96
  /**
97
97
  * <p>This is the configuration that controls the parallelism of the pipeline.
98
98
  * If specified, it applies to all runs of this pipeline by default.</p>
99
99
  * @public
100
100
  */
101
- ParallelismConfiguration?: ParallelismConfiguration;
101
+ ParallelismConfiguration?: ParallelismConfiguration | undefined;
102
102
  }
103
103
  /**
104
104
  * @public
@@ -108,7 +108,7 @@ export interface CreatePipelineResponse {
108
108
  * <p>The Amazon Resource Name (ARN) of the created pipeline.</p>
109
109
  * @public
110
110
  */
111
- PipelineArn?: string;
111
+ PipelineArn?: string | undefined;
112
112
  }
113
113
  /**
114
114
  * @public
@@ -128,17 +128,17 @@ export interface CreatePresignedDomainUrlRequest {
128
128
  * <p>The session expiration duration in seconds. This value defaults to 43200.</p>
129
129
  * @public
130
130
  */
131
- SessionExpirationDurationInSeconds?: number;
131
+ SessionExpirationDurationInSeconds?: number | undefined;
132
132
  /**
133
133
  * <p>The number of seconds until the pre-signed URL expires. This value defaults to 300.</p>
134
134
  * @public
135
135
  */
136
- ExpiresInSeconds?: number;
136
+ ExpiresInSeconds?: number | undefined;
137
137
  /**
138
138
  * <p>The name of the space.</p>
139
139
  * @public
140
140
  */
141
- SpaceName?: string;
141
+ SpaceName?: string | undefined;
142
142
  /**
143
143
  * <p>The landing page that the user is directed to when accessing the presigned URL. Using this
144
144
  * value, users can access Studio or Studio Classic, even if it is not the default experience for
@@ -177,7 +177,7 @@ export interface CreatePresignedDomainUrlRequest {
177
177
  * </ul>
178
178
  * @public
179
179
  */
180
- LandingUri?: string;
180
+ LandingUri?: string | undefined;
181
181
  }
182
182
  /**
183
183
  * @public
@@ -187,7 +187,7 @@ export interface CreatePresignedDomainUrlResponse {
187
187
  * <p>The presigned URL.</p>
188
188
  * @public
189
189
  */
190
- AuthorizedUrl?: string;
190
+ AuthorizedUrl?: string | undefined;
191
191
  }
192
192
  /**
193
193
  * @public
@@ -203,12 +203,12 @@ export interface CreatePresignedMlflowTrackingServerUrlRequest {
203
203
  * only once.</p>
204
204
  * @public
205
205
  */
206
- ExpiresInSeconds?: number;
206
+ ExpiresInSeconds?: number | undefined;
207
207
  /**
208
208
  * <p>The duration in seconds that your MLflow UI session is valid.</p>
209
209
  * @public
210
210
  */
211
- SessionExpirationDurationInSeconds?: number;
211
+ SessionExpirationDurationInSeconds?: number | undefined;
212
212
  }
213
213
  /**
214
214
  * @public
@@ -218,7 +218,7 @@ export interface CreatePresignedMlflowTrackingServerUrlResponse {
218
218
  * <p>A presigned URL with an authorization token.</p>
219
219
  * @public
220
220
  */
221
- AuthorizedUrl?: string;
221
+ AuthorizedUrl?: string | undefined;
222
222
  }
223
223
  /**
224
224
  * @public
@@ -233,7 +233,7 @@ export interface CreatePresignedNotebookInstanceUrlInput {
233
233
  * <p>The duration of the session, in seconds. The default is 12 hours.</p>
234
234
  * @public
235
235
  */
236
- SessionExpirationDurationInSeconds?: number;
236
+ SessionExpirationDurationInSeconds?: number | undefined;
237
237
  }
238
238
  /**
239
239
  * @public
@@ -243,7 +243,7 @@ export interface CreatePresignedNotebookInstanceUrlOutput {
243
243
  * <p>A JSON object that contains the URL string. </p>
244
244
  * @public
245
245
  */
246
- AuthorizedUrl?: string;
246
+ AuthorizedUrl?: string | undefined;
247
247
  }
248
248
  /**
249
249
  * <p>Associates a SageMaker job as a trial component with an experiment and trial. Specified when
@@ -272,24 +272,24 @@ export interface ExperimentConfig {
272
272
  * <p>The name of an existing experiment to associate with the trial component.</p>
273
273
  * @public
274
274
  */
275
- ExperimentName?: string;
275
+ ExperimentName?: string | undefined;
276
276
  /**
277
277
  * <p>The name of an existing trial to associate the trial component with. If not specified, a
278
278
  * new trial is created.</p>
279
279
  * @public
280
280
  */
281
- TrialName?: string;
281
+ TrialName?: string | undefined;
282
282
  /**
283
283
  * <p>The display name for the trial component. If this key isn't specified, the display name is
284
284
  * the trial component name.</p>
285
285
  * @public
286
286
  */
287
- TrialComponentDisplayName?: string;
287
+ TrialComponentDisplayName?: string | undefined;
288
288
  /**
289
289
  * <p>The name of the experiment run to associate with the trial component.</p>
290
290
  * @public
291
291
  */
292
- RunName?: string;
292
+ RunName?: string | undefined;
293
293
  }
294
294
  /**
295
295
  * @public
@@ -382,7 +382,7 @@ export interface RedshiftDatasetDefinition {
382
382
  * Redshift execution.</p>
383
383
  * @public
384
384
  */
385
- KmsKeyId?: string;
385
+ KmsKeyId?: string | undefined;
386
386
  /**
387
387
  * <p>The data storage format for Redshift query results.</p>
388
388
  * @public
@@ -392,7 +392,7 @@ export interface RedshiftDatasetDefinition {
392
392
  * <p>The compression used for Redshift query results.</p>
393
393
  * @public
394
394
  */
395
- OutputCompression?: RedshiftResultCompressionType;
395
+ OutputCompression?: RedshiftResultCompressionType | undefined;
396
396
  }
397
397
  /**
398
398
  * <p>Configuration for Dataset Definition inputs. The Dataset Definition input must specify
@@ -405,25 +405,25 @@ export interface DatasetDefinition {
405
405
  * <p>Configuration for Athena Dataset Definition input.</p>
406
406
  * @public
407
407
  */
408
- AthenaDatasetDefinition?: AthenaDatasetDefinition;
408
+ AthenaDatasetDefinition?: AthenaDatasetDefinition | undefined;
409
409
  /**
410
410
  * <p>Configuration for Redshift Dataset Definition input.</p>
411
411
  * @public
412
412
  */
413
- RedshiftDatasetDefinition?: RedshiftDatasetDefinition;
413
+ RedshiftDatasetDefinition?: RedshiftDatasetDefinition | undefined;
414
414
  /**
415
415
  * <p>The local path where you want Amazon SageMaker to download the Dataset Definition inputs to run a
416
416
  * processing job. <code>LocalPath</code> is an absolute path to the input data. This is a required
417
417
  * parameter when <code>AppManaged</code> is <code>False</code> (default).</p>
418
418
  * @public
419
419
  */
420
- LocalPath?: string;
420
+ LocalPath?: string | undefined;
421
421
  /**
422
422
  * <p>Whether the generated dataset is <code>FullyReplicated</code> or
423
423
  * <code>ShardedByS3Key</code> (default).</p>
424
424
  * @public
425
425
  */
426
- DataDistributionType?: DataDistributionType;
426
+ DataDistributionType?: DataDistributionType | undefined;
427
427
  /**
428
428
  * <p>Whether to use <code>File</code> or <code>Pipe</code> input mode. In <code>File</code> (default) mode,
429
429
  * Amazon SageMaker copies the data from the input source onto the local Amazon Elastic Block Store
@@ -432,7 +432,7 @@ export interface DatasetDefinition {
432
432
  * algorithm without using the EBS volume.</p>
433
433
  * @public
434
434
  */
435
- InputMode?: InputMode;
435
+ InputMode?: InputMode | undefined;
436
436
  }
437
437
  /**
438
438
  * @public
@@ -475,7 +475,7 @@ export interface ProcessingS3Input {
475
475
  * parameter when <code>AppManaged</code> is <code>False</code> (default).</p>
476
476
  * @public
477
477
  */
478
- LocalPath?: string;
478
+ LocalPath?: string | undefined;
479
479
  /**
480
480
  * <p>Whether you use an <code>S3Prefix</code> or a <code>ManifestFile</code> for
481
481
  * the data type. If you choose <code>S3Prefix</code>, <code>S3Uri</code> identifies a key
@@ -494,14 +494,14 @@ export interface ProcessingS3Input {
494
494
  * pipes without using the ML storage volume.</p>
495
495
  * @public
496
496
  */
497
- S3InputMode?: ProcessingS3InputMode;
497
+ S3InputMode?: ProcessingS3InputMode | undefined;
498
498
  /**
499
499
  * <p>Whether to distribute the data from Amazon S3 to all processing instances with
500
500
  * <code>FullyReplicated</code>, or whether the data from Amazon S3 is shared by Amazon S3 key,
501
501
  * downloading one shard of data to each processing instance.</p>
502
502
  * @public
503
503
  */
504
- S3DataDistributionType?: ProcessingS3DataDistributionType;
504
+ S3DataDistributionType?: ProcessingS3DataDistributionType | undefined;
505
505
  /**
506
506
  * <p>Whether to GZIP-decompress the data in Amazon S3 as it is streamed into the processing
507
507
  * container. <code>Gzip</code> can only be used when <code>Pipe</code> mode is
@@ -509,7 +509,7 @@ export interface ProcessingS3Input {
509
509
  * data from the source directly to your container without using the EBS volume.</p>
510
510
  * @public
511
511
  */
512
- S3CompressionType?: ProcessingS3CompressionType;
512
+ S3CompressionType?: ProcessingS3CompressionType | undefined;
513
513
  }
514
514
  /**
515
515
  * <p>The inputs for a processing job. The processing input must specify exactly one of either
@@ -527,17 +527,17 @@ export interface ProcessingInput {
527
527
  * processing job application. When <code>False</code> (default), input operations are managed by Amazon SageMaker.</p>
528
528
  * @public
529
529
  */
530
- AppManaged?: boolean;
530
+ AppManaged?: boolean | undefined;
531
531
  /**
532
532
  * <p>Configuration for downloading input data from Amazon S3 into the processing container.</p>
533
533
  * @public
534
534
  */
535
- S3Input?: ProcessingS3Input;
535
+ S3Input?: ProcessingS3Input | undefined;
536
536
  /**
537
537
  * <p>Configuration for a Dataset Definition input. </p>
538
538
  * @public
539
539
  */
540
- DatasetDefinition?: DatasetDefinition;
540
+ DatasetDefinition?: DatasetDefinition | undefined;
541
541
  }
542
542
  /**
543
543
  * <p>Configuration for processing job outputs in Amazon SageMaker Feature Store.</p>
@@ -569,7 +569,7 @@ export interface ProcessingS3Output {
569
569
  * entrypoint is invoked.</p>
570
570
  * @public
571
571
  */
572
- LocalPath?: string;
572
+ LocalPath?: string | undefined;
573
573
  /**
574
574
  * <p>Whether to upload the results of the processing job continuously or after the job
575
575
  * completes.</p>
@@ -592,20 +592,20 @@ export interface ProcessingOutput {
592
592
  * <p>Configuration for processing job outputs in Amazon S3.</p>
593
593
  * @public
594
594
  */
595
- S3Output?: ProcessingS3Output;
595
+ S3Output?: ProcessingS3Output | undefined;
596
596
  /**
597
597
  * <p>Configuration for processing job outputs in Amazon SageMaker Feature Store. This processing output
598
598
  * type is only supported when <code>AppManaged</code> is specified. </p>
599
599
  * @public
600
600
  */
601
- FeatureStoreOutput?: ProcessingFeatureStoreOutput;
601
+ FeatureStoreOutput?: ProcessingFeatureStoreOutput | undefined;
602
602
  /**
603
603
  * <p>When <code>True</code>, output operations such as data upload are managed natively by the
604
604
  * processing job application. When <code>False</code> (default), output operations are managed by
605
605
  * Amazon SageMaker.</p>
606
606
  * @public
607
607
  */
608
- AppManaged?: boolean;
608
+ AppManaged?: boolean | undefined;
609
609
  }
610
610
  /**
611
611
  * <p>Configuration for uploading output from the processing container.</p>
@@ -624,7 +624,7 @@ export interface ProcessingOutputConfig {
624
624
  * outputs.</p>
625
625
  * @public
626
626
  */
627
- KmsKeyId?: string;
627
+ KmsKeyId?: string | undefined;
628
628
  }
629
629
  /**
630
630
  * <p>Configuration for the cluster used to run a processing job.</p>
@@ -672,7 +672,7 @@ export interface ProcessingClusterConfig {
672
672
  * </note>
673
673
  * @public
674
674
  */
675
- VolumeKmsKeyId?: string;
675
+ VolumeKmsKeyId?: string | undefined;
676
676
  }
677
677
  /**
678
678
  * <p>Identifies the resources, ML compute instances, and ML storage volumes to deploy for a
@@ -708,12 +708,12 @@ export interface CreateProcessingJobRequest {
708
708
  * processing container.</p>
709
709
  * @public
710
710
  */
711
- ProcessingInputs?: ProcessingInput[];
711
+ ProcessingInputs?: ProcessingInput[] | undefined;
712
712
  /**
713
713
  * <p>Output configuration for the processing job.</p>
714
714
  * @public
715
715
  */
716
- ProcessingOutputConfig?: ProcessingOutputConfig;
716
+ ProcessingOutputConfig?: ProcessingOutputConfig | undefined;
717
717
  /**
718
718
  * <p> The name of the processing job. The name must be unique within an Amazon Web Services Region in the
719
719
  * Amazon Web Services account.</p>
@@ -730,7 +730,7 @@ export interface CreateProcessingJobRequest {
730
730
  * <p>The time limit for how long the processing job is allowed to run.</p>
731
731
  * @public
732
732
  */
733
- StoppingCondition?: ProcessingStoppingCondition;
733
+ StoppingCondition?: ProcessingStoppingCondition | undefined;
734
734
  /**
735
735
  * <p>Configures the processing job to run a specified Docker container image.</p>
736
736
  * @public
@@ -741,14 +741,14 @@ export interface CreateProcessingJobRequest {
741
741
  * 100 key and values entries in the map are supported.</p>
742
742
  * @public
743
743
  */
744
- Environment?: Record<string, string>;
744
+ Environment?: Record<string, string> | undefined;
745
745
  /**
746
746
  * <p>Networking options for a processing job, such as whether to allow inbound and
747
747
  * outbound network calls to and from processing containers, and the VPC subnets and
748
748
  * security groups to use for VPC-enabled processing jobs.</p>
749
749
  * @public
750
750
  */
751
- NetworkConfig?: NetworkConfig;
751
+ NetworkConfig?: NetworkConfig | undefined;
752
752
  /**
753
753
  * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on
754
754
  * your behalf.</p>
@@ -760,7 +760,7 @@ export interface CreateProcessingJobRequest {
760
760
  * User Guide</i>.</p>
761
761
  * @public
762
762
  */
763
- Tags?: Tag[];
763
+ Tags?: Tag[] | undefined;
764
764
  /**
765
765
  * <p>Associates a SageMaker job as a trial component with an experiment and trial. Specified when
766
766
  * you call the following APIs:</p>
@@ -783,7 +783,7 @@ export interface CreateProcessingJobRequest {
783
783
  * </ul>
784
784
  * @public
785
785
  */
786
- ExperimentConfig?: ExperimentConfig;
786
+ ExperimentConfig?: ExperimentConfig | undefined;
787
787
  }
788
788
  /**
789
789
  * @public
@@ -806,12 +806,12 @@ export interface ProvisioningParameter {
806
806
  * <p>The key that identifies a provisioning parameter.</p>
807
807
  * @public
808
808
  */
809
- Key?: string;
809
+ Key?: string | undefined;
810
810
  /**
811
811
  * <p>The value of the provisioning parameter.</p>
812
812
  * @public
813
813
  */
814
- Value?: string;
814
+ Value?: string | undefined;
815
815
  }
816
816
  /**
817
817
  * <p>Details that you specify to provision a service catalog product. For information about
@@ -829,17 +829,17 @@ export interface ServiceCatalogProvisioningDetails {
829
829
  * <p>The ID of the provisioning artifact.</p>
830
830
  * @public
831
831
  */
832
- ProvisioningArtifactId?: string;
832
+ ProvisioningArtifactId?: string | undefined;
833
833
  /**
834
834
  * <p>The path identifier of the product. This value is optional if the product has a default path, and required if the product has more than one path. </p>
835
835
  * @public
836
836
  */
837
- PathId?: string;
837
+ PathId?: string | undefined;
838
838
  /**
839
839
  * <p>A list of key value pairs that you specify when you provision a product.</p>
840
840
  * @public
841
841
  */
842
- ProvisioningParameters?: ProvisioningParameter[];
842
+ ProvisioningParameters?: ProvisioningParameter[] | undefined;
843
843
  }
844
844
  /**
845
845
  * @public
@@ -854,7 +854,7 @@ export interface CreateProjectInput {
854
854
  * <p>A description for the project.</p>
855
855
  * @public
856
856
  */
857
- ProjectDescription?: string;
857
+ ProjectDescription?: string | undefined;
858
858
  /**
859
859
  * <p>The product ID and provisioning artifact ID to provision a service catalog. The provisioning
860
860
  * artifact ID will default to the latest provisioning artifact ID of the product, if you don't
@@ -868,7 +868,7 @@ export interface CreateProjectInput {
868
868
  * resource costs. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a> in the <i>Amazon Web Services General Reference Guide</i>.</p>
869
869
  * @public
870
870
  */
871
- Tags?: Tag[];
871
+ Tags?: Tag[] | undefined;
872
872
  }
873
873
  /**
874
874
  * @public
@@ -906,7 +906,7 @@ export interface SpaceIdleSettings {
906
906
  * down.</p>
907
907
  * @public
908
908
  */
909
- IdleTimeoutInMinutes?: number;
909
+ IdleTimeoutInMinutes?: number | undefined;
910
910
  }
911
911
  /**
912
912
  * <p>Settings that are used to configure and manage the lifecycle of Amazon SageMaker Studio
@@ -918,7 +918,7 @@ export interface SpaceAppLifecycleManagement {
918
918
  * <p>Settings related to idle shutdown of Studio applications.</p>
919
919
  * @public
920
920
  */
921
- IdleSettings?: SpaceIdleSettings;
921
+ IdleSettings?: SpaceIdleSettings | undefined;
922
922
  }
923
923
  /**
924
924
  * <p>The application settings for a Code Editor space.</p>
@@ -930,13 +930,13 @@ export interface SpaceCodeEditorAppSettings {
930
930
  * the version runs on.</p>
931
931
  * @public
932
932
  */
933
- DefaultResourceSpec?: ResourceSpec;
933
+ DefaultResourceSpec?: ResourceSpec | undefined;
934
934
  /**
935
935
  * <p>Settings that are used to configure and manage the lifecycle of CodeEditor applications in
936
936
  * a space.</p>
937
937
  * @public
938
938
  */
939
- AppLifecycleManagement?: SpaceAppLifecycleManagement;
939
+ AppLifecycleManagement?: SpaceAppLifecycleManagement | undefined;
940
940
  }
941
941
  /**
942
942
  * <p>A file system, created by you in Amazon EFS, that you assign to a user profile or
@@ -992,18 +992,18 @@ export interface SpaceJupyterLabAppSettings {
992
992
  * the version runs on.</p>
993
993
  * @public
994
994
  */
995
- DefaultResourceSpec?: ResourceSpec;
995
+ DefaultResourceSpec?: ResourceSpec | undefined;
996
996
  /**
997
997
  * <p>A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application.</p>
998
998
  * @public
999
999
  */
1000
- CodeRepositories?: CodeRepository[];
1000
+ CodeRepositories?: CodeRepository[] | undefined;
1001
1001
  /**
1002
1002
  * <p>Settings that are used to configure and manage the lifecycle of JupyterLab applications in
1003
1003
  * a space.</p>
1004
1004
  * @public
1005
1005
  */
1006
- AppLifecycleManagement?: SpaceAppLifecycleManagement;
1006
+ AppLifecycleManagement?: SpaceAppLifecycleManagement | undefined;
1007
1007
  }
1008
1008
  /**
1009
1009
  * <p>A collection of EBS storage settings that apply to both private and shared spaces.</p>
@@ -1025,7 +1025,7 @@ export interface SpaceStorageSettings {
1025
1025
  * <p>A collection of EBS storage settings for a space.</p>
1026
1026
  * @public
1027
1027
  */
1028
- EbsStorageSettings?: EbsStorageSettings;
1028
+ EbsStorageSettings?: EbsStorageSettings | undefined;
1029
1029
  }
1030
1030
  /**
1031
1031
  * <p>A collection of space settings.</p>
@@ -1036,38 +1036,38 @@ export interface SpaceSettings {
1036
1036
  * <p>The JupyterServer app settings.</p>
1037
1037
  * @public
1038
1038
  */
1039
- JupyterServerAppSettings?: JupyterServerAppSettings;
1039
+ JupyterServerAppSettings?: JupyterServerAppSettings | undefined;
1040
1040
  /**
1041
1041
  * <p>The KernelGateway app settings.</p>
1042
1042
  * @public
1043
1043
  */
1044
- KernelGatewayAppSettings?: KernelGatewayAppSettings;
1044
+ KernelGatewayAppSettings?: KernelGatewayAppSettings | undefined;
1045
1045
  /**
1046
1046
  * <p>The Code Editor application settings.</p>
1047
1047
  * @public
1048
1048
  */
1049
- CodeEditorAppSettings?: SpaceCodeEditorAppSettings;
1049
+ CodeEditorAppSettings?: SpaceCodeEditorAppSettings | undefined;
1050
1050
  /**
1051
1051
  * <p>The settings for the JupyterLab application.</p>
1052
1052
  * @public
1053
1053
  */
1054
- JupyterLabAppSettings?: SpaceJupyterLabAppSettings;
1054
+ JupyterLabAppSettings?: SpaceJupyterLabAppSettings | undefined;
1055
1055
  /**
1056
1056
  * <p>The type of app created within the space.</p>
1057
1057
  * @public
1058
1058
  */
1059
- AppType?: AppType;
1059
+ AppType?: AppType | undefined;
1060
1060
  /**
1061
1061
  * <p>The storage settings for a space.</p>
1062
1062
  * @public
1063
1063
  */
1064
- SpaceStorageSettings?: SpaceStorageSettings;
1064
+ SpaceStorageSettings?: SpaceStorageSettings | undefined;
1065
1065
  /**
1066
1066
  * <p>A file system, created by you, that you assign to a space for an Amazon SageMaker
1067
1067
  * Domain. Permitted users can access this file system in Amazon SageMaker Studio.</p>
1068
1068
  * @public
1069
1069
  */
1070
- CustomFileSystems?: CustomFileSystem[];
1070
+ CustomFileSystems?: CustomFileSystem[] | undefined;
1071
1071
  }
1072
1072
  /**
1073
1073
  * @public
@@ -1112,27 +1112,27 @@ export interface CreateSpaceRequest {
1112
1112
  * API.</p>
1113
1113
  * @public
1114
1114
  */
1115
- Tags?: Tag[];
1115
+ Tags?: Tag[] | undefined;
1116
1116
  /**
1117
1117
  * <p>A collection of space settings.</p>
1118
1118
  * @public
1119
1119
  */
1120
- SpaceSettings?: SpaceSettings;
1120
+ SpaceSettings?: SpaceSettings | undefined;
1121
1121
  /**
1122
1122
  * <p>A collection of ownership settings.</p>
1123
1123
  * @public
1124
1124
  */
1125
- OwnershipSettings?: OwnershipSettings;
1125
+ OwnershipSettings?: OwnershipSettings | undefined;
1126
1126
  /**
1127
1127
  * <p>A collection of space sharing settings.</p>
1128
1128
  * @public
1129
1129
  */
1130
- SpaceSharingSettings?: SpaceSharingSettings;
1130
+ SpaceSharingSettings?: SpaceSharingSettings | undefined;
1131
1131
  /**
1132
1132
  * <p>The name of the space that appears in the SageMaker Studio UI.</p>
1133
1133
  * @public
1134
1134
  */
1135
- SpaceDisplayName?: string;
1135
+ SpaceDisplayName?: string | undefined;
1136
1136
  }
1137
1137
  /**
1138
1138
  * @public
@@ -1142,7 +1142,7 @@ export interface CreateSpaceResponse {
1142
1142
  * <p>The space's Amazon Resource Name (ARN).</p>
1143
1143
  * @public
1144
1144
  */
1145
- SpaceArn?: string;
1145
+ SpaceArn?: string | undefined;
1146
1146
  }
1147
1147
  /**
1148
1148
  * @public
@@ -1184,7 +1184,7 @@ export interface CreateStudioLifecycleConfigRequest {
1184
1184
  * API. </p>
1185
1185
  * @public
1186
1186
  */
1187
- Tags?: Tag[];
1187
+ Tags?: Tag[] | undefined;
1188
1188
  }
1189
1189
  /**
1190
1190
  * @public
@@ -1194,7 +1194,7 @@ export interface CreateStudioLifecycleConfigResponse {
1194
1194
  * <p>The ARN of your created Lifecycle Configuration.</p>
1195
1195
  * @public
1196
1196
  */
1197
- StudioLifecycleConfigArn?: string;
1197
+ StudioLifecycleConfigArn?: string | undefined;
1198
1198
  }
1199
1199
  /**
1200
1200
  * <p>Configuration information for the Amazon SageMaker Debugger hook parameters, metric and tensor collections, and
@@ -1209,7 +1209,7 @@ export interface DebugHookConfig {
1209
1209
  * <code>/opt/ml/output/tensors/</code>.</p>
1210
1210
  * @public
1211
1211
  */
1212
- LocalPath?: string;
1212
+ LocalPath?: string | undefined;
1213
1213
  /**
1214
1214
  * <p>Path to Amazon S3 storage location for metrics and tensors.</p>
1215
1215
  * @public
@@ -1219,7 +1219,7 @@ export interface DebugHookConfig {
1219
1219
  * <p>Configuration information for the Amazon SageMaker Debugger hook parameters.</p>
1220
1220
  * @public
1221
1221
  */
1222
- HookParameters?: Record<string, string>;
1222
+ HookParameters?: Record<string, string> | undefined;
1223
1223
  /**
1224
1224
  * <p>Configuration information for Amazon SageMaker Debugger tensor collections. To learn more about
1225
1225
  * how to configure the <code>CollectionConfiguration</code> parameter,
@@ -1227,7 +1227,7 @@ export interface DebugHookConfig {
1227
1227
  * </p>
1228
1228
  * @public
1229
1229
  */
1230
- CollectionConfigurations?: CollectionConfiguration[];
1230
+ CollectionConfigurations?: CollectionConfiguration[] | undefined;
1231
1231
  }
1232
1232
  /**
1233
1233
  * <p>Configuration information for SageMaker Debugger rules for debugging. To learn more about
@@ -1247,12 +1247,12 @@ export interface DebugRuleConfiguration {
1247
1247
  * <code>/opt/ml/processing/output/rule/</code>.</p>
1248
1248
  * @public
1249
1249
  */
1250
- LocalPath?: string;
1250
+ LocalPath?: string | undefined;
1251
1251
  /**
1252
1252
  * <p>Path to Amazon S3 storage location for rules.</p>
1253
1253
  * @public
1254
1254
  */
1255
- S3OutputPath?: string;
1255
+ S3OutputPath?: string | undefined;
1256
1256
  /**
1257
1257
  * <p>The Amazon Elastic Container (ECR) Image for the managed rule evaluation.</p>
1258
1258
  * @public
@@ -1262,17 +1262,17 @@ export interface DebugRuleConfiguration {
1262
1262
  * <p>The instance type to deploy a custom rule for debugging a training job.</p>
1263
1263
  * @public
1264
1264
  */
1265
- InstanceType?: ProcessingInstanceType;
1265
+ InstanceType?: ProcessingInstanceType | undefined;
1266
1266
  /**
1267
1267
  * <p>The size, in GB, of the ML storage volume attached to the processing instance.</p>
1268
1268
  * @public
1269
1269
  */
1270
- VolumeSizeInGB?: number;
1270
+ VolumeSizeInGB?: number | undefined;
1271
1271
  /**
1272
1272
  * <p>Runtime configuration for rule container.</p>
1273
1273
  * @public
1274
1274
  */
1275
- RuleParameters?: Record<string, string>;
1275
+ RuleParameters?: Record<string, string> | undefined;
1276
1276
  }
1277
1277
  /**
1278
1278
  * <p>Configuration information for the infrastructure health check of a training job. A SageMaker-provided health check tests the health of instance hardware and cluster network
@@ -1284,7 +1284,7 @@ export interface InfraCheckConfig {
1284
1284
  * <p>Enables an infrastructure health check.</p>
1285
1285
  * @public
1286
1286
  */
1287
- EnableInfraCheck?: boolean;
1287
+ EnableInfraCheck?: boolean | undefined;
1288
1288
  }
1289
1289
  /**
1290
1290
  * <p>Configuration information for Amazon SageMaker Debugger system monitoring, framework profiling, and
@@ -1296,13 +1296,13 @@ export interface ProfilerConfig {
1296
1296
  * <p>Path to Amazon S3 storage location for system and framework metrics.</p>
1297
1297
  * @public
1298
1298
  */
1299
- S3OutputPath?: string;
1299
+ S3OutputPath?: string | undefined;
1300
1300
  /**
1301
1301
  * <p>A time interval for capturing system metrics in milliseconds. Available values are
1302
1302
  * 100, 200, 500, 1000 (1 second), 5000 (5 seconds), and 60000 (1 minute) milliseconds. The default value is 500 milliseconds.</p>
1303
1303
  * @public
1304
1304
  */
1305
- ProfilingIntervalInMilliseconds?: number;
1305
+ ProfilingIntervalInMilliseconds?: number | undefined;
1306
1306
  /**
1307
1307
  * <p>Configuration information for capturing framework metrics. Available key strings for different profiling options are
1308
1308
  * <code>DetailedProfilingConfig</code>, <code>PythonProfilingConfig</code>, and <code>DataLoaderProfilingConfig</code>.
@@ -1312,12 +1312,12 @@ export interface ProfilerConfig {
1312
1312
  * </p>
1313
1313
  * @public
1314
1314
  */
1315
- ProfilingParameters?: Record<string, string>;
1315
+ ProfilingParameters?: Record<string, string> | undefined;
1316
1316
  /**
1317
1317
  * <p>Configuration to turn off Amazon SageMaker Debugger's system monitoring and profiling functionality. To turn it off, set to <code>True</code>.</p>
1318
1318
  * @public
1319
1319
  */
1320
- DisableProfiler?: boolean;
1320
+ DisableProfiler?: boolean | undefined;
1321
1321
  }
1322
1322
  /**
1323
1323
  * <p>Configuration information for profiling rules.</p>
@@ -1333,12 +1333,12 @@ export interface ProfilerRuleConfiguration {
1333
1333
  * <p>Path to local storage location for output of rules. Defaults to <code>/opt/ml/processing/output/rule/</code>. </p>
1334
1334
  * @public
1335
1335
  */
1336
- LocalPath?: string;
1336
+ LocalPath?: string | undefined;
1337
1337
  /**
1338
1338
  * <p>Path to Amazon S3 storage location for rules.</p>
1339
1339
  * @public
1340
1340
  */
1341
- S3OutputPath?: string;
1341
+ S3OutputPath?: string | undefined;
1342
1342
  /**
1343
1343
  * <p>The Amazon Elastic Container Registry Image for the managed rule evaluation.</p>
1344
1344
  * @public
@@ -1348,17 +1348,17 @@ export interface ProfilerRuleConfiguration {
1348
1348
  * <p>The instance type to deploy a custom rule for profiling a training job.</p>
1349
1349
  * @public
1350
1350
  */
1351
- InstanceType?: ProcessingInstanceType;
1351
+ InstanceType?: ProcessingInstanceType | undefined;
1352
1352
  /**
1353
1353
  * <p>The size, in GB, of the ML storage volume attached to the processing instance.</p>
1354
1354
  * @public
1355
1355
  */
1356
- VolumeSizeInGB?: number;
1356
+ VolumeSizeInGB?: number | undefined;
1357
1357
  /**
1358
1358
  * <p>Runtime configuration for rule container.</p>
1359
1359
  * @public
1360
1360
  */
1361
- RuleParameters?: Record<string, string>;
1361
+ RuleParameters?: Record<string, string> | undefined;
1362
1362
  }
1363
1363
  /**
1364
1364
  * <p>Configuration for remote debugging for the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html">CreateTrainingJob</a> API. To learn more about the remote debugging
@@ -1372,7 +1372,7 @@ export interface RemoteDebugConfig {
1372
1372
  * <p>If set to True, enables remote debugging.</p>
1373
1373
  * @public
1374
1374
  */
1375
- EnableRemoteDebug?: boolean;
1375
+ EnableRemoteDebug?: boolean | undefined;
1376
1376
  }
1377
1377
  /**
1378
1378
  * <p>Contains information about attribute-based access control (ABAC) for a training job.
@@ -1387,7 +1387,7 @@ export interface SessionChainingConfig {
1387
1387
  * creation role and reuse these tags when assuming the training job execution role.</p>
1388
1388
  * @public
1389
1389
  */
1390
- EnableSessionTagChaining?: boolean;
1390
+ EnableSessionTagChaining?: boolean | undefined;
1391
1391
  }
1392
1392
  /**
1393
1393
  * <p>Configuration of storage locations for the Amazon SageMaker Debugger TensorBoard output data.</p>
@@ -1399,7 +1399,7 @@ export interface TensorBoardOutputConfig {
1399
1399
  * <code>/opt/ml/output/tensorboard</code>.</p>
1400
1400
  * @public
1401
1401
  */
1402
- LocalPath?: string;
1402
+ LocalPath?: string | undefined;
1403
1403
  /**
1404
1404
  * <p>Path to Amazon S3 storage location for TensorBoard output.</p>
1405
1405
  * @public
@@ -1431,7 +1431,7 @@ export interface CreateTrainingJobRequest {
1431
1431
  * </important>
1432
1432
  * @public
1433
1433
  */
1434
- HyperParameters?: Record<string, string>;
1434
+ HyperParameters?: Record<string, string> | undefined;
1435
1435
  /**
1436
1436
  * <p>The registry path of the Docker image that contains the training algorithm and
1437
1437
  * algorithm-specific metadata, including the input mode. For more information about
@@ -1473,7 +1473,7 @@ export interface CreateTrainingJobRequest {
1473
1473
  * job.</p>
1474
1474
  * @public
1475
1475
  */
1476
- InputDataConfig?: Channel[];
1476
+ InputDataConfig?: Channel[] | undefined;
1477
1477
  /**
1478
1478
  * <p>Specifies the path to the S3 location where you want to store model artifacts. SageMaker
1479
1479
  * creates subfolders for the artifacts. </p>
@@ -1498,7 +1498,7 @@ export interface CreateTrainingJobRequest {
1498
1498
  * Virtual Private Cloud</a>.</p>
1499
1499
  * @public
1500
1500
  */
1501
- VpcConfig?: VpcConfig;
1501
+ VpcConfig?: VpcConfig | undefined;
1502
1502
  /**
1503
1503
  * <p>Specifies a limit to how long a model training job can run. It also specifies how long
1504
1504
  * a managed Spot training job has to complete. When the job reaches the time limit, SageMaker
@@ -1515,7 +1515,7 @@ export interface CreateTrainingJobRequest {
1515
1515
  * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
1516
1516
  * @public
1517
1517
  */
1518
- Tags?: Tag[];
1518
+ Tags?: Tag[] | undefined;
1519
1519
  /**
1520
1520
  * <p>Isolates the training container. No inbound or outbound network calls can be made,
1521
1521
  * except for calls between peers within a training cluster for distributed training. If
@@ -1524,7 +1524,7 @@ export interface CreateTrainingJobRequest {
1524
1524
  * the training container does not have network access.</p>
1525
1525
  * @public
1526
1526
  */
1527
- EnableNetworkIsolation?: boolean;
1527
+ EnableNetworkIsolation?: boolean | undefined;
1528
1528
  /**
1529
1529
  * <p>To encrypt all communications between ML compute instances in distributed training,
1530
1530
  * choose <code>True</code>. Encryption provides greater security for distributed training,
@@ -1534,7 +1534,7 @@ export interface CreateTrainingJobRequest {
1534
1534
  * Compute Instances in a Distributed Training Job</a>.</p>
1535
1535
  * @public
1536
1536
  */
1537
- EnableInterContainerTrafficEncryption?: boolean;
1537
+ EnableInterContainerTrafficEncryption?: boolean | undefined;
1538
1538
  /**
1539
1539
  * <p>To train models using managed spot training, choose <code>True</code>. Managed spot
1540
1540
  * training provides a fully managed and scalable infrastructure for training machine
@@ -1546,13 +1546,13 @@ export interface CreateTrainingJobRequest {
1546
1546
  * interrupted, resumed, or completed. </p>
1547
1547
  * @public
1548
1548
  */
1549
- EnableManagedSpotTraining?: boolean;
1549
+ EnableManagedSpotTraining?: boolean | undefined;
1550
1550
  /**
1551
1551
  * <p>Contains information about the output location for managed spot training checkpoint
1552
1552
  * data.</p>
1553
1553
  * @public
1554
1554
  */
1555
- CheckpointConfig?: CheckpointConfig;
1555
+ CheckpointConfig?: CheckpointConfig | undefined;
1556
1556
  /**
1557
1557
  * <p>Configuration information for the Amazon SageMaker Debugger hook parameters, metric and tensor collections, and
1558
1558
  * storage paths. To learn more about
@@ -1560,17 +1560,17 @@ export interface CreateTrainingJobRequest {
1560
1560
  * see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html">Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job</a>.</p>
1561
1561
  * @public
1562
1562
  */
1563
- DebugHookConfig?: DebugHookConfig;
1563
+ DebugHookConfig?: DebugHookConfig | undefined;
1564
1564
  /**
1565
1565
  * <p>Configuration information for Amazon SageMaker Debugger rules for debugging output tensors.</p>
1566
1566
  * @public
1567
1567
  */
1568
- DebugRuleConfigurations?: DebugRuleConfiguration[];
1568
+ DebugRuleConfigurations?: DebugRuleConfiguration[] | undefined;
1569
1569
  /**
1570
1570
  * <p>Configuration of storage locations for the Amazon SageMaker Debugger TensorBoard output data.</p>
1571
1571
  * @public
1572
1572
  */
1573
- TensorBoardOutputConfig?: TensorBoardOutputConfig;
1573
+ TensorBoardOutputConfig?: TensorBoardOutputConfig | undefined;
1574
1574
  /**
1575
1575
  * <p>Associates a SageMaker job as a trial component with an experiment and trial. Specified when
1576
1576
  * you call the following APIs:</p>
@@ -1593,30 +1593,30 @@ export interface CreateTrainingJobRequest {
1593
1593
  * </ul>
1594
1594
  * @public
1595
1595
  */
1596
- ExperimentConfig?: ExperimentConfig;
1596
+ ExperimentConfig?: ExperimentConfig | undefined;
1597
1597
  /**
1598
1598
  * <p>Configuration information for Amazon SageMaker Debugger system monitoring, framework profiling, and
1599
1599
  * storage paths.</p>
1600
1600
  * @public
1601
1601
  */
1602
- ProfilerConfig?: ProfilerConfig;
1602
+ ProfilerConfig?: ProfilerConfig | undefined;
1603
1603
  /**
1604
1604
  * <p>Configuration information for Amazon SageMaker Debugger rules for profiling system and framework
1605
1605
  * metrics.</p>
1606
1606
  * @public
1607
1607
  */
1608
- ProfilerRuleConfigurations?: ProfilerRuleConfiguration[];
1608
+ ProfilerRuleConfigurations?: ProfilerRuleConfiguration[] | undefined;
1609
1609
  /**
1610
1610
  * <p>The environment variables to set in the Docker container.</p>
1611
1611
  * @public
1612
1612
  */
1613
- Environment?: Record<string, string>;
1613
+ Environment?: Record<string, string> | undefined;
1614
1614
  /**
1615
1615
  * <p>The number of times to retry the job when the job fails due to an
1616
1616
  * <code>InternalServerError</code>.</p>
1617
1617
  * @public
1618
1618
  */
1619
- RetryStrategy?: RetryStrategy;
1619
+ RetryStrategy?: RetryStrategy | undefined;
1620
1620
  /**
1621
1621
  * <p>Configuration for remote debugging. To learn more about the remote debugging
1622
1622
  * functionality of SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html">Access a training container
@@ -1624,18 +1624,18 @@ export interface CreateTrainingJobRequest {
1624
1624
  * debugging</a>.</p>
1625
1625
  * @public
1626
1626
  */
1627
- RemoteDebugConfig?: RemoteDebugConfig;
1627
+ RemoteDebugConfig?: RemoteDebugConfig | undefined;
1628
1628
  /**
1629
1629
  * <p>Contains information about the infrastructure health check configuration for the training job.</p>
1630
1630
  * @public
1631
1631
  */
1632
- InfraCheckConfig?: InfraCheckConfig;
1632
+ InfraCheckConfig?: InfraCheckConfig | undefined;
1633
1633
  /**
1634
1634
  * <p>Contains information about attribute-based access control (ABAC) for the training
1635
1635
  * job.</p>
1636
1636
  * @public
1637
1637
  */
1638
- SessionChainingConfig?: SessionChainingConfig;
1638
+ SessionChainingConfig?: SessionChainingConfig | undefined;
1639
1639
  }
1640
1640
  /**
1641
1641
  * @public
@@ -1679,7 +1679,7 @@ export interface DataProcessing {
1679
1679
  * </p>
1680
1680
  * @public
1681
1681
  */
1682
- InputFilter?: string;
1682
+ InputFilter?: string | undefined;
1683
1683
  /**
1684
1684
  * <p>A <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform-data-processing.html#data-processing-operators">JSONPath</a> expression used to select a portion of the joined dataset to save
1685
1685
  * in the output file for a batch transform job. If you want SageMaker to store the entire input
@@ -1691,7 +1691,7 @@ export interface DataProcessing {
1691
1691
  * </p>
1692
1692
  * @public
1693
1693
  */
1694
- OutputFilter?: string;
1694
+ OutputFilter?: string | undefined;
1695
1695
  /**
1696
1696
  * <p>Specifies the source of the data to join with the transformed data. The valid values
1697
1697
  * are <code>None</code> and <code>Input</code>. The default value is <code>None</code>,
@@ -1713,7 +1713,7 @@ export interface DataProcessing {
1713
1713
  * <p>For information on how joining in applied, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform-data-processing.html#batch-transform-data-processing-workflow">Workflow for Associating Inferences with Input Records</a>.</p>
1714
1714
  * @public
1715
1715
  */
1716
- JoinSource?: JoinSource;
1716
+ JoinSource?: JoinSource | undefined;
1717
1717
  }
1718
1718
  /**
1719
1719
  * <p>Configures the timeout and maximum number of retries for processing a transform job
@@ -1726,13 +1726,13 @@ export interface ModelClientConfig {
1726
1726
  * 600.</p>
1727
1727
  * @public
1728
1728
  */
1729
- InvocationsTimeoutInSeconds?: number;
1729
+ InvocationsTimeoutInSeconds?: number | undefined;
1730
1730
  /**
1731
1731
  * <p>The maximum number of retries when invocation requests are failing. The default value
1732
1732
  * is 3.</p>
1733
1733
  * @public
1734
1734
  */
1735
- InvocationsMaxRetries?: number;
1735
+ InvocationsMaxRetries?: number | undefined;
1736
1736
  }
1737
1737
  /**
1738
1738
  * @public
@@ -1760,13 +1760,13 @@ export interface CreateTransformJobRequest {
1760
1760
  * set a value for <code>MaxConcurrentTransforms</code>.</p>
1761
1761
  * @public
1762
1762
  */
1763
- MaxConcurrentTransforms?: number;
1763
+ MaxConcurrentTransforms?: number | undefined;
1764
1764
  /**
1765
1765
  * <p>Configures the timeout and maximum number of retries for processing a transform job
1766
1766
  * invocation.</p>
1767
1767
  * @public
1768
1768
  */
1769
- ModelClientConfig?: ModelClientConfig;
1769
+ ModelClientConfig?: ModelClientConfig | undefined;
1770
1770
  /**
1771
1771
  * <p>The maximum allowed size of the payload, in MB. A <i>payload</i> is the
1772
1772
  * data portion of a record (without metadata). The value in <code>MaxPayloadInMB</code>
@@ -1786,7 +1786,7 @@ export interface CreateTransformJobRequest {
1786
1786
  * algorithms do not support HTTP chunked encoding.</p>
1787
1787
  * @public
1788
1788
  */
1789
- MaxPayloadInMB?: number;
1789
+ MaxPayloadInMB?: number | undefined;
1790
1790
  /**
1791
1791
  * <p>Specifies the number of records to include in a mini-batch for an HTTP inference
1792
1792
  * request. A <i>record</i>
@@ -1802,14 +1802,14 @@ export interface CreateTransformJobRequest {
1802
1802
  * <code>MultiRecord</code> and <code>SplitType</code> to <code>Line</code>.</p>
1803
1803
  * @public
1804
1804
  */
1805
- BatchStrategy?: BatchStrategy;
1805
+ BatchStrategy?: BatchStrategy | undefined;
1806
1806
  /**
1807
1807
  * <p>The environment variables to set in the Docker container. Don't include any
1808
1808
  * sensitive data in your environment variables. We support up to 16 key and
1809
1809
  * values entries in the map.</p>
1810
1810
  * @public
1811
1811
  */
1812
- Environment?: Record<string, string>;
1812
+ Environment?: Record<string, string> | undefined;
1813
1813
  /**
1814
1814
  * <p>Describes the input source and
1815
1815
  * the
@@ -1826,7 +1826,7 @@ export interface CreateTransformJobRequest {
1826
1826
  * <p>Configuration to control how SageMaker captures inference data.</p>
1827
1827
  * @public
1828
1828
  */
1829
- DataCaptureConfig?: BatchDataCaptureConfig;
1829
+ DataCaptureConfig?: BatchDataCaptureConfig | undefined;
1830
1830
  /**
1831
1831
  * <p>Describes the resources, including
1832
1832
  * ML
@@ -1845,7 +1845,7 @@ export interface CreateTransformJobRequest {
1845
1845
  * Results with their Corresponding Input Records</a>.</p>
1846
1846
  * @public
1847
1847
  */
1848
- DataProcessing?: DataProcessing;
1848
+ DataProcessing?: DataProcessing | undefined;
1849
1849
  /**
1850
1850
  * <p>(Optional)
1851
1851
  * An
@@ -1854,7 +1854,7 @@ export interface CreateTransformJobRequest {
1854
1854
  * Guide</i>.</p>
1855
1855
  * @public
1856
1856
  */
1857
- Tags?: Tag[];
1857
+ Tags?: Tag[] | undefined;
1858
1858
  /**
1859
1859
  * <p>Associates a SageMaker job as a trial component with an experiment and trial. Specified when
1860
1860
  * you call the following APIs:</p>
@@ -1877,7 +1877,7 @@ export interface CreateTransformJobRequest {
1877
1877
  * </ul>
1878
1878
  * @public
1879
1879
  */
1880
- ExperimentConfig?: ExperimentConfig;
1880
+ ExperimentConfig?: ExperimentConfig | undefined;
1881
1881
  }
1882
1882
  /**
1883
1883
  * @public
@@ -1904,7 +1904,7 @@ export interface CreateTrialRequest {
1904
1904
  * <code>DisplayName</code> isn't specified, <code>TrialName</code> is displayed.</p>
1905
1905
  * @public
1906
1906
  */
1907
- DisplayName?: string;
1907
+ DisplayName?: string | undefined;
1908
1908
  /**
1909
1909
  * <p>The name of the experiment to associate the trial with.</p>
1910
1910
  * @public
@@ -1914,13 +1914,13 @@ export interface CreateTrialRequest {
1914
1914
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
1915
1915
  * @public
1916
1916
  */
1917
- MetadataProperties?: MetadataProperties;
1917
+ MetadataProperties?: MetadataProperties | undefined;
1918
1918
  /**
1919
1919
  * <p>A list of tags to associate with the trial. You can use <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Search.html">Search</a> API to
1920
1920
  * search on the tags.</p>
1921
1921
  * @public
1922
1922
  */
1923
- Tags?: Tag[];
1923
+ Tags?: Tag[] | undefined;
1924
1924
  }
1925
1925
  /**
1926
1926
  * @public
@@ -1930,7 +1930,7 @@ export interface CreateTrialResponse {
1930
1930
  * <p>The Amazon Resource Name (ARN) of the trial.</p>
1931
1931
  * @public
1932
1932
  */
1933
- TrialArn?: string;
1933
+ TrialArn?: string | undefined;
1934
1934
  }
1935
1935
  /**
1936
1936
  * <p>Represents an input or output artifact of a trial component. You specify
@@ -1949,7 +1949,7 @@ export interface TrialComponentArtifact {
1949
1949
  * type specifies the category of the media. The subtype specifies the kind of data.</p>
1950
1950
  * @public
1951
1951
  */
1952
- MediaType?: string;
1952
+ MediaType?: string | undefined;
1953
1953
  /**
1954
1954
  * <p>The location of the artifact.</p>
1955
1955
  * @public
@@ -2026,12 +2026,12 @@ export interface TrialComponentStatus {
2026
2026
  * <p>The status of the trial component.</p>
2027
2027
  * @public
2028
2028
  */
2029
- PrimaryStatus?: TrialComponentPrimaryStatus;
2029
+ PrimaryStatus?: TrialComponentPrimaryStatus | undefined;
2030
2030
  /**
2031
2031
  * <p>If the component failed, a message describing why.</p>
2032
2032
  * @public
2033
2033
  */
2034
- Message?: string;
2034
+ Message?: string | undefined;
2035
2035
  }
2036
2036
  /**
2037
2037
  * @public
@@ -2049,7 +2049,7 @@ export interface CreateTrialComponentRequest {
2049
2049
  * displayed.</p>
2050
2050
  * @public
2051
2051
  */
2052
- DisplayName?: string;
2052
+ DisplayName?: string | undefined;
2053
2053
  /**
2054
2054
  * <p>The status of the component. States include:</p>
2055
2055
  * <ul>
@@ -2065,45 +2065,45 @@ export interface CreateTrialComponentRequest {
2065
2065
  * </ul>
2066
2066
  * @public
2067
2067
  */
2068
- Status?: TrialComponentStatus;
2068
+ Status?: TrialComponentStatus | undefined;
2069
2069
  /**
2070
2070
  * <p>When the component started.</p>
2071
2071
  * @public
2072
2072
  */
2073
- StartTime?: Date;
2073
+ StartTime?: Date | undefined;
2074
2074
  /**
2075
2075
  * <p>When the component ended.</p>
2076
2076
  * @public
2077
2077
  */
2078
- EndTime?: Date;
2078
+ EndTime?: Date | undefined;
2079
2079
  /**
2080
2080
  * <p>The hyperparameters for the component.</p>
2081
2081
  * @public
2082
2082
  */
2083
- Parameters?: Record<string, TrialComponentParameterValue>;
2083
+ Parameters?: Record<string, TrialComponentParameterValue> | undefined;
2084
2084
  /**
2085
2085
  * <p>The input artifacts for the component. Examples of input artifacts are datasets,
2086
2086
  * algorithms, hyperparameters, source code, and instance types.</p>
2087
2087
  * @public
2088
2088
  */
2089
- InputArtifacts?: Record<string, TrialComponentArtifact>;
2089
+ InputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
2090
2090
  /**
2091
2091
  * <p>The output artifacts for the component. Examples of output artifacts are metrics,
2092
2092
  * snapshots, logs, and images.</p>
2093
2093
  * @public
2094
2094
  */
2095
- OutputArtifacts?: Record<string, TrialComponentArtifact>;
2095
+ OutputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
2096
2096
  /**
2097
2097
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
2098
2098
  * @public
2099
2099
  */
2100
- MetadataProperties?: MetadataProperties;
2100
+ MetadataProperties?: MetadataProperties | undefined;
2101
2101
  /**
2102
2102
  * <p>A list of tags to associate with the component. You can use <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Search.html">Search</a> API
2103
2103
  * to search on the tags.</p>
2104
2104
  * @public
2105
2105
  */
2106
- Tags?: Tag[];
2106
+ Tags?: Tag[] | undefined;
2107
2107
  }
2108
2108
  /**
2109
2109
  * @public
@@ -2113,7 +2113,7 @@ export interface CreateTrialComponentResponse {
2113
2113
  * <p>The Amazon Resource Name (ARN) of the trial component.</p>
2114
2114
  * @public
2115
2115
  */
2116
- TrialComponentArn?: string;
2116
+ TrialComponentArn?: string | undefined;
2117
2117
  }
2118
2118
  /**
2119
2119
  * @public
@@ -2136,14 +2136,14 @@ export interface CreateUserProfileRequest {
2136
2136
  * </p>
2137
2137
  * @public
2138
2138
  */
2139
- SingleSignOnUserIdentifier?: string;
2139
+ SingleSignOnUserIdentifier?: string | undefined;
2140
2140
  /**
2141
2141
  * <p>The username of the associated Amazon Web Services Single Sign-On User for this
2142
2142
  * UserProfile. If the Domain's AuthMode is IAM Identity Center, this field is required, and must
2143
2143
  * match a valid username of a user in your directory. If the Domain's AuthMode is not IAM Identity Center, this field cannot be specified. </p>
2144
2144
  * @public
2145
2145
  */
2146
- SingleSignOnUserValue?: string;
2146
+ SingleSignOnUserValue?: string | undefined;
2147
2147
  /**
2148
2148
  * <p>Each tag consists of a key and an optional value. Tag keys must be unique per
2149
2149
  * resource.</p>
@@ -2151,12 +2151,12 @@ export interface CreateUserProfileRequest {
2151
2151
  * Profile launches.</p>
2152
2152
  * @public
2153
2153
  */
2154
- Tags?: Tag[];
2154
+ Tags?: Tag[] | undefined;
2155
2155
  /**
2156
2156
  * <p>A collection of settings.</p>
2157
2157
  * @public
2158
2158
  */
2159
- UserSettings?: UserSettings;
2159
+ UserSettings?: UserSettings | undefined;
2160
2160
  }
2161
2161
  /**
2162
2162
  * @public
@@ -2166,7 +2166,7 @@ export interface CreateUserProfileResponse {
2166
2166
  * <p>The user profile Amazon Resource Name (ARN).</p>
2167
2167
  * @public
2168
2168
  */
2169
- UserProfileArn?: string;
2169
+ UserProfileArn?: string | undefined;
2170
2170
  }
2171
2171
  /**
2172
2172
  * <p>Use this parameter to configure your OIDC Identity Provider (IdP).</p>
@@ -2217,12 +2217,12 @@ export interface OidcConfig {
2217
2217
  * <p>An array of string identifiers used to refer to the specific pieces of user data or claims that the client application wants to access.</p>
2218
2218
  * @public
2219
2219
  */
2220
- Scope?: string;
2220
+ Scope?: string | undefined;
2221
2221
  /**
2222
2222
  * <p>A string to string map of identifiers specific to the custom identity provider (IdP) being used.</p>
2223
2223
  * @public
2224
2224
  */
2225
- AuthenticationRequestExtraParams?: Record<string, string>;
2225
+ AuthenticationRequestExtraParams?: Record<string, string> | undefined;
2226
2226
  }
2227
2227
  /**
2228
2228
  * <p>A list of IP address ranges (<a href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html">CIDRs</a>). Used to create an allow
@@ -2251,17 +2251,17 @@ export interface WorkforceVpcConfigRequest {
2251
2251
  * <p>The ID of the VPC that the workforce uses for communication.</p>
2252
2252
  * @public
2253
2253
  */
2254
- VpcId?: string;
2254
+ VpcId?: string | undefined;
2255
2255
  /**
2256
2256
  * <p>The VPC security group IDs, in the form <code>sg-xxxxxxxx</code>. The security groups must be for the same VPC as specified in the subnet.</p>
2257
2257
  * @public
2258
2258
  */
2259
- SecurityGroupIds?: string[];
2259
+ SecurityGroupIds?: string[] | undefined;
2260
2260
  /**
2261
2261
  * <p>The ID of the subnets in the VPC that you want to connect.</p>
2262
2262
  * @public
2263
2263
  */
2264
- Subnets?: string[];
2264
+ Subnets?: string[] | undefined;
2265
2265
  }
2266
2266
  /**
2267
2267
  * @public
@@ -2276,21 +2276,21 @@ export interface CreateWorkforceRequest {
2276
2276
  * <code>CognitoConfig</code>.</p>
2277
2277
  * @public
2278
2278
  */
2279
- CognitoConfig?: CognitoConfig;
2279
+ CognitoConfig?: CognitoConfig | undefined;
2280
2280
  /**
2281
2281
  * <p>Use this parameter to configure a private workforce using your own OIDC Identity Provider.</p>
2282
2282
  * <p>Do not use <code>CognitoConfig</code> if you specify values for
2283
2283
  * <code>OidcConfig</code>.</p>
2284
2284
  * @public
2285
2285
  */
2286
- OidcConfig?: OidcConfig;
2286
+ OidcConfig?: OidcConfig | undefined;
2287
2287
  /**
2288
2288
  * <p>A list of IP address ranges (<a href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html">CIDRs</a>). Used to create an allow
2289
2289
  * list of IP addresses for a private workforce. Workers will only be able to log in to their worker portal from an
2290
2290
  * IP address within this range. By default, a workforce isn't restricted to specific IP addresses.</p>
2291
2291
  * @public
2292
2292
  */
2293
- SourceIpConfig?: SourceIpConfig;
2293
+ SourceIpConfig?: SourceIpConfig | undefined;
2294
2294
  /**
2295
2295
  * <p>The name of the private workforce.</p>
2296
2296
  * @public
@@ -2302,12 +2302,12 @@ export interface CreateWorkforceRequest {
2302
2302
  * both of which you define.</p>
2303
2303
  * @public
2304
2304
  */
2305
- Tags?: Tag[];
2305
+ Tags?: Tag[] | undefined;
2306
2306
  /**
2307
2307
  * <p>Use this parameter to configure a workforce using VPC.</p>
2308
2308
  * @public
2309
2309
  */
2310
- WorkforceVpcConfig?: WorkforceVpcConfigRequest;
2310
+ WorkforceVpcConfig?: WorkforceVpcConfigRequest | undefined;
2311
2311
  }
2312
2312
  /**
2313
2313
  * @public
@@ -2334,7 +2334,7 @@ export interface OidcMemberDefinition {
2334
2334
  * made up of a group of private workers.</p>
2335
2335
  * @public
2336
2336
  */
2337
- Groups?: string[];
2337
+ Groups?: string[] | undefined;
2338
2338
  }
2339
2339
  /**
2340
2340
  * <p>Defines an Amazon Cognito or your own OIDC IdP user group that is part of a work team.</p>
@@ -2345,7 +2345,7 @@ export interface MemberDefinition {
2345
2345
  * <p>The Amazon Cognito user group that is part of the work team.</p>
2346
2346
  * @public
2347
2347
  */
2348
- CognitoMemberDefinition?: CognitoMemberDefinition;
2348
+ CognitoMemberDefinition?: CognitoMemberDefinition | undefined;
2349
2349
  /**
2350
2350
  * <p>A list user groups that exist in your OIDC Identity Provider (IdP).
2351
2351
  * One to ten groups can be used to create a single private work team.
@@ -2354,7 +2354,7 @@ export interface MemberDefinition {
2354
2354
  * are added to the work team.</p>
2355
2355
  * @public
2356
2356
  */
2357
- OidcMemberDefinition?: OidcMemberDefinition;
2357
+ OidcMemberDefinition?: OidcMemberDefinition | undefined;
2358
2358
  }
2359
2359
  /**
2360
2360
  * <p>Configures Amazon SNS notifications of available or expiring work items for work
@@ -2366,7 +2366,7 @@ export interface NotificationConfiguration {
2366
2366
  * <p>The ARN for the Amazon SNS topic to which notifications should be published.</p>
2367
2367
  * @public
2368
2368
  */
2369
- NotificationTopicArn?: string;
2369
+ NotificationTopicArn?: string | undefined;
2370
2370
  }
2371
2371
  /**
2372
2372
  * @public
@@ -2389,12 +2389,12 @@ export interface IamPolicyConstraints {
2389
2389
  * <p>When <code>SourceIp</code> is <code>Enabled</code> the worker's IP address when a task is rendered in the worker portal is added to the IAM policy as a <code>Condition</code> used to generate the Amazon S3 presigned URL. This IP address is checked by Amazon S3 and must match in order for the Amazon S3 resource to be rendered in the worker portal.</p>
2390
2390
  * @public
2391
2391
  */
2392
- SourceIp?: EnabledOrDisabled;
2392
+ SourceIp?: EnabledOrDisabled | undefined;
2393
2393
  /**
2394
2394
  * <p>When <code>VpcSourceIp</code> is <code>Enabled</code> the worker's IP address when a task is rendered in private worker portal inside the VPC is added to the IAM policy as a <code>Condition</code> used to generate the Amazon S3 presigned URL. To render the task successfully Amazon S3 checks that the presigned URL is being accessed over an Amazon S3 VPC Endpoint, and that the worker's IP address matches the IP address in the IAM policy. To learn more about configuring private worker portal, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/samurai-vpc-worker-portal.html">Use Amazon VPC mode from a private worker portal</a>.</p>
2395
2395
  * @public
2396
2396
  */
2397
- VpcSourceIp?: EnabledOrDisabled;
2397
+ VpcSourceIp?: EnabledOrDisabled | undefined;
2398
2398
  }
2399
2399
  /**
2400
2400
  * <p>This object defines the access restrictions to Amazon S3 resources that are included in custom worker task templates using the Liquid filter, <code>grant_read_access</code>.</p>
@@ -2406,7 +2406,7 @@ export interface S3Presign {
2406
2406
  * <p>Use this parameter to specify the allowed request source. Possible sources are either <code>SourceIp</code> or <code>VpcSourceIp</code>.</p>
2407
2407
  * @public
2408
2408
  */
2409
- IamPolicyConstraints?: IamPolicyConstraints;
2409
+ IamPolicyConstraints?: IamPolicyConstraints | undefined;
2410
2410
  }
2411
2411
  /**
2412
2412
  * <p>Use this optional parameter to constrain access to an Amazon S3 resource based on the IP address using supported IAM global condition keys. The Amazon S3 resource is accessed in the worker portal using a Amazon S3 presigned URL.</p>
@@ -2417,7 +2417,7 @@ export interface WorkerAccessConfiguration {
2417
2417
  * <p>Defines any Amazon S3 resource constraints.</p>
2418
2418
  * @public
2419
2419
  */
2420
- S3Presign?: S3Presign;
2420
+ S3Presign?: S3Presign | undefined;
2421
2421
  }
2422
2422
  /**
2423
2423
  * @public
@@ -2432,7 +2432,7 @@ export interface CreateWorkteamRequest {
2432
2432
  * <p>The name of the workforce.</p>
2433
2433
  * @public
2434
2434
  */
2435
- WorkforceName?: string;
2435
+ WorkforceName?: string | undefined;
2436
2436
  /**
2437
2437
  * <p>A list of <code>MemberDefinition</code> objects that contains objects that identify
2438
2438
  * the workers that make up the work team. </p>
@@ -2463,12 +2463,12 @@ export interface CreateWorkteamRequest {
2463
2463
  * <p>Configures notification of workers regarding available or expiring work items.</p>
2464
2464
  * @public
2465
2465
  */
2466
- NotificationConfiguration?: NotificationConfiguration;
2466
+ NotificationConfiguration?: NotificationConfiguration | undefined;
2467
2467
  /**
2468
2468
  * <p>Use this optional parameter to constrain access to an Amazon S3 resource based on the IP address using supported IAM global condition keys. The Amazon S3 resource is accessed in the worker portal using a Amazon S3 presigned URL.</p>
2469
2469
  * @public
2470
2470
  */
2471
- WorkerAccessConfiguration?: WorkerAccessConfiguration;
2471
+ WorkerAccessConfiguration?: WorkerAccessConfiguration | undefined;
2472
2472
  /**
2473
2473
  * <p>An array of key-value pairs.</p>
2474
2474
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html">Resource
@@ -2477,7 +2477,7 @@ export interface CreateWorkteamRequest {
2477
2477
  * Guide</i>.</p>
2478
2478
  * @public
2479
2479
  */
2480
- Tags?: Tag[];
2480
+ Tags?: Tag[] | undefined;
2481
2481
  }
2482
2482
  /**
2483
2483
  * @public
@@ -2488,7 +2488,7 @@ export interface CreateWorkteamResponse {
2488
2488
  * work team.</p>
2489
2489
  * @public
2490
2490
  */
2491
- WorkteamArn?: string;
2491
+ WorkteamArn?: string | undefined;
2492
2492
  }
2493
2493
  /**
2494
2494
  * @public
@@ -2526,17 +2526,17 @@ export interface CustomizedMetricSpecification {
2526
2526
  * <p>The name of the customized metric.</p>
2527
2527
  * @public
2528
2528
  */
2529
- MetricName?: string;
2529
+ MetricName?: string | undefined;
2530
2530
  /**
2531
2531
  * <p>The namespace of the customized metric.</p>
2532
2532
  * @public
2533
2533
  */
2534
- Namespace?: string;
2534
+ Namespace?: string | undefined;
2535
2535
  /**
2536
2536
  * <p>The statistic of the customized metric.</p>
2537
2537
  * @public
2538
2538
  */
2539
- Statistic?: Statistic;
2539
+ Statistic?: Statistic | undefined;
2540
2540
  }
2541
2541
  /**
2542
2542
  * <p>The currently active data capture configuration used by your Endpoint.</p>
@@ -2594,27 +2594,27 @@ export interface DebugRuleEvaluationStatus {
2594
2594
  * <p>The name of the rule configuration.</p>
2595
2595
  * @public
2596
2596
  */
2597
- RuleConfigurationName?: string;
2597
+ RuleConfigurationName?: string | undefined;
2598
2598
  /**
2599
2599
  * <p>The Amazon Resource Name (ARN) of the rule evaluation job.</p>
2600
2600
  * @public
2601
2601
  */
2602
- RuleEvaluationJobArn?: string;
2602
+ RuleEvaluationJobArn?: string | undefined;
2603
2603
  /**
2604
2604
  * <p>Status of the rule evaluation.</p>
2605
2605
  * @public
2606
2606
  */
2607
- RuleEvaluationStatus?: RuleEvaluationStatus;
2607
+ RuleEvaluationStatus?: RuleEvaluationStatus | undefined;
2608
2608
  /**
2609
2609
  * <p>Details from the rule evaluation.</p>
2610
2610
  * @public
2611
2611
  */
2612
- StatusDetails?: string;
2612
+ StatusDetails?: string | undefined;
2613
2613
  /**
2614
2614
  * <p>Timestamp when the rule evaluation status was last modified.</p>
2615
2615
  * @public
2616
2616
  */
2617
- LastModifiedTime?: Date;
2617
+ LastModifiedTime?: Date | undefined;
2618
2618
  }
2619
2619
  /**
2620
2620
  * @public
@@ -2634,7 +2634,7 @@ export interface DeleteActionResponse {
2634
2634
  * <p>The Amazon Resource Name (ARN) of the action.</p>
2635
2635
  * @public
2636
2636
  */
2637
- ActionArn?: string;
2637
+ ActionArn?: string | undefined;
2638
2638
  }
2639
2639
  /**
2640
2640
  * @public
@@ -2660,13 +2660,13 @@ export interface DeleteAppRequest {
2660
2660
  * set.</p>
2661
2661
  * @public
2662
2662
  */
2663
- UserProfileName?: string;
2663
+ UserProfileName?: string | undefined;
2664
2664
  /**
2665
2665
  * <p>The name of the space. If this value is not set, then <code>UserProfileName</code> must be
2666
2666
  * set.</p>
2667
2667
  * @public
2668
2668
  */
2669
- SpaceName?: string;
2669
+ SpaceName?: string | undefined;
2670
2670
  /**
2671
2671
  * <p>The type of app.</p>
2672
2672
  * @public
@@ -2696,12 +2696,12 @@ export interface DeleteArtifactRequest {
2696
2696
  * <p>The Amazon Resource Name (ARN) of the artifact to delete.</p>
2697
2697
  * @public
2698
2698
  */
2699
- ArtifactArn?: string;
2699
+ ArtifactArn?: string | undefined;
2700
2700
  /**
2701
2701
  * <p>The URI of the source.</p>
2702
2702
  * @public
2703
2703
  */
2704
- Source?: ArtifactSource;
2704
+ Source?: ArtifactSource | undefined;
2705
2705
  }
2706
2706
  /**
2707
2707
  * @public
@@ -2711,7 +2711,7 @@ export interface DeleteArtifactResponse {
2711
2711
  * <p>The Amazon Resource Name (ARN) of the artifact.</p>
2712
2712
  * @public
2713
2713
  */
2714
- ArtifactArn?: string;
2714
+ ArtifactArn?: string | undefined;
2715
2715
  }
2716
2716
  /**
2717
2717
  * @public
@@ -2736,12 +2736,12 @@ export interface DeleteAssociationResponse {
2736
2736
  * <p>The ARN of the source.</p>
2737
2737
  * @public
2738
2738
  */
2739
- SourceArn?: string;
2739
+ SourceArn?: string | undefined;
2740
2740
  /**
2741
2741
  * <p>The Amazon Resource Name (ARN) of the destination.</p>
2742
2742
  * @public
2743
2743
  */
2744
- DestinationArn?: string;
2744
+ DestinationArn?: string | undefined;
2745
2745
  }
2746
2746
  /**
2747
2747
  * @public
@@ -2801,7 +2801,7 @@ export interface DeleteContextResponse {
2801
2801
  * <p>The Amazon Resource Name (ARN) of the context.</p>
2802
2802
  * @public
2803
2803
  */
2804
- ContextArn?: string;
2804
+ ContextArn?: string | undefined;
2805
2805
  }
2806
2806
  /**
2807
2807
  * @public
@@ -2847,7 +2847,7 @@ export interface RetentionPolicy {
2847
2847
  * volume.</p>
2848
2848
  * @public
2849
2849
  */
2850
- HomeEfsFileSystem?: RetentionType;
2850
+ HomeEfsFileSystem?: RetentionType | undefined;
2851
2851
  }
2852
2852
  /**
2853
2853
  * @public
@@ -2864,7 +2864,7 @@ export interface DeleteDomainRequest {
2864
2864
  * deleted). </p>
2865
2865
  * @public
2866
2866
  */
2867
- RetentionPolicy?: RetentionPolicy;
2867
+ RetentionPolicy?: RetentionPolicy | undefined;
2868
2868
  }
2869
2869
  /**
2870
2870
  * @public
@@ -2929,7 +2929,7 @@ export interface DeleteExperimentResponse {
2929
2929
  * <p>The Amazon Resource Name (ARN) of the experiment that is being deleted.</p>
2930
2930
  * @public
2931
2931
  */
2932
- ExperimentArn?: string;
2932
+ ExperimentArn?: string | undefined;
2933
2933
  }
2934
2934
  /**
2935
2935
  * @public
@@ -3078,12 +3078,12 @@ export interface DeleteImageVersionRequest {
3078
3078
  * <p>The version to delete.</p>
3079
3079
  * @public
3080
3080
  */
3081
- Version?: number;
3081
+ Version?: number | undefined;
3082
3082
  /**
3083
3083
  * <p>The alias of the image to delete.</p>
3084
3084
  * @public
3085
3085
  */
3086
- Alias?: string;
3086
+ Alias?: string | undefined;
3087
3087
  }
3088
3088
  /**
3089
3089
  * @public
@@ -3139,7 +3139,7 @@ export interface DeleteMlflowTrackingServerResponse {
3139
3139
  * successfully found.</p>
3140
3140
  * @public
3141
3141
  */
3142
- TrackingServerArn?: string;
3142
+ TrackingServerArn?: string | undefined;
3143
3143
  }
3144
3144
  /**
3145
3145
  * @public
@@ -3277,7 +3277,7 @@ export interface DeletePipelineRequest {
3277
3277
  * operation. An idempotent operation completes no more than one time.</p>
3278
3278
  * @public
3279
3279
  */
3280
- ClientRequestToken?: string;
3280
+ ClientRequestToken?: string | undefined;
3281
3281
  }
3282
3282
  /**
3283
3283
  * @public
@@ -3287,7 +3287,7 @@ export interface DeletePipelineResponse {
3287
3287
  * <p>The Amazon Resource Name (ARN) of the pipeline to delete.</p>
3288
3288
  * @public
3289
3289
  */
3290
- PipelineArn?: string;
3290
+ PipelineArn?: string | undefined;
3291
3291
  }
3292
3292
  /**
3293
3293
  * @public
@@ -3363,7 +3363,7 @@ export interface DeleteTrialResponse {
3363
3363
  * <p>The Amazon Resource Name (ARN) of the trial that is being deleted.</p>
3364
3364
  * @public
3365
3365
  */
3366
- TrialArn?: string;
3366
+ TrialArn?: string | undefined;
3367
3367
  }
3368
3368
  /**
3369
3369
  * @public
@@ -3383,7 +3383,7 @@ export interface DeleteTrialComponentResponse {
3383
3383
  * <p>The Amazon Resource Name (ARN) of the component is being deleted.</p>
3384
3384
  * @public
3385
3385
  */
3386
- TrialComponentArn?: string;
3386
+ TrialComponentArn?: string | undefined;
3387
3387
  }
3388
3388
  /**
3389
3389
  * @public
@@ -3450,20 +3450,20 @@ export interface DeployedImage {
3450
3450
  * <p>The image path you specified when you created the model.</p>
3451
3451
  * @public
3452
3452
  */
3453
- SpecifiedImage?: string;
3453
+ SpecifiedImage?: string | undefined;
3454
3454
  /**
3455
3455
  * <p>The specific digest path of the image hosted in this
3456
3456
  * <code>ProductionVariant</code>.</p>
3457
3457
  * @public
3458
3458
  */
3459
- ResolvedImage?: string;
3459
+ ResolvedImage?: string | undefined;
3460
3460
  /**
3461
3461
  * <p>The date and time when the image path for the model resolved to the
3462
3462
  * <code>ResolvedImage</code>
3463
3463
  * </p>
3464
3464
  * @public
3465
3465
  */
3466
- ResolutionTime?: Date;
3466
+ ResolutionTime?: Date | undefined;
3467
3467
  }
3468
3468
  /**
3469
3469
  * <p>The recommended configuration to use for Real-Time Inference.</p>
@@ -3484,7 +3484,7 @@ export interface RealTimeInferenceRecommendation {
3484
3484
  * <p>The recommended environment variables to set in the model container for Real-Time Inference.</p>
3485
3485
  * @public
3486
3486
  */
3487
- Environment?: Record<string, string>;
3487
+ Environment?: Record<string, string> | undefined;
3488
3488
  }
3489
3489
  /**
3490
3490
  * @public
@@ -3518,7 +3518,7 @@ export interface DeploymentRecommendation {
3518
3518
  * <p>A list of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_RealTimeInferenceRecommendation.html">RealTimeInferenceRecommendation</a> items.</p>
3519
3519
  * @public
3520
3520
  */
3521
- RealTimeInferenceRecommendations?: RealTimeInferenceRecommendation[];
3521
+ RealTimeInferenceRecommendations?: RealTimeInferenceRecommendation[] | undefined;
3522
3522
  }
3523
3523
  /**
3524
3524
  * @public
@@ -3568,12 +3568,12 @@ export interface EdgeDeploymentStatus {
3568
3568
  * <p>A detailed message about deployment status in current stage.</p>
3569
3569
  * @public
3570
3570
  */
3571
- EdgeDeploymentStatusMessage?: string;
3571
+ EdgeDeploymentStatusMessage?: string | undefined;
3572
3572
  /**
3573
3573
  * <p>The time when the deployment API started.</p>
3574
3574
  * @public
3575
3575
  */
3576
- EdgeDeploymentStageStartTime?: Date;
3576
+ EdgeDeploymentStageStartTime?: Date | undefined;
3577
3577
  }
3578
3578
  /**
3579
3579
  * <p>Contains information summarizing the deployment stage results.</p>
@@ -3627,7 +3627,7 @@ export interface DerivedInformation {
3627
3627
  * configuration when you create a compilation job.</p>
3628
3628
  * @public
3629
3629
  */
3630
- DerivedDataInputConfig?: string;
3630
+ DerivedDataInputConfig?: string | undefined;
3631
3631
  }
3632
3632
  /**
3633
3633
  * @public
@@ -3647,69 +3647,69 @@ export interface DescribeActionResponse {
3647
3647
  * <p>The name of the action.</p>
3648
3648
  * @public
3649
3649
  */
3650
- ActionName?: string;
3650
+ ActionName?: string | undefined;
3651
3651
  /**
3652
3652
  * <p>The Amazon Resource Name (ARN) of the action.</p>
3653
3653
  * @public
3654
3654
  */
3655
- ActionArn?: string;
3655
+ ActionArn?: string | undefined;
3656
3656
  /**
3657
3657
  * <p>The source of the action.</p>
3658
3658
  * @public
3659
3659
  */
3660
- Source?: ActionSource;
3660
+ Source?: ActionSource | undefined;
3661
3661
  /**
3662
3662
  * <p>The type of the action.</p>
3663
3663
  * @public
3664
3664
  */
3665
- ActionType?: string;
3665
+ ActionType?: string | undefined;
3666
3666
  /**
3667
3667
  * <p>The description of the action.</p>
3668
3668
  * @public
3669
3669
  */
3670
- Description?: string;
3670
+ Description?: string | undefined;
3671
3671
  /**
3672
3672
  * <p>The status of the action.</p>
3673
3673
  * @public
3674
3674
  */
3675
- Status?: ActionStatus;
3675
+ Status?: ActionStatus | undefined;
3676
3676
  /**
3677
3677
  * <p>A list of the action's properties.</p>
3678
3678
  * @public
3679
3679
  */
3680
- Properties?: Record<string, string>;
3680
+ Properties?: Record<string, string> | undefined;
3681
3681
  /**
3682
3682
  * <p>When the action was created.</p>
3683
3683
  * @public
3684
3684
  */
3685
- CreationTime?: Date;
3685
+ CreationTime?: Date | undefined;
3686
3686
  /**
3687
3687
  * <p>Information about the user who created or modified an experiment, trial, trial
3688
3688
  * component, lineage group, project, or model card.</p>
3689
3689
  * @public
3690
3690
  */
3691
- CreatedBy?: UserContext;
3691
+ CreatedBy?: UserContext | undefined;
3692
3692
  /**
3693
3693
  * <p>When the action was last modified.</p>
3694
3694
  * @public
3695
3695
  */
3696
- LastModifiedTime?: Date;
3696
+ LastModifiedTime?: Date | undefined;
3697
3697
  /**
3698
3698
  * <p>Information about the user who created or modified an experiment, trial, trial
3699
3699
  * component, lineage group, project, or model card.</p>
3700
3700
  * @public
3701
3701
  */
3702
- LastModifiedBy?: UserContext;
3702
+ LastModifiedBy?: UserContext | undefined;
3703
3703
  /**
3704
3704
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
3705
3705
  * @public
3706
3706
  */
3707
- MetadataProperties?: MetadataProperties;
3707
+ MetadataProperties?: MetadataProperties | undefined;
3708
3708
  /**
3709
3709
  * <p>The Amazon Resource Name (ARN) of the lineage group.</p>
3710
3710
  * @public
3711
3711
  */
3712
- LineageGroupArn?: string;
3712
+ LineageGroupArn?: string | undefined;
3713
3713
  }
3714
3714
  /**
3715
3715
  * @public
@@ -3739,7 +3739,7 @@ export interface DescribeAlgorithmOutput {
3739
3739
  * <p>A brief summary about the algorithm.</p>
3740
3740
  * @public
3741
3741
  */
3742
- AlgorithmDescription?: string;
3742
+ AlgorithmDescription?: string | undefined;
3743
3743
  /**
3744
3744
  * <p>A timestamp specifying when the algorithm was created.</p>
3745
3745
  * @public
@@ -3754,13 +3754,13 @@ export interface DescribeAlgorithmOutput {
3754
3754
  * <p>Details about inference jobs that the algorithm runs.</p>
3755
3755
  * @public
3756
3756
  */
3757
- InferenceSpecification?: InferenceSpecification;
3757
+ InferenceSpecification?: InferenceSpecification | undefined;
3758
3758
  /**
3759
3759
  * <p>Details about configurations for one or more training jobs that SageMaker runs to test the
3760
3760
  * algorithm.</p>
3761
3761
  * @public
3762
3762
  */
3763
- ValidationSpecification?: AlgorithmValidationSpecification;
3763
+ ValidationSpecification?: AlgorithmValidationSpecification | undefined;
3764
3764
  /**
3765
3765
  * <p>The current status of the algorithm.</p>
3766
3766
  * @public
@@ -3775,13 +3775,13 @@ export interface DescribeAlgorithmOutput {
3775
3775
  * <p>The product identifier of the algorithm.</p>
3776
3776
  * @public
3777
3777
  */
3778
- ProductId?: string;
3778
+ ProductId?: string | undefined;
3779
3779
  /**
3780
3780
  * <p>Whether the algorithm is certified to be listed in Amazon Web Services
3781
3781
  * Marketplace.</p>
3782
3782
  * @public
3783
3783
  */
3784
- CertifyForMarketplace?: boolean;
3784
+ CertifyForMarketplace?: boolean | undefined;
3785
3785
  }
3786
3786
  /**
3787
3787
  * @public
@@ -3797,12 +3797,12 @@ export interface DescribeAppRequest {
3797
3797
  * set.</p>
3798
3798
  * @public
3799
3799
  */
3800
- UserProfileName?: string;
3800
+ UserProfileName?: string | undefined;
3801
3801
  /**
3802
3802
  * <p>The name of the space.</p>
3803
3803
  * @public
3804
3804
  */
3805
- SpaceName?: string;
3805
+ SpaceName?: string | undefined;
3806
3806
  /**
3807
3807
  * <p>The type of app.</p>
3808
3808
  * @public
@@ -3822,50 +3822,50 @@ export interface DescribeAppResponse {
3822
3822
  * <p>The Amazon Resource Name (ARN) of the app.</p>
3823
3823
  * @public
3824
3824
  */
3825
- AppArn?: string;
3825
+ AppArn?: string | undefined;
3826
3826
  /**
3827
3827
  * <p>The type of app.</p>
3828
3828
  * @public
3829
3829
  */
3830
- AppType?: AppType;
3830
+ AppType?: AppType | undefined;
3831
3831
  /**
3832
3832
  * <p>The name of the app.</p>
3833
3833
  * @public
3834
3834
  */
3835
- AppName?: string;
3835
+ AppName?: string | undefined;
3836
3836
  /**
3837
3837
  * <p>The domain ID.</p>
3838
3838
  * @public
3839
3839
  */
3840
- DomainId?: string;
3840
+ DomainId?: string | undefined;
3841
3841
  /**
3842
3842
  * <p>The user profile name.</p>
3843
3843
  * @public
3844
3844
  */
3845
- UserProfileName?: string;
3845
+ UserProfileName?: string | undefined;
3846
3846
  /**
3847
3847
  * <p>The name of the space. If this value is not set, then <code>UserProfileName</code> must be
3848
3848
  * set.</p>
3849
3849
  * @public
3850
3850
  */
3851
- SpaceName?: string;
3851
+ SpaceName?: string | undefined;
3852
3852
  /**
3853
3853
  * <p>The status.</p>
3854
3854
  * @public
3855
3855
  */
3856
- Status?: AppStatus;
3856
+ Status?: AppStatus | undefined;
3857
3857
  /**
3858
3858
  * <p>The timestamp of the last health check.</p>
3859
3859
  * @public
3860
3860
  */
3861
- LastHealthCheckTimestamp?: Date;
3861
+ LastHealthCheckTimestamp?: Date | undefined;
3862
3862
  /**
3863
3863
  * <p>The timestamp of the last user's activity. <code>LastUserActivityTimestamp</code> is also
3864
3864
  * updated when SageMaker performs health checks without user activity. As a result, this
3865
3865
  * value is set to the same value as <code>LastHealthCheckTimestamp</code>.</p>
3866
3866
  * @public
3867
3867
  */
3868
- LastUserActivityTimestamp?: Date;
3868
+ LastUserActivityTimestamp?: Date | undefined;
3869
3869
  /**
3870
3870
  * <p>The creation time of the application.</p>
3871
3871
  * <note>
@@ -3877,23 +3877,23 @@ export interface DescribeAppResponse {
3877
3877
  * </note>
3878
3878
  * @public
3879
3879
  */
3880
- CreationTime?: Date;
3880
+ CreationTime?: Date | undefined;
3881
3881
  /**
3882
3882
  * <p>The failure reason.</p>
3883
3883
  * @public
3884
3884
  */
3885
- FailureReason?: string;
3885
+ FailureReason?: string | undefined;
3886
3886
  /**
3887
3887
  * <p>The instance type and the Amazon Resource Name (ARN) of the SageMaker image
3888
3888
  * created on the instance.</p>
3889
3889
  * @public
3890
3890
  */
3891
- ResourceSpec?: ResourceSpec;
3891
+ ResourceSpec?: ResourceSpec | undefined;
3892
3892
  /**
3893
3893
  * <p>The lifecycle configuration that runs before the default lifecycle configuration</p>
3894
3894
  * @public
3895
3895
  */
3896
- BuiltInLifecycleConfigArn?: string;
3896
+ BuiltInLifecycleConfigArn?: string | undefined;
3897
3897
  }
3898
3898
  /**
3899
3899
  * @public
@@ -3913,37 +3913,37 @@ export interface DescribeAppImageConfigResponse {
3913
3913
  * <p>The ARN of the AppImageConfig.</p>
3914
3914
  * @public
3915
3915
  */
3916
- AppImageConfigArn?: string;
3916
+ AppImageConfigArn?: string | undefined;
3917
3917
  /**
3918
3918
  * <p>The name of the AppImageConfig.</p>
3919
3919
  * @public
3920
3920
  */
3921
- AppImageConfigName?: string;
3921
+ AppImageConfigName?: string | undefined;
3922
3922
  /**
3923
3923
  * <p>When the AppImageConfig was created.</p>
3924
3924
  * @public
3925
3925
  */
3926
- CreationTime?: Date;
3926
+ CreationTime?: Date | undefined;
3927
3927
  /**
3928
3928
  * <p>When the AppImageConfig was last modified.</p>
3929
3929
  * @public
3930
3930
  */
3931
- LastModifiedTime?: Date;
3931
+ LastModifiedTime?: Date | undefined;
3932
3932
  /**
3933
3933
  * <p>The configuration of a KernelGateway app.</p>
3934
3934
  * @public
3935
3935
  */
3936
- KernelGatewayImageConfig?: KernelGatewayImageConfig;
3936
+ KernelGatewayImageConfig?: KernelGatewayImageConfig | undefined;
3937
3937
  /**
3938
3938
  * <p>The configuration of the JupyterLab app.</p>
3939
3939
  * @public
3940
3940
  */
3941
- JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
3941
+ JupyterLabAppImageConfig?: JupyterLabAppImageConfig | undefined;
3942
3942
  /**
3943
3943
  * <p>The configuration of the Code Editor app.</p>
3944
3944
  * @public
3945
3945
  */
3946
- CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
3946
+ CodeEditorAppImageConfig?: CodeEditorAppImageConfig | undefined;
3947
3947
  }
3948
3948
  /**
3949
3949
  * @public
@@ -3963,59 +3963,59 @@ export interface DescribeArtifactResponse {
3963
3963
  * <p>The name of the artifact.</p>
3964
3964
  * @public
3965
3965
  */
3966
- ArtifactName?: string;
3966
+ ArtifactName?: string | undefined;
3967
3967
  /**
3968
3968
  * <p>The Amazon Resource Name (ARN) of the artifact.</p>
3969
3969
  * @public
3970
3970
  */
3971
- ArtifactArn?: string;
3971
+ ArtifactArn?: string | undefined;
3972
3972
  /**
3973
3973
  * <p>The source of the artifact.</p>
3974
3974
  * @public
3975
3975
  */
3976
- Source?: ArtifactSource;
3976
+ Source?: ArtifactSource | undefined;
3977
3977
  /**
3978
3978
  * <p>The type of the artifact.</p>
3979
3979
  * @public
3980
3980
  */
3981
- ArtifactType?: string;
3981
+ ArtifactType?: string | undefined;
3982
3982
  /**
3983
3983
  * <p>A list of the artifact's properties.</p>
3984
3984
  * @public
3985
3985
  */
3986
- Properties?: Record<string, string>;
3986
+ Properties?: Record<string, string> | undefined;
3987
3987
  /**
3988
3988
  * <p>When the artifact was created.</p>
3989
3989
  * @public
3990
3990
  */
3991
- CreationTime?: Date;
3991
+ CreationTime?: Date | undefined;
3992
3992
  /**
3993
3993
  * <p>Information about the user who created or modified an experiment, trial, trial
3994
3994
  * component, lineage group, project, or model card.</p>
3995
3995
  * @public
3996
3996
  */
3997
- CreatedBy?: UserContext;
3997
+ CreatedBy?: UserContext | undefined;
3998
3998
  /**
3999
3999
  * <p>When the artifact was last modified.</p>
4000
4000
  * @public
4001
4001
  */
4002
- LastModifiedTime?: Date;
4002
+ LastModifiedTime?: Date | undefined;
4003
4003
  /**
4004
4004
  * <p>Information about the user who created or modified an experiment, trial, trial
4005
4005
  * component, lineage group, project, or model card.</p>
4006
4006
  * @public
4007
4007
  */
4008
- LastModifiedBy?: UserContext;
4008
+ LastModifiedBy?: UserContext | undefined;
4009
4009
  /**
4010
4010
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
4011
4011
  * @public
4012
4012
  */
4013
- MetadataProperties?: MetadataProperties;
4013
+ MetadataProperties?: MetadataProperties | undefined;
4014
4014
  /**
4015
4015
  * <p>The Amazon Resource Name (ARN) of the lineage group.</p>
4016
4016
  * @public
4017
4017
  */
4018
- LineageGroupArn?: string;
4018
+ LineageGroupArn?: string | undefined;
4019
4019
  }
4020
4020
  /**
4021
4021
  * @public
@@ -4039,7 +4039,7 @@ export interface ModelDeployResult {
4039
4039
  * </note>
4040
4040
  * @public
4041
4041
  */
4042
- EndpointName?: string;
4042
+ EndpointName?: string | undefined;
4043
4043
  }
4044
4044
  /**
4045
4045
  * <p>The resolved attributes.</p>
@@ -4050,18 +4050,18 @@ export interface ResolvedAttributes {
4050
4050
  * <p>Specifies a metric to minimize or maximize as the objective of an AutoML job.</p>
4051
4051
  * @public
4052
4052
  */
4053
- AutoMLJobObjective?: AutoMLJobObjective;
4053
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
4054
4054
  /**
4055
4055
  * <p>The problem type.</p>
4056
4056
  * @public
4057
4057
  */
4058
- ProblemType?: ProblemType;
4058
+ ProblemType?: ProblemType | undefined;
4059
4059
  /**
4060
4060
  * <p>How long a job is allowed to run, or how many candidates a job is allowed to
4061
4061
  * generate.</p>
4062
4062
  * @public
4063
4063
  */
4064
- CompletionCriteria?: AutoMLJobCompletionCriteria;
4064
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
4065
4065
  }
4066
4066
  /**
4067
4067
  * @public
@@ -4097,17 +4097,17 @@ export interface DescribeAutoMLJobResponse {
4097
4097
  * <p>Returns the job's objective.</p>
4098
4098
  * @public
4099
4099
  */
4100
- AutoMLJobObjective?: AutoMLJobObjective;
4100
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
4101
4101
  /**
4102
4102
  * <p>Returns the job's problem type.</p>
4103
4103
  * @public
4104
4104
  */
4105
- ProblemType?: ProblemType;
4105
+ ProblemType?: ProblemType | undefined;
4106
4106
  /**
4107
4107
  * <p>Returns the configuration for the AutoML job.</p>
4108
4108
  * @public
4109
4109
  */
4110
- AutoMLJobConfig?: AutoMLJobConfig;
4110
+ AutoMLJobConfig?: AutoMLJobConfig | undefined;
4111
4111
  /**
4112
4112
  * <p>Returns the creation time of the AutoML job.</p>
4113
4113
  * @public
@@ -4117,7 +4117,7 @@ export interface DescribeAutoMLJobResponse {
4117
4117
  * <p>Returns the end time of the AutoML job.</p>
4118
4118
  * @public
4119
4119
  */
4120
- EndTime?: Date;
4120
+ EndTime?: Date | undefined;
4121
4121
  /**
4122
4122
  * <p>Returns the job's last modified time.</p>
4123
4123
  * @public
@@ -4127,19 +4127,19 @@ export interface DescribeAutoMLJobResponse {
4127
4127
  * <p>Returns the failure reason for an AutoML job, when applicable.</p>
4128
4128
  * @public
4129
4129
  */
4130
- FailureReason?: string;
4130
+ FailureReason?: string | undefined;
4131
4131
  /**
4132
4132
  * <p>Returns a list of reasons for partial failures within an AutoML job.</p>
4133
4133
  * @public
4134
4134
  */
4135
- PartialFailureReasons?: AutoMLPartialFailureReason[];
4135
+ PartialFailureReasons?: AutoMLPartialFailureReason[] | undefined;
4136
4136
  /**
4137
4137
  * <p>The best model candidate selected by SageMaker Autopilot using both the best
4138
4138
  * objective metric and lowest <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-metrics-validation.html">InferenceLatency</a> for
4139
4139
  * an experiment.</p>
4140
4140
  * @public
4141
4141
  */
4142
- BestCandidate?: AutoMLCandidate;
4142
+ BestCandidate?: AutoMLCandidate | undefined;
4143
4143
  /**
4144
4144
  * <p>Returns the status of the AutoML job.</p>
4145
4145
  * @public
@@ -4155,31 +4155,31 @@ export interface DescribeAutoMLJobResponse {
4155
4155
  * only.</p>
4156
4156
  * @public
4157
4157
  */
4158
- GenerateCandidateDefinitionsOnly?: boolean;
4158
+ GenerateCandidateDefinitionsOnly?: boolean | undefined;
4159
4159
  /**
4160
4160
  * <p>Returns information on the job's artifacts found in
4161
4161
  * <code>AutoMLJobArtifacts</code>.</p>
4162
4162
  * @public
4163
4163
  */
4164
- AutoMLJobArtifacts?: AutoMLJobArtifacts;
4164
+ AutoMLJobArtifacts?: AutoMLJobArtifacts | undefined;
4165
4165
  /**
4166
4166
  * <p>Contains <code>ProblemType</code>, <code>AutoMLJobObjective</code>, and
4167
4167
  * <code>CompletionCriteria</code>. If you do not provide these values, they are
4168
4168
  * inferred.</p>
4169
4169
  * @public
4170
4170
  */
4171
- ResolvedAttributes?: ResolvedAttributes;
4171
+ ResolvedAttributes?: ResolvedAttributes | undefined;
4172
4172
  /**
4173
4173
  * <p>Indicates whether the model was deployed automatically to an endpoint and the name of
4174
4174
  * that endpoint if deployed automatically.</p>
4175
4175
  * @public
4176
4176
  */
4177
- ModelDeployConfig?: ModelDeployConfig;
4177
+ ModelDeployConfig?: ModelDeployConfig | undefined;
4178
4178
  /**
4179
4179
  * <p>Provides information about endpoint for the model deployment.</p>
4180
4180
  * @public
4181
4181
  */
4182
- ModelDeployResult?: ModelDeployResult;
4182
+ ModelDeployResult?: ModelDeployResult | undefined;
4183
4183
  }
4184
4184
  /**
4185
4185
  * @public
@@ -4225,17 +4225,17 @@ export interface DescribeAutoMLJobV2Response {
4225
4225
  * <p>Returns the job's objective.</p>
4226
4226
  * @public
4227
4227
  */
4228
- AutoMLJobObjective?: AutoMLJobObjective;
4228
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
4229
4229
  /**
4230
4230
  * <p>Returns the configuration settings of the problem type set for the AutoML job V2.</p>
4231
4231
  * @public
4232
4232
  */
4233
- AutoMLProblemTypeConfig?: AutoMLProblemTypeConfig;
4233
+ AutoMLProblemTypeConfig?: AutoMLProblemTypeConfig | undefined;
4234
4234
  /**
4235
4235
  * <p>Returns the name of the problem type configuration set for the AutoML job V2.</p>
4236
4236
  * @public
4237
4237
  */
4238
- AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName;
4238
+ AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName | undefined;
4239
4239
  /**
4240
4240
  * <p>Returns the creation time of the AutoML job V2.</p>
4241
4241
  * @public
@@ -4245,7 +4245,7 @@ export interface DescribeAutoMLJobV2Response {
4245
4245
  * <p>Returns the end time of the AutoML job V2.</p>
4246
4246
  * @public
4247
4247
  */
4248
- EndTime?: Date;
4248
+ EndTime?: Date | undefined;
4249
4249
  /**
4250
4250
  * <p>Returns the job's last modified time.</p>
4251
4251
  * @public
@@ -4255,18 +4255,18 @@ export interface DescribeAutoMLJobV2Response {
4255
4255
  * <p>Returns the reason for the failure of the AutoML job V2, when applicable.</p>
4256
4256
  * @public
4257
4257
  */
4258
- FailureReason?: string;
4258
+ FailureReason?: string | undefined;
4259
4259
  /**
4260
4260
  * <p>Returns a list of reasons for partial failures within an AutoML job V2.</p>
4261
4261
  * @public
4262
4262
  */
4263
- PartialFailureReasons?: AutoMLPartialFailureReason[];
4263
+ PartialFailureReasons?: AutoMLPartialFailureReason[] | undefined;
4264
4264
  /**
4265
4265
  * <p>Information about the candidate produced by an AutoML training job V2, including its
4266
4266
  * status, steps, and other properties.</p>
4267
4267
  * @public
4268
4268
  */
4269
- BestCandidate?: AutoMLCandidate;
4269
+ BestCandidate?: AutoMLCandidate | undefined;
4270
4270
  /**
4271
4271
  * <p>Returns the status of the AutoML job V2.</p>
4272
4272
  * @public
@@ -4281,40 +4281,40 @@ export interface DescribeAutoMLJobV2Response {
4281
4281
  * <p>The artifacts that are generated during an AutoML job.</p>
4282
4282
  * @public
4283
4283
  */
4284
- AutoMLJobArtifacts?: AutoMLJobArtifacts;
4284
+ AutoMLJobArtifacts?: AutoMLJobArtifacts | undefined;
4285
4285
  /**
4286
4286
  * <p>Returns the resolved attributes used by the AutoML job V2.</p>
4287
4287
  * @public
4288
4288
  */
4289
- ResolvedAttributes?: AutoMLResolvedAttributes;
4289
+ ResolvedAttributes?: AutoMLResolvedAttributes | undefined;
4290
4290
  /**
4291
4291
  * <p>Indicates whether the model was deployed automatically to an endpoint and the name of
4292
4292
  * that endpoint if deployed automatically.</p>
4293
4293
  * @public
4294
4294
  */
4295
- ModelDeployConfig?: ModelDeployConfig;
4295
+ ModelDeployConfig?: ModelDeployConfig | undefined;
4296
4296
  /**
4297
4297
  * <p>Provides information about endpoint for the model deployment.</p>
4298
4298
  * @public
4299
4299
  */
4300
- ModelDeployResult?: ModelDeployResult;
4300
+ ModelDeployResult?: ModelDeployResult | undefined;
4301
4301
  /**
4302
4302
  * <p>Returns the configuration settings of how the data are split into train and validation
4303
4303
  * datasets.</p>
4304
4304
  * @public
4305
4305
  */
4306
- DataSplitConfig?: AutoMLDataSplitConfig;
4306
+ DataSplitConfig?: AutoMLDataSplitConfig | undefined;
4307
4307
  /**
4308
4308
  * <p>Returns the security configuration for traffic encryption or Amazon VPC
4309
4309
  * settings.</p>
4310
4310
  * @public
4311
4311
  */
4312
- SecurityConfig?: AutoMLSecurityConfig;
4312
+ SecurityConfig?: AutoMLSecurityConfig | undefined;
4313
4313
  /**
4314
4314
  * <p>The compute configuration used for the AutoML job V2.</p>
4315
4315
  * @public
4316
4316
  */
4317
- AutoMLComputeConfig?: AutoMLComputeConfig;
4317
+ AutoMLComputeConfig?: AutoMLComputeConfig | undefined;
4318
4318
  }
4319
4319
  /**
4320
4320
  * @public
@@ -4339,7 +4339,7 @@ export interface DescribeClusterResponse {
4339
4339
  * <p>The name of the SageMaker HyperPod cluster.</p>
4340
4340
  * @public
4341
4341
  */
4342
- ClusterName?: string;
4342
+ ClusterName?: string | undefined;
4343
4343
  /**
4344
4344
  * <p>The status of the SageMaker HyperPod cluster.</p>
4345
4345
  * @public
@@ -4349,12 +4349,12 @@ export interface DescribeClusterResponse {
4349
4349
  * <p>The time when the SageMaker Cluster is created.</p>
4350
4350
  * @public
4351
4351
  */
4352
- CreationTime?: Date;
4352
+ CreationTime?: Date | undefined;
4353
4353
  /**
4354
4354
  * <p>The failure message of the SageMaker HyperPod cluster.</p>
4355
4355
  * @public
4356
4356
  */
4357
- FailureMessage?: string;
4357
+ FailureMessage?: string | undefined;
4358
4358
  /**
4359
4359
  * <p>The instance groups of the SageMaker HyperPod cluster.</p>
4360
4360
  * @public
@@ -4367,17 +4367,17 @@ export interface DescribeClusterResponse {
4367
4367
  * Resources in your Amazon VPC</a>. </p>
4368
4368
  * @public
4369
4369
  */
4370
- VpcConfig?: VpcConfig;
4370
+ VpcConfig?: VpcConfig | undefined;
4371
4371
  /**
4372
4372
  * <p>The type of orchestrator used for the SageMaker HyperPod cluster. </p>
4373
4373
  * @public
4374
4374
  */
4375
- Orchestrator?: ClusterOrchestrator;
4375
+ Orchestrator?: ClusterOrchestrator | undefined;
4376
4376
  /**
4377
4377
  * <p>The node recovery mode configured for the SageMaker HyperPod cluster.</p>
4378
4378
  * @public
4379
4379
  */
4380
- NodeRecovery?: ClusterNodeRecovery;
4380
+ NodeRecovery?: ClusterNodeRecovery | undefined;
4381
4381
  }
4382
4382
  /**
4383
4383
  * @public
@@ -4444,7 +4444,7 @@ export interface DescribeCodeRepositoryOutput {
4444
4444
  * repository.</p>
4445
4445
  * @public
4446
4446
  */
4447
- GitConfig?: GitConfig;
4447
+ GitConfig?: GitConfig | undefined;
4448
4448
  }
4449
4449
  /**
4450
4450
  * @public
@@ -4484,7 +4484,7 @@ export interface ModelDigests {
4484
4484
  * artifacts.</p>
4485
4485
  * @public
4486
4486
  */
4487
- ArtifactDigest?: string;
4487
+ ArtifactDigest?: string | undefined;
4488
4488
  }
4489
4489
  /**
4490
4490
  * @public
@@ -4514,14 +4514,14 @@ export interface DescribeCompilationJobResponse {
4514
4514
  * depends on the size of the compilation job container. </p>
4515
4515
  * @public
4516
4516
  */
4517
- CompilationStartTime?: Date;
4517
+ CompilationStartTime?: Date | undefined;
4518
4518
  /**
4519
4519
  * <p>The time when the model compilation job on a compilation job instance ended. For a
4520
4520
  * successful or stopped job, this is when the job's model artifacts have finished
4521
4521
  * uploading. For a failed job, this is when Amazon SageMaker detected that the job failed. </p>
4522
4522
  * @public
4523
4523
  */
4524
- CompilationEndTime?: Date;
4524
+ CompilationEndTime?: Date | undefined;
4525
4525
  /**
4526
4526
  * <p>Specifies a limit to how long a model compilation job can run. When the job reaches
4527
4527
  * the time limit, Amazon SageMaker ends the compilation job. Use this API to cap model training
@@ -4534,13 +4534,13 @@ export interface DescribeCompilationJobResponse {
4534
4534
  * device is a cloud instance.</p>
4535
4535
  * @public
4536
4536
  */
4537
- InferenceImage?: string;
4537
+ InferenceImage?: string | undefined;
4538
4538
  /**
4539
4539
  * <p>The Amazon Resource Name (ARN) of the versioned model package that was
4540
4540
  * provided to SageMaker Neo when you initiated a compilation job.</p>
4541
4541
  * @public
4542
4542
  */
4543
- ModelPackageVersionArn?: string;
4543
+ ModelPackageVersionArn?: string | undefined;
4544
4544
  /**
4545
4545
  * <p>The time that the model compilation job was created.</p>
4546
4546
  * @public
@@ -4569,7 +4569,7 @@ export interface DescribeCompilationJobResponse {
4569
4569
  * Amazon S3.</p>
4570
4570
  * @public
4571
4571
  */
4572
- ModelDigests?: ModelDigests;
4572
+ ModelDigests?: ModelDigests | undefined;
4573
4573
  /**
4574
4574
  * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker assumes to perform the model
4575
4575
  * compilation job.</p>
@@ -4595,12 +4595,12 @@ export interface DescribeCompilationJobResponse {
4595
4595
  * 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>
4596
4596
  * @public
4597
4597
  */
4598
- VpcConfig?: NeoVpcConfig;
4598
+ VpcConfig?: NeoVpcConfig | undefined;
4599
4599
  /**
4600
4600
  * <p>Information that SageMaker Neo automatically derived about the model.</p>
4601
4601
  * @public
4602
4602
  */
4603
- DerivedInformation?: DerivedInformation;
4603
+ DerivedInformation?: DerivedInformation | undefined;
4604
4604
  }
4605
4605
  /**
4606
4606
  * @public
@@ -4620,59 +4620,59 @@ export interface DescribeContextResponse {
4620
4620
  * <p>The name of the context.</p>
4621
4621
  * @public
4622
4622
  */
4623
- ContextName?: string;
4623
+ ContextName?: string | undefined;
4624
4624
  /**
4625
4625
  * <p>The Amazon Resource Name (ARN) of the context.</p>
4626
4626
  * @public
4627
4627
  */
4628
- ContextArn?: string;
4628
+ ContextArn?: string | undefined;
4629
4629
  /**
4630
4630
  * <p>The source of the context.</p>
4631
4631
  * @public
4632
4632
  */
4633
- Source?: ContextSource;
4633
+ Source?: ContextSource | undefined;
4634
4634
  /**
4635
4635
  * <p>The type of the context.</p>
4636
4636
  * @public
4637
4637
  */
4638
- ContextType?: string;
4638
+ ContextType?: string | undefined;
4639
4639
  /**
4640
4640
  * <p>The description of the context.</p>
4641
4641
  * @public
4642
4642
  */
4643
- Description?: string;
4643
+ Description?: string | undefined;
4644
4644
  /**
4645
4645
  * <p>A list of the context's properties.</p>
4646
4646
  * @public
4647
4647
  */
4648
- Properties?: Record<string, string>;
4648
+ Properties?: Record<string, string> | undefined;
4649
4649
  /**
4650
4650
  * <p>When the context was created.</p>
4651
4651
  * @public
4652
4652
  */
4653
- CreationTime?: Date;
4653
+ CreationTime?: Date | undefined;
4654
4654
  /**
4655
4655
  * <p>Information about the user who created or modified an experiment, trial, trial
4656
4656
  * component, lineage group, project, or model card.</p>
4657
4657
  * @public
4658
4658
  */
4659
- CreatedBy?: UserContext;
4659
+ CreatedBy?: UserContext | undefined;
4660
4660
  /**
4661
4661
  * <p>When the context was last modified.</p>
4662
4662
  * @public
4663
4663
  */
4664
- LastModifiedTime?: Date;
4664
+ LastModifiedTime?: Date | undefined;
4665
4665
  /**
4666
4666
  * <p>Information about the user who created or modified an experiment, trial, trial
4667
4667
  * component, lineage group, project, or model card.</p>
4668
4668
  * @public
4669
4669
  */
4670
- LastModifiedBy?: UserContext;
4670
+ LastModifiedBy?: UserContext | undefined;
4671
4671
  /**
4672
4672
  * <p>The Amazon Resource Name (ARN) of the lineage group.</p>
4673
4673
  * @public
4674
4674
  */
4675
- LineageGroupArn?: string;
4675
+ LineageGroupArn?: string | undefined;
4676
4676
  }
4677
4677
  /**
4678
4678
  * @public
@@ -4707,7 +4707,7 @@ export interface DescribeDataQualityJobDefinitionResponse {
4707
4707
  * <p>The constraints and baselines for the data quality monitoring job definition.</p>
4708
4708
  * @public
4709
4709
  */
4710
- DataQualityBaselineConfig?: DataQualityBaselineConfig;
4710
+ DataQualityBaselineConfig?: DataQualityBaselineConfig | undefined;
4711
4711
  /**
4712
4712
  * <p>Information about the container that runs the data quality monitoring job.</p>
4713
4713
  * @public
@@ -4733,7 +4733,7 @@ export interface DescribeDataQualityJobDefinitionResponse {
4733
4733
  * <p>The networking configuration for the data quality monitoring job.</p>
4734
4734
  * @public
4735
4735
  */
4736
- NetworkConfig?: MonitoringNetworkConfig;
4736
+ NetworkConfig?: MonitoringNetworkConfig | undefined;
4737
4737
  /**
4738
4738
  * <p>The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can
4739
4739
  * assume to perform tasks on your behalf.</p>
@@ -4744,7 +4744,7 @@ export interface DescribeDataQualityJobDefinitionResponse {
4744
4744
  * <p>A time limit for how long the monitoring job is allowed to run before stopping.</p>
4745
4745
  * @public
4746
4746
  */
4747
- StoppingCondition?: MonitoringStoppingCondition;
4747
+ StoppingCondition?: MonitoringStoppingCondition | undefined;
4748
4748
  }
4749
4749
  /**
4750
4750
  * @public
@@ -4754,7 +4754,7 @@ export interface DescribeDeviceRequest {
4754
4754
  * <p>Next token of device description.</p>
4755
4755
  * @public
4756
4756
  */
4757
- NextToken?: string;
4757
+ NextToken?: string | undefined;
4758
4758
  /**
4759
4759
  * <p>The unique ID of the device.</p>
4760
4760
  * @public
@@ -4785,12 +4785,12 @@ export interface EdgeModel {
4785
4785
  * <p>The timestamp of the last data sample taken.</p>
4786
4786
  * @public
4787
4787
  */
4788
- LatestSampleTime?: Date;
4788
+ LatestSampleTime?: Date | undefined;
4789
4789
  /**
4790
4790
  * <p>The timestamp of the last inference that was made.</p>
4791
4791
  * @public
4792
4792
  */
4793
- LatestInference?: Date;
4793
+ LatestInference?: Date | undefined;
4794
4794
  }
4795
4795
  /**
4796
4796
  * @public
@@ -4800,7 +4800,7 @@ export interface DescribeDeviceResponse {
4800
4800
  * <p>The Amazon Resource Name (ARN) of the device.</p>
4801
4801
  * @public
4802
4802
  */
4803
- DeviceArn?: string;
4803
+ DeviceArn?: string | undefined;
4804
4804
  /**
4805
4805
  * <p>The unique identifier of the device.</p>
4806
4806
  * @public
@@ -4810,7 +4810,7 @@ export interface DescribeDeviceResponse {
4810
4810
  * <p>A description of the device.</p>
4811
4811
  * @public
4812
4812
  */
4813
- Description?: string;
4813
+ Description?: string | undefined;
4814
4814
  /**
4815
4815
  * <p>The name of the fleet the device belongs to.</p>
4816
4816
  * @public
@@ -4820,7 +4820,7 @@ export interface DescribeDeviceResponse {
4820
4820
  * <p>The Amazon Web Services Internet of Things (IoT) object thing name associated with the device.</p>
4821
4821
  * @public
4822
4822
  */
4823
- IotThingName?: string;
4823
+ IotThingName?: string | undefined;
4824
4824
  /**
4825
4825
  * <p>The timestamp of the last registration or de-reregistration.</p>
4826
4826
  * @public
@@ -4830,27 +4830,27 @@ export interface DescribeDeviceResponse {
4830
4830
  * <p>The last heartbeat received from the device.</p>
4831
4831
  * @public
4832
4832
  */
4833
- LatestHeartbeat?: Date;
4833
+ LatestHeartbeat?: Date | undefined;
4834
4834
  /**
4835
4835
  * <p>Models on the device.</p>
4836
4836
  * @public
4837
4837
  */
4838
- Models?: EdgeModel[];
4838
+ Models?: EdgeModel[] | undefined;
4839
4839
  /**
4840
4840
  * <p>The maximum number of models.</p>
4841
4841
  * @public
4842
4842
  */
4843
- MaxModels?: number;
4843
+ MaxModels?: number | undefined;
4844
4844
  /**
4845
4845
  * <p>The response from the last list when returning a list large enough to need tokening.</p>
4846
4846
  * @public
4847
4847
  */
4848
- NextToken?: string;
4848
+ NextToken?: string | undefined;
4849
4849
  /**
4850
4850
  * <p>Edge Manager agent version.</p>
4851
4851
  * @public
4852
4852
  */
4853
- AgentVersion?: string;
4853
+ AgentVersion?: string | undefined;
4854
4854
  }
4855
4855
  /**
4856
4856
  * @public
@@ -4885,7 +4885,7 @@ export interface DescribeDeviceFleetResponse {
4885
4885
  * <p>A description of the fleet.</p>
4886
4886
  * @public
4887
4887
  */
4888
- Description?: string;
4888
+ Description?: string | undefined;
4889
4889
  /**
4890
4890
  * <p>Timestamp of when the device fleet was created.</p>
4891
4891
  * @public
@@ -4900,12 +4900,12 @@ export interface DescribeDeviceFleetResponse {
4900
4900
  * <p>The Amazon Resource Name (ARN) that has access to Amazon Web Services Internet of Things (IoT).</p>
4901
4901
  * @public
4902
4902
  */
4903
- RoleArn?: string;
4903
+ RoleArn?: string | undefined;
4904
4904
  /**
4905
4905
  * <p>The Amazon Resource Name (ARN) alias created in Amazon Web Services Internet of Things (IoT).</p>
4906
4906
  * @public
4907
4907
  */
4908
- IotRoleAlias?: string;
4908
+ IotRoleAlias?: string | undefined;
4909
4909
  }
4910
4910
  /**
4911
4911
  * @public
@@ -4942,75 +4942,75 @@ export interface DescribeDomainResponse {
4942
4942
  * <p>The domain's Amazon Resource Name (ARN).</p>
4943
4943
  * @public
4944
4944
  */
4945
- DomainArn?: string;
4945
+ DomainArn?: string | undefined;
4946
4946
  /**
4947
4947
  * <p>The domain ID.</p>
4948
4948
  * @public
4949
4949
  */
4950
- DomainId?: string;
4950
+ DomainId?: string | undefined;
4951
4951
  /**
4952
4952
  * <p>The domain name.</p>
4953
4953
  * @public
4954
4954
  */
4955
- DomainName?: string;
4955
+ DomainName?: string | undefined;
4956
4956
  /**
4957
4957
  * <p>The ID of the Amazon Elastic File System managed by this Domain.</p>
4958
4958
  * @public
4959
4959
  */
4960
- HomeEfsFileSystemId?: string;
4960
+ HomeEfsFileSystemId?: string | undefined;
4961
4961
  /**
4962
4962
  * <p>The IAM Identity Center managed application instance ID.</p>
4963
4963
  * @public
4964
4964
  */
4965
- SingleSignOnManagedApplicationInstanceId?: string;
4965
+ SingleSignOnManagedApplicationInstanceId?: string | undefined;
4966
4966
  /**
4967
4967
  * <p>The ARN of the application managed by SageMaker in IAM Identity Center. This value
4968
4968
  * is only returned for domains created after October 1, 2023.</p>
4969
4969
  * @public
4970
4970
  */
4971
- SingleSignOnApplicationArn?: string;
4971
+ SingleSignOnApplicationArn?: string | undefined;
4972
4972
  /**
4973
4973
  * <p>The status.</p>
4974
4974
  * @public
4975
4975
  */
4976
- Status?: DomainStatus;
4976
+ Status?: DomainStatus | undefined;
4977
4977
  /**
4978
4978
  * <p>The creation time.</p>
4979
4979
  * @public
4980
4980
  */
4981
- CreationTime?: Date;
4981
+ CreationTime?: Date | undefined;
4982
4982
  /**
4983
4983
  * <p>The last modified time.</p>
4984
4984
  * @public
4985
4985
  */
4986
- LastModifiedTime?: Date;
4986
+ LastModifiedTime?: Date | undefined;
4987
4987
  /**
4988
4988
  * <p>The failure reason.</p>
4989
4989
  * @public
4990
4990
  */
4991
- FailureReason?: string;
4991
+ FailureReason?: string | undefined;
4992
4992
  /**
4993
4993
  * <p>The ID of the security group that authorizes traffic between the
4994
4994
  * <code>RSessionGateway</code> apps and the <code>RStudioServerPro</code> app.</p>
4995
4995
  * @public
4996
4996
  */
4997
- SecurityGroupIdForDomainBoundary?: string;
4997
+ SecurityGroupIdForDomainBoundary?: string | undefined;
4998
4998
  /**
4999
4999
  * <p>The domain's authentication mode.</p>
5000
5000
  * @public
5001
5001
  */
5002
- AuthMode?: AuthMode;
5002
+ AuthMode?: AuthMode | undefined;
5003
5003
  /**
5004
5004
  * <p>Settings which are applied to UserProfiles in this domain if settings are not explicitly
5005
5005
  * specified in a given UserProfile. </p>
5006
5006
  * @public
5007
5007
  */
5008
- DefaultUserSettings?: UserSettings;
5008
+ DefaultUserSettings?: UserSettings | undefined;
5009
5009
  /**
5010
5010
  * <p>A collection of <code>Domain</code> settings.</p>
5011
5011
  * @public
5012
5012
  */
5013
- DomainSettings?: DomainSettings;
5013
+ DomainSettings?: DomainSettings | undefined;
5014
5014
  /**
5015
5015
  * <p>Specifies the VPC used for non-EFS traffic. The default value is
5016
5016
  * <code>PublicInternetOnly</code>.</p>
@@ -5026,35 +5026,35 @@ export interface DescribeDomainResponse {
5026
5026
  * </ul>
5027
5027
  * @public
5028
5028
  */
5029
- AppNetworkAccessType?: AppNetworkAccessType;
5029
+ AppNetworkAccessType?: AppNetworkAccessType | undefined;
5030
5030
  /**
5031
5031
  * @deprecated
5032
5032
  *
5033
5033
  * <p>Use <code>KmsKeyId</code>.</p>
5034
5034
  * @public
5035
5035
  */
5036
- HomeEfsFileSystemKmsKeyId?: string;
5036
+ HomeEfsFileSystemKmsKeyId?: string | undefined;
5037
5037
  /**
5038
5038
  * <p>The VPC subnets that the domain uses for communication.</p>
5039
5039
  * @public
5040
5040
  */
5041
- SubnetIds?: string[];
5041
+ SubnetIds?: string[] | undefined;
5042
5042
  /**
5043
5043
  * <p>The domain's URL.</p>
5044
5044
  * @public
5045
5045
  */
5046
- Url?: string;
5046
+ Url?: string | undefined;
5047
5047
  /**
5048
5048
  * <p>The ID of the Amazon Virtual Private Cloud (VPC) that the domain uses for communication.</p>
5049
5049
  * @public
5050
5050
  */
5051
- VpcId?: string;
5051
+ VpcId?: string | undefined;
5052
5052
  /**
5053
5053
  * <p>The Amazon Web Services KMS customer managed key used to encrypt the EFS volume attached to
5054
5054
  * the domain.</p>
5055
5055
  * @public
5056
5056
  */
5057
- KmsKeyId?: string;
5057
+ KmsKeyId?: string | undefined;
5058
5058
  /**
5059
5059
  * <p>The entity that creates and manages the required security groups for inter-app
5060
5060
  * communication in <code>VPCOnly</code> mode. Required when
@@ -5063,17 +5063,17 @@ export interface DescribeDomainResponse {
5063
5063
  * provided.</p>
5064
5064
  * @public
5065
5065
  */
5066
- AppSecurityGroupManagement?: AppSecurityGroupManagement;
5066
+ AppSecurityGroupManagement?: AppSecurityGroupManagement | undefined;
5067
5067
  /**
5068
5068
  * <p>Indicates whether custom tag propagation is supported for the domain.</p>
5069
5069
  * @public
5070
5070
  */
5071
- TagPropagation?: TagPropagation;
5071
+ TagPropagation?: TagPropagation | undefined;
5072
5072
  /**
5073
5073
  * <p>The default settings for shared spaces that users create in the domain.</p>
5074
5074
  * @public
5075
5075
  */
5076
- DefaultSpaceSettings?: DefaultSpaceSettings;
5076
+ DefaultSpaceSettings?: DefaultSpaceSettings | undefined;
5077
5077
  }
5078
5078
  /**
5079
5079
  * @public
@@ -5089,12 +5089,12 @@ export interface DescribeEdgeDeploymentPlanRequest {
5089
5089
  * response from the last list of stages returned.</p>
5090
5090
  * @public
5091
5091
  */
5092
- NextToken?: string;
5092
+ NextToken?: string | undefined;
5093
5093
  /**
5094
5094
  * <p>The maximum number of results to select (50 by default).</p>
5095
5095
  * @public
5096
5096
  */
5097
- MaxResults?: number;
5097
+ MaxResults?: number | undefined;
5098
5098
  }
5099
5099
  /**
5100
5100
  * @public
@@ -5124,17 +5124,17 @@ export interface DescribeEdgeDeploymentPlanResponse {
5124
5124
  * <p>The number of edge devices with the successful deployment.</p>
5125
5125
  * @public
5126
5126
  */
5127
- EdgeDeploymentSuccess?: number;
5127
+ EdgeDeploymentSuccess?: number | undefined;
5128
5128
  /**
5129
5129
  * <p>The number of edge devices yet to pick up deployment, or in progress.</p>
5130
5130
  * @public
5131
5131
  */
5132
- EdgeDeploymentPending?: number;
5132
+ EdgeDeploymentPending?: number | undefined;
5133
5133
  /**
5134
5134
  * <p>The number of edge devices that failed the deployment.</p>
5135
5135
  * @public
5136
5136
  */
5137
- EdgeDeploymentFailed?: number;
5137
+ EdgeDeploymentFailed?: number | undefined;
5138
5138
  /**
5139
5139
  * <p>List of stages in the edge deployment plan.</p>
5140
5140
  * @public
@@ -5144,17 +5144,17 @@ export interface DescribeEdgeDeploymentPlanResponse {
5144
5144
  * <p>Token to use when calling the next set of stages in the edge deployment plan.</p>
5145
5145
  * @public
5146
5146
  */
5147
- NextToken?: string;
5147
+ NextToken?: string | undefined;
5148
5148
  /**
5149
5149
  * <p>The time when the edge deployment plan was created.</p>
5150
5150
  * @public
5151
5151
  */
5152
- CreationTime?: Date;
5152
+ CreationTime?: Date | undefined;
5153
5153
  /**
5154
5154
  * <p>The time when the edge deployment plan was last updated.</p>
5155
5155
  * @public
5156
5156
  */
5157
- LastModifiedTime?: Date;
5157
+ LastModifiedTime?: Date | undefined;
5158
5158
  }
5159
5159
  /**
5160
5160
  * @public
@@ -5209,17 +5209,17 @@ export interface EdgePresetDeploymentOutput {
5209
5209
  * <p>The Amazon Resource Name (ARN) of the generated deployable resource.</p>
5210
5210
  * @public
5211
5211
  */
5212
- Artifact?: string;
5212
+ Artifact?: string | undefined;
5213
5213
  /**
5214
5214
  * <p>The status of the deployable resource.</p>
5215
5215
  * @public
5216
5216
  */
5217
- Status?: EdgePresetDeploymentStatus;
5217
+ Status?: EdgePresetDeploymentStatus | undefined;
5218
5218
  /**
5219
5219
  * <p>Returns a message describing the status of the deployed resource.</p>
5220
5220
  * @public
5221
5221
  */
5222
- StatusMessage?: string;
5222
+ StatusMessage?: string | undefined;
5223
5223
  }
5224
5224
  /**
5225
5225
  * @public
@@ -5239,32 +5239,32 @@ export interface DescribeEdgePackagingJobResponse {
5239
5239
  * <p>The name of the SageMaker Neo compilation job that is used to locate model artifacts that are being packaged.</p>
5240
5240
  * @public
5241
5241
  */
5242
- CompilationJobName?: string;
5242
+ CompilationJobName?: string | undefined;
5243
5243
  /**
5244
5244
  * <p>The name of the model.</p>
5245
5245
  * @public
5246
5246
  */
5247
- ModelName?: string;
5247
+ ModelName?: string | undefined;
5248
5248
  /**
5249
5249
  * <p>The version of the model.</p>
5250
5250
  * @public
5251
5251
  */
5252
- ModelVersion?: string;
5252
+ ModelVersion?: string | undefined;
5253
5253
  /**
5254
5254
  * <p>The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to download and upload the model, and to contact Neo.</p>
5255
5255
  * @public
5256
5256
  */
5257
- RoleArn?: string;
5257
+ RoleArn?: string | undefined;
5258
5258
  /**
5259
5259
  * <p>The output configuration for the edge packaging job.</p>
5260
5260
  * @public
5261
5261
  */
5262
- OutputConfig?: EdgeOutputConfig;
5262
+ OutputConfig?: EdgeOutputConfig | undefined;
5263
5263
  /**
5264
5264
  * <p>The Amazon Web Services KMS key to use when encrypting the EBS volume the job run on.</p>
5265
5265
  * @public
5266
5266
  */
5267
- ResourceKey?: string;
5267
+ ResourceKey?: string | undefined;
5268
5268
  /**
5269
5269
  * <p>The current status of the packaging job.</p>
5270
5270
  * @public
@@ -5274,32 +5274,32 @@ export interface DescribeEdgePackagingJobResponse {
5274
5274
  * <p>Returns a message describing the job status and error messages.</p>
5275
5275
  * @public
5276
5276
  */
5277
- EdgePackagingJobStatusMessage?: string;
5277
+ EdgePackagingJobStatusMessage?: string | undefined;
5278
5278
  /**
5279
5279
  * <p>The timestamp of when the packaging job was created.</p>
5280
5280
  * @public
5281
5281
  */
5282
- CreationTime?: Date;
5282
+ CreationTime?: Date | undefined;
5283
5283
  /**
5284
5284
  * <p>The timestamp of when the job was last updated.</p>
5285
5285
  * @public
5286
5286
  */
5287
- LastModifiedTime?: Date;
5287
+ LastModifiedTime?: Date | undefined;
5288
5288
  /**
5289
5289
  * <p>The Amazon Simple Storage (S3) URI where model artifacts ares stored.</p>
5290
5290
  * @public
5291
5291
  */
5292
- ModelArtifact?: string;
5292
+ ModelArtifact?: string | undefined;
5293
5293
  /**
5294
5294
  * <p>The signature document of files in the model artifact.</p>
5295
5295
  * @public
5296
5296
  */
5297
- ModelSignature?: string;
5297
+ ModelSignature?: string | undefined;
5298
5298
  /**
5299
5299
  * <p>The output of a SageMaker Edge Manager deployable resource.</p>
5300
5300
  * @public
5301
5301
  */
5302
- PresetDeploymentOutput?: EdgePresetDeploymentOutput;
5302
+ PresetDeploymentOutput?: EdgePresetDeploymentOutput | undefined;
5303
5303
  }
5304
5304
  /**
5305
5305
  * @public
@@ -5386,12 +5386,12 @@ export interface ProductionVariantStatus {
5386
5386
  * <p>A message that describes the status of the production variant.</p>
5387
5387
  * @public
5388
5388
  */
5389
- StatusMessage?: string;
5389
+ StatusMessage?: string | undefined;
5390
5390
  /**
5391
5391
  * <p>The start time of the current status change.</p>
5392
5392
  * @public
5393
5393
  */
5394
- StartTime?: Date;
5394
+ StartTime?: Date | undefined;
5395
5395
  }
5396
5396
  /**
5397
5397
  * <p>The production variant summary for a deployment when an endpoint is creating or
@@ -5413,34 +5413,34 @@ export interface PendingProductionVariantSummary {
5413
5413
  * <code>ProductionVariant</code>.</p>
5414
5414
  * @public
5415
5415
  */
5416
- DeployedImages?: DeployedImage[];
5416
+ DeployedImages?: DeployedImage[] | undefined;
5417
5417
  /**
5418
5418
  * <p>The weight associated with the variant.</p>
5419
5419
  * @public
5420
5420
  */
5421
- CurrentWeight?: number;
5421
+ CurrentWeight?: number | undefined;
5422
5422
  /**
5423
5423
  * <p>The requested weight for the variant in this deployment, as specified in the endpoint
5424
5424
  * configuration for the endpoint. The value is taken from the request to the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpointConfig.html">CreateEndpointConfig</a> operation.</p>
5425
5425
  * @public
5426
5426
  */
5427
- DesiredWeight?: number;
5427
+ DesiredWeight?: number | undefined;
5428
5428
  /**
5429
5429
  * <p>The number of instances associated with the variant.</p>
5430
5430
  * @public
5431
5431
  */
5432
- CurrentInstanceCount?: number;
5432
+ CurrentInstanceCount?: number | undefined;
5433
5433
  /**
5434
5434
  * <p>The number of instances requested in this deployment, as specified in the endpoint
5435
5435
  * configuration for the endpoint. The value is taken from the request to the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpointConfig.html">CreateEndpointConfig</a> operation.</p>
5436
5436
  * @public
5437
5437
  */
5438
- DesiredInstanceCount?: number;
5438
+ DesiredInstanceCount?: number | undefined;
5439
5439
  /**
5440
5440
  * <p>The type of instances associated with the variant.</p>
5441
5441
  * @public
5442
5442
  */
5443
- InstanceType?: ProductionVariantInstanceType;
5443
+ InstanceType?: ProductionVariantInstanceType | undefined;
5444
5444
  /**
5445
5445
  * <p>This parameter is no longer supported. Elastic Inference (EI) is no longer
5446
5446
  * available.</p>
@@ -5448,35 +5448,35 @@ export interface PendingProductionVariantSummary {
5448
5448
  * production variant.</p>
5449
5449
  * @public
5450
5450
  */
5451
- AcceleratorType?: ProductionVariantAcceleratorType;
5451
+ AcceleratorType?: ProductionVariantAcceleratorType | undefined;
5452
5452
  /**
5453
5453
  * <p>The endpoint variant status which describes the current deployment stage status or
5454
5454
  * operational status.</p>
5455
5455
  * @public
5456
5456
  */
5457
- VariantStatus?: ProductionVariantStatus[];
5457
+ VariantStatus?: ProductionVariantStatus[] | undefined;
5458
5458
  /**
5459
5459
  * <p>The serverless configuration for the endpoint.</p>
5460
5460
  * @public
5461
5461
  */
5462
- CurrentServerlessConfig?: ProductionVariantServerlessConfig;
5462
+ CurrentServerlessConfig?: ProductionVariantServerlessConfig | undefined;
5463
5463
  /**
5464
5464
  * <p>The serverless configuration requested for this deployment, as specified in the endpoint configuration for the endpoint.</p>
5465
5465
  * @public
5466
5466
  */
5467
- DesiredServerlessConfig?: ProductionVariantServerlessConfig;
5467
+ DesiredServerlessConfig?: ProductionVariantServerlessConfig | undefined;
5468
5468
  /**
5469
5469
  * <p>Settings that control the range in the number of instances that the endpoint provisions
5470
5470
  * as it scales up or down to accommodate traffic. </p>
5471
5471
  * @public
5472
5472
  */
5473
- ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling;
5473
+ ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling | undefined;
5474
5474
  /**
5475
5475
  * <p>Settings that control how the endpoint routes incoming traffic to the instances that the
5476
5476
  * endpoint hosts.</p>
5477
5477
  * @public
5478
5478
  */
5479
- RoutingConfig?: ProductionVariantRoutingConfig;
5479
+ RoutingConfig?: ProductionVariantRoutingConfig | undefined;
5480
5480
  }
5481
5481
  /**
5482
5482
  * <p>The summary of an in-progress deployment when an endpoint is creating or updating with
@@ -5494,19 +5494,19 @@ export interface PendingDeploymentSummary {
5494
5494
  * this endpoint for the in-progress deployment.</p>
5495
5495
  * @public
5496
5496
  */
5497
- ProductionVariants?: PendingProductionVariantSummary[];
5497
+ ProductionVariants?: PendingProductionVariantSummary[] | undefined;
5498
5498
  /**
5499
5499
  * <p>The start time of the deployment.</p>
5500
5500
  * @public
5501
5501
  */
5502
- StartTime?: Date;
5502
+ StartTime?: Date | undefined;
5503
5503
  /**
5504
5504
  * <p>An array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_PendingProductionVariantSummary.html">PendingProductionVariantSummary</a> objects, one for each model hosted behind
5505
5505
  * this endpoint in shadow mode with production traffic replicated from the model specified
5506
5506
  * on <code>ProductionVariants</code> for the in-progress deployment.</p>
5507
5507
  * @public
5508
5508
  */
5509
- ShadowProductionVariants?: PendingProductionVariantSummary[];
5509
+ ShadowProductionVariants?: PendingProductionVariantSummary[] | undefined;
5510
5510
  }
5511
5511
  /**
5512
5512
  * <p>Describes weight and capacities for a production variant associated with an
@@ -5526,57 +5526,57 @@ export interface ProductionVariantSummary {
5526
5526
  * inference images deployed on instances of this <code>ProductionVariant</code>.</p>
5527
5527
  * @public
5528
5528
  */
5529
- DeployedImages?: DeployedImage[];
5529
+ DeployedImages?: DeployedImage[] | undefined;
5530
5530
  /**
5531
5531
  * <p>The weight associated with the variant.</p>
5532
5532
  * @public
5533
5533
  */
5534
- CurrentWeight?: number;
5534
+ CurrentWeight?: number | undefined;
5535
5535
  /**
5536
5536
  * <p>The requested weight, as specified in the
5537
5537
  * <code>UpdateEndpointWeightsAndCapacities</code> request. </p>
5538
5538
  * @public
5539
5539
  */
5540
- DesiredWeight?: number;
5540
+ DesiredWeight?: number | undefined;
5541
5541
  /**
5542
5542
  * <p>The number of instances associated with the variant.</p>
5543
5543
  * @public
5544
5544
  */
5545
- CurrentInstanceCount?: number;
5545
+ CurrentInstanceCount?: number | undefined;
5546
5546
  /**
5547
5547
  * <p>The number of instances requested in the
5548
5548
  * <code>UpdateEndpointWeightsAndCapacities</code> request. </p>
5549
5549
  * @public
5550
5550
  */
5551
- DesiredInstanceCount?: number;
5551
+ DesiredInstanceCount?: number | undefined;
5552
5552
  /**
5553
5553
  * <p>The endpoint variant status which describes the current deployment stage status or
5554
5554
  * operational status.</p>
5555
5555
  * @public
5556
5556
  */
5557
- VariantStatus?: ProductionVariantStatus[];
5557
+ VariantStatus?: ProductionVariantStatus[] | undefined;
5558
5558
  /**
5559
5559
  * <p>The serverless configuration for the endpoint.</p>
5560
5560
  * @public
5561
5561
  */
5562
- CurrentServerlessConfig?: ProductionVariantServerlessConfig;
5562
+ CurrentServerlessConfig?: ProductionVariantServerlessConfig | undefined;
5563
5563
  /**
5564
5564
  * <p>The serverless configuration requested for the endpoint update.</p>
5565
5565
  * @public
5566
5566
  */
5567
- DesiredServerlessConfig?: ProductionVariantServerlessConfig;
5567
+ DesiredServerlessConfig?: ProductionVariantServerlessConfig | undefined;
5568
5568
  /**
5569
5569
  * <p>Settings that control the range in the number of instances that the endpoint provisions
5570
5570
  * as it scales up or down to accommodate traffic. </p>
5571
5571
  * @public
5572
5572
  */
5573
- ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling;
5573
+ ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling | undefined;
5574
5574
  /**
5575
5575
  * <p>Settings that control how the endpoint routes incoming traffic to the instances that the
5576
5576
  * endpoint hosts.</p>
5577
5577
  * @public
5578
5578
  */
5579
- RoutingConfig?: ProductionVariantRoutingConfig;
5579
+ RoutingConfig?: ProductionVariantRoutingConfig | undefined;
5580
5580
  }
5581
5581
  /**
5582
5582
  * @public
@@ -5596,18 +5596,18 @@ export interface DescribeEndpointOutput {
5596
5596
  * <p>The name of the endpoint configuration associated with this endpoint.</p>
5597
5597
  * @public
5598
5598
  */
5599
- EndpointConfigName?: string;
5599
+ EndpointConfigName?: string | undefined;
5600
5600
  /**
5601
5601
  * <p>An array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ProductionVariantSummary.html">ProductionVariantSummary</a> objects, one for each model hosted behind this
5602
5602
  * endpoint.</p>
5603
5603
  * @public
5604
5604
  */
5605
- ProductionVariants?: ProductionVariantSummary[];
5605
+ ProductionVariants?: ProductionVariantSummary[] | undefined;
5606
5606
  /**
5607
5607
  * <p>The currently active data capture configuration used by your Endpoint.</p>
5608
5608
  * @public
5609
5609
  */
5610
- DataCaptureConfig?: DataCaptureConfigSummary;
5610
+ DataCaptureConfig?: DataCaptureConfigSummary | undefined;
5611
5611
  /**
5612
5612
  * <p>The status of the endpoint.</p>
5613
5613
  * <ul>
@@ -5673,7 +5673,7 @@ export interface DescribeEndpointOutput {
5673
5673
  * </p>
5674
5674
  * @public
5675
5675
  */
5676
- FailureReason?: string;
5676
+ FailureReason?: string | undefined;
5677
5677
  /**
5678
5678
  * <p>A timestamp that shows when the endpoint was created.</p>
5679
5679
  * @public
@@ -5688,32 +5688,32 @@ export interface DescribeEndpointOutput {
5688
5688
  * <p>The most recent deployment configuration for the endpoint.</p>
5689
5689
  * @public
5690
5690
  */
5691
- LastDeploymentConfig?: DeploymentConfig;
5691
+ LastDeploymentConfig?: DeploymentConfig | undefined;
5692
5692
  /**
5693
5693
  * <p>Returns the description of an endpoint configuration created using the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpointConfig.html">
5694
5694
  * <code>CreateEndpointConfig</code>
5695
5695
  * </a> API.</p>
5696
5696
  * @public
5697
5697
  */
5698
- AsyncInferenceConfig?: AsyncInferenceConfig;
5698
+ AsyncInferenceConfig?: AsyncInferenceConfig | undefined;
5699
5699
  /**
5700
5700
  * <p>Returns the summary of an in-progress deployment. This field is only returned when the
5701
5701
  * endpoint is creating or updating with a new endpoint configuration.</p>
5702
5702
  * @public
5703
5703
  */
5704
- PendingDeploymentSummary?: PendingDeploymentSummary;
5704
+ PendingDeploymentSummary?: PendingDeploymentSummary | undefined;
5705
5705
  /**
5706
5706
  * <p>The configuration parameters for an explainer.</p>
5707
5707
  * @public
5708
5708
  */
5709
- ExplainerConfig?: ExplainerConfig;
5709
+ ExplainerConfig?: ExplainerConfig | undefined;
5710
5710
  /**
5711
5711
  * <p>An array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ProductionVariantSummary.html">ProductionVariantSummary</a> objects, one for each model that you want to host
5712
5712
  * at this endpoint in shadow mode with production traffic replicated from the model
5713
5713
  * specified on <code>ProductionVariants</code>.</p>
5714
5714
  * @public
5715
5715
  */
5716
- ShadowProductionVariants?: ProductionVariantSummary[];
5716
+ ShadowProductionVariants?: ProductionVariantSummary[] | undefined;
5717
5717
  }
5718
5718
  /**
5719
5719
  * @public
@@ -5749,13 +5749,13 @@ export interface DescribeEndpointConfigOutput {
5749
5749
  * <p>Configuration to control how SageMaker captures inference data.</p>
5750
5750
  * @public
5751
5751
  */
5752
- DataCaptureConfig?: DataCaptureConfig;
5752
+ DataCaptureConfig?: DataCaptureConfig | undefined;
5753
5753
  /**
5754
5754
  * <p>Amazon Web Services KMS key ID Amazon SageMaker uses to encrypt data when storing it on the ML
5755
5755
  * storage volume attached to the instance.</p>
5756
5756
  * @public
5757
5757
  */
5758
- KmsKeyId?: string;
5758
+ KmsKeyId?: string | undefined;
5759
5759
  /**
5760
5760
  * <p>A timestamp that shows when the endpoint configuration was created.</p>
5761
5761
  * @public
@@ -5767,25 +5767,25 @@ export interface DescribeEndpointConfigOutput {
5767
5767
  * </a> API.</p>
5768
5768
  * @public
5769
5769
  */
5770
- AsyncInferenceConfig?: AsyncInferenceConfig;
5770
+ AsyncInferenceConfig?: AsyncInferenceConfig | undefined;
5771
5771
  /**
5772
5772
  * <p>The configuration parameters for an explainer.</p>
5773
5773
  * @public
5774
5774
  */
5775
- ExplainerConfig?: ExplainerConfig;
5775
+ ExplainerConfig?: ExplainerConfig | undefined;
5776
5776
  /**
5777
5777
  * <p>An array of <code>ProductionVariant</code> objects, one for each model that you want
5778
5778
  * to host at this endpoint in shadow mode with production traffic replicated from the
5779
5779
  * model specified on <code>ProductionVariants</code>.</p>
5780
5780
  * @public
5781
5781
  */
5782
- ShadowProductionVariants?: ProductionVariant[];
5782
+ ShadowProductionVariants?: ProductionVariant[] | undefined;
5783
5783
  /**
5784
5784
  * <p>The Amazon Resource Name (ARN) of the IAM role that you assigned to the
5785
5785
  * endpoint configuration.</p>
5786
5786
  * @public
5787
5787
  */
5788
- ExecutionRoleArn?: string;
5788
+ ExecutionRoleArn?: string | undefined;
5789
5789
  /**
5790
5790
  * <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
5791
5791
  * have access to. You can control access to and from your resources by configuring a VPC.
@@ -5793,14 +5793,14 @@ export interface DescribeEndpointConfigOutput {
5793
5793
  * Resources in your Amazon VPC</a>. </p>
5794
5794
  * @public
5795
5795
  */
5796
- VpcConfig?: VpcConfig;
5796
+ VpcConfig?: VpcConfig | undefined;
5797
5797
  /**
5798
5798
  * <p>Indicates whether all model containers deployed to the endpoint are isolated. If they
5799
5799
  * are, no inbound or outbound network calls can be made to or from the model
5800
5800
  * containers.</p>
5801
5801
  * @public
5802
5802
  */
5803
- EnableNetworkIsolation?: boolean;
5803
+ EnableNetworkIsolation?: boolean | undefined;
5804
5804
  }
5805
5805
  /**
5806
5806
  * @public
@@ -5826,7 +5826,7 @@ export interface ExperimentSource {
5826
5826
  * <p>The source type.</p>
5827
5827
  * @public
5828
5828
  */
5829
- SourceType?: string;
5829
+ SourceType?: string | undefined;
5830
5830
  }
5831
5831
  /**
5832
5832
  * @public
@@ -5836,48 +5836,48 @@ export interface DescribeExperimentResponse {
5836
5836
  * <p>The name of the experiment.</p>
5837
5837
  * @public
5838
5838
  */
5839
- ExperimentName?: string;
5839
+ ExperimentName?: string | undefined;
5840
5840
  /**
5841
5841
  * <p>The Amazon Resource Name (ARN) of the experiment.</p>
5842
5842
  * @public
5843
5843
  */
5844
- ExperimentArn?: string;
5844
+ ExperimentArn?: string | undefined;
5845
5845
  /**
5846
5846
  * <p>The name of the experiment as displayed. If <code>DisplayName</code> isn't specified,
5847
5847
  * <code>ExperimentName</code> is displayed.</p>
5848
5848
  * @public
5849
5849
  */
5850
- DisplayName?: string;
5850
+ DisplayName?: string | undefined;
5851
5851
  /**
5852
5852
  * <p>The Amazon Resource Name (ARN) of the source and, optionally, the type.</p>
5853
5853
  * @public
5854
5854
  */
5855
- Source?: ExperimentSource;
5855
+ Source?: ExperimentSource | undefined;
5856
5856
  /**
5857
5857
  * <p>The description of the experiment.</p>
5858
5858
  * @public
5859
5859
  */
5860
- Description?: string;
5860
+ Description?: string | undefined;
5861
5861
  /**
5862
5862
  * <p>When the experiment was created.</p>
5863
5863
  * @public
5864
5864
  */
5865
- CreationTime?: Date;
5865
+ CreationTime?: Date | undefined;
5866
5866
  /**
5867
5867
  * <p>Who created the experiment.</p>
5868
5868
  * @public
5869
5869
  */
5870
- CreatedBy?: UserContext;
5870
+ CreatedBy?: UserContext | undefined;
5871
5871
  /**
5872
5872
  * <p>When the experiment was last modified.</p>
5873
5873
  * @public
5874
5874
  */
5875
- LastModifiedTime?: Date;
5875
+ LastModifiedTime?: Date | undefined;
5876
5876
  /**
5877
5877
  * <p>Who last modified the experiment.</p>
5878
5878
  * @public
5879
5879
  */
5880
- LastModifiedBy?: UserContext;
5880
+ LastModifiedBy?: UserContext | undefined;
5881
5881
  }
5882
5882
  /**
5883
5883
  * @public
@@ -5895,7 +5895,7 @@ export interface DescribeFeatureGroupRequest {
5895
5895
  * default.</p>
5896
5896
  * @public
5897
5897
  */
5898
- NextToken?: string;
5898
+ NextToken?: string | undefined;
5899
5899
  }
5900
5900
  /**
5901
5901
  * @public
@@ -5939,7 +5939,7 @@ export interface LastUpdateStatus {
5939
5939
  * <p>If the update wasn't successful, indicates the reason why it failed.</p>
5940
5940
  * @public
5941
5941
  */
5942
- FailureReason?: string;
5942
+ FailureReason?: string | undefined;
5943
5943
  }
5944
5944
  /**
5945
5945
  * @public
@@ -5968,7 +5968,7 @@ export interface OfflineStoreStatus {
5968
5968
  * <p>The justification for why the OfflineStoreStatus is Blocked (if applicable).</p>
5969
5969
  * @public
5970
5970
  */
5971
- BlockedReason?: string;
5971
+ BlockedReason?: string | undefined;
5972
5972
  }
5973
5973
  /**
5974
5974
  * <p>Active throughput configuration of the feature group. There are two modes:
@@ -5999,14 +5999,14 @@ export interface ThroughputConfigDescription {
5999
5999
  * <p>This field is not applicable for on-demand feature groups. </p>
6000
6000
  * @public
6001
6001
  */
6002
- ProvisionedReadCapacityUnits?: number;
6002
+ ProvisionedReadCapacityUnits?: number | undefined;
6003
6003
  /**
6004
6004
  * <p> For provisioned feature groups, this indicates the write throughput you are billed for
6005
6005
  * and can consume without throttling. </p>
6006
6006
  * <p>This field is not applicable for on-demand feature groups. </p>
6007
6007
  * @public
6008
6008
  */
6009
- ProvisionedWriteCapacityUnits?: number;
6009
+ ProvisionedWriteCapacityUnits?: number | undefined;
6010
6010
  }
6011
6011
  /**
6012
6012
  * @public
@@ -6053,12 +6053,12 @@ export interface DescribeFeatureGroupResponse {
6053
6053
  * <p>A timestamp indicating when the feature group was last updated.</p>
6054
6054
  * @public
6055
6055
  */
6056
- LastModifiedTime?: Date;
6056
+ LastModifiedTime?: Date | undefined;
6057
6057
  /**
6058
6058
  * <p>The configuration for the <code>OnlineStore</code>.</p>
6059
6059
  * @public
6060
6060
  */
6061
- OnlineStoreConfig?: OnlineStoreConfig;
6061
+ OnlineStoreConfig?: OnlineStoreConfig | undefined;
6062
6062
  /**
6063
6063
  * <p>The configuration of the offline store. It includes the following configurations:</p>
6064
6064
  * <ul>
@@ -6081,7 +6081,7 @@ export interface DescribeFeatureGroupResponse {
6081
6081
  * </ul>
6082
6082
  * @public
6083
6083
  */
6084
- OfflineStoreConfig?: OfflineStoreConfig;
6084
+ OfflineStoreConfig?: OfflineStoreConfig | undefined;
6085
6085
  /**
6086
6086
  * <p>Active throughput configuration of the feature group. There are two modes:
6087
6087
  * <code>ON_DEMAND</code> and <code>PROVISIONED</code>. With on-demand mode, you are
@@ -6098,18 +6098,18 @@ export interface DescribeFeatureGroupResponse {
6098
6098
  * </a> tier online store. </p>
6099
6099
  * @public
6100
6100
  */
6101
- ThroughputConfig?: ThroughputConfigDescription;
6101
+ ThroughputConfig?: ThroughputConfigDescription | undefined;
6102
6102
  /**
6103
6103
  * <p>The Amazon Resource Name (ARN) of the IAM execution role used to persist data into the
6104
6104
  * OfflineStore if an OfflineStoreConfig is provided.</p>
6105
6105
  * @public
6106
6106
  */
6107
- RoleArn?: string;
6107
+ RoleArn?: string | undefined;
6108
6108
  /**
6109
6109
  * <p>The status of the feature group.</p>
6110
6110
  * @public
6111
6111
  */
6112
- FeatureGroupStatus?: FeatureGroupStatus;
6112
+ FeatureGroupStatus?: FeatureGroupStatus | undefined;
6113
6113
  /**
6114
6114
  * <p>The status of the <code>OfflineStore</code>. Notifies you if replicating data into the
6115
6115
  * <code>OfflineStore</code> has failed. Returns either: <code>Active</code> or
@@ -6117,12 +6117,12 @@ export interface DescribeFeatureGroupResponse {
6117
6117
  * </p>
6118
6118
  * @public
6119
6119
  */
6120
- OfflineStoreStatus?: OfflineStoreStatus;
6120
+ OfflineStoreStatus?: OfflineStoreStatus | undefined;
6121
6121
  /**
6122
6122
  * <p>A value indicating whether the update made to the feature group was successful.</p>
6123
6123
  * @public
6124
6124
  */
6125
- LastUpdateStatus?: LastUpdateStatus;
6125
+ LastUpdateStatus?: LastUpdateStatus | undefined;
6126
6126
  /**
6127
6127
  * <p>The reason that the <code>FeatureGroup</code> failed to be replicated in the
6128
6128
  * <code>OfflineStore</code>. This is failure can occur because:</p>
@@ -6138,12 +6138,12 @@ export interface DescribeFeatureGroupResponse {
6138
6138
  * </ul>
6139
6139
  * @public
6140
6140
  */
6141
- FailureReason?: string;
6141
+ FailureReason?: string | undefined;
6142
6142
  /**
6143
6143
  * <p>A free form description of the feature group.</p>
6144
6144
  * @public
6145
6145
  */
6146
- Description?: string;
6146
+ Description?: string | undefined;
6147
6147
  /**
6148
6148
  * <p>A token to resume pagination of the list of <code>Features</code>
6149
6149
  * (<code>FeatureDefinitions</code>).</p>
@@ -6154,7 +6154,7 @@ export interface DescribeFeatureGroupResponse {
6154
6154
  * <p>The size of the <code>OnlineStore</code> in bytes.</p>
6155
6155
  * @public
6156
6156
  */
6157
- OnlineStoreTotalSizeBytes?: number;
6157
+ OnlineStoreTotalSizeBytes?: number | undefined;
6158
6158
  }
6159
6159
  /**
6160
6160
  * @public
@@ -6181,12 +6181,12 @@ export interface FeatureParameter {
6181
6181
  * <p>A key that must contain a value to describe the feature.</p>
6182
6182
  * @public
6183
6183
  */
6184
- Key?: string;
6184
+ Key?: string | undefined;
6185
6185
  /**
6186
6186
  * <p>The value that belongs to a key.</p>
6187
6187
  * @public
6188
6188
  */
6189
- Value?: string;
6189
+ Value?: string | undefined;
6190
6190
  }
6191
6191
  /**
6192
6192
  * @public
@@ -6228,12 +6228,12 @@ export interface DescribeFeatureMetadataResponse {
6228
6228
  * <p>The description you added to describe the feature.</p>
6229
6229
  * @public
6230
6230
  */
6231
- Description?: string;
6231
+ Description?: string | undefined;
6232
6232
  /**
6233
6233
  * <p>The key-value pairs that you added to describe the feature.</p>
6234
6234
  * @public
6235
6235
  */
6236
- Parameters?: FeatureParameter[];
6236
+ Parameters?: FeatureParameter[] | undefined;
6237
6237
  }
6238
6238
  /**
6239
6239
  * @public
@@ -6288,17 +6288,17 @@ export interface DescribeFlowDefinitionResponse {
6288
6288
  * Amazon Rekognition or Amazon Textract is used as an integration source.</p>
6289
6289
  * @public
6290
6290
  */
6291
- HumanLoopRequestSource?: HumanLoopRequestSource;
6291
+ HumanLoopRequestSource?: HumanLoopRequestSource | undefined;
6292
6292
  /**
6293
6293
  * <p>An object containing information about what triggers a human review workflow.</p>
6294
6294
  * @public
6295
6295
  */
6296
- HumanLoopActivationConfig?: HumanLoopActivationConfig;
6296
+ HumanLoopActivationConfig?: HumanLoopActivationConfig | undefined;
6297
6297
  /**
6298
6298
  * <p>An object containing information about who works on the task, the workforce task price, and other task details.</p>
6299
6299
  * @public
6300
6300
  */
6301
- HumanLoopConfig?: HumanLoopConfig;
6301
+ HumanLoopConfig?: HumanLoopConfig | undefined;
6302
6302
  /**
6303
6303
  * <p>An object containing information about the output file.</p>
6304
6304
  * @public
@@ -6313,7 +6313,7 @@ export interface DescribeFlowDefinitionResponse {
6313
6313
  * <p>The reason your flow definition failed.</p>
6314
6314
  * @public
6315
6315
  */
6316
- FailureReason?: string;
6316
+ FailureReason?: string | undefined;
6317
6317
  }
6318
6318
  /**
6319
6319
  * @public
@@ -6360,22 +6360,22 @@ export interface DescribeHubResponse {
6360
6360
  * <p>The display name of the hub.</p>
6361
6361
  * @public
6362
6362
  */
6363
- HubDisplayName?: string;
6363
+ HubDisplayName?: string | undefined;
6364
6364
  /**
6365
6365
  * <p>A description of the hub.</p>
6366
6366
  * @public
6367
6367
  */
6368
- HubDescription?: string;
6368
+ HubDescription?: string | undefined;
6369
6369
  /**
6370
6370
  * <p>The searchable keywords for the hub.</p>
6371
6371
  * @public
6372
6372
  */
6373
- HubSearchKeywords?: string[];
6373
+ HubSearchKeywords?: string[] | undefined;
6374
6374
  /**
6375
6375
  * <p>The Amazon S3 storage configuration for the hub.</p>
6376
6376
  * @public
6377
6377
  */
6378
- S3StorageConfig?: HubS3StorageConfig;
6378
+ S3StorageConfig?: HubS3StorageConfig | undefined;
6379
6379
  /**
6380
6380
  * <p>The status of the hub.</p>
6381
6381
  * @public
@@ -6385,7 +6385,7 @@ export interface DescribeHubResponse {
6385
6385
  * <p>The failure reason if importing hub content failed.</p>
6386
6386
  * @public
6387
6387
  */
6388
- FailureReason?: string;
6388
+ FailureReason?: string | undefined;
6389
6389
  /**
6390
6390
  * <p>The date and time that the hub was created.</p>
6391
6391
  * @public
@@ -6420,7 +6420,7 @@ export interface DescribeHubContentRequest {
6420
6420
  * <p>The version of the content to describe.</p>
6421
6421
  * @public
6422
6422
  */
6423
- HubContentVersion?: string;
6423
+ HubContentVersion?: string | undefined;
6424
6424
  }
6425
6425
  /**
6426
6426
  * <p>Any dependencies related to hub content, such as scripts, model artifacts, datasets, or notebooks.</p>
@@ -6431,12 +6431,12 @@ export interface HubContentDependency {
6431
6431
  * <p>The hub content dependency origin path.</p>
6432
6432
  * @public
6433
6433
  */
6434
- DependencyOriginPath?: string;
6434
+ DependencyOriginPath?: string | undefined;
6435
6435
  /**
6436
6436
  * <p>The hub content dependency copy path.</p>
6437
6437
  * @public
6438
6438
  */
6439
- DependencyCopyPath?: string;
6439
+ DependencyCopyPath?: string | undefined;
6440
6440
  }
6441
6441
  /**
6442
6442
  * @public
@@ -6508,17 +6508,17 @@ export interface DescribeHubContentResponse {
6508
6508
  * <p>The display name of the hub content.</p>
6509
6509
  * @public
6510
6510
  */
6511
- HubContentDisplayName?: string;
6511
+ HubContentDisplayName?: string | undefined;
6512
6512
  /**
6513
6513
  * <p>A description of the hub content.</p>
6514
6514
  * @public
6515
6515
  */
6516
- HubContentDescription?: string;
6516
+ HubContentDescription?: string | undefined;
6517
6517
  /**
6518
6518
  * <p>A string that provides a description of the hub content. This string can include links, tables, and standard markdown formating.</p>
6519
6519
  * @public
6520
6520
  */
6521
- HubContentMarkdown?: string;
6521
+ HubContentMarkdown?: string | undefined;
6522
6522
  /**
6523
6523
  * <p>The hub content document that describes information about the hub content such as type, associated containers, scripts, and more.</p>
6524
6524
  * @public
@@ -6528,27 +6528,27 @@ export interface DescribeHubContentResponse {
6528
6528
  * <p>The ARN of the public hub content.</p>
6529
6529
  * @public
6530
6530
  */
6531
- SageMakerPublicHubContentArn?: string;
6531
+ SageMakerPublicHubContentArn?: string | undefined;
6532
6532
  /**
6533
6533
  * <p>The minimum version of the hub content.</p>
6534
6534
  * @public
6535
6535
  */
6536
- ReferenceMinVersion?: string;
6536
+ ReferenceMinVersion?: string | undefined;
6537
6537
  /**
6538
6538
  * <p>The support status of the hub content.</p>
6539
6539
  * @public
6540
6540
  */
6541
- SupportStatus?: HubContentSupportStatus;
6541
+ SupportStatus?: HubContentSupportStatus | undefined;
6542
6542
  /**
6543
6543
  * <p>The searchable keywords for the hub content.</p>
6544
6544
  * @public
6545
6545
  */
6546
- HubContentSearchKeywords?: string[];
6546
+ HubContentSearchKeywords?: string[] | undefined;
6547
6547
  /**
6548
6548
  * <p>The location of any dependencies that the hub content has, such as scripts, model artifacts, datasets, or notebooks.</p>
6549
6549
  * @public
6550
6550
  */
6551
- HubContentDependencies?: HubContentDependency[];
6551
+ HubContentDependencies?: HubContentDependency[] | undefined;
6552
6552
  /**
6553
6553
  * <p>The status of the hub content.</p>
6554
6554
  * @public
@@ -6558,7 +6558,7 @@ export interface DescribeHubContentResponse {
6558
6558
  * <p>The failure reason if importing hub content failed.</p>
6559
6559
  * @public
6560
6560
  */
6561
- FailureReason?: string;
6561
+ FailureReason?: string | undefined;
6562
6562
  /**
6563
6563
  * <p>The date and time that hub content was created.</p>
6564
6564
  * @public
@@ -6597,12 +6597,12 @@ export interface UiTemplateInfo {
6597
6597
  * <p>The URL for the user interface template.</p>
6598
6598
  * @public
6599
6599
  */
6600
- Url?: string;
6600
+ Url?: string | undefined;
6601
6601
  /**
6602
6602
  * <p>The SHA-256 digest of the contents of the template.</p>
6603
6603
  * @public
6604
6604
  */
6605
- ContentSha256?: string;
6605
+ ContentSha256?: string | undefined;
6606
6606
  }
6607
6607
  /**
6608
6608
  * @public
@@ -6622,7 +6622,7 @@ export interface DescribeHumanTaskUiResponse {
6622
6622
  * <p>The status of the human task user interface (worker task template). Valid values are listed below.</p>
6623
6623
  * @public
6624
6624
  */
6625
- HumanTaskUiStatus?: HumanTaskUiStatus;
6625
+ HumanTaskUiStatus?: HumanTaskUiStatus | undefined;
6626
6626
  /**
6627
6627
  * <p>The timestamp when the human task user interface was created.</p>
6628
6628
  * @public
@@ -6656,7 +6656,7 @@ export interface FinalHyperParameterTuningJobObjectiveMetric {
6656
6656
  * tuning. </p>
6657
6657
  * @public
6658
6658
  */
6659
- Type?: HyperParameterTuningJobObjectiveType;
6659
+ Type?: HyperParameterTuningJobObjectiveType | undefined;
6660
6660
  /**
6661
6661
  * <p>The name of the objective metric. For SageMaker built-in algorithms, metrics are defined
6662
6662
  * per algorithm. See the <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/xgboost-tuning.html">metrics for XGBoost</a> as an
@@ -6695,7 +6695,7 @@ export interface HyperParameterTrainingJobSummary {
6695
6695
  * <p>The training job definition name.</p>
6696
6696
  * @public
6697
6697
  */
6698
- TrainingJobDefinitionName?: string;
6698
+ TrainingJobDefinitionName?: string | undefined;
6699
6699
  /**
6700
6700
  * <p>The name of the training job.</p>
6701
6701
  * @public
@@ -6710,7 +6710,7 @@ export interface HyperParameterTrainingJobSummary {
6710
6710
  * <p>The HyperParameter tuning job that launched the training job.</p>
6711
6711
  * @public
6712
6712
  */
6713
- TuningJobName?: string;
6713
+ TuningJobName?: string | undefined;
6714
6714
  /**
6715
6715
  * <p>The date and time that the training job was created.</p>
6716
6716
  * @public
@@ -6720,7 +6720,7 @@ export interface HyperParameterTrainingJobSummary {
6720
6720
  * <p>The date and time that the training job started.</p>
6721
6721
  * @public
6722
6722
  */
6723
- TrainingStartTime?: Date;
6723
+ TrainingStartTime?: Date | undefined;
6724
6724
  /**
6725
6725
  * <p>Specifies the time when the training job ends on training instances. You are billed
6726
6726
  * for the time interval between the value of <code>TrainingStartTime</code> and this time.
@@ -6728,7 +6728,7 @@ export interface HyperParameterTrainingJobSummary {
6728
6728
  * uploaded. For failed jobs, this is the time when SageMaker detects a job failure.</p>
6729
6729
  * @public
6730
6730
  */
6731
- TrainingEndTime?: Date;
6731
+ TrainingEndTime?: Date | undefined;
6732
6732
  /**
6733
6733
  * <p>The
6734
6734
  * status
@@ -6749,7 +6749,7 @@ export interface HyperParameterTrainingJobSummary {
6749
6749
  * </p>
6750
6750
  * @public
6751
6751
  */
6752
- FailureReason?: string;
6752
+ FailureReason?: string | undefined;
6753
6753
  /**
6754
6754
  * <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_FinalHyperParameterTuningJobObjectiveMetric.html">FinalHyperParameterTuningJobObjectiveMetric</a> object that specifies the
6755
6755
  * value
@@ -6758,7 +6758,7 @@ export interface HyperParameterTrainingJobSummary {
6758
6758
  * metric of the tuning job that launched this training job.</p>
6759
6759
  * @public
6760
6760
  */
6761
- FinalHyperParameterTuningJobObjectiveMetric?: FinalHyperParameterTuningJobObjectiveMetric;
6761
+ FinalHyperParameterTuningJobObjectiveMetric?: FinalHyperParameterTuningJobObjectiveMetric | undefined;
6762
6762
  /**
6763
6763
  * <p>The status of the objective metric for the training job:</p>
6764
6764
  * <ul>
@@ -6788,7 +6788,7 @@ export interface HyperParameterTrainingJobSummary {
6788
6788
  * </ul>
6789
6789
  * @public
6790
6790
  */
6791
- ObjectiveStatus?: ObjectiveStatus;
6791
+ ObjectiveStatus?: ObjectiveStatus | undefined;
6792
6792
  }
6793
6793
  /**
6794
6794
  * <p>The total resources consumed by your hyperparameter tuning job.</p>
@@ -6799,7 +6799,7 @@ export interface HyperParameterTuningJobConsumedResources {
6799
6799
  * <p>The wall clock runtime in seconds used by your hyperparameter tuning job.</p>
6800
6800
  * @public
6801
6801
  */
6802
- RuntimeInSeconds?: number;
6802
+ RuntimeInSeconds?: number | undefined;
6803
6803
  }
6804
6804
  /**
6805
6805
  * @public
@@ -6833,20 +6833,20 @@ export interface ObjectiveStatusCounters {
6833
6833
  * hyperparameter tuning job and used in the hyperparameter tuning process.</p>
6834
6834
  * @public
6835
6835
  */
6836
- Succeeded?: number;
6836
+ Succeeded?: number | undefined;
6837
6837
  /**
6838
6838
  * <p>The number of training jobs that are in progress and pending evaluation of their final
6839
6839
  * objective metric.</p>
6840
6840
  * @public
6841
6841
  */
6842
- Pending?: number;
6842
+ Pending?: number | undefined;
6843
6843
  /**
6844
6844
  * <p>The number of training jobs whose final objective metric was not evaluated and used in
6845
6845
  * the hyperparameter tuning process. This typically occurs when the training job failed or
6846
6846
  * did not emit an objective metric.</p>
6847
6847
  * @public
6848
6848
  */
6849
- Failed?: number;
6849
+ Failed?: number | undefined;
6850
6850
  }
6851
6851
  /**
6852
6852
  * <p>The numbers of training jobs launched by a hyperparameter tuning job, categorized by
@@ -6859,32 +6859,32 @@ export interface TrainingJobStatusCounters {
6859
6859
  * job.</p>
6860
6860
  * @public
6861
6861
  */
6862
- Completed?: number;
6862
+ Completed?: number | undefined;
6863
6863
  /**
6864
6864
  * <p>The number of in-progress training jobs launched by a hyperparameter tuning
6865
6865
  * job.</p>
6866
6866
  * @public
6867
6867
  */
6868
- InProgress?: number;
6868
+ InProgress?: number | undefined;
6869
6869
  /**
6870
6870
  * <p>The number of training jobs that failed, but can be retried. A failed training job can
6871
6871
  * be retried only if it failed because an internal service error occurred.</p>
6872
6872
  * @public
6873
6873
  */
6874
- RetryableError?: number;
6874
+ RetryableError?: number | undefined;
6875
6875
  /**
6876
6876
  * <p>The number of training jobs that failed and can't be retried. A failed training job
6877
6877
  * can't be retried if it failed because a client error occurred.</p>
6878
6878
  * @public
6879
6879
  */
6880
- NonRetryableError?: number;
6880
+ NonRetryableError?: number | undefined;
6881
6881
  /**
6882
6882
  * <p>The number of training jobs launched by a hyperparameter tuning job that were
6883
6883
  * manually
6884
6884
  * stopped.</p>
6885
6885
  * @public
6886
6886
  */
6887
- Stopped?: number;
6887
+ Stopped?: number | undefined;
6888
6888
  }
6889
6889
  /**
6890
6890
  * <p>A structure that contains runtime information about both current and completed
@@ -6897,14 +6897,14 @@ export interface HyperParameterTuningJobCompletionDetails {
6897
6897
  * less) as measured by model performance evaluated against an objective function.</p>
6898
6898
  * @public
6899
6899
  */
6900
- NumberOfTrainingJobsObjectiveNotImproving?: number;
6900
+ NumberOfTrainingJobsObjectiveNotImproving?: number | undefined;
6901
6901
  /**
6902
6902
  * <p>The time in timestamp format that AMT detected model convergence, as defined by a lack
6903
6903
  * of significant improvement over time based on criteria developed over a wide range of
6904
6904
  * diverse benchmarking tests.</p>
6905
6905
  * @public
6906
6906
  */
6907
- ConvergenceDetectedTime?: Date;
6907
+ ConvergenceDetectedTime?: Date | undefined;
6908
6908
  }
6909
6909
  /**
6910
6910
  * @public
@@ -6931,13 +6931,13 @@ export interface DescribeHyperParameterTuningJobResponse {
6931
6931
  * the training jobs that this tuning job launches.</p>
6932
6932
  * @public
6933
6933
  */
6934
- TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
6934
+ TrainingJobDefinition?: HyperParameterTrainingJobDefinition | undefined;
6935
6935
  /**
6936
6936
  * <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
6937
6937
  * job.</p>
6938
6938
  * @public
6939
6939
  */
6940
- TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
6940
+ TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[] | undefined;
6941
6941
  /**
6942
6942
  * <p>The status of the tuning job.</p>
6943
6943
  * @public
@@ -6952,12 +6952,12 @@ export interface DescribeHyperParameterTuningJobResponse {
6952
6952
  * <p>The date and time that the tuning job ended.</p>
6953
6953
  * @public
6954
6954
  */
6955
- HyperParameterTuningEndTime?: Date;
6955
+ HyperParameterTuningEndTime?: Date | undefined;
6956
6956
  /**
6957
6957
  * <p>The date and time that the status of the tuning job was modified. </p>
6958
6958
  * @public
6959
6959
  */
6960
- LastModifiedTime?: Date;
6960
+ LastModifiedTime?: Date | undefined;
6961
6961
  /**
6962
6962
  * <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TrainingJobStatusCounters.html">TrainingJobStatusCounters</a> object that specifies the number of training
6963
6963
  * jobs, categorized by status, that this tuning job launched.</p>
@@ -6976,7 +6976,7 @@ export interface DescribeHyperParameterTuningJobResponse {
6976
6976
  * with the best current <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobObjective.html">HyperParameterTuningJobObjective</a>.</p>
6977
6977
  * @public
6978
6978
  */
6979
- BestTrainingJob?: HyperParameterTrainingJobSummary;
6979
+ BestTrainingJob?: HyperParameterTrainingJobSummary | undefined;
6980
6980
  /**
6981
6981
  * <p>If the hyperparameter tuning job is an warm start tuning job with a
6982
6982
  * <code>WarmStartType</code> of <code>IDENTICAL_DATA_AND_ALGORITHM</code>, this is the
@@ -6985,7 +6985,7 @@ export interface DescribeHyperParameterTuningJobResponse {
6985
6985
  * the warm start tuning job.</p>
6986
6986
  * @public
6987
6987
  */
6988
- OverallBestTrainingJob?: HyperParameterTrainingJobSummary;
6988
+ OverallBestTrainingJob?: HyperParameterTrainingJobSummary | undefined;
6989
6989
  /**
6990
6990
  * <p>The configuration for starting the hyperparameter parameter tuning job using one or
6991
6991
  * more previous tuning jobs as a starting point. The results of previous tuning jobs are
@@ -6993,17 +6993,17 @@ export interface DescribeHyperParameterTuningJobResponse {
6993
6993
  * job.</p>
6994
6994
  * @public
6995
6995
  */
6996
- WarmStartConfig?: HyperParameterTuningJobWarmStartConfig;
6996
+ WarmStartConfig?: HyperParameterTuningJobWarmStartConfig | undefined;
6997
6997
  /**
6998
6998
  * <p>A flag to indicate if autotune is enabled for the hyperparameter tuning job.</p>
6999
6999
  * @public
7000
7000
  */
7001
- Autotune?: Autotune;
7001
+ Autotune?: Autotune | undefined;
7002
7002
  /**
7003
7003
  * <p>If the tuning job failed, the reason it failed.</p>
7004
7004
  * @public
7005
7005
  */
7006
- FailureReason?: string;
7006
+ FailureReason?: string | undefined;
7007
7007
  /**
7008
7008
  * <p>Tuning job completion information returned as the response from a hyperparameter
7009
7009
  * tuning job. This information tells if your tuning job has or has not converged. It also
@@ -7011,12 +7011,12 @@ export interface DescribeHyperParameterTuningJobResponse {
7011
7011
  * evaluated against the objective function.</p>
7012
7012
  * @public
7013
7013
  */
7014
- TuningJobCompletionDetails?: HyperParameterTuningJobCompletionDetails;
7014
+ TuningJobCompletionDetails?: HyperParameterTuningJobCompletionDetails | undefined;
7015
7015
  /**
7016
7016
  * <p>The total resources consumed by your hyperparameter tuning job.</p>
7017
7017
  * @public
7018
7018
  */
7019
- ConsumedResources?: HyperParameterTuningJobConsumedResources;
7019
+ ConsumedResources?: HyperParameterTuningJobConsumedResources | undefined;
7020
7020
  }
7021
7021
  /**
7022
7022
  * @public
@@ -7053,47 +7053,47 @@ export interface DescribeImageResponse {
7053
7053
  * <p>When the image was created.</p>
7054
7054
  * @public
7055
7055
  */
7056
- CreationTime?: Date;
7056
+ CreationTime?: Date | undefined;
7057
7057
  /**
7058
7058
  * <p>The description of the image.</p>
7059
7059
  * @public
7060
7060
  */
7061
- Description?: string;
7061
+ Description?: string | undefined;
7062
7062
  /**
7063
7063
  * <p>The name of the image as displayed.</p>
7064
7064
  * @public
7065
7065
  */
7066
- DisplayName?: string;
7066
+ DisplayName?: string | undefined;
7067
7067
  /**
7068
7068
  * <p>When a create, update, or delete operation fails, the reason for the failure.</p>
7069
7069
  * @public
7070
7070
  */
7071
- FailureReason?: string;
7071
+ FailureReason?: string | undefined;
7072
7072
  /**
7073
7073
  * <p>The ARN of the image.</p>
7074
7074
  * @public
7075
7075
  */
7076
- ImageArn?: string;
7076
+ ImageArn?: string | undefined;
7077
7077
  /**
7078
7078
  * <p>The name of the image.</p>
7079
7079
  * @public
7080
7080
  */
7081
- ImageName?: string;
7081
+ ImageName?: string | undefined;
7082
7082
  /**
7083
7083
  * <p>The status of the image.</p>
7084
7084
  * @public
7085
7085
  */
7086
- ImageStatus?: ImageStatus;
7086
+ ImageStatus?: ImageStatus | undefined;
7087
7087
  /**
7088
7088
  * <p>When the image was last modified.</p>
7089
7089
  * @public
7090
7090
  */
7091
- LastModifiedTime?: Date;
7091
+ LastModifiedTime?: Date | undefined;
7092
7092
  /**
7093
7093
  * <p>The ARN of the IAM role that enables Amazon SageMaker to perform tasks on your behalf.</p>
7094
7094
  * @public
7095
7095
  */
7096
- RoleArn?: string;
7096
+ RoleArn?: string | undefined;
7097
7097
  }
7098
7098
  /**
7099
7099
  * @public
@@ -7108,12 +7108,12 @@ export interface DescribeImageVersionRequest {
7108
7108
  * <p>The version of the image. If not specified, the latest version is described.</p>
7109
7109
  * @public
7110
7110
  */
7111
- Version?: number;
7111
+ Version?: number | undefined;
7112
7112
  /**
7113
7113
  * <p>The alias of the image version.</p>
7114
7114
  * @public
7115
7115
  */
7116
- Alias?: string;
7116
+ Alias?: string | undefined;
7117
7117
  }
7118
7118
  /**
7119
7119
  * @public
@@ -7138,47 +7138,47 @@ export interface DescribeImageVersionResponse {
7138
7138
  * <p>The registry path of the container image on which this image version is based.</p>
7139
7139
  * @public
7140
7140
  */
7141
- BaseImage?: string;
7141
+ BaseImage?: string | undefined;
7142
7142
  /**
7143
7143
  * <p>The registry path of the container image that contains this image version.</p>
7144
7144
  * @public
7145
7145
  */
7146
- ContainerImage?: string;
7146
+ ContainerImage?: string | undefined;
7147
7147
  /**
7148
7148
  * <p>When the version was created.</p>
7149
7149
  * @public
7150
7150
  */
7151
- CreationTime?: Date;
7151
+ CreationTime?: Date | undefined;
7152
7152
  /**
7153
7153
  * <p>When a create or delete operation fails, the reason for the failure.</p>
7154
7154
  * @public
7155
7155
  */
7156
- FailureReason?: string;
7156
+ FailureReason?: string | undefined;
7157
7157
  /**
7158
7158
  * <p>The ARN of the image the version is based on.</p>
7159
7159
  * @public
7160
7160
  */
7161
- ImageArn?: string;
7161
+ ImageArn?: string | undefined;
7162
7162
  /**
7163
7163
  * <p>The ARN of the version.</p>
7164
7164
  * @public
7165
7165
  */
7166
- ImageVersionArn?: string;
7166
+ ImageVersionArn?: string | undefined;
7167
7167
  /**
7168
7168
  * <p>The status of the version.</p>
7169
7169
  * @public
7170
7170
  */
7171
- ImageVersionStatus?: ImageVersionStatus;
7171
+ ImageVersionStatus?: ImageVersionStatus | undefined;
7172
7172
  /**
7173
7173
  * <p>When the version was last modified.</p>
7174
7174
  * @public
7175
7175
  */
7176
- LastModifiedTime?: Date;
7176
+ LastModifiedTime?: Date | undefined;
7177
7177
  /**
7178
7178
  * <p>The version number.</p>
7179
7179
  * @public
7180
7180
  */
7181
- Version?: number;
7181
+ Version?: number | undefined;
7182
7182
  /**
7183
7183
  * <p>The stability of the image version specified by the maintainer.</p>
7184
7184
  * <ul>
@@ -7201,7 +7201,7 @@ export interface DescribeImageVersionResponse {
7201
7201
  * </ul>
7202
7202
  * @public
7203
7203
  */
7204
- VendorGuidance?: VendorGuidance;
7204
+ VendorGuidance?: VendorGuidance | undefined;
7205
7205
  /**
7206
7206
  * <p>Indicates SageMaker job type compatibility.</p>
7207
7207
  * <ul>
@@ -7220,17 +7220,17 @@ export interface DescribeImageVersionResponse {
7220
7220
  * </ul>
7221
7221
  * @public
7222
7222
  */
7223
- JobType?: JobType;
7223
+ JobType?: JobType | undefined;
7224
7224
  /**
7225
7225
  * <p>The machine learning framework vended in the image version.</p>
7226
7226
  * @public
7227
7227
  */
7228
- MLFramework?: string;
7228
+ MLFramework?: string | undefined;
7229
7229
  /**
7230
7230
  * <p>The supported programming language and its version.</p>
7231
7231
  * @public
7232
7232
  */
7233
- ProgrammingLang?: string;
7233
+ ProgrammingLang?: string | undefined;
7234
7234
  /**
7235
7235
  * <p>Indicates CPU or GPU compatibility.</p>
7236
7236
  * <ul>
@@ -7245,17 +7245,17 @@ export interface DescribeImageVersionResponse {
7245
7245
  * </ul>
7246
7246
  * @public
7247
7247
  */
7248
- Processor?: Processor;
7248
+ Processor?: Processor | undefined;
7249
7249
  /**
7250
7250
  * <p>Indicates Horovod compatibility.</p>
7251
7251
  * @public
7252
7252
  */
7253
- Horovod?: boolean;
7253
+ Horovod?: boolean | undefined;
7254
7254
  /**
7255
7255
  * <p>The maintainer description of the image version.</p>
7256
7256
  * @public
7257
7257
  */
7258
- ReleaseNotes?: string;
7258
+ ReleaseNotes?: string | undefined;
7259
7259
  }
7260
7260
  /**
7261
7261
  * @public
@@ -7293,12 +7293,12 @@ export interface InferenceComponentRuntimeConfigSummary {
7293
7293
  * the inference component.</p>
7294
7294
  * @public
7295
7295
  */
7296
- DesiredCopyCount?: number;
7296
+ DesiredCopyCount?: number | undefined;
7297
7297
  /**
7298
7298
  * <p>The number of runtime copies of the model container that are currently deployed.</p>
7299
7299
  * @public
7300
7300
  */
7301
- CurrentCopyCount?: number;
7301
+ CurrentCopyCount?: number | undefined;
7302
7302
  }
7303
7303
  /**
7304
7304
  * <p>Details about the resources that are deployed with this inference component.</p>
@@ -7314,17 +7314,17 @@ export interface InferenceComponentContainerSpecificationSummary {
7314
7314
  * a specific version of an image. For information about Amazon ECR paths, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/docker-pull-ecr-image.html">Pulling an Image</a> in the <i>Amazon ECR User Guide</i>.</p>
7315
7315
  * @public
7316
7316
  */
7317
- DeployedImage?: DeployedImage;
7317
+ DeployedImage?: DeployedImage | undefined;
7318
7318
  /**
7319
7319
  * <p>The Amazon S3 path where the model artifacts are stored.</p>
7320
7320
  * @public
7321
7321
  */
7322
- ArtifactUrl?: string;
7322
+ ArtifactUrl?: string | undefined;
7323
7323
  /**
7324
7324
  * <p>The environment variables to set in the Docker container.</p>
7325
7325
  * @public
7326
7326
  */
7327
- Environment?: Record<string, string>;
7327
+ Environment?: Record<string, string> | undefined;
7328
7328
  }
7329
7329
  /**
7330
7330
  * <p>Details about the resources that are deployed with this inference component.</p>
@@ -7336,24 +7336,24 @@ export interface InferenceComponentSpecificationSummary {
7336
7336
  * component.</p>
7337
7337
  * @public
7338
7338
  */
7339
- ModelName?: string;
7339
+ ModelName?: string | undefined;
7340
7340
  /**
7341
7341
  * <p>Details about the container that provides the runtime environment for the model that is
7342
7342
  * deployed with the inference component.</p>
7343
7343
  * @public
7344
7344
  */
7345
- Container?: InferenceComponentContainerSpecificationSummary;
7345
+ Container?: InferenceComponentContainerSpecificationSummary | undefined;
7346
7346
  /**
7347
7347
  * <p>Settings that take effect while the model container starts up.</p>
7348
7348
  * @public
7349
7349
  */
7350
- StartupParameters?: InferenceComponentStartupParameters;
7350
+ StartupParameters?: InferenceComponentStartupParameters | undefined;
7351
7351
  /**
7352
7352
  * <p>The compute resources allocated to run the model assigned
7353
7353
  * to the inference component.</p>
7354
7354
  * @public
7355
7355
  */
7356
- ComputeResourceRequirements?: InferenceComponentComputeResourceRequirements;
7356
+ ComputeResourceRequirements?: InferenceComponentComputeResourceRequirements | undefined;
7357
7357
  }
7358
7358
  /**
7359
7359
  * @public
@@ -7383,24 +7383,24 @@ export interface DescribeInferenceComponentOutput {
7383
7383
  * <p>The name of the production variant that hosts the inference component.</p>
7384
7384
  * @public
7385
7385
  */
7386
- VariantName?: string;
7386
+ VariantName?: string | undefined;
7387
7387
  /**
7388
7388
  * <p>If the inference component status is <code>Failed</code>, the reason for the
7389
7389
  * failure.</p>
7390
7390
  * @public
7391
7391
  */
7392
- FailureReason?: string;
7392
+ FailureReason?: string | undefined;
7393
7393
  /**
7394
7394
  * <p>Details about the resources that are deployed with this inference component.</p>
7395
7395
  * @public
7396
7396
  */
7397
- Specification?: InferenceComponentSpecificationSummary;
7397
+ Specification?: InferenceComponentSpecificationSummary | undefined;
7398
7398
  /**
7399
7399
  * <p>Details about the runtime settings for the model that is deployed with the inference
7400
7400
  * component.</p>
7401
7401
  * @public
7402
7402
  */
7403
- RuntimeConfig?: InferenceComponentRuntimeConfigSummary;
7403
+ RuntimeConfig?: InferenceComponentRuntimeConfigSummary | undefined;
7404
7404
  /**
7405
7405
  * <p>The time when the inference component was created.</p>
7406
7406
  * @public
@@ -7415,7 +7415,7 @@ export interface DescribeInferenceComponentOutput {
7415
7415
  * <p>The status of the inference component.</p>
7416
7416
  * @public
7417
7417
  */
7418
- InferenceComponentStatus?: InferenceComponentStatus;
7418
+ InferenceComponentStatus?: InferenceComponentStatus | undefined;
7419
7419
  }
7420
7420
  /**
7421
7421
  * @public
@@ -7441,14 +7441,14 @@ export interface EndpointMetadata {
7441
7441
  * <p>The name of the endpoint configuration.</p>
7442
7442
  * @public
7443
7443
  */
7444
- EndpointConfigName?: string;
7444
+ EndpointConfigName?: string | undefined;
7445
7445
  /**
7446
7446
  * <p>
7447
7447
  * The status of the endpoint. For possible values of the status of an endpoint, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_EndpointSummary.html">EndpointSummary</a>.
7448
7448
  * </p>
7449
7449
  * @public
7450
7450
  */
7451
- EndpointStatus?: EndpointStatus;
7451
+ EndpointStatus?: EndpointStatus | undefined;
7452
7452
  /**
7453
7453
  * <p>
7454
7454
  * If the status of the endpoint is <code>Failed</code>, or the status is <code>InService</code> but update
@@ -7456,7 +7456,7 @@ export interface EndpointMetadata {
7456
7456
  * </p>
7457
7457
  * @public
7458
7458
  */
7459
- FailureReason?: string;
7459
+ FailureReason?: string | undefined;
7460
7460
  }
7461
7461
  /**
7462
7462
  * @public
@@ -7568,7 +7568,7 @@ export interface DescribeInferenceExperimentResponse {
7568
7568
  * <p>The duration for which the inference experiment ran or will run.</p>
7569
7569
  * @public
7570
7570
  */
7571
- Schedule?: InferenceExperimentSchedule;
7571
+ Schedule?: InferenceExperimentSchedule | undefined;
7572
7572
  /**
7573
7573
  * <p>
7574
7574
  * The status of the inference experiment. The following are the possible statuses for an inference
@@ -7628,29 +7628,29 @@ export interface DescribeInferenceExperimentResponse {
7628
7628
  * </p>
7629
7629
  * @public
7630
7630
  */
7631
- StatusReason?: string;
7631
+ StatusReason?: string | undefined;
7632
7632
  /**
7633
7633
  * <p>The description of the inference experiment.</p>
7634
7634
  * @public
7635
7635
  */
7636
- Description?: string;
7636
+ Description?: string | undefined;
7637
7637
  /**
7638
7638
  * <p>The timestamp at which you created the inference experiment.</p>
7639
7639
  * @public
7640
7640
  */
7641
- CreationTime?: Date;
7641
+ CreationTime?: Date | undefined;
7642
7642
  /**
7643
7643
  * <p>
7644
7644
  * The timestamp at which the inference experiment was completed.
7645
7645
  * </p>
7646
7646
  * @public
7647
7647
  */
7648
- CompletionTime?: Date;
7648
+ CompletionTime?: Date | undefined;
7649
7649
  /**
7650
7650
  * <p>The timestamp at which you last modified the inference experiment.</p>
7651
7651
  * @public
7652
7652
  */
7653
- LastModifiedTime?: Date;
7653
+ LastModifiedTime?: Date | undefined;
7654
7654
  /**
7655
7655
  * <p>
7656
7656
  * The ARN of the IAM role that Amazon SageMaker can assume to access model artifacts and container images, and manage
@@ -7658,7 +7658,7 @@ export interface DescribeInferenceExperimentResponse {
7658
7658
  * </p>
7659
7659
  * @public
7660
7660
  */
7661
- RoleArn?: string;
7661
+ RoleArn?: string | undefined;
7662
7662
  /**
7663
7663
  * <p>The metadata of the endpoint on which the inference experiment ran.</p>
7664
7664
  * @public
@@ -7677,7 +7677,7 @@ export interface DescribeInferenceExperimentResponse {
7677
7677
  * <p>The Amazon S3 location and configuration for storing inference request and response data.</p>
7678
7678
  * @public
7679
7679
  */
7680
- DataStorageConfig?: InferenceExperimentDataStorageConfig;
7680
+ DataStorageConfig?: InferenceExperimentDataStorageConfig | undefined;
7681
7681
  /**
7682
7682
  * <p>
7683
7683
  * The configuration of <code>ShadowMode</code> inference experiment type, which shows the production variant
@@ -7686,7 +7686,7 @@ export interface DescribeInferenceExperimentResponse {
7686
7686
  * </p>
7687
7687
  * @public
7688
7688
  */
7689
- ShadowModeConfig?: ShadowModeConfig;
7689
+ ShadowModeConfig?: ShadowModeConfig | undefined;
7690
7690
  /**
7691
7691
  * <p>
7692
7692
  * The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt data on
@@ -7695,7 +7695,7 @@ export interface DescribeInferenceExperimentResponse {
7695
7695
  * </p>
7696
7696
  * @public
7697
7697
  */
7698
- KmsKey?: string;
7698
+ KmsKey?: string | undefined;
7699
7699
  }
7700
7700
  /**
7701
7701
  * @public
@@ -7759,17 +7759,17 @@ export interface EndpointOutputConfiguration {
7759
7759
  * <p>The instance type recommended by Amazon SageMaker Inference Recommender.</p>
7760
7760
  * @public
7761
7761
  */
7762
- InstanceType?: ProductionVariantInstanceType;
7762
+ InstanceType?: ProductionVariantInstanceType | undefined;
7763
7763
  /**
7764
7764
  * <p>The number of instances recommended to launch initially.</p>
7765
7765
  * @public
7766
7766
  */
7767
- InitialInstanceCount?: number;
7767
+ InitialInstanceCount?: number | undefined;
7768
7768
  /**
7769
7769
  * <p>Specifies the serverless configuration for an endpoint variant.</p>
7770
7770
  * @public
7771
7771
  */
7772
- ServerlessConfig?: ProductionVariantServerlessConfig;
7772
+ ServerlessConfig?: ProductionVariantServerlessConfig | undefined;
7773
7773
  }
7774
7774
  /**
7775
7775
  * <p>The metrics of recommendations.</p>
@@ -7780,36 +7780,36 @@ export interface RecommendationMetrics {
7780
7780
  * <p>Defines the cost per hour for the instance. </p>
7781
7781
  * @public
7782
7782
  */
7783
- CostPerHour?: number;
7783
+ CostPerHour?: number | undefined;
7784
7784
  /**
7785
7785
  * <p>Defines the cost per inference for the instance .</p>
7786
7786
  * @public
7787
7787
  */
7788
- CostPerInference?: number;
7788
+ CostPerInference?: number | undefined;
7789
7789
  /**
7790
7790
  * <p>The expected maximum number of requests per minute for the instance.</p>
7791
7791
  * @public
7792
7792
  */
7793
- MaxInvocations?: number;
7793
+ MaxInvocations?: number | undefined;
7794
7794
  /**
7795
7795
  * <p>The expected model latency at maximum invocation per minute for the instance.</p>
7796
7796
  * @public
7797
7797
  */
7798
- ModelLatency?: number;
7798
+ ModelLatency?: number | undefined;
7799
7799
  /**
7800
7800
  * <p>The expected CPU utilization at maximum invocations per minute for the instance.</p>
7801
7801
  * <p>
7802
7802
  * <code>NaN</code> indicates that the value is not available.</p>
7803
7803
  * @public
7804
7804
  */
7805
- CpuUtilization?: number;
7805
+ CpuUtilization?: number | undefined;
7806
7806
  /**
7807
7807
  * <p>The expected memory utilization at maximum invocations per minute for the instance.</p>
7808
7808
  * <p>
7809
7809
  * <code>NaN</code> indicates that the value is not available.</p>
7810
7810
  * @public
7811
7811
  */
7812
- MemoryUtilization?: number;
7812
+ MemoryUtilization?: number | undefined;
7813
7813
  /**
7814
7814
  * <p>The time it takes to launch new compute resources for a serverless endpoint.
7815
7815
  * The time can vary depending on the model size, how long it takes to download the
@@ -7818,7 +7818,7 @@ export interface RecommendationMetrics {
7818
7818
  * <code>NaN</code> indicates that the value is not available.</p>
7819
7819
  * @public
7820
7820
  */
7821
- ModelSetupTime?: number;
7821
+ ModelSetupTime?: number | undefined;
7822
7822
  }
7823
7823
  /**
7824
7824
  * <p>A list of environment parameters suggested by the Amazon SageMaker Inference Recommender.</p>
@@ -7850,17 +7850,17 @@ export interface ModelConfiguration {
7850
7850
  * <p>The inference specification name in the model package version.</p>
7851
7851
  * @public
7852
7852
  */
7853
- InferenceSpecificationName?: string;
7853
+ InferenceSpecificationName?: string | undefined;
7854
7854
  /**
7855
7855
  * <p>Defines the environment parameters that includes key, value types, and values.</p>
7856
7856
  * @public
7857
7857
  */
7858
- EnvironmentParameters?: EnvironmentParameter[];
7858
+ EnvironmentParameters?: EnvironmentParameter[] | undefined;
7859
7859
  /**
7860
7860
  * <p>The name of the compilation job used to create the recommended model artifacts.</p>
7861
7861
  * @public
7862
7862
  */
7863
- CompilationJobName?: string;
7863
+ CompilationJobName?: string | undefined;
7864
7864
  }
7865
7865
  /**
7866
7866
  * <p>A list of recommendations made by Amazon SageMaker Inference Recommender.</p>
@@ -7871,12 +7871,12 @@ export interface InferenceRecommendation {
7871
7871
  * <p>The recommendation ID which uniquely identifies each recommendation.</p>
7872
7872
  * @public
7873
7873
  */
7874
- RecommendationId?: string;
7874
+ RecommendationId?: string | undefined;
7875
7875
  /**
7876
7876
  * <p>The metrics used to decide what recommendation to make.</p>
7877
7877
  * @public
7878
7878
  */
7879
- Metrics?: RecommendationMetrics;
7879
+ Metrics?: RecommendationMetrics | undefined;
7880
7880
  /**
7881
7881
  * <p>Defines the endpoint configuration parameters.</p>
7882
7882
  * @public
@@ -7891,12 +7891,12 @@ export interface InferenceRecommendation {
7891
7891
  * <p>A timestamp that shows when the benchmark completed.</p>
7892
7892
  * @public
7893
7893
  */
7894
- InvocationEndTime?: Date;
7894
+ InvocationEndTime?: Date | undefined;
7895
7895
  /**
7896
7896
  * <p>A timestamp that shows when the benchmark started.</p>
7897
7897
  * @public
7898
7898
  */
7899
- InvocationStartTime?: Date;
7899
+ InvocationStartTime?: Date | undefined;
7900
7900
  }
7901
7901
  /**
7902
7902
  * @public