@aws-sdk/client-sagemaker 3.1071.0 → 3.1073.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist-cjs/index.js +7 -0
  2. package/dist-cjs/schemas/schemas_0.js +58 -21
  3. package/dist-es/models/enums.js +6 -0
  4. package/dist-es/schemas/schemas_0.js +54 -21
  5. package/dist-types/commands/CreateClusterCommand.d.ts +26 -4
  6. package/dist-types/commands/DescribeClusterCommand.d.ts +32 -9
  7. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +3 -1
  8. package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +2 -1
  9. package/dist-types/commands/DescribeImageCommand.d.ts +1 -1
  10. package/dist-types/commands/ListClusterNodesCommand.d.ts +2 -1
  11. package/dist-types/commands/ListClustersCommand.d.ts +1 -0
  12. package/dist-types/commands/ListInferenceComponentsCommand.d.ts +1 -1
  13. package/dist-types/commands/ListInferenceExperimentsCommand.d.ts +1 -1
  14. package/dist-types/commands/UpdateClusterCommand.d.ts +26 -4
  15. package/dist-types/commands/UpdateClusterSoftwareCommand.d.ts +1 -0
  16. package/dist-types/commands/UpdateModelPackageCommand.d.ts +2 -1
  17. package/dist-types/commands/UpdateMonitoringAlertCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateMonitoringScheduleCommand.d.ts +1 -2
  19. package/dist-types/models/enums.d.ts +14 -0
  20. package/dist-types/models/models_0.d.ts +152 -157
  21. package/dist-types/models/models_1.d.ts +121 -56
  22. package/dist-types/models/models_2.d.ts +57 -174
  23. package/dist-types/models/models_3.d.ts +175 -159
  24. package/dist-types/models/models_4.d.ts +164 -69
  25. package/dist-types/models/models_5.d.ts +66 -1
  26. package/dist-types/schemas/schemas_0.d.ts +4 -0
  27. package/dist-types/ts3.4/commands/DescribeHyperParameterTuningJobCommand.d.ts +2 -4
  28. package/dist-types/ts3.4/commands/DescribeImageCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/commands/ListInferenceExperimentsCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/UpdateModelPackageCommand.d.ts +2 -4
  32. package/dist-types/ts3.4/commands/UpdateMonitoringAlertCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/UpdateMonitoringScheduleCommand.d.ts +4 -2
  34. package/dist-types/ts3.4/models/enums.d.ts +8 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +36 -43
  36. package/dist-types/ts3.4/models/models_1.d.ts +31 -15
  37. package/dist-types/ts3.4/models/models_2.d.ts +16 -50
  38. package/dist-types/ts3.4/models/models_3.d.ts +43 -40
  39. package/dist-types/ts3.4/models/models_4.d.ts +44 -18
  40. package/dist-types/ts3.4/models/models_5.d.ts +18 -0
  41. package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
  42. package/package.json +1 -1
@@ -1,9 +1,74 @@
1
1
  import type { _InstanceType, BooleanOperator, CrossAccountFilterOption, IPAddressType, NotebookInstanceAcceleratorType, ResourceType, RootAccess, SearchSortOrder, WorkforceIpAddressType } from "./enums";
2
2
  import type { CfnUpdateTemplateProvider, Tag } from "./models_0";
3
- import type { InstanceMetadataServiceConfiguration, NotebookInstanceLifecycleHook, UserSettings } from "./models_1";
3
+ import type { InstanceMetadataServiceConfiguration, MonitoringScheduleConfig, NotebookInstanceLifecycleHook, UserSettings } from "./models_1";
4
4
  import type { MemberDefinition, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PartnerAppConfig, PartnerAppMaintenanceConfig, PipelineDefinitionS3Location, ProfilerRuleConfiguration, ProvisioningParameter, SourceIpConfig, SpaceSettings, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceVpcConfigRequest } from "./models_2";
