@aws-sdk/client-sagemaker 3.100.0 → 3.109.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.
@@ -1,6 +1,23 @@
1
1
  import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, Channel, CheckpointConfig, DeploymentConfig, EdgeOutputConfig, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, RetryStrategy, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UiTemplate, UserContext, UserSettings, VpcConfig } from "./models_0";
2
- import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
3
- import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, Filter, GitConfigForUpdate, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, Parameter, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_2";
2
+ import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, HyperParameterTrainingJobSummary, InstanceMetadataServiceConfiguration, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
3
+ import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, Filter, GitConfigForUpdate, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, Parameter, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SubscribedWorkteam, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_2";
4
+ export interface ListSubscribedWorkteamsResponse {
5
+ /**
6
+ * <p>An array of <code>Workteam</code> objects, each describing a work team.</p>
7
+ */
8
+ SubscribedWorkteams: SubscribedWorkteam[] | undefined;
9
+ /**
10
+ * <p>If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of
11
+ * work teams, use it in the subsequent request.</p>
12
+ */
13
+ NextToken?: string;
14
+ }
15
+ export declare namespace ListSubscribedWorkteamsResponse {
16
+ /**
17
+ * @internal
18
+ */
19
+ const filterSensitiveLog: (obj: ListSubscribedWorkteamsResponse) => any;
20
+ }
4
21
  export interface ListTagsInput {
5
22
  /**
6
23
  * <p>The Amazon Resource Name (ARN) of the resource whose tags you want to
@@ -908,9 +925,7 @@ export interface ModelPackage {
908
925
  /**
909
926
  * <p>The metadata properties for the model package. </p>
910
927
  */
911
- CustomerMetadataProperties?: {
912
- [key: string]: string;
913
- };
928
+ CustomerMetadataProperties?: Record<string, string>;
914
929
  /**
915
930
  * <p>Represents the drift check baselines that can be used when the model monitor is set using the model package.</p>
916
931
  */
@@ -1216,9 +1231,7 @@ export interface ProcessingJob {
1216
1231
  /**
1217
1232
  * <p>Sets the environment variables in the Docker container.</p>
1218
1233
  */
1219
- Environment?: {
1220
- [key: string]: string;
1221
- };
1234
+ Environment?: Record<string, string>;
1222
1235
  /**
1223
1236
  * <p>Networking options for a job, such as network traffic encryption between containers,
1224
1237
  * whether to allow inbound and outbound network calls to and from containers, and the VPC
@@ -1332,9 +1345,7 @@ export interface ProfilerConfigForUpdate {
1332
1345
  * 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>.
1333
1346
  * </p>
1334
1347
  */
1335
- ProfilingParameters?: {
1336
- [key: string]: string;
1337
- };
1348
+ ProfilingParameters?: Record<string, string>;
1338
1349
  /**
1339
1350
  * <p>To disable Debugger monitoring and profiling, set to <code>True</code>.</p>
1340
1351
  */
@@ -1475,9 +1486,7 @@ export interface QueryFilters {
1475
1486
  * <p>Filter the lineage entities connected to the <code>StartArn</code>(s) by a set if property key value pairs.
1476
1487
  * If multiple pairs are provided, an entity is included in the results if it matches any of the provided pairs.</p>
1477
1488
  */
1478
- Properties?: {
1479
- [key: string]: string;
1480
- };
1489
+ Properties?: Record<string, string>;
1481
1490
  }
1482
1491
  export declare namespace QueryFilters {
1483
1492
  /**
@@ -1897,9 +1906,7 @@ export interface TrainingJob {
1897
1906
  /**
1898
1907
  * <p>Algorithm-specific parameters.</p>
1899
1908
  */
1900
- HyperParameters?: {
1901
- [key: string]: string;
1902
- };
1909
+ HyperParameters?: Record<string, string>;
1903
1910
  /**
1904
1911
  * <p>Information about the algorithm used for training, and algorithm metadata.</p>
1905
1912
  */
@@ -2047,9 +2054,7 @@ export interface TrainingJob {
2047
2054
  /**
2048
2055
  * <p>The environment variables to set in the Docker container.</p>
2049
2056
  */
2050
- Environment?: {
2051
- [key: string]: string;
2052
- };
2057
+ Environment?: Record<string, string>;
2053
2058
  /**
2054
2059
  * <p>The number of times to retry the job when the job fails due to an
2055
2060
  * <code>InternalServerError</code>.</p>
@@ -2248,9 +2253,7 @@ export interface TransformJob {
2248
2253
  * <p>The environment variables to set in the Docker container. We support up to 16 key and
2249
2254
  * values entries in the map.</p>
2250
2255
  */
2251
- Environment?: {
2252
- [key: string]: string;
2253
- };
2256
+ Environment?: Record<string, string>;
2254
2257
  /**
2255
2258
  * <p>Describes the input source of a transform job and the way the transform job consumes
2256
2259
  * it.</p>
@@ -2413,21 +2416,15 @@ export interface TrialComponent {
2413
2416
  /**
2414
2417
  * <p>The hyperparameters of the component.</p>
2415
2418
  */
2416
- Parameters?: {
2417
- [key: string]: TrialComponentParameterValue;
2418
- };
2419
+ Parameters?: Record<string, TrialComponentParameterValue>;
2419
2420
  /**
2420
2421
  * <p>The input artifacts of the component.</p>
2421
2422
  */
2422
- InputArtifacts?: {
2423
- [key: string]: TrialComponentArtifact;
2424
- };
2423
+ InputArtifacts?: Record<string, TrialComponentArtifact>;
2425
2424
  /**
2426
2425
  * <p>The output artifacts of the component.</p>
2427
2426
  */
2428
- OutputArtifacts?: {
2429
- [key: string]: TrialComponentArtifact;
2430
- };
2427
+ OutputArtifacts?: Record<string, TrialComponentArtifact>;
2431
2428
  /**
2432
2429
  * <p>The metrics for the component.</p>
2433
2430
  */
@@ -2849,9 +2846,7 @@ export interface UpdateActionRequest {
2849
2846
  /**
2850
2847
  * <p>The new list of properties. Overwrites the current property list.</p>
2851
2848
  */
2852
- Properties?: {
2853
- [key: string]: string;
2854
- };
2849
+ Properties?: Record<string, string>;
2855
2850
  /**
2856
2851
  * <p>A list of properties to remove.</p>
2857
2852
  */
@@ -2915,9 +2910,7 @@ export interface UpdateArtifactRequest {
2915
2910
  /**
2916
2911
  * <p>The new list of properties. Overwrites the current property list.</p>
2917
2912
  */
2918
- Properties?: {
2919
- [key: string]: string;
2920
- };
2913
+ Properties?: Record<string, string>;
2921
2914
  /**
2922
2915
  * <p>A list of properties to remove.</p>
2923
2916
  */
@@ -2988,9 +2981,7 @@ export interface UpdateContextRequest {
2988
2981
  /**
2989
2982
  * <p>The new list of properties. Overwrites the current property list.</p>
2990
2983
  */
2991
- Properties?: {
2992
- [key: string]: string;
2993
- };
2984
+ Properties?: Record<string, string>;
2994
2985
  /**
2995
2986
  * <p>A list of properties to remove.</p>
2996
2987
  */
@@ -3307,9 +3298,7 @@ export interface UpdateModelPackageInput {
3307
3298
  /**
3308
3299
  * <p>The metadata properties associated with the model package versions.</p>
3309
3300
  */
3310
- CustomerMetadataProperties?: {
3311
- [key: string]: string;
3312
- };
3301
+ CustomerMetadataProperties?: Record<string, string>;
3313
3302
  /**
3314
3303
  * <p>The metadata properties associated with the model package versions to remove.</p>
3315
3304
  */
@@ -3466,6 +3455,10 @@ export interface UpdateNotebookInstanceInput {
3466
3455
  * </note>
3467
3456
  */
3468
3457
  RootAccess?: RootAccess | string;
3458
+ /**
3459
+ * <p>Information on the IMDS configuration of the notebook instance</p>
3460
+ */
3461
+ InstanceMetadataServiceConfiguration?: InstanceMetadataServiceConfiguration;
3469
3462
  }
3470
3463
  export declare namespace UpdateNotebookInstanceInput {
3471
3464
  /**
@@ -3750,9 +3743,7 @@ export interface UpdateTrialComponentRequest {
3750
3743
  /**
3751
3744
  * <p>Replaces all of the component's hyperparameters with the specified hyperparameters.</p>
3752
3745
  */
3753
- Parameters?: {
3754
- [key: string]: TrialComponentParameterValue;
3755
- };
3746
+ Parameters?: Record<string, TrialComponentParameterValue>;
3756
3747
  /**
3757
3748
  * <p>The hyperparameters to remove from the component.</p>
3758
3749
  */
@@ -3760,9 +3751,7 @@ export interface UpdateTrialComponentRequest {
3760
3751
  /**
3761
3752
  * <p>Replaces all of the component's input artifacts with the specified artifacts.</p>
3762
3753
  */
3763
- InputArtifacts?: {
3764
- [key: string]: TrialComponentArtifact;
3765
- };
3754
+ InputArtifacts?: Record<string, TrialComponentArtifact>;
3766
3755
  /**
3767
3756
  * <p>The input artifacts to remove from the component.</p>
3768
3757
  */
@@ -3770,9 +3759,7 @@ export interface UpdateTrialComponentRequest {
3770
3759
  /**
3771
3760
  * <p>Replaces all of the component's output artifacts with the specified artifacts.</p>
3772
3761
  */
3773
- OutputArtifacts?: {
3774
- [key: string]: TrialComponentArtifact;
3775
- };
3762
+ OutputArtifacts?: Record<string, TrialComponentArtifact>;
3776
3763
  /**
3777
3764
  * <p>The output artifacts to remove from the component.</p>
3778
3765
  */
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListSubscribedWorkteamsRequest, ListSubscribedWorkteamsResponse } from "../models/models_2";
3
+ import { ListSubscribedWorkteamsRequest } from "../models/models_2";
4
+ import { ListSubscribedWorkteamsResponse } from "../models/models_3";
4
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  export interface ListSubscribedWorkteamsCommandInput extends ListSubscribedWorkteamsRequest {
6
7
  }
@@ -108,9 +108,7 @@ export interface ModelPackageContainerDefinition {
108
108
 
109
109
  ProductId?: string;
110
110
 
111
- Environment?: {
112
- [key: string]: string;
113
- };
111
+ Environment?: Record<string, string>;
114
112
 
115
113
  ModelInput?: ModelInput;
116
114
 
@@ -574,9 +572,7 @@ export interface TrainingJobDefinition {
574
572
 
575
573
  TrainingInputMode: TrainingInputMode | string | undefined;
576
574
 
577
- HyperParameters?: {
578
- [key: string]: string;
579
- };
575
+ HyperParameters?: Record<string, string>;
580
576
 
581
577
  InputDataConfig: Channel[] | undefined;
582
578
 
@@ -676,9 +672,7 @@ export interface TransformJobDefinition {
676
672
 
677
673
  BatchStrategy?: BatchStrategy | string;
678
674
 
679
- Environment?: {
680
- [key: string]: string;
681
- };
675
+ Environment?: Record<string, string>;
682
676
 
683
677
  TransformInput: TransformInput | undefined;
684
678
 
@@ -828,6 +822,14 @@ export declare enum AppInstanceType {
828
822
  ML_G4DN_4XLARGE = "ml.g4dn.4xlarge",
829
823
  ML_G4DN_8XLARGE = "ml.g4dn.8xlarge",
830
824
  ML_G4DN_XLARGE = "ml.g4dn.xlarge",
825
+ ML_G5_12XLARGE = "ml.g5.12xlarge",
826
+ ML_G5_16XLARGE = "ml.g5.16xlarge",
827
+ ML_G5_24XLARGE = "ml.g5.24xlarge",
828
+ ML_G5_2XLARGE = "ml.g5.2xlarge",
829
+ ML_G5_48XLARGE = "ml.g5.48xlarge",
830
+ ML_G5_4XLARGE = "ml.g5.4xlarge",
831
+ ML_G5_8XLARGE = "ml.g5.8xlarge",
832
+ ML_G5_XLARGE = "ml.g5.xlarge",
831
833
  ML_M5D_12XLARGE = "ml.m5d.12xlarge",
832
834
  ML_M5D_16XLARGE = "ml.m5d.16xlarge",
833
835
  ML_M5D_24XLARGE = "ml.m5d.24xlarge",
@@ -1190,9 +1192,7 @@ export interface AutoMLContainerDefinition {
1190
1192
 
1191
1193
  ModelDataUrl: string | undefined;
1192
1194
 
1193
- Environment?: {
1194
- [key: string]: string;
1195
- };
1195
+ Environment?: Record<string, string>;
1196
1196
  }
1197
1197
  export declare namespace AutoMLContainerDefinition {
1198
1198
 
@@ -1533,13 +1533,9 @@ export declare namespace BatchDescribeModelPackageSummary {
1533
1533
  }
1534
1534
  export interface BatchDescribeModelPackageOutput {
1535
1535
 
1536
- ModelPackageSummaries?: {
1537
- [key: string]: BatchDescribeModelPackageSummary;
1538
- };
1536
+ ModelPackageSummaries?: Record<string, BatchDescribeModelPackageSummary>;
1539
1537
 
1540
- BatchDescribeModelPackageErrorMap?: {
1541
- [key: string]: BatchDescribeModelPackageError;
1542
- };
1538
+ BatchDescribeModelPackageErrorMap?: Record<string, BatchDescribeModelPackageError>;
1543
1539
  }
1544
1540
  export declare namespace BatchDescribeModelPackageOutput {
1545
1541
 
@@ -1841,9 +1837,7 @@ export interface CollectionConfiguration {
1841
1837
 
1842
1838
  CollectionName?: string;
1843
1839
 
1844
- CollectionParameters?: {
1845
- [key: string]: string;
1846
- };
1840
+ CollectionParameters?: Record<string, string>;
1847
1841
  }
1848
1842
  export declare namespace CollectionConfiguration {
1849
1843
 
@@ -2012,9 +2006,7 @@ export interface ContainerDefinition {
2012
2006
 
2013
2007
  ModelDataUrl?: string;
2014
2008
 
2015
- Environment?: {
2016
- [key: string]: string;
2017
- };
2009
+ Environment?: Record<string, string>;
2018
2010
 
2019
2011
  ModelPackageName?: string;
2020
2012
 
@@ -2121,9 +2113,7 @@ export interface CreateActionRequest {
2121
2113
 
2122
2114
  Status?: ActionStatus | string;
2123
2115
 
2124
- Properties?: {
2125
- [key: string]: string;
2126
- };
2116
+ Properties?: Record<string, string>;
2127
2117
 
2128
2118
  MetadataProperties?: MetadataProperties;
2129
2119
 
@@ -2335,9 +2325,7 @@ export interface CreateArtifactRequest {
2335
2325
 
2336
2326
  ArtifactType: string | undefined;
2337
2327
 
2338
- Properties?: {
2339
- [key: string]: string;
2340
- };
2328
+ Properties?: Record<string, string>;
2341
2329
 
2342
2330
  MetadataProperties?: MetadataProperties;
2343
2331
 
@@ -2532,9 +2520,7 @@ export interface CreateContextRequest {
2532
2520
 
2533
2521
  Description?: string;
2534
2522
 
2535
- Properties?: {
2536
- [key: string]: string;
2537
- };
2523
+ Properties?: Record<string, string>;
2538
2524
 
2539
2525
  Tags?: Tag[];
2540
2526
  }
@@ -2563,9 +2549,7 @@ export interface DataQualityAppSpecification {
2563
2549
 
2564
2550
  PostAnalyticsProcessorSourceUri?: string;
2565
2551
 
2566
- Environment?: {
2567
- [key: string]: string;
2568
- };
2552
+ Environment?: Record<string, string>;
2569
2553
  }
2570
2554
  export declare namespace DataQualityAppSpecification {
2571
2555
 
@@ -3557,9 +3541,7 @@ export interface HyperParameterTrainingJobDefinition {
3557
3541
 
3558
3542
  HyperParameterRanges?: ParameterRanges;
3559
3543
 
3560
- StaticHyperParameters?: {
3561
- [key: string]: string;
3562
- };
3544
+ StaticHyperParameters?: Record<string, string>;
3563
3545
 
3564
3546
  AlgorithmSpecification: HyperParameterAlgorithmSpecification | undefined;
3565
3547
 
@@ -403,9 +403,7 @@ export interface ModelBiasAppSpecification {
403
403
 
404
404
  ConfigUri: string | undefined;
405
405
 
406
- Environment?: {
407
- [key: string]: string;
408
- };
406
+ Environment?: Record<string, string>;
409
407
  }
410
408
  export declare namespace ModelBiasAppSpecification {
411
409
 
@@ -483,9 +481,7 @@ export interface ModelExplainabilityAppSpecification {
483
481
 
484
482
  ConfigUri: string | undefined;
485
483
 
486
- Environment?: {
487
- [key: string]: string;
488
- };
484
+ Environment?: Record<string, string>;
489
485
  }
490
486
  export declare namespace ModelExplainabilityAppSpecification {
491
487
 
@@ -733,9 +729,7 @@ export interface CreateModelPackageInput {
733
729
 
734
730
  ClientToken?: string;
735
731
 
736
- CustomerMetadataProperties?: {
737
- [key: string]: string;
738
- };
732
+ CustomerMetadataProperties?: Record<string, string>;
739
733
 
740
734
  DriftCheckBaselines?: DriftCheckBaselines;
741
735
 
@@ -799,9 +793,7 @@ export interface ModelQualityAppSpecification {
799
793
 
800
794
  ProblemType?: MonitoringProblemType | string;
801
795
 
802
- Environment?: {
803
- [key: string]: string;
804
- };
796
+ Environment?: Record<string, string>;
805
797
  }
806
798
  export declare namespace ModelQualityAppSpecification {
807
799
 
@@ -930,9 +922,7 @@ export interface MonitoringJobDefinition {
930
922
 
931
923
  StoppingCondition?: MonitoringStoppingCondition;
932
924
 
933
- Environment?: {
934
- [key: string]: string;
935
- };
925
+ Environment?: Record<string, string>;
936
926
 
937
927
  NetworkConfig?: NetworkConfig;
938
928
 
@@ -1004,6 +994,15 @@ export declare enum DirectInternetAccess {
1004
994
  DISABLED = "Disabled",
1005
995
  ENABLED = "Enabled"
1006
996
  }
997
+
998
+ export interface InstanceMetadataServiceConfiguration {
999
+
1000
+ MinimumInstanceMetadataServiceVersion: string | undefined;
1001
+ }
1002
+ export declare namespace InstanceMetadataServiceConfiguration {
1003
+
1004
+ const filterSensitiveLog: (obj: InstanceMetadataServiceConfiguration) => any;
1005
+ }
1007
1006
  export declare enum _InstanceType {
1008
1007
  ML_C4_2XLARGE = "ml.c4.2xlarge",
1009
1008
  ML_C4_4XLARGE = "ml.c4.4xlarge",
@@ -1110,6 +1109,8 @@ export interface CreateNotebookInstanceInput {
1110
1109
  RootAccess?: RootAccess | string;
1111
1110
 
1112
1111
  PlatformIdentifier?: string;
1112
+
1113
+ InstanceMetadataServiceConfiguration?: InstanceMetadataServiceConfiguration;
1113
1114
  }
1114
1115
  export declare namespace CreateNotebookInstanceInput {
1115
1116
 
@@ -1457,9 +1458,7 @@ export interface CreateProcessingJobRequest {
1457
1458
 
1458
1459
  AppSpecification: AppSpecification | undefined;
1459
1460
 
1460
- Environment?: {
1461
- [key: string]: string;
1462
- };
1461
+ Environment?: Record<string, string>;
1463
1462
 
1464
1463
  NetworkConfig?: NetworkConfig;
1465
1464
 
@@ -1564,9 +1563,7 @@ export interface DebugHookConfig {
1564
1563
 
1565
1564
  S3OutputPath: string | undefined;
1566
1565
 
1567
- HookParameters?: {
1568
- [key: string]: string;
1569
- };
1566
+ HookParameters?: Record<string, string>;
1570
1567
 
1571
1568
  CollectionConfigurations?: CollectionConfiguration[];
1572
1569
  }
@@ -1589,9 +1586,7 @@ export interface DebugRuleConfiguration {
1589
1586
 
1590
1587
  VolumeSizeInGB?: number;
1591
1588
 
1592
- RuleParameters?: {
1593
- [key: string]: string;
1594
- };
1589
+ RuleParameters?: Record<string, string>;
1595
1590
  }
1596
1591
  export declare namespace DebugRuleConfiguration {
1597
1592
 
@@ -1604,9 +1599,7 @@ export interface ProfilerConfig {
1604
1599
 
1605
1600
  ProfilingIntervalInMilliseconds?: number;
1606
1601
 
1607
- ProfilingParameters?: {
1608
- [key: string]: string;
1609
- };
1602
+ ProfilingParameters?: Record<string, string>;
1610
1603
  }
1611
1604
  export declare namespace ProfilerConfig {
1612
1605
 
@@ -1627,9 +1620,7 @@ export interface ProfilerRuleConfiguration {
1627
1620
 
1628
1621
  VolumeSizeInGB?: number;
1629
1622
 
1630
- RuleParameters?: {
1631
- [key: string]: string;
1632
- };
1623
+ RuleParameters?: Record<string, string>;
1633
1624
  }
1634
1625
  export declare namespace ProfilerRuleConfiguration {
1635
1626
 
@@ -1650,9 +1641,7 @@ export interface CreateTrainingJobRequest {
1650
1641
 
1651
1642
  TrainingJobName: string | undefined;
1652
1643
 
1653
- HyperParameters?: {
1654
- [key: string]: string;
1655
- };
1644
+ HyperParameters?: Record<string, string>;
1656
1645
 
1657
1646
  AlgorithmSpecification: AlgorithmSpecification | undefined;
1658
1647
 
@@ -1690,9 +1679,7 @@ export interface CreateTrainingJobRequest {
1690
1679
 
1691
1680
  ProfilerRuleConfigurations?: ProfilerRuleConfiguration[];
1692
1681
 
1693
- Environment?: {
1694
- [key: string]: string;
1695
- };
1682
+ Environment?: Record<string, string>;
1696
1683
 
1697
1684
  RetryStrategy?: RetryStrategy;
1698
1685
  }
@@ -1750,9 +1737,7 @@ export interface CreateTransformJobRequest {
1750
1737
 
1751
1738
  BatchStrategy?: BatchStrategy | string;
1752
1739
 
1753
- Environment?: {
1754
- [key: string]: string;
1755
- };
1740
+ Environment?: Record<string, string>;
1756
1741
 
1757
1742
  TransformInput: TransformInput | undefined;
1758
1743
 
@@ -1875,17 +1860,11 @@ export interface CreateTrialComponentRequest {
1875
1860
 
1876
1861
  EndTime?: Date;
1877
1862
 
1878
- Parameters?: {
1879
- [key: string]: TrialComponentParameterValue;
1880
- };
1863
+ Parameters?: Record<string, TrialComponentParameterValue>;
1881
1864
 
1882
- InputArtifacts?: {
1883
- [key: string]: TrialComponentArtifact;
1884
- };
1865
+ InputArtifacts?: Record<string, TrialComponentArtifact>;
1885
1866
 
1886
- OutputArtifacts?: {
1887
- [key: string]: TrialComponentArtifact;
1888
- };
1867
+ OutputArtifacts?: Record<string, TrialComponentArtifact>;
1889
1868
 
1890
1869
  MetadataProperties?: MetadataProperties;
1891
1870
 
@@ -2574,9 +2553,7 @@ export interface DescribeActionResponse {
2574
2553
 
2575
2554
  Status?: ActionStatus | string;
2576
2555
 
2577
- Properties?: {
2578
- [key: string]: string;
2579
- };
2556
+ Properties?: Record<string, string>;
2580
2557
 
2581
2558
  CreationTime?: Date;
2582
2559
 
@@ -2714,9 +2691,7 @@ export interface DescribeArtifactResponse {
2714
2691
 
2715
2692
  ArtifactType?: string;
2716
2693
 
2717
- Properties?: {
2718
- [key: string]: string;
2719
- };
2694
+ Properties?: Record<string, string>;
2720
2695
 
2721
2696
  CreationTime?: Date;
2722
2697
 
@@ -2922,9 +2897,7 @@ export interface DescribeContextResponse {
2922
2897
 
2923
2898
  Description?: string;
2924
2899
 
2925
- Properties?: {
2926
- [key: string]: string;
2927
- };
2900
+ Properties?: Record<string, string>;
2928
2901
 
2929
2902
  CreationTime?: Date;
2930
2903
 
@@ -3594,9 +3567,7 @@ export interface HyperParameterTrainingJobSummary {
3594
3567
 
3595
3568
  TrainingJobStatus: TrainingJobStatus | string | undefined;
3596
3569
 
3597
- TunedHyperParameters: {
3598
- [key: string]: string;
3599
- } | undefined;
3570
+ TunedHyperParameters: Record<string, string> | undefined;
3600
3571
 
3601
3572
  FailureReason?: string;
3602
3573
 
@@ -3886,20 +3857,3 @@ export declare namespace DescribeLabelingJobRequest {
3886
3857
 
3887
3858
  const filterSensitiveLog: (obj: DescribeLabelingJobRequest) => any;
3888
3859
  }
3889
-
3890
- export interface LabelCounters {
3891
-
3892
- TotalLabeled?: number;
3893
-
3894
- HumanLabeled?: number;
3895
-
3896
- MachineLabeled?: number;
3897
-
3898
- FailedNonRetryableError?: number;
3899
-
3900
- Unlabeled?: number;
3901
- }
3902
- export declare namespace LabelCounters {
3903
-
3904
- const filterSensitiveLog: (obj: LabelCounters) => any;
3905
- }