@aws-sdk/client-sagemaker 3.99.0 → 3.105.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.
@@ -215,9 +215,7 @@ export interface ModelPackageContainerDefinition {
215
215
  * <code>Environment</code> string to string map can have length of up to 1024. We
216
216
  * support up to 16 entries in the map.</p>
217
217
  */
218
- Environment?: {
219
- [key: string]: string;
220
- };
218
+ Environment?: Record<string, string>;
221
219
  /**
222
220
  * <p>A structure with Model Input details.</p>
223
221
  */
@@ -532,17 +530,31 @@ export interface AlgorithmSpecification {
532
530
  /**
533
531
  * <p>The registry path of the Docker image
534
532
  * that contains the training algorithm.
535
- * For information about docker registry paths for built-in algorithms, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-algo-docker-registry-paths.html">Algorithms
536
- * Provided by Amazon SageMaker: Common Parameters</a>. SageMaker supports both
537
- * <code>registry/repository[:tag]</code> and <code>registry/repository[@digest]</code>
538
- * image path formats. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with Amazon
539
- * SageMaker</a>.</p>
533
+ * For information about docker registry paths for SageMaker built-in algorithms, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-algo-docker-registry-paths.html">Docker Registry Paths and Example Code</a> in the <i>Amazon SageMaker developer guide</i>.
534
+ * SageMaker supports both <code>registry/repository[:tag]</code> and <code>registry/repository[@digest]</code>
535
+ * image path formats. For more information about using your custom training container, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with Amazon SageMaker</a>.</p>
536
+ * <note>
537
+ * <p>You must specify either the algorithm name to the <code>AlgorithmName</code> parameter
538
+ * or the image URI of the algorithm container
539
+ * to the <code>TrainingImage</code> parameter.</p>
540
+ * <p>For more information, see the note in the <code>AlgorithmName</code> parameter description.</p>
541
+ * </note>
540
542
  */
541
543
  TrainingImage?: string;
542
544
  /**
543
545
  * <p>The name of the algorithm resource to use for the training job. This must be an
544
- * algorithm resource that you created or subscribe to on Amazon Web Services Marketplace. If you specify a value for
545
- * this parameter, you can't specify a value for <code>TrainingImage</code>.</p>
546
+ * algorithm resource that you created or subscribe to on Amazon Web Services Marketplace.</p>
547
+ * <note>
548
+ * <p>You must specify either the algorithm name to the <code>AlgorithmName</code> parameter
549
+ * or the image URI of the algorithm container
550
+ * to the <code>TrainingImage</code> parameter.</p>
551
+ * <p>Note that the <code>AlgorithmName</code> parameter is mutually exclusive
552
+ * with the <code>TrainingImage</code> parameter.
553
+ * If you specify a value for the <code>AlgorithmName</code> parameter,
554
+ * you can't specify a value for <code>TrainingImage</code>, and vice versa.</p>
555
+ * <p>If you specify values for both parameters, the training job might break; if you don't specify
556
+ * any value for both parameters, the training job might raise a <code>null</code> error.</p>
557
+ * </note>
546
558
  */
547
559
  AlgorithmName?: string;
548
560
  /**
@@ -1272,9 +1284,7 @@ export interface TrainingJobDefinition {
1272
1284
  /**
1273
1285
  * <p>The hyperparameters used for the training job.</p>
1274
1286
  */
1275
- HyperParameters?: {
1276
- [key: string]: string;
1277
- };
1287
+ HyperParameters?: Record<string, string>;
1278
1288
  /**
1279
1289
  * <p>An array of <code>Channel</code> objects, each of which specifies an input
1280
1290
  * source.</p>
@@ -1651,9 +1661,7 @@ export interface TransformJobDefinition {
1651
1661
  * <p>The environment variables to set in the Docker container. We support up to 16 key and
1652
1662
  * values entries in the map.</p>
1653
1663
  */
1654
- Environment?: {
1655
- [key: string]: string;
1656
- };
1664
+ Environment?: Record<string, string>;
1657
1665
  /**
1658
1666
  * <p>A description of the input source and the way the transform job consumes it.</p>
1659
1667
  */
@@ -3394,6 +3402,14 @@ export declare enum AppInstanceType {
3394
3402
  ML_G4DN_4XLARGE = "ml.g4dn.4xlarge",
3395
3403
  ML_G4DN_8XLARGE = "ml.g4dn.8xlarge",
3396
3404
  ML_G4DN_XLARGE = "ml.g4dn.xlarge",
3405
+ ML_G5_12XLARGE = "ml.g5.12xlarge",
3406
+ ML_G5_16XLARGE = "ml.g5.16xlarge",
3407
+ ML_G5_24XLARGE = "ml.g5.24xlarge",
3408
+ ML_G5_2XLARGE = "ml.g5.2xlarge",
3409
+ ML_G5_48XLARGE = "ml.g5.48xlarge",
3410
+ ML_G5_4XLARGE = "ml.g5.4xlarge",
3411
+ ML_G5_8XLARGE = "ml.g5.8xlarge",
3412
+ ML_G5_XLARGE = "ml.g5.xlarge",
3397
3413
  ML_M5D_12XLARGE = "ml.m5d.12xlarge",
3398
3414
  ML_M5D_16XLARGE = "ml.m5d.16xlarge",
3399
3415
  ML_M5D_24XLARGE = "ml.m5d.24xlarge",
@@ -3972,9 +3988,7 @@ export interface AutoMLContainerDefinition {
3972
3988
  /**
3973
3989
  * <p>The environment variables to set in the container. For more information, see .</p>
3974
3990
  */
3975
- Environment?: {
3976
- [key: string]: string;
3977
- };
3991
+ Environment?: Record<string, string>;
3978
3992
  }
3979
3993
  export declare namespace AutoMLContainerDefinition {
3980
3994
  /**
@@ -4657,16 +4671,12 @@ export interface BatchDescribeModelPackageOutput {
4657
4671
  /**
4658
4672
  * <p>The summaries for the model package versions</p>
4659
4673
  */
4660
- ModelPackageSummaries?: {
4661
- [key: string]: BatchDescribeModelPackageSummary;
4662
- };
4674
+ ModelPackageSummaries?: Record<string, BatchDescribeModelPackageSummary>;
4663
4675
  /**
4664
4676
  * <p>A map of the resource and BatchDescribeModelPackageError objects
4665
4677
  * reporting the error associated with describing the model package.</p>
4666
4678
  */
4667
- BatchDescribeModelPackageErrorMap?: {
4668
- [key: string]: BatchDescribeModelPackageError;
4669
- };
4679
+ BatchDescribeModelPackageErrorMap?: Record<string, BatchDescribeModelPackageError>;
4670
4680
  }
4671
4681
  export declare namespace BatchDescribeModelPackageOutput {
4672
4682
  /**
@@ -5255,9 +5265,7 @@ export interface CollectionConfiguration {
5255
5265
  * <code>"save_config"</code>, <code>"tensor_names"</code>, and
5256
5266
  * <code>"save_histogram"</code>.</p>
5257
5267
  */
5258
- CollectionParameters?: {
5259
- [key: string]: string;
5260
- };
5268
+ CollectionParameters?: Record<string, string>;
5261
5269
  }
5262
5270
  export declare namespace CollectionConfiguration {
5263
5271
  /**
@@ -5576,9 +5584,7 @@ export interface ContainerDefinition {
5576
5584
  * <code>Environment</code> string to string map can have length of up to 1024. We
5577
5585
  * support up to 16 entries in the map. </p>
5578
5586
  */
5579
- Environment?: {
5580
- [key: string]: string;
5581
- };
5587
+ Environment?: Record<string, string>;
5582
5588
  /**
5583
5589
  * <p>The name or Amazon Resource Name (ARN) of the model package to use to create the
5584
5590
  * model.</p>
@@ -5796,9 +5802,7 @@ export interface CreateActionRequest {
5796
5802
  /**
5797
5803
  * <p>A list of properties to add to the action.</p>
5798
5804
  */
5799
- Properties?: {
5800
- [key: string]: string;
5801
- };
5805
+ Properties?: Record<string, string>;
5802
5806
  /**
5803
5807
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
5804
5808
  */
@@ -6235,9 +6239,7 @@ export interface CreateArtifactRequest {
6235
6239
  /**
6236
6240
  * <p>A list of properties to add to the artifact.</p>
6237
6241
  */
6238
- Properties?: {
6239
- [key: string]: string;
6240
- };
6242
+ Properties?: Record<string, string>;
6241
6243
  /**
6242
6244
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
6243
6245
  */
@@ -7277,9 +7279,7 @@ export interface CreateContextRequest {
7277
7279
  /**
7278
7280
  * <p>A list of properties to add to the context.</p>
7279
7281
  */
7280
- Properties?: {
7281
- [key: string]: string;
7282
- };
7282
+ Properties?: Record<string, string>;
7283
7283
  /**
7284
7284
  * <p>A list of tags to apply to the context.</p>
7285
7285
  */
@@ -7334,9 +7334,7 @@ export interface DataQualityAppSpecification {
7334
7334
  /**
7335
7335
  * <p>Sets the environment variables in the container that the monitoring job runs.</p>
7336
7336
  */
7337
- Environment?: {
7338
- [key: string]: string;
7339
- };
7337
+ Environment?: Record<string, string>;
7340
7338
  }
7341
7339
  export declare namespace DataQualityAppSpecification {
7342
7340
  /**
@@ -10233,9 +10231,7 @@ export interface HyperParameterTrainingJobDefinition {
10233
10231
  * that
10234
10232
  * do not change for the tuning job.</p>
10235
10233
  */
10236
- StaticHyperParameters?: {
10237
- [key: string]: string;
10238
- };
10234
+ StaticHyperParameters?: Record<string, string>;
10239
10235
  /**
10240
10236
  * <p>The <a>HyperParameterAlgorithmSpecification</a> object that
10241
10237
  * specifies
@@ -2700,9 +2700,7 @@ export interface ModelBiasAppSpecification {
2700
2700
  /**
2701
2701
  * <p>Sets the environment variables in the Docker container.</p>
2702
2702
  */
2703
- Environment?: {
2704
- [key: string]: string;
2705
- };
2703
+ Environment?: Record<string, string>;
2706
2704
  }
2707
2705
  export declare namespace ModelBiasAppSpecification {
2708
2706
  /**
@@ -2843,9 +2841,7 @@ export interface ModelExplainabilityAppSpecification {
2843
2841
  /**
2844
2842
  * <p>Sets the environment variables in the Docker container.</p>
2845
2843
  */
2846
- Environment?: {
2847
- [key: string]: string;
2848
- };
2844
+ Environment?: Record<string, string>;
2849
2845
  }
2850
2846
  export declare namespace ModelExplainabilityAppSpecification {
2851
2847
  /**
@@ -3337,9 +3333,7 @@ export interface CreateModelPackageInput {
3337
3333
  /**
3338
3334
  * <p>The metadata properties associated with the model package versions.</p>
3339
3335
  */
3340
- CustomerMetadataProperties?: {
3341
- [key: string]: string;
3342
- };
3336
+ CustomerMetadataProperties?: Record<string, string>;
3343
3337
  /**
3344
3338
  * <p>Represents the drift check baselines that can be used when the model monitor is set using the model package.
3345
3339
  * For more information, see the topic on <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection">Drift Detection against Previous Baselines in SageMaker Pipelines</a> in the <i>Amazon SageMaker Developer Guide</i>.
@@ -3465,9 +3459,7 @@ export interface ModelQualityAppSpecification {
3465
3459
  /**
3466
3460
  * <p>Sets the environment variables in the container that the monitoring job runs.</p>
3467
3461
  */
3468
- Environment?: {
3469
- [key: string]: string;
3470
- };
3462
+ Environment?: Record<string, string>;
3471
3463
  }
3472
3464
  export declare namespace ModelQualityAppSpecification {
3473
3465
  /**
@@ -3721,9 +3713,7 @@ export interface MonitoringJobDefinition {
3721
3713
  /**
3722
3714
  * <p>Sets the environment variables in the Docker container.</p>
3723
3715
  */
3724
- Environment?: {
3725
- [key: string]: string;
3726
- };
3716
+ Environment?: Record<string, string>;
3727
3717
  /**
3728
3718
  * <p>Specifies networking options for an monitoring job.</p>
3729
3719
  */
@@ -3892,6 +3882,21 @@ export declare enum DirectInternetAccess {
3892
3882
  DISABLED = "Disabled",
3893
3883
  ENABLED = "Enabled"
3894
3884
  }
3885
+ /**
3886
+ * <p>Information on the IMDS configuration of the notebook instance</p>
3887
+ */
3888
+ export interface InstanceMetadataServiceConfiguration {
3889
+ /**
3890
+ * <p>Indicates the minimum IMDS version that the notebook instance supports. When passed as part of <code>CreateNotebookInstance</code>, if no value is selected, then it defaults to IMDSv1. This means that both IMDSv1 and IMDSv2 are supported. If passed as part of <code>UpdateNotebookInstance</code>, there is no default.</p>
3891
+ */
3892
+ MinimumInstanceMetadataServiceVersion: string | undefined;
3893
+ }
3894
+ export declare namespace InstanceMetadataServiceConfiguration {
3895
+ /**
3896
+ * @internal
3897
+ */
3898
+ const filterSensitiveLog: (obj: InstanceMetadataServiceConfiguration) => any;
3899
+ }
3895
3900
  export declare enum _InstanceType {
3896
3901
  ML_C4_2XLARGE = "ml.c4.2xlarge",
3897
3902
  ML_C4_4XLARGE = "ml.c4.4xlarge",
@@ -4072,6 +4077,10 @@ export interface CreateNotebookInstanceInput {
4072
4077
  * <p>The platform identifier of the notebook instance runtime environment.</p>
4073
4078
  */
4074
4079
  PlatformIdentifier?: string;
4080
+ /**
4081
+ * <p>Information on the IMDS configuration of the notebook instance</p>
4082
+ */
4083
+ InstanceMetadataServiceConfiguration?: InstanceMetadataServiceConfiguration;
4075
4084
  }
4076
4085
  export declare namespace CreateNotebookInstanceInput {
4077
4086
  /**
@@ -4768,9 +4777,7 @@ export interface CreateProcessingJobRequest {
4768
4777
  * <p>The environment variables to set in the Docker container. Up to
4769
4778
  * 100 key and values entries in the map are supported.</p>
4770
4779
  */
4771
- Environment?: {
4772
- [key: string]: string;
4773
- };
4780
+ Environment?: Record<string, string>;
4774
4781
  /**
4775
4782
  * <p>Networking options for a processing job, such as whether to allow inbound and
4776
4783
  * outbound network calls to and from processing containers, and the VPC subnets and
@@ -4981,9 +4988,7 @@ export interface DebugHookConfig {
4981
4988
  /**
4982
4989
  * <p>Configuration information for the Debugger hook parameters.</p>
4983
4990
  */
4984
- HookParameters?: {
4985
- [key: string]: string;
4986
- };
4991
+ HookParameters?: Record<string, string>;
4987
4992
  /**
4988
4993
  * <p>Configuration information for Debugger tensor collections. To learn more about
4989
4994
  * how to configure the <code>CollectionConfiguration</code> parameter,
@@ -5033,9 +5038,7 @@ export interface DebugRuleConfiguration {
5033
5038
  /**
5034
5039
  * <p>Runtime configuration for rule container.</p>
5035
5040
  */
5036
- RuleParameters?: {
5037
- [key: string]: string;
5038
- };
5041
+ RuleParameters?: Record<string, string>;
5039
5042
  }
5040
5043
  export declare namespace DebugRuleConfiguration {
5041
5044
  /**
@@ -5065,9 +5068,7 @@ export interface ProfilerConfig {
5065
5068
  * 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>.
5066
5069
  * </p>
5067
5070
  */
5068
- ProfilingParameters?: {
5069
- [key: string]: string;
5070
- };
5071
+ ProfilingParameters?: Record<string, string>;
5071
5072
  }
5072
5073
  export declare namespace ProfilerConfig {
5073
5074
  /**
@@ -5106,9 +5107,7 @@ export interface ProfilerRuleConfiguration {
5106
5107
  /**
5107
5108
  * <p>Runtime configuration for rule container.</p>
5108
5109
  */
5109
- RuleParameters?: {
5110
- [key: string]: string;
5111
- };
5110
+ RuleParameters?: Record<string, string>;
5112
5111
  }
5113
5112
  export declare namespace ProfilerRuleConfiguration {
5114
5113
  /**
@@ -5150,9 +5149,7 @@ export interface CreateTrainingJobRequest {
5150
5149
  * key-value pair. Each key and value is limited to 256 characters, as specified by the
5151
5150
  * <code>Length Constraint</code>. </p>
5152
5151
  */
5153
- HyperParameters?: {
5154
- [key: string]: string;
5155
- };
5152
+ HyperParameters?: Record<string, string>;
5156
5153
  /**
5157
5154
  * <p>The registry path of the Docker image that contains the training algorithm and
5158
5155
  * algorithm-specific metadata, including the input mode. For more information about
@@ -5312,9 +5309,7 @@ export interface CreateTrainingJobRequest {
5312
5309
  /**
5313
5310
  * <p>The environment variables to set in the Docker container.</p>
5314
5311
  */
5315
- Environment?: {
5316
- [key: string]: string;
5317
- };
5312
+ Environment?: Record<string, string>;
5318
5313
  /**
5319
5314
  * <p>The number of times to retry the job when the job fails due to an
5320
5315
  * <code>InternalServerError</code>.</p>
@@ -5485,9 +5480,7 @@ export interface CreateTransformJobRequest {
5485
5480
  * <p>The environment variables to set in the Docker container. We support up to 16 key and
5486
5481
  * values entries in the map.</p>
5487
5482
  */
5488
- Environment?: {
5489
- [key: string]: string;
5490
- };
5483
+ Environment?: Record<string, string>;
5491
5484
  /**
5492
5485
  * <p>Describes the input source and
5493
5486
  * the
@@ -5739,23 +5732,17 @@ export interface CreateTrialComponentRequest {
5739
5732
  /**
5740
5733
  * <p>The hyperparameters for the component.</p>
5741
5734
  */
5742
- Parameters?: {
5743
- [key: string]: TrialComponentParameterValue;
5744
- };
5735
+ Parameters?: Record<string, TrialComponentParameterValue>;
5745
5736
  /**
5746
5737
  * <p>The input artifacts for the component. Examples of input artifacts are datasets,
5747
5738
  * algorithms, hyperparameters, source code, and instance types.</p>
5748
5739
  */
5749
- InputArtifacts?: {
5750
- [key: string]: TrialComponentArtifact;
5751
- };
5740
+ InputArtifacts?: Record<string, TrialComponentArtifact>;
5752
5741
  /**
5753
5742
  * <p>The output artifacts for the component. Examples of output artifacts are metrics,
5754
5743
  * snapshots, logs, and images.</p>
5755
5744
  */
5756
- OutputArtifacts?: {
5757
- [key: string]: TrialComponentArtifact;
5758
- };
5745
+ OutputArtifacts?: Record<string, TrialComponentArtifact>;
5759
5746
  /**
5760
5747
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
5761
5748
  */
@@ -6918,9 +6905,7 @@ export interface DescribeActionResponse {
6918
6905
  /**
6919
6906
  * <p>A list of the action's properties.</p>
6920
6907
  */
6921
- Properties?: {
6922
- [key: string]: string;
6923
- };
6908
+ Properties?: Record<string, string>;
6924
6909
  /**
6925
6910
  * <p>When the action was created.</p>
6926
6911
  */
@@ -7167,9 +7152,7 @@ export interface DescribeArtifactResponse {
7167
7152
  /**
7168
7153
  * <p>A list of the artifact's properties.</p>
7169
7154
  */
7170
- Properties?: {
7171
- [key: string]: string;
7172
- };
7155
+ Properties?: Record<string, string>;
7173
7156
  /**
7174
7157
  * <p>When the artifact was created.</p>
7175
7158
  */
@@ -7578,9 +7561,7 @@ export interface DescribeContextResponse {
7578
7561
  /**
7579
7562
  * <p>A list of the context's properties.</p>
7580
7563
  */
7581
- Properties?: {
7582
- [key: string]: string;
7583
- };
7564
+ Properties?: Record<string, string>;
7584
7565
  /**
7585
7566
  * <p>When the context was created.</p>
7586
7567
  */
@@ -8906,9 +8887,7 @@ export interface HyperParameterTrainingJobSummary {
8906
8887
  * list of the hyperparameters for which you specified ranges to
8907
8888
  * search.</p>
8908
8889
  */
8909
- TunedHyperParameters: {
8910
- [key: string]: string;
8911
- } | undefined;
8890
+ TunedHyperParameters: Record<string, string> | undefined;
8912
8891
  /**
8913
8892
  * <p>The
8914
8893
  * reason that the training job failed.
@@ -9468,34 +9447,3 @@ export declare namespace DescribeLabelingJobRequest {
9468
9447
  */
9469
9448
  const filterSensitiveLog: (obj: DescribeLabelingJobRequest) => any;
9470
9449
  }
9471
- /**
9472
- * <p>Provides a breakdown of the number of objects labeled.</p>
9473
- */
9474
- export interface LabelCounters {
9475
- /**
9476
- * <p>The total number of objects labeled.</p>
9477
- */
9478
- TotalLabeled?: number;
9479
- /**
9480
- * <p>The total number of objects labeled by a human worker.</p>
9481
- */
9482
- HumanLabeled?: number;
9483
- /**
9484
- * <p>The total number of objects labeled by automated data labeling.</p>
9485
- */
9486
- MachineLabeled?: number;
9487
- /**
9488
- * <p>The total number of objects that could not be labeled due to an error.</p>
9489
- */
9490
- FailedNonRetryableError?: number;
9491
- /**
9492
- * <p>The total number of objects not yet labeled.</p>
9493
- */
9494
- Unlabeled?: number;
9495
- }
9496
- export declare namespace LabelCounters {
9497
- /**
9498
- * @internal
9499
- */
9500
- const filterSensitiveLog: (obj: LabelCounters) => any;
9501
- }
@@ -1,5 +1,36 @@
1
1
  import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContainerDefinition, ContextSummary, EdgeOutputConfig, FeatureDefinition, HyperParameterTuningJobStrategyType, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, OfflineStoreConfig, OnlineStoreConfig, OutputDataConfig, OutputParameter, ResourceConfig, ResourceLimits, ResourceSpec, RetryStrategy, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
2
- import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FlowDefinitionStatus, HumanTaskConfig, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceExecutionConfig, LabelCounters, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MemberDefinition, ModelArtifacts, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationJobType, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
2
+ import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FlowDefinitionStatus, HumanTaskConfig, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceExecutionConfig, InstanceMetadataServiceConfiguration, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MemberDefinition, ModelArtifacts, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationJobType, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
3
+ /**
4
+ * <p>Provides a breakdown of the number of objects labeled.</p>
5
+ */
6
+ export interface LabelCounters {
7
+ /**
8
+ * <p>The total number of objects labeled.</p>
9
+ */
10
+ TotalLabeled?: number;
11
+ /**
12
+ * <p>The total number of objects labeled by a human worker.</p>
13
+ */
14
+ HumanLabeled?: number;
15
+ /**
16
+ * <p>The total number of objects labeled by automated data labeling.</p>
17
+ */
18
+ MachineLabeled?: number;
19
+ /**
20
+ * <p>The total number of objects that could not be labeled due to an error.</p>
21
+ */
22
+ FailedNonRetryableError?: number;
23
+ /**
24
+ * <p>The total number of objects not yet labeled.</p>
25
+ */
26
+ Unlabeled?: number;
27
+ }
28
+ export declare namespace LabelCounters {
29
+ /**
30
+ * @internal
31
+ */
32
+ const filterSensitiveLog: (obj: LabelCounters) => any;
33
+ }
3
34
  /**
4
35
  * <p>Specifies the location of the output produced by the labeling job. </p>
5
36
  */
@@ -575,9 +606,7 @@ export interface DescribeModelPackageOutput {
575
606
  /**
576
607
  * <p>The metadata properties associated with the model package versions.</p>
577
608
  */
578
- CustomerMetadataProperties?: {
579
- [key: string]: string;
580
- };
609
+ CustomerMetadataProperties?: Record<string, string>;
581
610
  /**
582
611
  * <p>Represents the drift check baselines that can be used when the model monitor is set using the model package.
583
612
  * For more information, see the topic on <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection">Drift Detection against Previous Baselines in SageMaker Pipelines</a> in the <i>Amazon SageMaker Developer Guide</i>.
@@ -1019,6 +1048,10 @@ export interface DescribeNotebookInstanceOutput {
1019
1048
  * <p>The platform identifier of the notebook instance runtime environment.</p>
1020
1049
  */
1021
1050
  PlatformIdentifier?: string;
1051
+ /**
1052
+ * <p>Information on the IMDS configuration of the notebook instance</p>
1053
+ */
1054
+ InstanceMetadataServiceConfiguration?: InstanceMetadataServiceConfiguration;
1022
1055
  }
1023
1056
  export declare namespace DescribeNotebookInstanceOutput {
1024
1057
  /**
@@ -1322,9 +1355,7 @@ export interface DescribeProcessingJobResponse {
1322
1355
  /**
1323
1356
  * <p>The environment variables set in the Docker container.</p>
1324
1357
  */
1325
- Environment?: {
1326
- [key: string]: string;
1327
- };
1358
+ Environment?: Record<string, string>;
1328
1359
  /**
1329
1360
  * <p>Networking options for a processing job.</p>
1330
1361
  */
@@ -2068,9 +2099,7 @@ export interface DescribeTrainingJobResponse {
2068
2099
  /**
2069
2100
  * <p>Algorithm-specific parameters. </p>
2070
2101
  */
2071
- HyperParameters?: {
2072
- [key: string]: string;
2073
- };
2102
+ HyperParameters?: Record<string, string>;
2074
2103
  /**
2075
2104
  * <p>Information about the algorithm used for training, and algorithm metadata.
2076
2105
  * </p>
@@ -2254,9 +2283,7 @@ export interface DescribeTrainingJobResponse {
2254
2283
  /**
2255
2284
  * <p>The environment variables to set in the Docker container.</p>
2256
2285
  */
2257
- Environment?: {
2258
- [key: string]: string;
2259
- };
2286
+ Environment?: Record<string, string>;
2260
2287
  }
2261
2288
  export declare namespace DescribeTrainingJobResponse {
2262
2289
  /**
@@ -2349,9 +2376,7 @@ export interface DescribeTransformJobResponse {
2349
2376
  * environment variables to set in the Docker container. We support up to 16 key and values
2350
2377
  * entries in the map.</p>
2351
2378
  */
2352
- Environment?: {
2353
- [key: string]: string;
2354
- };
2379
+ Environment?: Record<string, string>;
2355
2380
  /**
2356
2381
  * <p>Describes the dataset to be transformed and the Amazon S3 location where it is
2357
2382
  * stored.</p>
@@ -2652,21 +2677,15 @@ export interface DescribeTrialComponentResponse {
2652
2677
  /**
2653
2678
  * <p>The hyperparameters of the component.</p>
2654
2679
  */
2655
- Parameters?: {
2656
- [key: string]: TrialComponentParameterValue;
2657
- };
2680
+ Parameters?: Record<string, TrialComponentParameterValue>;
2658
2681
  /**
2659
2682
  * <p>The input artifacts of the component.</p>
2660
2683
  */
2661
- InputArtifacts?: {
2662
- [key: string]: TrialComponentArtifact;
2663
- };
2684
+ InputArtifacts?: Record<string, TrialComponentArtifact>;
2664
2685
  /**
2665
2686
  * <p>The output artifacts of the component.</p>
2666
2687
  */
2667
- OutputArtifacts?: {
2668
- [key: string]: TrialComponentArtifact;
2669
- };
2688
+ OutputArtifacts?: Record<string, TrialComponentArtifact>;
2670
2689
  /**
2671
2690
  * <p>Metadata properties of the tracking entity, trial, or trial component.</p>
2672
2691
  */
@@ -8767,20 +8786,3 @@ export declare namespace ListSubscribedWorkteamsRequest {
8767
8786
  */
8768
8787
  const filterSensitiveLog: (obj: ListSubscribedWorkteamsRequest) => any;
8769
8788
  }
8770
- export interface ListSubscribedWorkteamsResponse {
8771
- /**
8772
- * <p>An array of <code>Workteam</code> objects, each describing a work team.</p>
8773
- */
8774
- SubscribedWorkteams: SubscribedWorkteam[] | undefined;
8775
- /**
8776
- * <p>If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of
8777
- * work teams, use it in the subsequent request.</p>
8778
- */
8779
- NextToken?: string;
8780
- }
8781
- export declare namespace ListSubscribedWorkteamsResponse {
8782
- /**
8783
- * @internal
8784
- */
8785
- const filterSensitiveLog: (obj: ListSubscribedWorkteamsResponse) => any;
8786
- }