5
5
  import type { Filter, Workforce, Workteam } from "./models_3";
6
6
  import type { NestedFilters, ProfilerConfigForUpdate, RemoteDebugConfigForUpdate, ResourceConfigForUpdate, VisibilityConditions } from "./models_4";
7
+ /**
8
+ * @public
9
+ */
10
+ export interface UpdateModelPackageOutput {
11
+ /**
12
+ * <p>The Amazon Resource Name (ARN) of the model.</p>
13
+ * @public
14
+ */
15
+ ModelPackageArn: string | undefined;
16
+ }
17
+ /**
18
+ * @public
19
+ */
20
+ export interface UpdateMonitoringAlertRequest {
21
+ /**
22
+ * <p>The name of a monitoring schedule.</p>
23
+ * @public
24
+ */
25
+ MonitoringScheduleName: string | undefined;
26
+ /**
27
+ * <p>The name of a monitoring alert.</p>
28
+ * @public
29
+ */
30
+ MonitoringAlertName: string | undefined;
31
+ /**
32
+ * <p>Within <code>EvaluationPeriod</code>, how many execution failures will raise an alert.</p>
33
+ * @public
34
+ */
35
+ DatapointsToAlert: number | undefined;
36
+ /**
37
+ * <p>The number of most recent monitoring executions to consider when evaluating alert status.</p>
38
+ * @public
39
+ */
40
+ EvaluationPeriod: number | undefined;
41
+ }
42
+ /**
43
+ * @public
44
+ */
45
+ export interface UpdateMonitoringAlertResponse {
46
+ /**
47
+ * <p>The Amazon Resource Name (ARN) of the monitoring schedule.</p>
48
+ * @public
49
+ */
50
+ MonitoringScheduleArn: string | undefined;
51
+ /**
52
+ * <p>The name of a monitoring alert.</p>
53
+ * @public
54
+ */
55
+ MonitoringAlertName?: string | undefined;
56
+ }
57
+ /**
58
+ * @public
59
+ */
60
+ export interface UpdateMonitoringScheduleRequest {
61
+ /**
62
+ * <p>The name of the monitoring schedule. The name must be unique within an Amazon Web Services Region within an Amazon Web Services account.</p>
63
+ * @public
64
+ */
65
+ MonitoringScheduleName: string | undefined;
66
+ /**
67
+ * <p>The configuration object that specifies the monitoring schedule and defines the monitoring job.</p>
68
+ * @public
69
+ */
70
+ MonitoringScheduleConfig: MonitoringScheduleConfig | undefined;
71
+ }
7
72
  /**
8
73
  * @public
9
74
  */
@@ -166,6 +166,8 @@ export declare var ClarifyInferenceConfig$: StaticStructureSchema;
166
166
  export declare var ClarifyShapBaselineConfig$: StaticStructureSchema;
167
167
  export declare var ClarifyShapConfig$: StaticStructureSchema;
168
168
  export declare var ClarifyTextConfig$: StaticStructureSchema;
169
+ export declare var ClusterAutoPatchConfig$: StaticStructureSchema;
170
+ export declare var ClusterAutoPatchConfigDetails$: StaticStructureSchema;
169
171
  export declare var ClusterAutoScalingConfig$: StaticStructureSchema;
170
172
  export declare var ClusterAutoScalingConfigOutput$: StaticStructureSchema;
171
173
  export declare var ClusterCapacityRequirements$: StaticStructureSchema;
@@ -195,6 +197,8 @@ export declare var ClusterOnDemandOptions$: StaticStructureSchema;
195
197
  export declare var ClusterOrchestrator$: StaticStructureSchema;
196
198
  export declare var ClusterOrchestratorEksConfig$: StaticStructureSchema;
197
199
  export declare var ClusterOrchestratorSlurmConfig$: StaticStructureSchema;
