mypy-boto3-sagemaker 1.40.2__py3-none-any.whl → 1.40.6__py3-none-any.whl
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.
Potentially problematic release.
This version of mypy-boto3-sagemaker might be problematic. Click here for more details.
- mypy_boto3_sagemaker/__init__.py +8 -0
- mypy_boto3_sagemaker/__init__.pyi +8 -0
- mypy_boto3_sagemaker/__main__.py +3 -3
- mypy_boto3_sagemaker/client.py +88 -2
- mypy_boto3_sagemaker/client.pyi +88 -2
- mypy_boto3_sagemaker/literals.py +29 -1
- mypy_boto3_sagemaker/literals.pyi +29 -1
- mypy_boto3_sagemaker/paginator.py +54 -0
- mypy_boto3_sagemaker/paginator.pyi +48 -0
- mypy_boto3_sagemaker/type_defs.py +322 -17
- mypy_boto3_sagemaker/type_defs.pyi +291 -17
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/METADATA +12 -4
- mypy_boto3_sagemaker-1.40.6.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.40.2.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.6.dist-info}/top_level.txt +0 -0
|
@@ -55,18 +55,21 @@ from .literals import (
|
|
|
55
55
|
AutoMLSortOrderType,
|
|
56
56
|
AutoMountHomeEFSType,
|
|
57
57
|
AwsManagedHumanLoopRequestSourceType,
|
|
58
|
+
BatchAddClusterNodesErrorCodeType,
|
|
58
59
|
BatchDeleteClusterNodesErrorCodeType,
|
|
59
60
|
BatchStrategyType,
|
|
60
61
|
BooleanOperatorType,
|
|
61
62
|
CandidateSortByType,
|
|
62
63
|
CandidateStatusType,
|
|
63
64
|
CandidateStepTypeType,
|
|
65
|
+
CapacityReservationTypeType,
|
|
64
66
|
CapacitySizeTypeType,
|
|
65
67
|
CaptureModeType,
|
|
66
68
|
CaptureStatusType,
|
|
67
69
|
ClarifyFeatureTypeType,
|
|
68
70
|
ClarifyTextGranularityType,
|
|
69
71
|
ClarifyTextLanguageType,
|
|
72
|
+
ClusterEventResourceTypeType,
|
|
70
73
|
ClusterInstanceStatusType,
|
|
71
74
|
ClusterInstanceTypeType,
|
|
72
75
|
ClusterNodeRecoveryType,
|
|
@@ -233,6 +236,7 @@ from .literals import (
|
|
|
233
236
|
RepositoryAccessModeType,
|
|
234
237
|
ReservedCapacityInstanceTypeType,
|
|
235
238
|
ReservedCapacityStatusType,
|
|
239
|
+
ReservedCapacityTypeType,
|
|
236
240
|
ResourceCatalogSortOrderType,
|
|
237
241
|
ResourceSharingStrategyType,
|
|
238
242
|
ResourceTypeType,
|
|
@@ -303,6 +307,7 @@ from .literals import (
|
|
|
303
307
|
TransformJobStatusType,
|
|
304
308
|
TrialComponentPrimaryStatusType,
|
|
305
309
|
TtlDurationUnitType,
|
|
310
|
+
UltraServerHealthStatusType,
|
|
306
311
|
UserProfileSortKeyType,
|
|
307
312
|
UserProfileStatusType,
|
|
308
313
|
VariantPropertyTypeType,
|
|
@@ -331,8 +336,10 @@ __all__ = (
|
|
|
331
336
|
"ActionSummaryTypeDef",
|
|
332
337
|
"AddAssociationRequestTypeDef",
|
|
333
338
|
"AddAssociationResponseTypeDef",
|
|
339
|
+
"AddClusterNodeSpecificationTypeDef",
|
|
334
340
|
"AddTagsInputTypeDef",
|
|
335
341
|
"AddTagsOutputTypeDef",
|
|
342
|
+
"AdditionalEnisTypeDef",
|
|
336
343
|
"AdditionalInferenceSpecificationDefinitionOutputTypeDef",
|
|
337
344
|
"AdditionalInferenceSpecificationDefinitionTypeDef",
|
|
338
345
|
"AdditionalInferenceSpecificationDefinitionUnionTypeDef",
|
|
@@ -415,7 +422,11 @@ __all__ = (
|
|
|
415
422
|
"AutoRollbackConfigOutputTypeDef",
|
|
416
423
|
"AutoRollbackConfigTypeDef",
|
|
417
424
|
"AutotuneTypeDef",
|
|
425
|
+
"BatchAddClusterNodesErrorTypeDef",
|
|
426
|
+
"BatchAddClusterNodesRequestTypeDef",
|
|
427
|
+
"BatchAddClusterNodesResponseTypeDef",
|
|
418
428
|
"BatchDataCaptureConfigTypeDef",
|
|
429
|
+
"BatchDeleteClusterNodeLogicalIdsErrorTypeDef",
|
|
419
430
|
"BatchDeleteClusterNodesErrorTypeDef",
|
|
420
431
|
"BatchDeleteClusterNodesRequestTypeDef",
|
|
421
432
|
"BatchDeleteClusterNodesResponseTypeDef",
|
|
@@ -436,6 +447,7 @@ __all__ = (
|
|
|
436
447
|
"CandidatePropertiesTypeDef",
|
|
437
448
|
"CanvasAppSettingsOutputTypeDef",
|
|
438
449
|
"CanvasAppSettingsTypeDef",
|
|
450
|
+
"CapacityReservationTypeDef",
|
|
439
451
|
"CapacitySizeConfigTypeDef",
|
|
440
452
|
"CapacitySizeTypeDef",
|
|
441
453
|
"CaptureContentTypeHeaderOutputTypeDef",
|
|
@@ -470,12 +482,15 @@ __all__ = (
|
|
|
470
482
|
"ClarifyShapConfigTypeDef",
|
|
471
483
|
"ClarifyTextConfigTypeDef",
|
|
472
484
|
"ClusterEbsVolumeConfigTypeDef",
|
|
485
|
+
"ClusterEventDetailTypeDef",
|
|
486
|
+
"ClusterEventSummaryTypeDef",
|
|
473
487
|
"ClusterInstanceGroupDetailsTypeDef",
|
|
474
488
|
"ClusterInstanceGroupSpecificationTypeDef",
|
|
475
489
|
"ClusterInstancePlacementTypeDef",
|
|
476
490
|
"ClusterInstanceStatusDetailsTypeDef",
|
|
477
491
|
"ClusterInstanceStorageConfigTypeDef",
|
|
478
492
|
"ClusterLifeCycleConfigTypeDef",
|
|
493
|
+
"ClusterMetadataTypeDef",
|
|
479
494
|
"ClusterNodeDetailsTypeDef",
|
|
480
495
|
"ClusterNodeSummaryTypeDef",
|
|
481
496
|
"ClusterOrchestratorEksConfigTypeDef",
|
|
@@ -773,6 +788,8 @@ __all__ = (
|
|
|
773
788
|
"DescribeAutoMLJobResponseTypeDef",
|
|
774
789
|
"DescribeAutoMLJobV2RequestTypeDef",
|
|
775
790
|
"DescribeAutoMLJobV2ResponseTypeDef",
|
|
791
|
+
"DescribeClusterEventRequestTypeDef",
|
|
792
|
+
"DescribeClusterEventResponseTypeDef",
|
|
776
793
|
"DescribeClusterNodeRequestTypeDef",
|
|
777
794
|
"DescribeClusterNodeResponseTypeDef",
|
|
778
795
|
"DescribeClusterRequestTypeDef",
|
|
@@ -882,6 +899,8 @@ __all__ = (
|
|
|
882
899
|
"DescribeProcessingJobResponseTypeDef",
|
|
883
900
|
"DescribeProjectInputTypeDef",
|
|
884
901
|
"DescribeProjectOutputTypeDef",
|
|
902
|
+
"DescribeReservedCapacityRequestTypeDef",
|
|
903
|
+
"DescribeReservedCapacityResponseTypeDef",
|
|
885
904
|
"DescribeSpaceRequestTypeDef",
|
|
886
905
|
"DescribeSpaceResponseTypeDef",
|
|
887
906
|
"DescribeStudioLifecycleConfigRequestTypeDef",
|
|
@@ -973,6 +992,8 @@ __all__ = (
|
|
|
973
992
|
"EnvironmentParameterRangesTypeDef",
|
|
974
993
|
"EnvironmentParameterTypeDef",
|
|
975
994
|
"ErrorInfoTypeDef",
|
|
995
|
+
"EventDetailsTypeDef",
|
|
996
|
+
"EventMetadataTypeDef",
|
|
976
997
|
"ExperimentConfigTypeDef",
|
|
977
998
|
"ExperimentSourceTypeDef",
|
|
978
999
|
"ExperimentSummaryTypeDef",
|
|
@@ -1098,8 +1119,14 @@ __all__ = (
|
|
|
1098
1119
|
"InferenceSpecificationUnionTypeDef",
|
|
1099
1120
|
"InfraCheckConfigTypeDef",
|
|
1100
1121
|
"InputConfigTypeDef",
|
|
1122
|
+
"InstanceGroupMetadataTypeDef",
|
|
1123
|
+
"InstanceGroupScalingMetadataTypeDef",
|
|
1101
1124
|
"InstanceGroupTypeDef",
|
|
1102
1125
|
"InstanceMetadataServiceConfigurationTypeDef",
|
|
1126
|
+
"InstanceMetadataTypeDef",
|
|
1127
|
+
"InstancePlacementConfigOutputTypeDef",
|
|
1128
|
+
"InstancePlacementConfigTypeDef",
|
|
1129
|
+
"InstancePlacementConfigUnionTypeDef",
|
|
1103
1130
|
"IntegerParameterRangeSpecificationTypeDef",
|
|
1104
1131
|
"IntegerParameterRangeTypeDef",
|
|
1105
1132
|
"JupyterLabAppImageConfigOutputTypeDef",
|
|
@@ -1166,6 +1193,9 @@ __all__ = (
|
|
|
1166
1193
|
"ListCandidatesForAutoMLJobRequestPaginateTypeDef",
|
|
1167
1194
|
"ListCandidatesForAutoMLJobRequestTypeDef",
|
|
1168
1195
|
"ListCandidatesForAutoMLJobResponseTypeDef",
|
|
1196
|
+
"ListClusterEventsRequestPaginateTypeDef",
|
|
1197
|
+
"ListClusterEventsRequestTypeDef",
|
|
1198
|
+
"ListClusterEventsResponseTypeDef",
|
|
1169
1199
|
"ListClusterNodesRequestPaginateTypeDef",
|
|
1170
1200
|
"ListClusterNodesRequestTypeDef",
|
|
1171
1201
|
"ListClusterNodesResponseTypeDef",
|
|
@@ -1372,6 +1402,9 @@ __all__ = (
|
|
|
1372
1402
|
"ListTrialsRequestPaginateTypeDef",
|
|
1373
1403
|
"ListTrialsRequestTypeDef",
|
|
1374
1404
|
"ListTrialsResponseTypeDef",
|
|
1405
|
+
"ListUltraServersByReservedCapacityRequestPaginateTypeDef",
|
|
1406
|
+
"ListUltraServersByReservedCapacityRequestTypeDef",
|
|
1407
|
+
"ListUltraServersByReservedCapacityResponseTypeDef",
|
|
1375
1408
|
"ListUserProfilesRequestPaginateTypeDef",
|
|
1376
1409
|
"ListUserProfilesRequestTypeDef",
|
|
1377
1410
|
"ListUserProfilesResponseTypeDef",
|
|
@@ -1515,6 +1548,7 @@ __all__ = (
|
|
|
1515
1548
|
"NetworkConfigOutputTypeDef",
|
|
1516
1549
|
"NetworkConfigTypeDef",
|
|
1517
1550
|
"NetworkConfigUnionTypeDef",
|
|
1551
|
+
"NodeAdditionResultTypeDef",
|
|
1518
1552
|
"NotebookInstanceLifecycleConfigSummaryTypeDef",
|
|
1519
1553
|
"NotebookInstanceLifecycleHookTypeDef",
|
|
1520
1554
|
"NotebookInstanceSummaryTypeDef",
|
|
@@ -1575,6 +1609,7 @@ __all__ = (
|
|
|
1575
1609
|
"PipelineTypeDef",
|
|
1576
1610
|
"PipelineVersionSummaryTypeDef",
|
|
1577
1611
|
"PipelineVersionTypeDef",
|
|
1612
|
+
"PlacementSpecificationTypeDef",
|
|
1578
1613
|
"PredefinedMetricSpecificationTypeDef",
|
|
1579
1614
|
"PresignedUrlAccessConfigTypeDef",
|
|
1580
1615
|
"PriorityClassTypeDef",
|
|
@@ -1851,6 +1886,9 @@ __all__ = (
|
|
|
1851
1886
|
"UiConfigTypeDef",
|
|
1852
1887
|
"UiTemplateInfoTypeDef",
|
|
1853
1888
|
"UiTemplateTypeDef",
|
|
1889
|
+
"UltraServerInfoTypeDef",
|
|
1890
|
+
"UltraServerSummaryTypeDef",
|
|
1891
|
+
"UltraServerTypeDef",
|
|
1854
1892
|
"UnifiedStudioSettingsTypeDef",
|
|
1855
1893
|
"UpdateActionRequestTypeDef",
|
|
1856
1894
|
"UpdateActionResponseTypeDef",
|
|
@@ -1980,11 +2018,20 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
1980
2018
|
HostId: NotRequired[str]
|
|
1981
2019
|
|
|
1982
2020
|
|
|
2021
|
+
class AddClusterNodeSpecificationTypeDef(TypedDict):
|
|
2022
|
+
InstanceGroupName: str
|
|
2023
|
+
IncrementTargetCountBy: int
|
|
2024
|
+
|
|
2025
|
+
|
|
1983
2026
|
class TagTypeDef(TypedDict):
|
|
1984
2027
|
Key: str
|
|
1985
2028
|
Value: str
|
|
1986
2029
|
|
|
1987
2030
|
|
|
2031
|
+
class AdditionalEnisTypeDef(TypedDict):
|
|
2032
|
+
EfaEnis: NotRequired[List[str]]
|
|
2033
|
+
|
|
2034
|
+
|
|
1988
2035
|
class AdditionalS3DataSourceTypeDef(TypedDict):
|
|
1989
2036
|
S3DataType: AdditionalS3DataSourceDataTypeType
|
|
1990
2037
|
S3Uri: str
|
|
@@ -2207,12 +2254,31 @@ class AutotuneTypeDef(TypedDict):
|
|
|
2207
2254
|
Mode: Literal["Enabled"]
|
|
2208
2255
|
|
|
2209
2256
|
|
|
2257
|
+
class BatchAddClusterNodesErrorTypeDef(TypedDict):
|
|
2258
|
+
InstanceGroupName: str
|
|
2259
|
+
ErrorCode: BatchAddClusterNodesErrorCodeType
|
|
2260
|
+
FailedCount: int
|
|
2261
|
+
Message: NotRequired[str]
|
|
2262
|
+
|
|
2263
|
+
|
|
2264
|
+
class NodeAdditionResultTypeDef(TypedDict):
|
|
2265
|
+
NodeLogicalId: str
|
|
2266
|
+
InstanceGroupName: str
|
|
2267
|
+
Status: ClusterInstanceStatusType
|
|
2268
|
+
|
|
2269
|
+
|
|
2210
2270
|
class BatchDataCaptureConfigTypeDef(TypedDict):
|
|
2211
2271
|
DestinationS3Uri: str
|
|
2212
2272
|
KmsKeyId: NotRequired[str]
|
|
2213
2273
|
GenerateInferenceId: NotRequired[bool]
|
|
2214
2274
|
|
|
2215
2275
|
|
|
2276
|
+
class BatchDeleteClusterNodeLogicalIdsErrorTypeDef(TypedDict):
|
|
2277
|
+
Code: BatchDeleteClusterNodesErrorCodeType
|
|
2278
|
+
Message: str
|
|
2279
|
+
NodeLogicalId: str
|
|
2280
|
+
|
|
2281
|
+
|
|
2216
2282
|
class BatchDeleteClusterNodesErrorTypeDef(TypedDict):
|
|
2217
2283
|
Code: BatchDeleteClusterNodesErrorCodeType
|
|
2218
2284
|
Message: str
|
|
@@ -2222,6 +2288,7 @@ class BatchDeleteClusterNodesErrorTypeDef(TypedDict):
|
|
|
2222
2288
|
class BatchDeleteClusterNodesRequestTypeDef(TypedDict):
|
|
2223
2289
|
ClusterName: str
|
|
2224
2290
|
NodeIds: NotRequired[Sequence[str]]
|
|
2291
|
+
NodeLogicalIds: NotRequired[Sequence[str]]
|
|
2225
2292
|
|
|
2226
2293
|
|
|
2227
2294
|
class BatchDescribeModelPackageErrorTypeDef(TypedDict):
|
|
@@ -2307,6 +2374,13 @@ class WorkspaceSettingsTypeDef(TypedDict):
|
|
|
2307
2374
|
S3KmsKeyId: NotRequired[str]
|
|
2308
2375
|
|
|
2309
2376
|
|
|
2377
|
+
CapacityReservationTypeDef = TypedDict(
|
|
2378
|
+
"CapacityReservationTypeDef",
|
|
2379
|
+
{
|
|
2380
|
+
"Arn": NotRequired[str],
|
|
2381
|
+
"Type": NotRequired[CapacityReservationTypeType],
|
|
2382
|
+
},
|
|
2383
|
+
)
|
|
2310
2384
|
CapacitySizeConfigTypeDef = TypedDict(
|
|
2311
2385
|
"CapacitySizeConfigTypeDef",
|
|
2312
2386
|
{
|
|
@@ -2467,6 +2541,17 @@ class ClusterEbsVolumeConfigTypeDef(TypedDict):
|
|
|
2467
2541
|
VolumeSizeInGB: NotRequired[int]
|
|
2468
2542
|
|
|
2469
2543
|
|
|
2544
|
+
class ClusterEventSummaryTypeDef(TypedDict):
|
|
2545
|
+
EventId: str
|
|
2546
|
+
ClusterArn: str
|
|
2547
|
+
ClusterName: str
|
|
2548
|
+
ResourceType: ClusterEventResourceTypeType
|
|
2549
|
+
EventTime: datetime
|
|
2550
|
+
InstanceGroupName: NotRequired[str]
|
|
2551
|
+
InstanceId: NotRequired[str]
|
|
2552
|
+
Description: NotRequired[str]
|
|
2553
|
+
|
|
2554
|
+
|
|
2470
2555
|
class ClusterLifeCycleConfigTypeDef(TypedDict):
|
|
2471
2556
|
SourceS3Uri: str
|
|
2472
2557
|
OnCreate: str
|
|
@@ -2482,6 +2567,16 @@ class ClusterInstanceStatusDetailsTypeDef(TypedDict):
|
|
|
2482
2567
|
Message: NotRequired[str]
|
|
2483
2568
|
|
|
2484
2569
|
|
|
2570
|
+
class ClusterMetadataTypeDef(TypedDict):
|
|
2571
|
+
FailureMessage: NotRequired[str]
|
|
2572
|
+
EksRoleAccessEntries: NotRequired[List[str]]
|
|
2573
|
+
SlrAccessEntry: NotRequired[str]
|
|
2574
|
+
|
|
2575
|
+
|
|
2576
|
+
class UltraServerInfoTypeDef(TypedDict):
|
|
2577
|
+
Id: NotRequired[str]
|
|
2578
|
+
|
|
2579
|
+
|
|
2485
2580
|
class ClusterOrchestratorEksConfigTypeDef(TypedDict):
|
|
2486
2581
|
ClusterArn: str
|
|
2487
2582
|
|
|
@@ -3378,9 +3473,15 @@ class DescribeAutoMLJobV2RequestTypeDef(TypedDict):
|
|
|
3378
3473
|
AutoMLJobName: str
|
|
3379
3474
|
|
|
3380
3475
|
|
|
3476
|
+
class DescribeClusterEventRequestTypeDef(TypedDict):
|
|
3477
|
+
EventId: str
|
|
3478
|
+
ClusterName: str
|
|
3479
|
+
|
|
3480
|
+
|
|
3381
3481
|
class DescribeClusterNodeRequestTypeDef(TypedDict):
|
|
3382
3482
|
ClusterName: str
|
|
3383
3483
|
NodeId: NotRequired[str]
|
|
3484
|
+
NodeLogicalId: NotRequired[str]
|
|
3384
3485
|
|
|
3385
3486
|
|
|
3386
3487
|
class DescribeClusterRequestTypeDef(TypedDict):
|
|
@@ -3783,6 +3884,18 @@ class ServiceCatalogProvisionedProductDetailsTypeDef(TypedDict):
|
|
|
3783
3884
|
ProvisionedProductStatusMessage: NotRequired[str]
|
|
3784
3885
|
|
|
3785
3886
|
|
|
3887
|
+
class DescribeReservedCapacityRequestTypeDef(TypedDict):
|
|
3888
|
+
ReservedCapacityArn: str
|
|
3889
|
+
|
|
3890
|
+
|
|
3891
|
+
class UltraServerSummaryTypeDef(TypedDict):
|
|
3892
|
+
UltraServerType: str
|
|
3893
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
3894
|
+
UltraServerCount: NotRequired[int]
|
|
3895
|
+
AvailableSpareInstanceCount: NotRequired[int]
|
|
3896
|
+
UnhealthyInstanceCount: NotRequired[int]
|
|
3897
|
+
|
|
3898
|
+
|
|
3786
3899
|
class DescribeSpaceRequestTypeDef(TypedDict):
|
|
3787
3900
|
DomainId: str
|
|
3788
3901
|
SpaceName: str
|
|
@@ -3861,6 +3974,9 @@ class ReservedCapacitySummaryTypeDef(TypedDict):
|
|
|
3861
3974
|
InstanceType: ReservedCapacityInstanceTypeType
|
|
3862
3975
|
TotalInstanceCount: int
|
|
3863
3976
|
Status: ReservedCapacityStatusType
|
|
3977
|
+
ReservedCapacityType: NotRequired[ReservedCapacityTypeType]
|
|
3978
|
+
UltraServerType: NotRequired[str]
|
|
3979
|
+
UltraServerCount: NotRequired[int]
|
|
3864
3980
|
AvailabilityZone: NotRequired[str]
|
|
3865
3981
|
DurationHours: NotRequired[int]
|
|
3866
3982
|
DurationMinutes: NotRequired[int]
|
|
@@ -4125,6 +4241,12 @@ class EnvironmentParameterTypeDef(TypedDict):
|
|
|
4125
4241
|
Value: str
|
|
4126
4242
|
|
|
4127
4243
|
|
|
4244
|
+
class InstanceGroupScalingMetadataTypeDef(TypedDict):
|
|
4245
|
+
InstanceCount: NotRequired[int]
|
|
4246
|
+
TargetCount: NotRequired[int]
|
|
4247
|
+
FailureMessage: NotRequired[str]
|
|
4248
|
+
|
|
4249
|
+
|
|
4128
4250
|
class FailStepMetadataTypeDef(TypedDict):
|
|
4129
4251
|
ErrorMessage: NotRequired[str]
|
|
4130
4252
|
|
|
@@ -4383,6 +4505,11 @@ class InstanceGroupTypeDef(TypedDict):
|
|
|
4383
4505
|
InstanceGroupName: str
|
|
4384
4506
|
|
|
4385
4507
|
|
|
4508
|
+
class PlacementSpecificationTypeDef(TypedDict):
|
|
4509
|
+
InstanceCount: int
|
|
4510
|
+
UltraServerId: NotRequired[str]
|
|
4511
|
+
|
|
4512
|
+
|
|
4386
4513
|
class IntegerParameterRangeSpecificationTypeDef(TypedDict):
|
|
4387
4514
|
MinValue: str
|
|
4388
4515
|
MaxValue: str
|
|
@@ -4745,6 +4872,26 @@ class TransformJobSummaryTypeDef(TypedDict):
|
|
|
4745
4872
|
FailureReason: NotRequired[str]
|
|
4746
4873
|
|
|
4747
4874
|
|
|
4875
|
+
class ListUltraServersByReservedCapacityRequestTypeDef(TypedDict):
|
|
4876
|
+
ReservedCapacityArn: str
|
|
4877
|
+
MaxResults: NotRequired[int]
|
|
4878
|
+
NextToken: NotRequired[str]
|
|
4879
|
+
|
|
4880
|
+
|
|
4881
|
+
class UltraServerTypeDef(TypedDict):
|
|
4882
|
+
UltraServerId: str
|
|
4883
|
+
UltraServerType: str
|
|
4884
|
+
AvailabilityZone: str
|
|
4885
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
4886
|
+
TotalInstanceCount: int
|
|
4887
|
+
ConfiguredSpareInstanceCount: NotRequired[int]
|
|
4888
|
+
AvailableInstanceCount: NotRequired[int]
|
|
4889
|
+
InUseInstanceCount: NotRequired[int]
|
|
4890
|
+
AvailableSpareInstanceCount: NotRequired[int]
|
|
4891
|
+
UnhealthyInstanceCount: NotRequired[int]
|
|
4892
|
+
HealthStatus: NotRequired[UltraServerHealthStatusType]
|
|
4893
|
+
|
|
4894
|
+
|
|
4748
4895
|
class ListUserProfilesRequestTypeDef(TypedDict):
|
|
4749
4896
|
NextToken: NotRequired[str]
|
|
4750
4897
|
MaxResults: NotRequired[int]
|
|
@@ -5203,6 +5350,9 @@ class RenderingErrorTypeDef(TypedDict):
|
|
|
5203
5350
|
class ReservedCapacityOfferingTypeDef(TypedDict):
|
|
5204
5351
|
InstanceType: ReservedCapacityInstanceTypeType
|
|
5205
5352
|
InstanceCount: int
|
|
5353
|
+
ReservedCapacityType: NotRequired[ReservedCapacityTypeType]
|
|
5354
|
+
UltraServerType: NotRequired[str]
|
|
5355
|
+
UltraServerCount: NotRequired[int]
|
|
5206
5356
|
AvailabilityZone: NotRequired[str]
|
|
5207
5357
|
DurationHours: NotRequired[int]
|
|
5208
5358
|
DurationMinutes: NotRequired[int]
|
|
@@ -6278,6 +6428,12 @@ class UpdateUserProfileResponseTypeDef(TypedDict):
|
|
|
6278
6428
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6279
6429
|
|
|
6280
6430
|
|
|
6431
|
+
class BatchAddClusterNodesRequestTypeDef(TypedDict):
|
|
6432
|
+
ClusterName: str
|
|
6433
|
+
NodesToAdd: Sequence[AddClusterNodeSpecificationTypeDef]
|
|
6434
|
+
ClientToken: NotRequired[str]
|
|
6435
|
+
|
|
6436
|
+
|
|
6281
6437
|
class AddTagsInputTypeDef(TypedDict):
|
|
6282
6438
|
ResourceArn: str
|
|
6283
6439
|
Tags: Sequence[TagTypeDef]
|
|
@@ -6338,6 +6494,7 @@ class CreateStudioLifecycleConfigRequestTypeDef(TypedDict):
|
|
|
6338
6494
|
class CreateTrainingPlanRequestTypeDef(TypedDict):
|
|
6339
6495
|
TrainingPlanName: str
|
|
6340
6496
|
TrainingPlanOfferingId: str
|
|
6497
|
+
SpareInstanceCountPerUltraServer: NotRequired[int]
|
|
6341
6498
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
6342
6499
|
|
|
6343
6500
|
|
|
@@ -6598,9 +6755,17 @@ class NetworkConfigTypeDef(TypedDict):
|
|
|
6598
6755
|
VpcConfigUnionTypeDef = Union[VpcConfigTypeDef, VpcConfigOutputTypeDef]
|
|
6599
6756
|
|
|
6600
6757
|
|
|
6758
|
+
class BatchAddClusterNodesResponseTypeDef(TypedDict):
|
|
6759
|
+
Successful: List[NodeAdditionResultTypeDef]
|
|
6760
|
+
Failed: List[BatchAddClusterNodesErrorTypeDef]
|
|
6761
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
6762
|
+
|
|
6763
|
+
|
|
6601
6764
|
class BatchDeleteClusterNodesResponseTypeDef(TypedDict):
|
|
6602
6765
|
Failed: List[BatchDeleteClusterNodesErrorTypeDef]
|
|
6603
6766
|
Successful: List[str]
|
|
6767
|
+
FailedNodeLogicalIds: List[BatchDeleteClusterNodeLogicalIdsErrorTypeDef]
|
|
6768
|
+
SuccessfulNodeLogicalIds: List[str]
|
|
6604
6769
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6605
6770
|
|
|
6606
6771
|
|
|
@@ -6678,6 +6843,24 @@ class CanvasAppSettingsTypeDef(TypedDict):
|
|
|
6678
6843
|
EmrServerlessSettings: NotRequired[EmrServerlessSettingsTypeDef]
|
|
6679
6844
|
|
|
6680
6845
|
|
|
6846
|
+
class InstanceGroupMetadataTypeDef(TypedDict):
|
|
6847
|
+
FailureMessage: NotRequired[str]
|
|
6848
|
+
AvailabilityZoneId: NotRequired[str]
|
|
6849
|
+
CapacityReservation: NotRequired[CapacityReservationTypeDef]
|
|
6850
|
+
SubnetId: NotRequired[str]
|
|
6851
|
+
SecurityGroupIds: NotRequired[List[str]]
|
|
6852
|
+
AmiOverride: NotRequired[str]
|
|
6853
|
+
|
|
6854
|
+
|
|
6855
|
+
class InstanceMetadataTypeDef(TypedDict):
|
|
6856
|
+
CustomerEni: NotRequired[str]
|
|
6857
|
+
AdditionalEnis: NotRequired[AdditionalEnisTypeDef]
|
|
6858
|
+
CapacityReservation: NotRequired[CapacityReservationTypeDef]
|
|
6859
|
+
FailureMessage: NotRequired[str]
|
|
6860
|
+
LcsExecutionState: NotRequired[str]
|
|
6861
|
+
NodeLogicalId: NotRequired[str]
|
|
6862
|
+
|
|
6863
|
+
|
|
6681
6864
|
class RollingDeploymentPolicyTypeDef(TypedDict):
|
|
6682
6865
|
MaximumBatchSize: CapacitySizeConfigTypeDef
|
|
6683
6866
|
RollbackMaximumBatchSize: NotRequired[CapacitySizeConfigTypeDef]
|
|
@@ -6777,13 +6960,21 @@ class ClusterInstanceStorageConfigTypeDef(TypedDict):
|
|
|
6777
6960
|
EbsVolumeConfig: NotRequired[ClusterEbsVolumeConfigTypeDef]
|
|
6778
6961
|
|
|
6779
6962
|
|
|
6963
|
+
class ListClusterEventsResponseTypeDef(TypedDict):
|
|
6964
|
+
Events: List[ClusterEventSummaryTypeDef]
|
|
6965
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
6966
|
+
NextToken: NotRequired[str]
|
|
6967
|
+
|
|
6968
|
+
|
|
6780
6969
|
class ClusterNodeSummaryTypeDef(TypedDict):
|
|
6781
6970
|
InstanceGroupName: str
|
|
6782
6971
|
InstanceId: str
|
|
6783
6972
|
InstanceType: ClusterInstanceTypeType
|
|
6784
6973
|
LaunchTime: datetime
|
|
6785
6974
|
InstanceStatus: ClusterInstanceStatusDetailsTypeDef
|
|
6975
|
+
NodeLogicalId: NotRequired[str]
|
|
6786
6976
|
LastSoftwareUpdateTime: NotRequired[datetime]
|
|
6977
|
+
UltraServerInfo: NotRequired[UltraServerInfoTypeDef]
|
|
6787
6978
|
|
|
6788
6979
|
|
|
6789
6980
|
class ClusterOrchestratorTypeDef(TypedDict):
|
|
@@ -7087,6 +7278,11 @@ class ListTrainingJobsForHyperParameterTuningJobRequestPaginateTypeDef(TypedDict
|
|
|
7087
7278
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7088
7279
|
|
|
7089
7280
|
|
|
7281
|
+
class ListUltraServersByReservedCapacityRequestPaginateTypeDef(TypedDict):
|
|
7282
|
+
ReservedCapacityArn: str
|
|
7283
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7284
|
+
|
|
7285
|
+
|
|
7090
7286
|
class ListUserProfilesRequestPaginateTypeDef(TypedDict):
|
|
7091
7287
|
SortOrder: NotRequired[SortOrderType]
|
|
7092
7288
|
SortBy: NotRequired[UserProfileSortKeyType]
|
|
@@ -7450,6 +7646,31 @@ class ListAutoMLJobsRequestTypeDef(TypedDict):
|
|
|
7450
7646
|
NextToken: NotRequired[str]
|
|
7451
7647
|
|
|
7452
7648
|
|
|
7649
|
+
class ListClusterEventsRequestPaginateTypeDef(TypedDict):
|
|
7650
|
+
ClusterName: str
|
|
7651
|
+
InstanceGroupName: NotRequired[str]
|
|
7652
|
+
NodeId: NotRequired[str]
|
|
7653
|
+
EventTimeAfter: NotRequired[TimestampTypeDef]
|
|
7654
|
+
EventTimeBefore: NotRequired[TimestampTypeDef]
|
|
7655
|
+
SortBy: NotRequired[Literal["EventTime"]]
|
|
7656
|
+
SortOrder: NotRequired[SortOrderType]
|
|
7657
|
+
ResourceType: NotRequired[ClusterEventResourceTypeType]
|
|
7658
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7659
|
+
|
|
7660
|
+
|
|
7661
|
+
class ListClusterEventsRequestTypeDef(TypedDict):
|
|
7662
|
+
ClusterName: str
|
|
7663
|
+
InstanceGroupName: NotRequired[str]
|
|
7664
|
+
NodeId: NotRequired[str]
|
|
7665
|
+
EventTimeAfter: NotRequired[TimestampTypeDef]
|
|
7666
|
+
EventTimeBefore: NotRequired[TimestampTypeDef]
|
|
7667
|
+
SortBy: NotRequired[Literal["EventTime"]]
|
|
7668
|
+
SortOrder: NotRequired[SortOrderType]
|
|
7669
|
+
ResourceType: NotRequired[ClusterEventResourceTypeType]
|
|
7670
|
+
MaxResults: NotRequired[int]
|
|
7671
|
+
NextToken: NotRequired[str]
|
|
7672
|
+
|
|
7673
|
+
|
|
7453
7674
|
class ListClusterNodesRequestPaginateTypeDef(TypedDict):
|
|
7454
7675
|
ClusterName: str
|
|
7455
7676
|
CreationTimeAfter: NotRequired[TimestampTypeDef]
|
|
@@ -7457,6 +7678,7 @@ class ListClusterNodesRequestPaginateTypeDef(TypedDict):
|
|
|
7457
7678
|
InstanceGroupNameContains: NotRequired[str]
|
|
7458
7679
|
SortBy: NotRequired[ClusterSortByType]
|
|
7459
7680
|
SortOrder: NotRequired[SortOrderType]
|
|
7681
|
+
IncludeNodeLogicalIds: NotRequired[bool]
|
|
7460
7682
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7461
7683
|
|
|
7462
7684
|
|
|
@@ -7469,6 +7691,7 @@ class ListClusterNodesRequestTypeDef(TypedDict):
|
|
|
7469
7691
|
NextToken: NotRequired[str]
|
|
7470
7692
|
SortBy: NotRequired[ClusterSortByType]
|
|
7471
7693
|
SortOrder: NotRequired[SortOrderType]
|
|
7694
|
+
IncludeNodeLogicalIds: NotRequired[bool]
|
|
7472
7695
|
|
|
7473
7696
|
|
|
7474
7697
|
class ListClusterSchedulerConfigsRequestPaginateTypeDef(TypedDict):
|
|
@@ -8729,6 +8952,8 @@ class SearchTrainingPlanOfferingsRequestTypeDef(TypedDict):
|
|
|
8729
8952
|
TargetResources: Sequence[SageMakerResourceNameType]
|
|
8730
8953
|
InstanceType: NotRequired[ReservedCapacityInstanceTypeType]
|
|
8731
8954
|
InstanceCount: NotRequired[int]
|
|
8955
|
+
UltraServerType: NotRequired[str]
|
|
8956
|
+
UltraServerCount: NotRequired[int]
|
|
8732
8957
|
StartTimeAfter: NotRequired[TimestampTypeDef]
|
|
8733
8958
|
EndTimeBefore: NotRequired[TimestampTypeDef]
|
|
8734
8959
|
|
|
@@ -9089,6 +9314,23 @@ DescribePartnerAppResponseTypeDef = TypedDict(
|
|
|
9089
9314
|
)
|
|
9090
9315
|
|
|
9091
9316
|
|
|
9317
|
+
class DescribeReservedCapacityResponseTypeDef(TypedDict):
|
|
9318
|
+
ReservedCapacityArn: str
|
|
9319
|
+
ReservedCapacityType: ReservedCapacityTypeType
|
|
9320
|
+
Status: ReservedCapacityStatusType
|
|
9321
|
+
AvailabilityZone: str
|
|
9322
|
+
DurationHours: int
|
|
9323
|
+
DurationMinutes: int
|
|
9324
|
+
StartTime: datetime
|
|
9325
|
+
EndTime: datetime
|
|
9326
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
9327
|
+
TotalInstanceCount: int
|
|
9328
|
+
AvailableInstanceCount: int
|
|
9329
|
+
InUseInstanceCount: int
|
|
9330
|
+
UltraServerSummary: UltraServerSummaryTypeDef
|
|
9331
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
9332
|
+
|
|
9333
|
+
|
|
9092
9334
|
class DescribeSubscribedWorkteamResponseTypeDef(TypedDict):
|
|
9093
9335
|
SubscribedWorkteam: SubscribedWorkteamTypeDef
|
|
9094
9336
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -9126,6 +9368,9 @@ class DescribeTrainingPlanResponseTypeDef(TypedDict):
|
|
|
9126
9368
|
TotalInstanceCount: int
|
|
9127
9369
|
AvailableInstanceCount: int
|
|
9128
9370
|
InUseInstanceCount: int
|
|
9371
|
+
UnhealthyInstanceCount: int
|
|
9372
|
+
AvailableSpareInstanceCount: int
|
|
9373
|
+
TotalUltraServerCount: int
|
|
9129
9374
|
TargetResources: List[SageMakerResourceNameType]
|
|
9130
9375
|
ReservedCapacitySummaries: List[ReservedCapacitySummaryTypeDef]
|
|
9131
9376
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -9145,6 +9390,7 @@ class TrainingPlanSummaryTypeDef(TypedDict):
|
|
|
9145
9390
|
TotalInstanceCount: NotRequired[int]
|
|
9146
9391
|
AvailableInstanceCount: NotRequired[int]
|
|
9147
9392
|
InUseInstanceCount: NotRequired[int]
|
|
9393
|
+
TotalUltraServerCount: NotRequired[int]
|
|
9148
9394
|
TargetResources: NotRequired[List[SageMakerResourceNameType]]
|
|
9149
9395
|
ReservedCapacitySummaries: NotRequired[List[ReservedCapacitySummaryTypeDef]]
|
|
9150
9396
|
|
|
@@ -9496,24 +9742,14 @@ class ListInferenceRecommendationsJobsResponseTypeDef(TypedDict):
|
|
|
9496
9742
|
NextToken: NotRequired[str]
|
|
9497
9743
|
|
|
9498
9744
|
|
|
9499
|
-
class
|
|
9500
|
-
|
|
9501
|
-
|
|
9502
|
-
InstanceCount: NotRequired[int]
|
|
9503
|
-
VolumeKmsKeyId: NotRequired[str]
|
|
9504
|
-
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
9505
|
-
InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
|
|
9506
|
-
TrainingPlanArn: NotRequired[str]
|
|
9745
|
+
class InstancePlacementConfigOutputTypeDef(TypedDict):
|
|
9746
|
+
EnableMultipleJobs: NotRequired[bool]
|
|
9747
|
+
PlacementSpecifications: NotRequired[List[PlacementSpecificationTypeDef]]
|
|
9507
9748
|
|
|
9508
9749
|
|
|
9509
|
-
class
|
|
9510
|
-
|
|
9511
|
-
|
|
9512
|
-
InstanceCount: NotRequired[int]
|
|
9513
|
-
VolumeKmsKeyId: NotRequired[str]
|
|
9514
|
-
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
9515
|
-
InstanceGroups: NotRequired[Sequence[InstanceGroupTypeDef]]
|
|
9516
|
-
TrainingPlanArn: NotRequired[str]
|
|
9750
|
+
class InstancePlacementConfigTypeDef(TypedDict):
|
|
9751
|
+
EnableMultipleJobs: NotRequired[bool]
|
|
9752
|
+
PlacementSpecifications: NotRequired[Sequence[PlacementSpecificationTypeDef]]
|
|
9517
9753
|
|
|
9518
9754
|
|
|
9519
9755
|
class ParameterRangeOutputTypeDef(TypedDict):
|
|
@@ -9744,6 +9980,12 @@ class ListTransformJobsResponseTypeDef(TypedDict):
|
|
|
9744
9980
|
NextToken: NotRequired[str]
|
|
9745
9981
|
|
|
9746
9982
|
|
|
9983
|
+
class ListUltraServersByReservedCapacityResponseTypeDef(TypedDict):
|
|
9984
|
+
UltraServers: List[UltraServerTypeDef]
|
|
9985
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
9986
|
+
NextToken: NotRequired[str]
|
|
9987
|
+
|
|
9988
|
+
|
|
9747
9989
|
class ListUserProfilesResponseTypeDef(TypedDict):
|
|
9748
9990
|
UserProfiles: List[UserProfileDetailsTypeDef]
|
|
9749
9991
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -10404,6 +10646,13 @@ class AutoMLCandidateTypeDef(TypedDict):
|
|
|
10404
10646
|
]
|
|
10405
10647
|
|
|
10406
10648
|
|
|
10649
|
+
class EventMetadataTypeDef(TypedDict):
|
|
10650
|
+
Cluster: NotRequired[ClusterMetadataTypeDef]
|
|
10651
|
+
InstanceGroup: NotRequired[InstanceGroupMetadataTypeDef]
|
|
10652
|
+
InstanceGroupScaling: NotRequired[InstanceGroupScalingMetadataTypeDef]
|
|
10653
|
+
Instance: NotRequired[InstanceMetadataTypeDef]
|
|
10654
|
+
|
|
10655
|
+
|
|
10407
10656
|
class DeploymentConfigurationOutputTypeDef(TypedDict):
|
|
10408
10657
|
RollingUpdatePolicy: NotRequired[RollingDeploymentPolicyTypeDef]
|
|
10409
10658
|
WaitIntervalInSeconds: NotRequired[int]
|
|
@@ -10476,6 +10725,7 @@ class ClarifyExplainerConfigTypeDef(TypedDict):
|
|
|
10476
10725
|
class ClusterNodeDetailsTypeDef(TypedDict):
|
|
10477
10726
|
InstanceGroupName: NotRequired[str]
|
|
10478
10727
|
InstanceId: NotRequired[str]
|
|
10728
|
+
NodeLogicalId: NotRequired[str]
|
|
10479
10729
|
InstanceStatus: NotRequired[ClusterInstanceStatusDetailsTypeDef]
|
|
10480
10730
|
InstanceType: NotRequired[ClusterInstanceTypeType]
|
|
10481
10731
|
LaunchTime: NotRequired[datetime]
|
|
@@ -10488,6 +10738,9 @@ class ClusterNodeDetailsTypeDef(TypedDict):
|
|
|
10488
10738
|
PrivatePrimaryIpv6: NotRequired[str]
|
|
10489
10739
|
PrivateDnsHostname: NotRequired[str]
|
|
10490
10740
|
Placement: NotRequired[ClusterInstancePlacementTypeDef]
|
|
10741
|
+
CurrentImageId: NotRequired[str]
|
|
10742
|
+
DesiredImageId: NotRequired[str]
|
|
10743
|
+
UltraServerInfo: NotRequired[UltraServerInfoTypeDef]
|
|
10491
10744
|
|
|
10492
10745
|
|
|
10493
10746
|
class ListClusterNodesResponseTypeDef(TypedDict):
|
|
@@ -11081,7 +11334,20 @@ class CreateInferenceComponentInputTypeDef(TypedDict):
|
|
|
11081
11334
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
11082
11335
|
|
|
11083
11336
|
|
|
11084
|
-
|
|
11337
|
+
class ResourceConfigOutputTypeDef(TypedDict):
|
|
11338
|
+
VolumeSizeInGB: int
|
|
11339
|
+
InstanceType: NotRequired[TrainingInstanceTypeType]
|
|
11340
|
+
InstanceCount: NotRequired[int]
|
|
11341
|
+
VolumeKmsKeyId: NotRequired[str]
|
|
11342
|
+
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
11343
|
+
InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
|
|
11344
|
+
TrainingPlanArn: NotRequired[str]
|
|
11345
|
+
InstancePlacementConfig: NotRequired[InstancePlacementConfigOutputTypeDef]
|
|
11346
|
+
|
|
11347
|
+
|
|
11348
|
+
InstancePlacementConfigUnionTypeDef = Union[
|
|
11349
|
+
InstancePlacementConfigTypeDef, InstancePlacementConfigOutputTypeDef
|
|
11350
|
+
]
|
|
11085
11351
|
HyperParameterSpecificationOutputTypeDef = TypedDict(
|
|
11086
11352
|
"HyperParameterSpecificationOutputTypeDef",
|
|
11087
11353
|
{
|
|
@@ -11740,6 +12006,10 @@ class ListCandidatesForAutoMLJobResponseTypeDef(TypedDict):
|
|
|
11740
12006
|
NextToken: NotRequired[str]
|
|
11741
12007
|
|
|
11742
12008
|
|
|
12009
|
+
class EventDetailsTypeDef(TypedDict):
|
|
12010
|
+
EventMetadata: NotRequired[EventMetadataTypeDef]
|
|
12011
|
+
|
|
12012
|
+
|
|
11743
12013
|
class ScheduledUpdateConfigOutputTypeDef(TypedDict):
|
|
11744
12014
|
ScheduleExpression: str
|
|
11745
12015
|
DeploymentConfig: NotRequired[DeploymentConfigurationOutputTypeDef]
|
|
@@ -12060,6 +12330,17 @@ InferenceComponentDeploymentConfigUnionTypeDef = Union[
|
|
|
12060
12330
|
]
|
|
12061
12331
|
|
|
12062
12332
|
|
|
12333
|
+
class ResourceConfigTypeDef(TypedDict):
|
|
12334
|
+
VolumeSizeInGB: int
|
|
12335
|
+
InstanceType: NotRequired[TrainingInstanceTypeType]
|
|
12336
|
+
InstanceCount: NotRequired[int]
|
|
12337
|
+
VolumeKmsKeyId: NotRequired[str]
|
|
12338
|
+
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
12339
|
+
InstanceGroups: NotRequired[Sequence[InstanceGroupTypeDef]]
|
|
12340
|
+
TrainingPlanArn: NotRequired[str]
|
|
12341
|
+
InstancePlacementConfig: NotRequired[InstancePlacementConfigUnionTypeDef]
|
|
12342
|
+
|
|
12343
|
+
|
|
12063
12344
|
class TrainingSpecificationOutputTypeDef(TypedDict):
|
|
12064
12345
|
TrainingImage: str
|
|
12065
12346
|
SupportedTrainingInstanceTypes: List[TrainingInstanceTypeType]
|
|
@@ -12712,6 +12993,18 @@ class ListPipelineExecutionStepsResponseTypeDef(TypedDict):
|
|
|
12712
12993
|
NextToken: NotRequired[str]
|
|
12713
12994
|
|
|
12714
12995
|
|
|
12996
|
+
class ClusterEventDetailTypeDef(TypedDict):
|
|
12997
|
+
EventId: str
|
|
12998
|
+
ClusterArn: str
|
|
12999
|
+
ClusterName: str
|
|
13000
|
+
ResourceType: ClusterEventResourceTypeType
|
|
13001
|
+
EventTime: datetime
|
|
13002
|
+
InstanceGroupName: NotRequired[str]
|
|
13003
|
+
InstanceId: NotRequired[str]
|
|
13004
|
+
EventDetails: NotRequired[EventDetailsTypeDef]
|
|
13005
|
+
Description: NotRequired[str]
|
|
13006
|
+
|
|
13007
|
+
|
|
12715
13008
|
class ClusterInstanceGroupDetailsTypeDef(TypedDict):
|
|
12716
13009
|
CurrentCount: NotRequired[int]
|
|
12717
13010
|
TargetCount: NotRequired[int]
|
|
@@ -12727,6 +13020,8 @@ class ClusterInstanceGroupDetailsTypeDef(TypedDict):
|
|
|
12727
13020
|
TrainingPlanStatus: NotRequired[str]
|
|
12728
13021
|
OverrideVpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
12729
13022
|
ScheduledUpdateConfig: NotRequired[ScheduledUpdateConfigOutputTypeDef]
|
|
13023
|
+
CurrentImageId: NotRequired[str]
|
|
13024
|
+
DesiredImageId: NotRequired[str]
|
|
12730
13025
|
|
|
12731
13026
|
|
|
12732
13027
|
class ClusterRestrictedInstanceGroupDetailsTypeDef(TypedDict):
|
|
@@ -12755,6 +13050,7 @@ class UpdateClusterSoftwareRequestTypeDef(TypedDict):
|
|
|
12755
13050
|
ClusterName: str
|
|
12756
13051
|
InstanceGroups: NotRequired[Sequence[UpdateClusterSoftwareInstanceGroupSpecificationTypeDef]]
|
|
12757
13052
|
DeploymentConfig: NotRequired[DeploymentConfigurationUnionTypeDef]
|
|
13053
|
+
ImageId: NotRequired[str]
|
|
12758
13054
|
|
|
12759
13055
|
|
|
12760
13056
|
DeploymentConfigUnionTypeDef = Union[DeploymentConfigTypeDef, DeploymentConfigOutputTypeDef]
|
|
@@ -12858,6 +13154,7 @@ class UpdateInferenceComponentInputTypeDef(TypedDict):
|
|
|
12858
13154
|
DeploymentConfig: NotRequired[InferenceComponentDeploymentConfigUnionTypeDef]
|
|
12859
13155
|
|
|
12860
13156
|
|
|
13157
|
+
ResourceConfigUnionTypeDef = Union[ResourceConfigTypeDef, ResourceConfigOutputTypeDef]
|
|
12861
13158
|
TrainingSpecificationUnionTypeDef = Union[
|
|
12862
13159
|
TrainingSpecificationTypeDef, TrainingSpecificationOutputTypeDef
|
|
12863
13160
|
]
|
|
@@ -13322,6 +13619,11 @@ class CreateAutoMLJobV2RequestTypeDef(TypedDict):
|
|
|
13322
13619
|
AutoMLComputeConfig: NotRequired[AutoMLComputeConfigTypeDef]
|
|
13323
13620
|
|
|
13324
13621
|
|
|
13622
|
+
class DescribeClusterEventResponseTypeDef(TypedDict):
|
|
13623
|
+
EventDetails: ClusterEventDetailTypeDef
|
|
13624
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
13625
|
+
|
|
13626
|
+
|
|
13325
13627
|
class DescribeClusterResponseTypeDef(TypedDict):
|
|
13326
13628
|
ClusterArn: str
|
|
13327
13629
|
ClusterName: str
|
|
@@ -13333,6 +13635,7 @@ class DescribeClusterResponseTypeDef(TypedDict):
|
|
|
13333
13635
|
VpcConfig: VpcConfigOutputTypeDef
|
|
13334
13636
|
Orchestrator: ClusterOrchestratorTypeDef
|
|
13335
13637
|
NodeRecovery: ClusterNodeRecoveryType
|
|
13638
|
+
NodeProvisioningMode: Literal["Continuous"]
|
|
13336
13639
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
13337
13640
|
|
|
13338
13641
|
|
|
@@ -13612,6 +13915,7 @@ class ClusterInstanceGroupSpecificationTypeDef(TypedDict):
|
|
|
13612
13915
|
TrainingPlanArn: NotRequired[str]
|
|
13613
13916
|
OverrideVpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
13614
13917
|
ScheduledUpdateConfig: NotRequired[ScheduledUpdateConfigUnionTypeDef]
|
|
13918
|
+
ImageId: NotRequired[str]
|
|
13615
13919
|
|
|
13616
13920
|
|
|
13617
13921
|
class ClusterRestrictedInstanceGroupSpecificationTypeDef(TypedDict):
|
|
@@ -13814,6 +14118,7 @@ class CreateClusterRequestTypeDef(TypedDict):
|
|
|
13814
14118
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
13815
14119
|
Orchestrator: NotRequired[ClusterOrchestratorTypeDef]
|
|
13816
14120
|
NodeRecovery: NotRequired[ClusterNodeRecoveryType]
|
|
14121
|
+
NodeProvisioningMode: NotRequired[Literal["Continuous"]]
|
|
13817
14122
|
|
|
13818
14123
|
|
|
13819
14124
|
class UpdateClusterRequestTypeDef(TypedDict):
|