200
+ export declare var ClusterPatchSchedule$: StaticStructureSchema;
201
+ export declare var ClusterPatchScheduleDetails$: StaticStructureSchema;
198
202
  export declare var ClusterRestrictedInstanceGroupDetails$: StaticStructureSchema;
199
203
  export declare var ClusterRestrictedInstanceGroupsConfig$: StaticStructureSchema;
200
204
  export declare var ClusterRestrictedInstanceGroupsConfigOutput$: StaticStructureSchema;
@@ -1,9 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DescribeHyperParameterTuningJobRequest,
5
- DescribeHyperParameterTuningJobResponse,
6
- } from "../models/models_2";
3
+ import { DescribeHyperParameterTuningJobRequest } from "../models/models_2";
4
+ import { DescribeHyperParameterTuningJobResponse } from "../models/models_3";
7
5
  import {
8
6
  SageMakerClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  DescribeImageRequest,
5
5
  DescribeImageResponse,
6
- } from "../models/models_2";
6
+ } from "../models/models_3";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  ListInferenceComponentsInput,
5
5
  ListInferenceComponentsOutput,
6
- } from "../models/models_3";
6
+ } from "../models/models_4";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  ListInferenceExperimentsRequest,
5
5
  ListInferenceExperimentsResponse,
6
- } from "../models/models_3";
6
+ } from "../models/models_4";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -1,9 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- UpdateModelPackageInput,
5
- UpdateModelPackageOutput,
6
- } from "../models/models_4";
3
+ import { UpdateModelPackageInput } from "../models/models_4";
4
+ import { UpdateModelPackageOutput } from "../models/models_5";
7
5
  import {
8
6
  SageMakerClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  UpdateMonitoringAlertRequest,
5
5
  UpdateMonitoringAlertResponse,
6
- } from "../models/models_4";
6
+ } from "../models/models_5";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -1,7 +1,9 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { UpdateMonitoringScheduleRequest } from "../models/models_4";
4
- import { UpdateMonitoringScheduleResponse } from "../models/models_5";
3
+ import {
4
+ UpdateMonitoringScheduleRequest,
5
+ UpdateMonitoringScheduleResponse,
6
+ } from "../models/models_5";
5
7
  import {
6
8
  SageMakerClientResolvedConfig,
7
9
  ServiceInputTypes,
@@ -1645,6 +1645,12 @@ export declare const ClarifyTextLanguage: {
1645
1645
  };
1646
1646
  export type ClarifyTextLanguage =
1647
1647
  (typeof ClarifyTextLanguage)[keyof typeof ClarifyTextLanguage];
1648
+ export declare const ClusterPatchingStrategy: {
1649
+ readonly WHEN_ALL_IDLE: "WhenAllIdle";
1650
+ readonly WHEN_IDLE: "WhenIdle";
1651
+ };
1652
+ export type ClusterPatchingStrategy =
1653
+ (typeof ClusterPatchingStrategy)[keyof typeof ClusterPatchingStrategy];
1648
1654
  export declare const ClusterAutoScalerType: {
1649
1655
  readonly KARPENTER: "Karpenter";
1650
1656
  };
@@ -1697,6 +1703,8 @@ export declare const ClusterFSxLustreDeletionPolicy: {
1697
1703
  export type ClusterFSxLustreDeletionPolicy =
1698
1704
  (typeof ClusterFSxLustreDeletionPolicy)[keyof typeof ClusterFSxLustreDeletionPolicy];
1699
1705
  export declare const ClusterImageVersionStatus: {
1706
+ readonly END_OF_LIFE: "EndOfLife";
1707
+ readonly SECURITY_UPDATE_REQUIRED: "SecurityUpdateRequired";
1700
1708
  readonly UPDATE_AVAILABLE: "UpdateAvailable";
1701
1709
  readonly UP_TO_DATE: "UpToDate";
1702
1710
  };
@@ -57,10 +57,10 @@ import {
57
57
  ClusterInstanceType,
58
58
  ClusterInterfaceType,
59
59
  ClusterKubernetesTaintEffect,
60
+ ClusterPatchingStrategy,
60
61
  ClusterSlurmConfigStrategy,
61
62
  ClusterSlurmNodeType,
62
63
  ClusterStatus,
63
- CompilationJobStatus,
64
64
  CompressionType,
65
65
  DataSourceName,
66
66
  DeepHealthCheckType,
@@ -80,23 +80,17 @@ import {
80
80
  NodeUnavailabilityType,
81
81
  ObjectiveStatus,
82
82
  OutputCompressionType,
83
- PreemptTeamTasks,
84
83
  ProblemType,
85
84
  ProcessingS3DataDistributionType,
86
85
  ProcessingS3InputMode,
87
86
  ProductionVariantInstanceType,
88
87
  RecordWrapper,
89
- ResourceSharingStrategy,
90
88
  S3DataDistribution,
91
89
  S3DataType,
92
90
  S3ModelDataType,
93
91
  SchedulerResourceStatus,
94
92
  SoftwareUpdateStatus,
95
93
  SplitType,
96
- TargetDevice,
97
- TargetPlatformAccelerator,
98
- TargetPlatformArch,
99
- TargetPlatformOs,
100
94
  TrafficRoutingConfigType,
101
95
  TrainingInputMode,
102
96
  TrainingInstanceType,
@@ -1431,6 +1425,32 @@ export interface ClarifyExplainerConfig {
1431
1425
  InferenceConfig?: ClarifyInferenceConfig | undefined;
1432
1426
  ShapConfig: ClarifyShapConfig | undefined;
1433
1427
  }
1428
+ export interface RollingDeploymentPolicy {
1429
+ MaximumBatchSize: CapacitySizeConfig | undefined;
1430
+ RollbackMaximumBatchSize?: CapacitySizeConfig | undefined;
1431
+ }
1432
+ export interface DeploymentConfiguration {
1433
+ RollingUpdatePolicy?: RollingDeploymentPolicy | undefined;
1434
+ WaitIntervalInSeconds?: number | undefined;
1435
+ AutoRollbackConfiguration?: AlarmDetails[] | undefined;
1436
+ }
1437
+ export interface ClusterPatchSchedule {
1438
+ NextPatchDate?: Date | undefined;
1439
+ }
1440
+ export interface ClusterAutoPatchConfig {
1441
+ PatchingStrategy: ClusterPatchingStrategy | undefined;
1442
+ PatchSchedule?: ClusterPatchSchedule | undefined;
1443
+ DeploymentConfig?: DeploymentConfiguration | undefined;
1444
+ }
1445
+ export interface ClusterPatchScheduleDetails {
1446
+ NextPatchDate?: Date | undefined;
1447
+ }
1448
+ export interface ClusterAutoPatchConfigDetails {
1449
+ PatchingStrategy?: ClusterPatchingStrategy | undefined;
1450
+ CurrentPatchSchedule?: ClusterPatchScheduleDetails | undefined;
1451
+ DesiredPatchSchedule?: ClusterPatchScheduleDetails | undefined;
1452
+ DeploymentConfig?: DeploymentConfiguration | undefined;
1453
+ }
1434
1454
  export interface ClusterAutoScalingConfig {
1435
1455
  Mode: ClusterAutoScalingMode | undefined;
1436
1456
  AutoScalerType?: ClusterAutoScalerType | undefined;
@@ -1571,15 +1591,6 @@ export interface ClusterFsxOpenZfsConfig {
1571
1591
  DnsName: string | undefined;
1572
1592
  MountPath?: string | undefined;
1573
1593
  }
1574
- export interface RollingDeploymentPolicy {
1575
- MaximumBatchSize: CapacitySizeConfig | undefined;
1576
- RollbackMaximumBatchSize?: CapacitySizeConfig | undefined;
1577
- }
1578
- export interface DeploymentConfiguration {
1579
- RollingUpdatePolicy?: RollingDeploymentPolicy | undefined;
1580
- WaitIntervalInSeconds?: number | undefined;
1581
- AutoRollbackConfiguration?: AlarmDetails[] | undefined;
1582
- }
1583
1594
  export interface ClusterInstanceRequirementDetails {
1584
1595
  CurrentInstanceTypes?: ClusterInstanceType[] | undefined;
1585
1596
  DesiredInstanceTypes?: ClusterInstanceType[] | undefined;
@@ -1671,8 +1682,11 @@ export interface ClusterInstanceGroupDetails {
1671
1682
  TrainingPlanStatus?: string | undefined;
1672
1683
  OverrideVpcConfig?: VpcConfig | undefined;
1673
1684
  ScheduledUpdateConfig?: ScheduledUpdateConfig | undefined;
1685
+ AutoPatchConfig?: ClusterAutoPatchConfigDetails | undefined;
1674
1686
  CurrentImageId?: string | undefined;
1675
1687
  DesiredImageId?: string | undefined;
1688
+ CurrentImageReleaseVersion?: string | undefined;
1689
+ DesiredImageReleaseVersion?: string | undefined;
1676
1690
  ImageVersionStatus?: ClusterImageVersionStatus | undefined;
1677
1691
  ActiveOperations?:
1678
1692
  | Partial<Record<ActiveClusterOperationName, number>>
@@ -1714,6 +1728,8 @@ export interface ClusterInstanceGroupSpecification {
1714
1728
  OverrideVpcConfig?: VpcConfig | undefined;
1715
1729
  ScheduledUpdateConfig?: ScheduledUpdateConfig | undefined;
1716
1730
  ImageId?: string | undefined;
1731
+ AutoPatchConfig?: ClusterAutoPatchConfig | undefined;
1732
+ ImageReleaseVersion?: string | undefined;
1717
1733
  KubernetesConfig?: ClusterKubernetesConfig | undefined;
1718
1734
  SlurmConfig?: ClusterSlurmConfig | undefined;
1719
1735
  CapacityRequirements?: ClusterCapacityRequirements | undefined;
@@ -1755,6 +1771,8 @@ export interface ClusterNodeDetails {
1755
1771
  Placement?: ClusterInstancePlacement | undefined;
1756
1772
  CurrentImageId?: string | undefined;
1757
1773
  DesiredImageId?: string | undefined;
1774
+ CurrentImageReleaseVersion?: string | undefined;
1775
+ DesiredImageReleaseVersion?: string | undefined;
1758
1776
  ImageVersionStatus?: ClusterImageVersionStatus | undefined;
1759
1777
  UltraServerInfo?: UltraServerInfo | undefined;
1760
1778
  KubernetesConfig?: ClusterKubernetesConfigNodeDetails | undefined;
@@ -1771,6 +1789,7 @@ export interface ClusterNodeSummary {
1771
1789
  InstanceStatus: ClusterInstanceStatusDetails | undefined;
1772
1790
  UltraServerInfo?: UltraServerInfo | undefined;
1773
1791
  PrivateDnsHostname?: string | undefined;
1792
+ CurrentImageReleaseVersion?: string | undefined;
1774
1793
  ImageVersionStatus?: ClusterImageVersionStatus | undefined;
1775
1794
  }
1776
1795
  export interface ClusterOrchestratorEksConfig {
@@ -1855,6 +1874,7 @@ export interface ClusterSummary {
1855
1874
  CreationTime: Date | undefined;
1856
1875
  ClusterStatus: ClusterStatus | undefined;
1857
1876
  TrainingPlanArns?: string[] | undefined;
1877
+ ImageVersionStatus?: ClusterImageVersionStatus | undefined;
1858
1878
  }
1859
1879
  export interface ClusterTieredStorageConfig {
1860
1880
  Mode: ClusterConfigMode | undefined;
@@ -1916,30 +1936,3 @@ export declare namespace CollectionConfig {
1916
1936
  _: (name: string, value: any) => T;
1917
1937
  }
1918
1938
  }
1919
- export interface CollectionConfiguration {
1920
- CollectionName?: string | undefined;
1921
- CollectionParameters?: Record<string, string> | undefined;
1922
- }
1923
- export interface CompilationJobSummary {
1924
- CompilationJobName: string | undefined;
1925
- CompilationJobArn: string | undefined;
1926
- CreationTime: Date | undefined;
1927
- CompilationStartTime?: Date | undefined;
1928
- CompilationEndTime?: Date | undefined;
1929
- CompilationTargetDevice?: TargetDevice | undefined;
1930
- CompilationTargetPlatformOs?: TargetPlatformOs | undefined;
1931
- CompilationTargetPlatformArch?: TargetPlatformArch | undefined;
1932
- CompilationTargetPlatformAccelerator?: TargetPlatformAccelerator | undefined;
1933
- LastModifiedTime?: Date | undefined;
1934
- CompilationJobStatus: CompilationJobStatus | undefined;
1935
- }
1936
- export interface ResourceSharingConfig {
1937
- Strategy: ResourceSharingStrategy | undefined;
1938
- BorrowLimit?: number | undefined;
1939
- AbsoluteBorrowLimits?: ComputeQuotaResourceConfig[] | undefined;
1940
- }
1941
- export interface ComputeQuotaConfig {
1942
- ComputeQuotaResources?: ComputeQuotaResourceConfig[] | undefined;
1943
- ResourceSharingConfig?: ResourceSharingConfig | undefined;
1944
- PreemptTeamTasks?: PreemptTeamTasks | undefined;
1945
- }
@@ -16,6 +16,7 @@ import {
16
16
  ClusterNodeProvisioningMode,
17
17
  ClusterNodeRecovery,
18
18
  CollectionType,
19
+ CompilationJobStatus,
19
20
  CompleteOnConvergence,
20
21
  ConditionOutcome,
21
22
  ContainerMode,
@@ -61,6 +62,7 @@ import {
61
62
  NotebookInstanceAcceleratorType,
62
63
  NotebookOutputOption,
63
64
  ParameterType,
65
+ PreemptTeamTasks,
64
66
  ProblemType,
65
67
  ProcessingInstanceType,
66
68
  ProcessingS3DataDistributionType,
@@ -73,6 +75,7 @@ import {
73
75
  RecommendationJobSupportedEndpointType,
74
76
  RecommendationJobType,
75
77
  RepositoryAccessMode,
78
+ ResourceSharingStrategy,
76
79
  RootAccess,
77
80
  RoutingStrategy,
78
81
  RStudioServerProAccessStatus,
@@ -156,7 +159,7 @@ import {
156
159
  CodeEditorAppSettings,
157
160
  CodeRepository,
158
161
  CollectionConfig,
159
- ComputeQuotaConfig,
162
+ ComputeQuotaResourceConfig,
160
163
  CustomImage,
161
164
  GitConfig,
162
165
  InferenceSpecification,
@@ -173,6 +176,33 @@ import {
173
176
  TransformJobDefinition,
174
177
  VpcConfig,
175
178
  } from "./models_0";
179
+ export interface CollectionConfiguration {
180
+ CollectionName?: string | undefined;
181
+ CollectionParameters?: Record<string, string> | undefined;
182
+ }
183
+ export interface CompilationJobSummary {
184
+ CompilationJobName: string | undefined;
185
+ CompilationJobArn: string | undefined;
186
+ CreationTime: Date | undefined;
187
+ CompilationStartTime?: Date | undefined;
188
+ CompilationEndTime?: Date | undefined;
189
+ CompilationTargetDevice?: TargetDevice | undefined;
190
+ CompilationTargetPlatformOs?: TargetPlatformOs | undefined;
191
+ CompilationTargetPlatformArch?: TargetPlatformArch | undefined;
192
+ CompilationTargetPlatformAccelerator?: TargetPlatformAccelerator | undefined;
193
+ LastModifiedTime?: Date | undefined;
194
+ CompilationJobStatus: CompilationJobStatus | undefined;
195
+ }
196
+ export interface ResourceSharingConfig {
197
+ Strategy: ResourceSharingStrategy | undefined;
198
+ BorrowLimit?: number | undefined;
199
+ AbsoluteBorrowLimits?: ComputeQuotaResourceConfig[] | undefined;
200
+ }
201
+ export interface ComputeQuotaConfig {
202
+ ComputeQuotaResources?: ComputeQuotaResourceConfig[] | undefined;
203
+ ResourceSharingConfig?: ResourceSharingConfig | undefined;
204
+ PreemptTeamTasks?: PreemptTeamTasks | undefined;
205
+ }
176
206
  export interface ComputeQuotaTarget {
177
207
  TeamName: string | undefined;
178
208
  FairShareWeight?: number | undefined;
@@ -1922,17 +1952,3 @@ export interface CreateNotebookInstanceLifecycleConfigInput {
1922
1952
  export interface CreateNotebookInstanceLifecycleConfigOutput {
1923
1953
  NotebookInstanceLifecycleConfigArn?: string | undefined;
1924
1954
  }
1925
- export interface OptimizationModelAccessConfig {
1926
- AcceptEula: boolean | undefined;
1927
- }
1928
- export interface OptimizationJobModelSourceS3 {
1929
- S3Uri?: string | undefined;
1930
- ModelAccessConfig?: OptimizationModelAccessConfig | undefined;
1931
- }
1932
- export interface OptimizationSageMakerModel {
1933
- ModelName?: string | undefined;
1934
- }
1935
- export interface OptimizationJobModelSource {
1936
- S3?: OptimizationJobModelSourceS3 | undefined;
1937
- SageMakerModel?: OptimizationSageMakerModel | undefined;
1938
- }
@@ -40,8 +40,6 @@ import {
40
40
  HubStatus,
41
41
  HumanTaskUiStatus,
42
42
  HyperParameterTuningJobObjectiveType,
43
- HyperParameterTuningJobStatus,
44
- ImageStatus,
45
43
  InputMode,
46
44
  JobCategory,
47
45
  JoinSource,
@@ -116,7 +114,6 @@ import {
116
114
  AutoMLProblemTypeConfig,
117
115
  AutoMLResolvedAttributes,
118
116
  AutoMLSecurityConfig,
119
- Autotune,
120
117
  BatchDataCaptureConfig,
121
118
  CfnCreateTemplateProvider,
122
119
  Channel,
@@ -133,8 +130,6 @@ import {
133
130
  CodeRepository,
134
131
  CognitoConfig,
135
132
  CognitoMemberDefinition,
136
- CollectionConfiguration,
137
- ComputeQuotaConfig,
138
133
  GitConfig,
139
134
  InferenceSpecification,
140
135
  JupyterLabAppImageConfig,
@@ -151,6 +146,8 @@ import {
151
146
  VpcConfig,
152
147
  } from "./models_0";
153
148
  import {
149
+ CollectionConfiguration,
150
+ ComputeQuotaConfig,
154
151
  ComputeQuotaTarget,
155
152
  ContextSource,
156
153
  DataCaptureConfig,
@@ -171,9 +168,6 @@ import {
171
168
  HumanLoopActivationConfig,
172
169
  HumanLoopConfig,
173
170
  HumanLoopRequestSource,
174
- HyperParameterTrainingJobDefinition,
175
- HyperParameterTuningJobConfig,
176
- HyperParameterTuningJobWarmStartConfig,
177
171
  InputConfig,
178
172
  JupyterServerAppSettings,
179
173
  KernelGatewayAppSettings,
@@ -188,8 +182,6 @@ import {
188
182
  NetworkConfig,
189
183
  OfflineStoreConfig,
190
184
  OnlineStoreConfig,
191
- OptimizationJobModelSource,
192
- OptimizationSageMakerModel,
193
185
  OutputConfig,
194
186
  ProductionVariant,
195
187
  ProductionVariantManagedInstanceScaling,
@@ -200,6 +192,20 @@ import {
200
192
  TrainingSpecification,
201
193
  UserSettings,
202
194
  } from "./models_1";
195
+ export interface OptimizationModelAccessConfig {
196
+ AcceptEula: boolean | undefined;
197
+ }
198
+ export interface OptimizationJobModelSourceS3 {
199
+ S3Uri?: string | undefined;
200
+ ModelAccessConfig?: OptimizationModelAccessConfig | undefined;
201
+ }
202
+ export interface OptimizationSageMakerModel {
203
+ ModelName?: string | undefined;
204
+ }
205
+ export interface OptimizationJobModelSource {
206
+ S3?: OptimizationJobModelSourceS3 | undefined;
207
+ SageMakerModel?: OptimizationSageMakerModel | undefined;
208
+ }
203
209
  export interface ModelCompilationConfig {
204
210
  Image?: string | undefined;
205
211
  OverrideEnvironment?: Record<string, string> | undefined;
@@ -1951,43 +1957,3 @@ export interface TrainingJobStatusCounters {
1951
1957
  NonRetryableError?: number | undefined;
1952
1958
  Stopped?: number | undefined;
1953
1959
  }
1954
- export interface HyperParameterTuningJobCompletionDetails {
1955
- NumberOfTrainingJobsObjectiveNotImproving?: number | undefined;
1956
- ConvergenceDetectedTime?: Date | undefined;
1957
- }
1958
- export interface DescribeHyperParameterTuningJobResponse {
1959
- HyperParameterTuningJobName: string | undefined;
1960
- HyperParameterTuningJobArn: string | undefined;
1961
- HyperParameterTuningJobConfig: HyperParameterTuningJobConfig | undefined;
1962
- TrainingJobDefinition?: HyperParameterTrainingJobDefinition | undefined;
1963
- TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[] | undefined;
1964
- HyperParameterTuningJobStatus: HyperParameterTuningJobStatus | undefined;
1965
- CreationTime: Date | undefined;
1966
- HyperParameterTuningEndTime?: Date | undefined;
1967
- LastModifiedTime?: Date | undefined;
1968
- TrainingJobStatusCounters: TrainingJobStatusCounters | undefined;
1969
- ObjectiveStatusCounters: ObjectiveStatusCounters | undefined;
1970
- BestTrainingJob?: HyperParameterTrainingJobSummary | undefined;
1971
- OverallBestTrainingJob?: HyperParameterTrainingJobSummary | undefined;
1972
- WarmStartConfig?: HyperParameterTuningJobWarmStartConfig | undefined;
1973
- Autotune?: Autotune | undefined;
1974
- FailureReason?: string | undefined;
1975
- TuningJobCompletionDetails?:
1976
- | HyperParameterTuningJobCompletionDetails
1977
- | undefined;
1978
- ConsumedResources?: HyperParameterTuningJobConsumedResources | undefined;
1979
- }
1980
- export interface DescribeImageRequest {
1981
- ImageName: string | undefined;
1982
- }
1983
- export interface DescribeImageResponse {
1984
- CreationTime?: Date | undefined;
1985
- Description?: string | undefined;
1986
- DisplayName?: string | undefined;
1987
- FailureReason?: string | undefined;
1988
- ImageArn?: string | undefined;
1989
- ImageName?: string | undefined;
1990
- ImageStatus?: ImageStatus | undefined;
1991
- LastModifiedTime?: Date | undefined;
1992
- RoleArn?: string | undefined;
1993
- }