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,
|
|
@@ -330,8 +335,10 @@ __all__ = (
|
|
|
330
335
|
"ActionSummaryTypeDef",
|
|
331
336
|
"AddAssociationRequestTypeDef",
|
|
332
337
|
"AddAssociationResponseTypeDef",
|
|
338
|
+
"AddClusterNodeSpecificationTypeDef",
|
|
333
339
|
"AddTagsInputTypeDef",
|
|
334
340
|
"AddTagsOutputTypeDef",
|
|
341
|
+
"AdditionalEnisTypeDef",
|
|
335
342
|
"AdditionalInferenceSpecificationDefinitionOutputTypeDef",
|
|
336
343
|
"AdditionalInferenceSpecificationDefinitionTypeDef",
|
|
337
344
|
"AdditionalInferenceSpecificationDefinitionUnionTypeDef",
|
|
@@ -414,7 +421,11 @@ __all__ = (
|
|
|
414
421
|
"AutoRollbackConfigOutputTypeDef",
|
|
415
422
|
"AutoRollbackConfigTypeDef",
|
|
416
423
|
"AutotuneTypeDef",
|
|
424
|
+
"BatchAddClusterNodesErrorTypeDef",
|
|
425
|
+
"BatchAddClusterNodesRequestTypeDef",
|
|
426
|
+
"BatchAddClusterNodesResponseTypeDef",
|
|
417
427
|
"BatchDataCaptureConfigTypeDef",
|
|
428
|
+
"BatchDeleteClusterNodeLogicalIdsErrorTypeDef",
|
|
418
429
|
"BatchDeleteClusterNodesErrorTypeDef",
|
|
419
430
|
"BatchDeleteClusterNodesRequestTypeDef",
|
|
420
431
|
"BatchDeleteClusterNodesResponseTypeDef",
|
|
@@ -435,6 +446,7 @@ __all__ = (
|
|
|
435
446
|
"CandidatePropertiesTypeDef",
|
|
436
447
|
"CanvasAppSettingsOutputTypeDef",
|
|
437
448
|
"CanvasAppSettingsTypeDef",
|
|
449
|
+
"CapacityReservationTypeDef",
|
|
438
450
|
"CapacitySizeConfigTypeDef",
|
|
439
451
|
"CapacitySizeTypeDef",
|
|
440
452
|
"CaptureContentTypeHeaderOutputTypeDef",
|
|
@@ -469,12 +481,15 @@ __all__ = (
|
|
|
469
481
|
"ClarifyShapConfigTypeDef",
|
|
470
482
|
"ClarifyTextConfigTypeDef",
|
|
471
483
|
"ClusterEbsVolumeConfigTypeDef",
|
|
484
|
+
"ClusterEventDetailTypeDef",
|
|
485
|
+
"ClusterEventSummaryTypeDef",
|
|
472
486
|
"ClusterInstanceGroupDetailsTypeDef",
|
|
473
487
|
"ClusterInstanceGroupSpecificationTypeDef",
|
|
474
488
|
"ClusterInstancePlacementTypeDef",
|
|
475
489
|
"ClusterInstanceStatusDetailsTypeDef",
|
|
476
490
|
"ClusterInstanceStorageConfigTypeDef",
|
|
477
491
|
"ClusterLifeCycleConfigTypeDef",
|
|
492
|
+
"ClusterMetadataTypeDef",
|
|
478
493
|
"ClusterNodeDetailsTypeDef",
|
|
479
494
|
"ClusterNodeSummaryTypeDef",
|
|
480
495
|
"ClusterOrchestratorEksConfigTypeDef",
|
|
@@ -772,6 +787,8 @@ __all__ = (
|
|
|
772
787
|
"DescribeAutoMLJobResponseTypeDef",
|
|
773
788
|
"DescribeAutoMLJobV2RequestTypeDef",
|
|
774
789
|
"DescribeAutoMLJobV2ResponseTypeDef",
|
|
790
|
+
"DescribeClusterEventRequestTypeDef",
|
|
791
|
+
"DescribeClusterEventResponseTypeDef",
|
|
775
792
|
"DescribeClusterNodeRequestTypeDef",
|
|
776
793
|
"DescribeClusterNodeResponseTypeDef",
|
|
777
794
|
"DescribeClusterRequestTypeDef",
|
|
@@ -881,6 +898,8 @@ __all__ = (
|
|
|
881
898
|
"DescribeProcessingJobResponseTypeDef",
|
|
882
899
|
"DescribeProjectInputTypeDef",
|
|
883
900
|
"DescribeProjectOutputTypeDef",
|
|
901
|
+
"DescribeReservedCapacityRequestTypeDef",
|
|
902
|
+
"DescribeReservedCapacityResponseTypeDef",
|
|
884
903
|
"DescribeSpaceRequestTypeDef",
|
|
885
904
|
"DescribeSpaceResponseTypeDef",
|
|
886
905
|
"DescribeStudioLifecycleConfigRequestTypeDef",
|
|
@@ -972,6 +991,8 @@ __all__ = (
|
|
|
972
991
|
"EnvironmentParameterRangesTypeDef",
|
|
973
992
|
"EnvironmentParameterTypeDef",
|
|
974
993
|
"ErrorInfoTypeDef",
|
|
994
|
+
"EventDetailsTypeDef",
|
|
995
|
+
"EventMetadataTypeDef",
|
|
975
996
|
"ExperimentConfigTypeDef",
|
|
976
997
|
"ExperimentSourceTypeDef",
|
|
977
998
|
"ExperimentSummaryTypeDef",
|
|
@@ -1097,8 +1118,14 @@ __all__ = (
|
|
|
1097
1118
|
"InferenceSpecificationUnionTypeDef",
|
|
1098
1119
|
"InfraCheckConfigTypeDef",
|
|
1099
1120
|
"InputConfigTypeDef",
|
|
1121
|
+
"InstanceGroupMetadataTypeDef",
|
|
1122
|
+
"InstanceGroupScalingMetadataTypeDef",
|
|
1100
1123
|
"InstanceGroupTypeDef",
|
|
1101
1124
|
"InstanceMetadataServiceConfigurationTypeDef",
|
|
1125
|
+
"InstanceMetadataTypeDef",
|
|
1126
|
+
"InstancePlacementConfigOutputTypeDef",
|
|
1127
|
+
"InstancePlacementConfigTypeDef",
|
|
1128
|
+
"InstancePlacementConfigUnionTypeDef",
|
|
1102
1129
|
"IntegerParameterRangeSpecificationTypeDef",
|
|
1103
1130
|
"IntegerParameterRangeTypeDef",
|
|
1104
1131
|
"JupyterLabAppImageConfigOutputTypeDef",
|
|
@@ -1165,6 +1192,9 @@ __all__ = (
|
|
|
1165
1192
|
"ListCandidatesForAutoMLJobRequestPaginateTypeDef",
|
|
1166
1193
|
"ListCandidatesForAutoMLJobRequestTypeDef",
|
|
1167
1194
|
"ListCandidatesForAutoMLJobResponseTypeDef",
|
|
1195
|
+
"ListClusterEventsRequestPaginateTypeDef",
|
|
1196
|
+
"ListClusterEventsRequestTypeDef",
|
|
1197
|
+
"ListClusterEventsResponseTypeDef",
|
|
1168
1198
|
"ListClusterNodesRequestPaginateTypeDef",
|
|
1169
1199
|
"ListClusterNodesRequestTypeDef",
|
|
1170
1200
|
"ListClusterNodesResponseTypeDef",
|
|
@@ -1371,6 +1401,9 @@ __all__ = (
|
|
|
1371
1401
|
"ListTrialsRequestPaginateTypeDef",
|
|
1372
1402
|
"ListTrialsRequestTypeDef",
|
|
1373
1403
|
"ListTrialsResponseTypeDef",
|
|
1404
|
+
"ListUltraServersByReservedCapacityRequestPaginateTypeDef",
|
|
1405
|
+
"ListUltraServersByReservedCapacityRequestTypeDef",
|
|
1406
|
+
"ListUltraServersByReservedCapacityResponseTypeDef",
|
|
1374
1407
|
"ListUserProfilesRequestPaginateTypeDef",
|
|
1375
1408
|
"ListUserProfilesRequestTypeDef",
|
|
1376
1409
|
"ListUserProfilesResponseTypeDef",
|
|
@@ -1514,6 +1547,7 @@ __all__ = (
|
|
|
1514
1547
|
"NetworkConfigOutputTypeDef",
|
|
1515
1548
|
"NetworkConfigTypeDef",
|
|
1516
1549
|
"NetworkConfigUnionTypeDef",
|
|
1550
|
+
"NodeAdditionResultTypeDef",
|
|
1517
1551
|
"NotebookInstanceLifecycleConfigSummaryTypeDef",
|
|
1518
1552
|
"NotebookInstanceLifecycleHookTypeDef",
|
|
1519
1553
|
"NotebookInstanceSummaryTypeDef",
|
|
@@ -1574,6 +1608,7 @@ __all__ = (
|
|
|
1574
1608
|
"PipelineTypeDef",
|
|
1575
1609
|
"PipelineVersionSummaryTypeDef",
|
|
1576
1610
|
"PipelineVersionTypeDef",
|
|
1611
|
+
"PlacementSpecificationTypeDef",
|
|
1577
1612
|
"PredefinedMetricSpecificationTypeDef",
|
|
1578
1613
|
"PresignedUrlAccessConfigTypeDef",
|
|
1579
1614
|
"PriorityClassTypeDef",
|
|
@@ -1850,6 +1885,9 @@ __all__ = (
|
|
|
1850
1885
|
"UiConfigTypeDef",
|
|
1851
1886
|
"UiTemplateInfoTypeDef",
|
|
1852
1887
|
"UiTemplateTypeDef",
|
|
1888
|
+
"UltraServerInfoTypeDef",
|
|
1889
|
+
"UltraServerSummaryTypeDef",
|
|
1890
|
+
"UltraServerTypeDef",
|
|
1853
1891
|
"UnifiedStudioSettingsTypeDef",
|
|
1854
1892
|
"UpdateActionRequestTypeDef",
|
|
1855
1893
|
"UpdateActionResponseTypeDef",
|
|
@@ -1975,10 +2013,17 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
1975
2013
|
RetryAttempts: int
|
|
1976
2014
|
HostId: NotRequired[str]
|
|
1977
2015
|
|
|
2016
|
+
class AddClusterNodeSpecificationTypeDef(TypedDict):
|
|
2017
|
+
InstanceGroupName: str
|
|
2018
|
+
IncrementTargetCountBy: int
|
|
2019
|
+
|
|
1978
2020
|
class TagTypeDef(TypedDict):
|
|
1979
2021
|
Key: str
|
|
1980
2022
|
Value: str
|
|
1981
2023
|
|
|
2024
|
+
class AdditionalEnisTypeDef(TypedDict):
|
|
2025
|
+
EfaEnis: NotRequired[List[str]]
|
|
2026
|
+
|
|
1982
2027
|
class AdditionalS3DataSourceTypeDef(TypedDict):
|
|
1983
2028
|
S3DataType: AdditionalS3DataSourceDataTypeType
|
|
1984
2029
|
S3Uri: str
|
|
@@ -2160,11 +2205,27 @@ class AutoParameterTypeDef(TypedDict):
|
|
|
2160
2205
|
class AutotuneTypeDef(TypedDict):
|
|
2161
2206
|
Mode: Literal["Enabled"]
|
|
2162
2207
|
|
|
2208
|
+
class BatchAddClusterNodesErrorTypeDef(TypedDict):
|
|
2209
|
+
InstanceGroupName: str
|
|
2210
|
+
ErrorCode: BatchAddClusterNodesErrorCodeType
|
|
2211
|
+
FailedCount: int
|
|
2212
|
+
Message: NotRequired[str]
|
|
2213
|
+
|
|
2214
|
+
class NodeAdditionResultTypeDef(TypedDict):
|
|
2215
|
+
NodeLogicalId: str
|
|
2216
|
+
InstanceGroupName: str
|
|
2217
|
+
Status: ClusterInstanceStatusType
|
|
2218
|
+
|
|
2163
2219
|
class BatchDataCaptureConfigTypeDef(TypedDict):
|
|
2164
2220
|
DestinationS3Uri: str
|
|
2165
2221
|
KmsKeyId: NotRequired[str]
|
|
2166
2222
|
GenerateInferenceId: NotRequired[bool]
|
|
2167
2223
|
|
|
2224
|
+
class BatchDeleteClusterNodeLogicalIdsErrorTypeDef(TypedDict):
|
|
2225
|
+
Code: BatchDeleteClusterNodesErrorCodeType
|
|
2226
|
+
Message: str
|
|
2227
|
+
NodeLogicalId: str
|
|
2228
|
+
|
|
2168
2229
|
class BatchDeleteClusterNodesErrorTypeDef(TypedDict):
|
|
2169
2230
|
Code: BatchDeleteClusterNodesErrorCodeType
|
|
2170
2231
|
Message: str
|
|
@@ -2173,6 +2234,7 @@ class BatchDeleteClusterNodesErrorTypeDef(TypedDict):
|
|
|
2173
2234
|
class BatchDeleteClusterNodesRequestTypeDef(TypedDict):
|
|
2174
2235
|
ClusterName: str
|
|
2175
2236
|
NodeIds: NotRequired[Sequence[str]]
|
|
2237
|
+
NodeLogicalIds: NotRequired[Sequence[str]]
|
|
2176
2238
|
|
|
2177
2239
|
class BatchDescribeModelPackageErrorTypeDef(TypedDict):
|
|
2178
2240
|
ErrorCode: str
|
|
@@ -2241,6 +2303,13 @@ class WorkspaceSettingsTypeDef(TypedDict):
|
|
|
2241
2303
|
S3ArtifactPath: NotRequired[str]
|
|
2242
2304
|
S3KmsKeyId: NotRequired[str]
|
|
2243
2305
|
|
|
2306
|
+
CapacityReservationTypeDef = TypedDict(
|
|
2307
|
+
"CapacityReservationTypeDef",
|
|
2308
|
+
{
|
|
2309
|
+
"Arn": NotRequired[str],
|
|
2310
|
+
"Type": NotRequired[CapacityReservationTypeType],
|
|
2311
|
+
},
|
|
2312
|
+
)
|
|
2244
2313
|
CapacitySizeConfigTypeDef = TypedDict(
|
|
2245
2314
|
"CapacitySizeConfigTypeDef",
|
|
2246
2315
|
{
|
|
@@ -2377,6 +2446,16 @@ class ClarifyTextConfigTypeDef(TypedDict):
|
|
|
2377
2446
|
class ClusterEbsVolumeConfigTypeDef(TypedDict):
|
|
2378
2447
|
VolumeSizeInGB: NotRequired[int]
|
|
2379
2448
|
|
|
2449
|
+
class ClusterEventSummaryTypeDef(TypedDict):
|
|
2450
|
+
EventId: str
|
|
2451
|
+
ClusterArn: str
|
|
2452
|
+
ClusterName: str
|
|
2453
|
+
ResourceType: ClusterEventResourceTypeType
|
|
2454
|
+
EventTime: datetime
|
|
2455
|
+
InstanceGroupName: NotRequired[str]
|
|
2456
|
+
InstanceId: NotRequired[str]
|
|
2457
|
+
Description: NotRequired[str]
|
|
2458
|
+
|
|
2380
2459
|
class ClusterLifeCycleConfigTypeDef(TypedDict):
|
|
2381
2460
|
SourceS3Uri: str
|
|
2382
2461
|
OnCreate: str
|
|
@@ -2389,6 +2468,14 @@ class ClusterInstanceStatusDetailsTypeDef(TypedDict):
|
|
|
2389
2468
|
Status: ClusterInstanceStatusType
|
|
2390
2469
|
Message: NotRequired[str]
|
|
2391
2470
|
|
|
2471
|
+
class ClusterMetadataTypeDef(TypedDict):
|
|
2472
|
+
FailureMessage: NotRequired[str]
|
|
2473
|
+
EksRoleAccessEntries: NotRequired[List[str]]
|
|
2474
|
+
SlrAccessEntry: NotRequired[str]
|
|
2475
|
+
|
|
2476
|
+
class UltraServerInfoTypeDef(TypedDict):
|
|
2477
|
+
Id: NotRequired[str]
|
|
2478
|
+
|
|
2392
2479
|
class ClusterOrchestratorEksConfigTypeDef(TypedDict):
|
|
2393
2480
|
ClusterArn: str
|
|
2394
2481
|
|
|
@@ -3116,9 +3203,14 @@ class ModelDeployResultTypeDef(TypedDict):
|
|
|
3116
3203
|
class DescribeAutoMLJobV2RequestTypeDef(TypedDict):
|
|
3117
3204
|
AutoMLJobName: str
|
|
3118
3205
|
|
|
3206
|
+
class DescribeClusterEventRequestTypeDef(TypedDict):
|
|
3207
|
+
EventId: str
|
|
3208
|
+
ClusterName: str
|
|
3209
|
+
|
|
3119
3210
|
class DescribeClusterNodeRequestTypeDef(TypedDict):
|
|
3120
3211
|
ClusterName: str
|
|
3121
3212
|
NodeId: NotRequired[str]
|
|
3213
|
+
NodeLogicalId: NotRequired[str]
|
|
3122
3214
|
|
|
3123
3215
|
class DescribeClusterRequestTypeDef(TypedDict):
|
|
3124
3216
|
ClusterName: str
|
|
@@ -3439,6 +3531,16 @@ class ServiceCatalogProvisionedProductDetailsTypeDef(TypedDict):
|
|
|
3439
3531
|
ProvisionedProductId: NotRequired[str]
|
|
3440
3532
|
ProvisionedProductStatusMessage: NotRequired[str]
|
|
3441
3533
|
|
|
3534
|
+
class DescribeReservedCapacityRequestTypeDef(TypedDict):
|
|
3535
|
+
ReservedCapacityArn: str
|
|
3536
|
+
|
|
3537
|
+
class UltraServerSummaryTypeDef(TypedDict):
|
|
3538
|
+
UltraServerType: str
|
|
3539
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
3540
|
+
UltraServerCount: NotRequired[int]
|
|
3541
|
+
AvailableSpareInstanceCount: NotRequired[int]
|
|
3542
|
+
UnhealthyInstanceCount: NotRequired[int]
|
|
3543
|
+
|
|
3442
3544
|
class DescribeSpaceRequestTypeDef(TypedDict):
|
|
3443
3545
|
DomainId: str
|
|
3444
3546
|
SpaceName: str
|
|
@@ -3505,6 +3607,9 @@ class ReservedCapacitySummaryTypeDef(TypedDict):
|
|
|
3505
3607
|
InstanceType: ReservedCapacityInstanceTypeType
|
|
3506
3608
|
TotalInstanceCount: int
|
|
3507
3609
|
Status: ReservedCapacityStatusType
|
|
3610
|
+
ReservedCapacityType: NotRequired[ReservedCapacityTypeType]
|
|
3611
|
+
UltraServerType: NotRequired[str]
|
|
3612
|
+
UltraServerCount: NotRequired[int]
|
|
3508
3613
|
AvailabilityZone: NotRequired[str]
|
|
3509
3614
|
DurationHours: NotRequired[int]
|
|
3510
3615
|
DurationMinutes: NotRequired[int]
|
|
@@ -3727,6 +3832,11 @@ class EnvironmentParameterTypeDef(TypedDict):
|
|
|
3727
3832
|
ValueType: str
|
|
3728
3833
|
Value: str
|
|
3729
3834
|
|
|
3835
|
+
class InstanceGroupScalingMetadataTypeDef(TypedDict):
|
|
3836
|
+
InstanceCount: NotRequired[int]
|
|
3837
|
+
TargetCount: NotRequired[int]
|
|
3838
|
+
FailureMessage: NotRequired[str]
|
|
3839
|
+
|
|
3730
3840
|
class FailStepMetadataTypeDef(TypedDict):
|
|
3731
3841
|
ErrorMessage: NotRequired[str]
|
|
3732
3842
|
|
|
@@ -3946,6 +4056,10 @@ class InstanceGroupTypeDef(TypedDict):
|
|
|
3946
4056
|
InstanceCount: int
|
|
3947
4057
|
InstanceGroupName: str
|
|
3948
4058
|
|
|
4059
|
+
class PlacementSpecificationTypeDef(TypedDict):
|
|
4060
|
+
InstanceCount: int
|
|
4061
|
+
UltraServerId: NotRequired[str]
|
|
4062
|
+
|
|
3949
4063
|
class IntegerParameterRangeSpecificationTypeDef(TypedDict):
|
|
3950
4064
|
MinValue: str
|
|
3951
4065
|
MaxValue: str
|
|
@@ -4261,6 +4375,24 @@ class TransformJobSummaryTypeDef(TypedDict):
|
|
|
4261
4375
|
LastModifiedTime: NotRequired[datetime]
|
|
4262
4376
|
FailureReason: NotRequired[str]
|
|
4263
4377
|
|
|
4378
|
+
class ListUltraServersByReservedCapacityRequestTypeDef(TypedDict):
|
|
4379
|
+
ReservedCapacityArn: str
|
|
4380
|
+
MaxResults: NotRequired[int]
|
|
4381
|
+
NextToken: NotRequired[str]
|
|
4382
|
+
|
|
4383
|
+
class UltraServerTypeDef(TypedDict):
|
|
4384
|
+
UltraServerId: str
|
|
4385
|
+
UltraServerType: str
|
|
4386
|
+
AvailabilityZone: str
|
|
4387
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
4388
|
+
TotalInstanceCount: int
|
|
4389
|
+
ConfiguredSpareInstanceCount: NotRequired[int]
|
|
4390
|
+
AvailableInstanceCount: NotRequired[int]
|
|
4391
|
+
InUseInstanceCount: NotRequired[int]
|
|
4392
|
+
AvailableSpareInstanceCount: NotRequired[int]
|
|
4393
|
+
UnhealthyInstanceCount: NotRequired[int]
|
|
4394
|
+
HealthStatus: NotRequired[UltraServerHealthStatusType]
|
|
4395
|
+
|
|
4264
4396
|
class ListUserProfilesRequestTypeDef(TypedDict):
|
|
4265
4397
|
NextToken: NotRequired[str]
|
|
4266
4398
|
MaxResults: NotRequired[int]
|
|
@@ -4639,6 +4771,9 @@ class RenderingErrorTypeDef(TypedDict):
|
|
|
4639
4771
|
class ReservedCapacityOfferingTypeDef(TypedDict):
|
|
4640
4772
|
InstanceType: ReservedCapacityInstanceTypeType
|
|
4641
4773
|
InstanceCount: int
|
|
4774
|
+
ReservedCapacityType: NotRequired[ReservedCapacityTypeType]
|
|
4775
|
+
UltraServerType: NotRequired[str]
|
|
4776
|
+
UltraServerCount: NotRequired[int]
|
|
4642
4777
|
AvailabilityZone: NotRequired[str]
|
|
4643
4778
|
DurationHours: NotRequired[int]
|
|
4644
4779
|
DurationMinutes: NotRequired[int]
|
|
@@ -5517,6 +5652,11 @@ class UpdateUserProfileResponseTypeDef(TypedDict):
|
|
|
5517
5652
|
UserProfileArn: str
|
|
5518
5653
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5519
5654
|
|
|
5655
|
+
class BatchAddClusterNodesRequestTypeDef(TypedDict):
|
|
5656
|
+
ClusterName: str
|
|
5657
|
+
NodesToAdd: Sequence[AddClusterNodeSpecificationTypeDef]
|
|
5658
|
+
ClientToken: NotRequired[str]
|
|
5659
|
+
|
|
5520
5660
|
class AddTagsInputTypeDef(TypedDict):
|
|
5521
5661
|
ResourceArn: str
|
|
5522
5662
|
Tags: Sequence[TagTypeDef]
|
|
@@ -5569,6 +5709,7 @@ class CreateStudioLifecycleConfigRequestTypeDef(TypedDict):
|
|
|
5569
5709
|
class CreateTrainingPlanRequestTypeDef(TypedDict):
|
|
5570
5710
|
TrainingPlanName: str
|
|
5571
5711
|
TrainingPlanOfferingId: str
|
|
5712
|
+
SpareInstanceCountPerUltraServer: NotRequired[int]
|
|
5572
5713
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
5573
5714
|
|
|
5574
5715
|
class ImportHubContentRequestTypeDef(TypedDict):
|
|
@@ -5787,9 +5928,16 @@ class NetworkConfigTypeDef(TypedDict):
|
|
|
5787
5928
|
|
|
5788
5929
|
VpcConfigUnionTypeDef = Union[VpcConfigTypeDef, VpcConfigOutputTypeDef]
|
|
5789
5930
|
|
|
5931
|
+
class BatchAddClusterNodesResponseTypeDef(TypedDict):
|
|
5932
|
+
Successful: List[NodeAdditionResultTypeDef]
|
|
5933
|
+
Failed: List[BatchAddClusterNodesErrorTypeDef]
|
|
5934
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5935
|
+
|
|
5790
5936
|
class BatchDeleteClusterNodesResponseTypeDef(TypedDict):
|
|
5791
5937
|
Failed: List[BatchDeleteClusterNodesErrorTypeDef]
|
|
5792
5938
|
Successful: List[str]
|
|
5939
|
+
FailedNodeLogicalIds: List[BatchDeleteClusterNodeLogicalIdsErrorTypeDef]
|
|
5940
|
+
SuccessfulNodeLogicalIds: List[str]
|
|
5793
5941
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5794
5942
|
|
|
5795
5943
|
class BiasTypeDef(TypedDict):
|
|
@@ -5854,6 +6002,22 @@ class CanvasAppSettingsTypeDef(TypedDict):
|
|
|
5854
6002
|
GenerativeAiSettings: NotRequired[GenerativeAiSettingsTypeDef]
|
|
5855
6003
|
EmrServerlessSettings: NotRequired[EmrServerlessSettingsTypeDef]
|
|
5856
6004
|
|
|
6005
|
+
class InstanceGroupMetadataTypeDef(TypedDict):
|
|
6006
|
+
FailureMessage: NotRequired[str]
|
|
6007
|
+
AvailabilityZoneId: NotRequired[str]
|
|
6008
|
+
CapacityReservation: NotRequired[CapacityReservationTypeDef]
|
|
6009
|
+
SubnetId: NotRequired[str]
|
|
6010
|
+
SecurityGroupIds: NotRequired[List[str]]
|
|
6011
|
+
AmiOverride: NotRequired[str]
|
|
6012
|
+
|
|
6013
|
+
class InstanceMetadataTypeDef(TypedDict):
|
|
6014
|
+
CustomerEni: NotRequired[str]
|
|
6015
|
+
AdditionalEnis: NotRequired[AdditionalEnisTypeDef]
|
|
6016
|
+
CapacityReservation: NotRequired[CapacityReservationTypeDef]
|
|
6017
|
+
FailureMessage: NotRequired[str]
|
|
6018
|
+
LcsExecutionState: NotRequired[str]
|
|
6019
|
+
NodeLogicalId: NotRequired[str]
|
|
6020
|
+
|
|
5857
6021
|
class RollingDeploymentPolicyTypeDef(TypedDict):
|
|
5858
6022
|
MaximumBatchSize: CapacitySizeConfigTypeDef
|
|
5859
6023
|
RollbackMaximumBatchSize: NotRequired[CapacitySizeConfigTypeDef]
|
|
@@ -5938,13 +6102,20 @@ class ClarifyShapConfigTypeDef(TypedDict):
|
|
|
5938
6102
|
class ClusterInstanceStorageConfigTypeDef(TypedDict):
|
|
5939
6103
|
EbsVolumeConfig: NotRequired[ClusterEbsVolumeConfigTypeDef]
|
|
5940
6104
|
|
|
6105
|
+
class ListClusterEventsResponseTypeDef(TypedDict):
|
|
6106
|
+
Events: List[ClusterEventSummaryTypeDef]
|
|
6107
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
6108
|
+
NextToken: NotRequired[str]
|
|
6109
|
+
|
|
5941
6110
|
class ClusterNodeSummaryTypeDef(TypedDict):
|
|
5942
6111
|
InstanceGroupName: str
|
|
5943
6112
|
InstanceId: str
|
|
5944
6113
|
InstanceType: ClusterInstanceTypeType
|
|
5945
6114
|
LaunchTime: datetime
|
|
5946
6115
|
InstanceStatus: ClusterInstanceStatusDetailsTypeDef
|
|
6116
|
+
NodeLogicalId: NotRequired[str]
|
|
5947
6117
|
LastSoftwareUpdateTime: NotRequired[datetime]
|
|
6118
|
+
UltraServerInfo: NotRequired[UltraServerInfoTypeDef]
|
|
5948
6119
|
|
|
5949
6120
|
class ClusterOrchestratorTypeDef(TypedDict):
|
|
5950
6121
|
Eks: ClusterOrchestratorEksConfigTypeDef
|
|
@@ -6202,6 +6373,10 @@ class ListTrainingJobsForHyperParameterTuningJobRequestPaginateTypeDef(TypedDict
|
|
|
6202
6373
|
SortOrder: NotRequired[SortOrderType]
|
|
6203
6374
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
6204
6375
|
|
|
6376
|
+
class ListUltraServersByReservedCapacityRequestPaginateTypeDef(TypedDict):
|
|
6377
|
+
ReservedCapacityArn: str
|
|
6378
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
6379
|
+
|
|
6205
6380
|
class ListUserProfilesRequestPaginateTypeDef(TypedDict):
|
|
6206
6381
|
SortOrder: NotRequired[SortOrderType]
|
|
6207
6382
|
SortBy: NotRequired[UserProfileSortKeyType]
|
|
@@ -6530,6 +6705,29 @@ class ListAutoMLJobsRequestTypeDef(TypedDict):
|
|
|
6530
6705
|
MaxResults: NotRequired[int]
|
|
6531
6706
|
NextToken: NotRequired[str]
|
|
6532
6707
|
|
|
6708
|
+
class ListClusterEventsRequestPaginateTypeDef(TypedDict):
|
|
6709
|
+
ClusterName: str
|
|
6710
|
+
InstanceGroupName: NotRequired[str]
|
|
6711
|
+
NodeId: NotRequired[str]
|
|
6712
|
+
EventTimeAfter: NotRequired[TimestampTypeDef]
|
|
6713
|
+
EventTimeBefore: NotRequired[TimestampTypeDef]
|
|
6714
|
+
SortBy: NotRequired[Literal["EventTime"]]
|
|
6715
|
+
SortOrder: NotRequired[SortOrderType]
|
|
6716
|
+
ResourceType: NotRequired[ClusterEventResourceTypeType]
|
|
6717
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
6718
|
+
|
|
6719
|
+
class ListClusterEventsRequestTypeDef(TypedDict):
|
|
6720
|
+
ClusterName: str
|
|
6721
|
+
InstanceGroupName: NotRequired[str]
|
|
6722
|
+
NodeId: NotRequired[str]
|
|
6723
|
+
EventTimeAfter: NotRequired[TimestampTypeDef]
|
|
6724
|
+
EventTimeBefore: NotRequired[TimestampTypeDef]
|
|
6725
|
+
SortBy: NotRequired[Literal["EventTime"]]
|
|
6726
|
+
SortOrder: NotRequired[SortOrderType]
|
|
6727
|
+
ResourceType: NotRequired[ClusterEventResourceTypeType]
|
|
6728
|
+
MaxResults: NotRequired[int]
|
|
6729
|
+
NextToken: NotRequired[str]
|
|
6730
|
+
|
|
6533
6731
|
class ListClusterNodesRequestPaginateTypeDef(TypedDict):
|
|
6534
6732
|
ClusterName: str
|
|
6535
6733
|
CreationTimeAfter: NotRequired[TimestampTypeDef]
|
|
@@ -6537,6 +6735,7 @@ class ListClusterNodesRequestPaginateTypeDef(TypedDict):
|
|
|
6537
6735
|
InstanceGroupNameContains: NotRequired[str]
|
|
6538
6736
|
SortBy: NotRequired[ClusterSortByType]
|
|
6539
6737
|
SortOrder: NotRequired[SortOrderType]
|
|
6738
|
+
IncludeNodeLogicalIds: NotRequired[bool]
|
|
6540
6739
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
6541
6740
|
|
|
6542
6741
|
class ListClusterNodesRequestTypeDef(TypedDict):
|
|
@@ -6548,6 +6747,7 @@ class ListClusterNodesRequestTypeDef(TypedDict):
|
|
|
6548
6747
|
NextToken: NotRequired[str]
|
|
6549
6748
|
SortBy: NotRequired[ClusterSortByType]
|
|
6550
6749
|
SortOrder: NotRequired[SortOrderType]
|
|
6750
|
+
IncludeNodeLogicalIds: NotRequired[bool]
|
|
6551
6751
|
|
|
6552
6752
|
class ListClusterSchedulerConfigsRequestPaginateTypeDef(TypedDict):
|
|
6553
6753
|
CreatedAfter: NotRequired[TimestampTypeDef]
|
|
@@ -7699,6 +7899,8 @@ class SearchTrainingPlanOfferingsRequestTypeDef(TypedDict):
|
|
|
7699
7899
|
TargetResources: Sequence[SageMakerResourceNameType]
|
|
7700
7900
|
InstanceType: NotRequired[ReservedCapacityInstanceTypeType]
|
|
7701
7901
|
InstanceCount: NotRequired[int]
|
|
7902
|
+
UltraServerType: NotRequired[str]
|
|
7903
|
+
UltraServerCount: NotRequired[int]
|
|
7702
7904
|
StartTimeAfter: NotRequired[TimestampTypeDef]
|
|
7703
7905
|
EndTimeBefore: NotRequired[TimestampTypeDef]
|
|
7704
7906
|
|
|
@@ -8015,6 +8217,22 @@ DescribePartnerAppResponseTypeDef = TypedDict(
|
|
|
8015
8217
|
},
|
|
8016
8218
|
)
|
|
8017
8219
|
|
|
8220
|
+
class DescribeReservedCapacityResponseTypeDef(TypedDict):
|
|
8221
|
+
ReservedCapacityArn: str
|
|
8222
|
+
ReservedCapacityType: ReservedCapacityTypeType
|
|
8223
|
+
Status: ReservedCapacityStatusType
|
|
8224
|
+
AvailabilityZone: str
|
|
8225
|
+
DurationHours: int
|
|
8226
|
+
DurationMinutes: int
|
|
8227
|
+
StartTime: datetime
|
|
8228
|
+
EndTime: datetime
|
|
8229
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
8230
|
+
TotalInstanceCount: int
|
|
8231
|
+
AvailableInstanceCount: int
|
|
8232
|
+
InUseInstanceCount: int
|
|
8233
|
+
UltraServerSummary: UltraServerSummaryTypeDef
|
|
8234
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
8235
|
+
|
|
8018
8236
|
class DescribeSubscribedWorkteamResponseTypeDef(TypedDict):
|
|
8019
8237
|
SubscribedWorkteam: SubscribedWorkteamTypeDef
|
|
8020
8238
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -8049,6 +8267,9 @@ class DescribeTrainingPlanResponseTypeDef(TypedDict):
|
|
|
8049
8267
|
TotalInstanceCount: int
|
|
8050
8268
|
AvailableInstanceCount: int
|
|
8051
8269
|
InUseInstanceCount: int
|
|
8270
|
+
UnhealthyInstanceCount: int
|
|
8271
|
+
AvailableSpareInstanceCount: int
|
|
8272
|
+
TotalUltraServerCount: int
|
|
8052
8273
|
TargetResources: List[SageMakerResourceNameType]
|
|
8053
8274
|
ReservedCapacitySummaries: List[ReservedCapacitySummaryTypeDef]
|
|
8054
8275
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -8067,6 +8288,7 @@ class TrainingPlanSummaryTypeDef(TypedDict):
|
|
|
8067
8288
|
TotalInstanceCount: NotRequired[int]
|
|
8068
8289
|
AvailableInstanceCount: NotRequired[int]
|
|
8069
8290
|
InUseInstanceCount: NotRequired[int]
|
|
8291
|
+
TotalUltraServerCount: NotRequired[int]
|
|
8070
8292
|
TargetResources: NotRequired[List[SageMakerResourceNameType]]
|
|
8071
8293
|
ReservedCapacitySummaries: NotRequired[List[ReservedCapacitySummaryTypeDef]]
|
|
8072
8294
|
|
|
@@ -8365,23 +8587,13 @@ class ListInferenceRecommendationsJobsResponseTypeDef(TypedDict):
|
|
|
8365
8587
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8366
8588
|
NextToken: NotRequired[str]
|
|
8367
8589
|
|
|
8368
|
-
class
|
|
8369
|
-
|
|
8370
|
-
|
|
8371
|
-
InstanceCount: NotRequired[int]
|
|
8372
|
-
VolumeKmsKeyId: NotRequired[str]
|
|
8373
|
-
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
8374
|
-
InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
|
|
8375
|
-
TrainingPlanArn: NotRequired[str]
|
|
8590
|
+
class InstancePlacementConfigOutputTypeDef(TypedDict):
|
|
8591
|
+
EnableMultipleJobs: NotRequired[bool]
|
|
8592
|
+
PlacementSpecifications: NotRequired[List[PlacementSpecificationTypeDef]]
|
|
8376
8593
|
|
|
8377
|
-
class
|
|
8378
|
-
|
|
8379
|
-
|
|
8380
|
-
InstanceCount: NotRequired[int]
|
|
8381
|
-
VolumeKmsKeyId: NotRequired[str]
|
|
8382
|
-
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
8383
|
-
InstanceGroups: NotRequired[Sequence[InstanceGroupTypeDef]]
|
|
8384
|
-
TrainingPlanArn: NotRequired[str]
|
|
8594
|
+
class InstancePlacementConfigTypeDef(TypedDict):
|
|
8595
|
+
EnableMultipleJobs: NotRequired[bool]
|
|
8596
|
+
PlacementSpecifications: NotRequired[Sequence[PlacementSpecificationTypeDef]]
|
|
8385
8597
|
|
|
8386
8598
|
class ParameterRangeOutputTypeDef(TypedDict):
|
|
8387
8599
|
IntegerParameterRangeSpecification: NotRequired[IntegerParameterRangeSpecificationTypeDef]
|
|
@@ -8575,6 +8787,11 @@ class ListTransformJobsResponseTypeDef(TypedDict):
|
|
|
8575
8787
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8576
8788
|
NextToken: NotRequired[str]
|
|
8577
8789
|
|
|
8790
|
+
class ListUltraServersByReservedCapacityResponseTypeDef(TypedDict):
|
|
8791
|
+
UltraServers: List[UltraServerTypeDef]
|
|
8792
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
8793
|
+
NextToken: NotRequired[str]
|
|
8794
|
+
|
|
8578
8795
|
class ListUserProfilesResponseTypeDef(TypedDict):
|
|
8579
8796
|
UserProfiles: List[UserProfileDetailsTypeDef]
|
|
8580
8797
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -9144,6 +9361,12 @@ class AutoMLCandidateTypeDef(TypedDict):
|
|
|
9144
9361
|
Dict[AutoMLProcessingUnitType, List[AutoMLContainerDefinitionTypeDef]]
|
|
9145
9362
|
]
|
|
9146
9363
|
|
|
9364
|
+
class EventMetadataTypeDef(TypedDict):
|
|
9365
|
+
Cluster: NotRequired[ClusterMetadataTypeDef]
|
|
9366
|
+
InstanceGroup: NotRequired[InstanceGroupMetadataTypeDef]
|
|
9367
|
+
InstanceGroupScaling: NotRequired[InstanceGroupScalingMetadataTypeDef]
|
|
9368
|
+
Instance: NotRequired[InstanceMetadataTypeDef]
|
|
9369
|
+
|
|
9147
9370
|
class DeploymentConfigurationOutputTypeDef(TypedDict):
|
|
9148
9371
|
RollingUpdatePolicy: NotRequired[RollingDeploymentPolicyTypeDef]
|
|
9149
9372
|
WaitIntervalInSeconds: NotRequired[int]
|
|
@@ -9204,6 +9427,7 @@ class ClarifyExplainerConfigTypeDef(TypedDict):
|
|
|
9204
9427
|
class ClusterNodeDetailsTypeDef(TypedDict):
|
|
9205
9428
|
InstanceGroupName: NotRequired[str]
|
|
9206
9429
|
InstanceId: NotRequired[str]
|
|
9430
|
+
NodeLogicalId: NotRequired[str]
|
|
9207
9431
|
InstanceStatus: NotRequired[ClusterInstanceStatusDetailsTypeDef]
|
|
9208
9432
|
InstanceType: NotRequired[ClusterInstanceTypeType]
|
|
9209
9433
|
LaunchTime: NotRequired[datetime]
|
|
@@ -9216,6 +9440,9 @@ class ClusterNodeDetailsTypeDef(TypedDict):
|
|
|
9216
9440
|
PrivatePrimaryIpv6: NotRequired[str]
|
|
9217
9441
|
PrivateDnsHostname: NotRequired[str]
|
|
9218
9442
|
Placement: NotRequired[ClusterInstancePlacementTypeDef]
|
|
9443
|
+
CurrentImageId: NotRequired[str]
|
|
9444
|
+
DesiredImageId: NotRequired[str]
|
|
9445
|
+
UltraServerInfo: NotRequired[UltraServerInfoTypeDef]
|
|
9219
9446
|
|
|
9220
9447
|
class ListClusterNodesResponseTypeDef(TypedDict):
|
|
9221
9448
|
ClusterNodeSummaries: List[ClusterNodeSummaryTypeDef]
|
|
@@ -9748,7 +9975,19 @@ class CreateInferenceComponentInputTypeDef(TypedDict):
|
|
|
9748
9975
|
RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
|
|
9749
9976
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
9750
9977
|
|
|
9751
|
-
|
|
9978
|
+
class ResourceConfigOutputTypeDef(TypedDict):
|
|
9979
|
+
VolumeSizeInGB: int
|
|
9980
|
+
InstanceType: NotRequired[TrainingInstanceTypeType]
|
|
9981
|
+
InstanceCount: NotRequired[int]
|
|
9982
|
+
VolumeKmsKeyId: NotRequired[str]
|
|
9983
|
+
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
9984
|
+
InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
|
|
9985
|
+
TrainingPlanArn: NotRequired[str]
|
|
9986
|
+
InstancePlacementConfig: NotRequired[InstancePlacementConfigOutputTypeDef]
|
|
9987
|
+
|
|
9988
|
+
InstancePlacementConfigUnionTypeDef = Union[
|
|
9989
|
+
InstancePlacementConfigTypeDef, InstancePlacementConfigOutputTypeDef
|
|
9990
|
+
]
|
|
9752
9991
|
HyperParameterSpecificationOutputTypeDef = TypedDict(
|
|
9753
9992
|
"HyperParameterSpecificationOutputTypeDef",
|
|
9754
9993
|
{
|
|
@@ -10336,6 +10575,9 @@ class ListCandidatesForAutoMLJobResponseTypeDef(TypedDict):
|
|
|
10336
10575
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10337
10576
|
NextToken: NotRequired[str]
|
|
10338
10577
|
|
|
10578
|
+
class EventDetailsTypeDef(TypedDict):
|
|
10579
|
+
EventMetadata: NotRequired[EventMetadataTypeDef]
|
|
10580
|
+
|
|
10339
10581
|
class ScheduledUpdateConfigOutputTypeDef(TypedDict):
|
|
10340
10582
|
ScheduleExpression: str
|
|
10341
10583
|
DeploymentConfig: NotRequired[DeploymentConfigurationOutputTypeDef]
|
|
@@ -10623,6 +10865,16 @@ InferenceComponentDeploymentConfigUnionTypeDef = Union[
|
|
|
10623
10865
|
InferenceComponentDeploymentConfigTypeDef, InferenceComponentDeploymentConfigOutputTypeDef
|
|
10624
10866
|
]
|
|
10625
10867
|
|
|
10868
|
+
class ResourceConfigTypeDef(TypedDict):
|
|
10869
|
+
VolumeSizeInGB: int
|
|
10870
|
+
InstanceType: NotRequired[TrainingInstanceTypeType]
|
|
10871
|
+
InstanceCount: NotRequired[int]
|
|
10872
|
+
VolumeKmsKeyId: NotRequired[str]
|
|
10873
|
+
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
10874
|
+
InstanceGroups: NotRequired[Sequence[InstanceGroupTypeDef]]
|
|
10875
|
+
TrainingPlanArn: NotRequired[str]
|
|
10876
|
+
InstancePlacementConfig: NotRequired[InstancePlacementConfigUnionTypeDef]
|
|
10877
|
+
|
|
10626
10878
|
class TrainingSpecificationOutputTypeDef(TypedDict):
|
|
10627
10879
|
TrainingImage: str
|
|
10628
10880
|
SupportedTrainingInstanceTypes: List[TrainingInstanceTypeType]
|
|
@@ -11216,6 +11468,17 @@ class ListPipelineExecutionStepsResponseTypeDef(TypedDict):
|
|
|
11216
11468
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11217
11469
|
NextToken: NotRequired[str]
|
|
11218
11470
|
|
|
11471
|
+
class ClusterEventDetailTypeDef(TypedDict):
|
|
11472
|
+
EventId: str
|
|
11473
|
+
ClusterArn: str
|
|
11474
|
+
ClusterName: str
|
|
11475
|
+
ResourceType: ClusterEventResourceTypeType
|
|
11476
|
+
EventTime: datetime
|
|
11477
|
+
InstanceGroupName: NotRequired[str]
|
|
11478
|
+
InstanceId: NotRequired[str]
|
|
11479
|
+
EventDetails: NotRequired[EventDetailsTypeDef]
|
|
11480
|
+
Description: NotRequired[str]
|
|
11481
|
+
|
|
11219
11482
|
class ClusterInstanceGroupDetailsTypeDef(TypedDict):
|
|
11220
11483
|
CurrentCount: NotRequired[int]
|
|
11221
11484
|
TargetCount: NotRequired[int]
|
|
@@ -11231,6 +11494,8 @@ class ClusterInstanceGroupDetailsTypeDef(TypedDict):
|
|
|
11231
11494
|
TrainingPlanStatus: NotRequired[str]
|
|
11232
11495
|
OverrideVpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
11233
11496
|
ScheduledUpdateConfig: NotRequired[ScheduledUpdateConfigOutputTypeDef]
|
|
11497
|
+
CurrentImageId: NotRequired[str]
|
|
11498
|
+
DesiredImageId: NotRequired[str]
|
|
11234
11499
|
|
|
11235
11500
|
class ClusterRestrictedInstanceGroupDetailsTypeDef(TypedDict):
|
|
11236
11501
|
CurrentCount: NotRequired[int]
|
|
@@ -11256,6 +11521,7 @@ class UpdateClusterSoftwareRequestTypeDef(TypedDict):
|
|
|
11256
11521
|
ClusterName: str
|
|
11257
11522
|
InstanceGroups: NotRequired[Sequence[UpdateClusterSoftwareInstanceGroupSpecificationTypeDef]]
|
|
11258
11523
|
DeploymentConfig: NotRequired[DeploymentConfigurationUnionTypeDef]
|
|
11524
|
+
ImageId: NotRequired[str]
|
|
11259
11525
|
|
|
11260
11526
|
DeploymentConfigUnionTypeDef = Union[DeploymentConfigTypeDef, DeploymentConfigOutputTypeDef]
|
|
11261
11527
|
|
|
@@ -11346,6 +11612,7 @@ class UpdateInferenceComponentInputTypeDef(TypedDict):
|
|
|
11346
11612
|
RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
|
|
11347
11613
|
DeploymentConfig: NotRequired[InferenceComponentDeploymentConfigUnionTypeDef]
|
|
11348
11614
|
|
|
11615
|
+
ResourceConfigUnionTypeDef = Union[ResourceConfigTypeDef, ResourceConfigOutputTypeDef]
|
|
11349
11616
|
TrainingSpecificationUnionTypeDef = Union[
|
|
11350
11617
|
TrainingSpecificationTypeDef, TrainingSpecificationOutputTypeDef
|
|
11351
11618
|
]
|
|
@@ -11771,6 +12038,10 @@ class CreateAutoMLJobV2RequestTypeDef(TypedDict):
|
|
|
11771
12038
|
DataSplitConfig: NotRequired[AutoMLDataSplitConfigTypeDef]
|
|
11772
12039
|
AutoMLComputeConfig: NotRequired[AutoMLComputeConfigTypeDef]
|
|
11773
12040
|
|
|
12041
|
+
class DescribeClusterEventResponseTypeDef(TypedDict):
|
|
12042
|
+
EventDetails: ClusterEventDetailTypeDef
|
|
12043
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
12044
|
+
|
|
11774
12045
|
class DescribeClusterResponseTypeDef(TypedDict):
|
|
11775
12046
|
ClusterArn: str
|
|
11776
12047
|
ClusterName: str
|
|
@@ -11782,6 +12053,7 @@ class DescribeClusterResponseTypeDef(TypedDict):
|
|
|
11782
12053
|
VpcConfig: VpcConfigOutputTypeDef
|
|
11783
12054
|
Orchestrator: ClusterOrchestratorTypeDef
|
|
11784
12055
|
NodeRecovery: ClusterNodeRecoveryType
|
|
12056
|
+
NodeProvisioningMode: Literal["Continuous"]
|
|
11785
12057
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11786
12058
|
|
|
11787
12059
|
ScheduledUpdateConfigUnionTypeDef = Union[
|
|
@@ -12034,6 +12306,7 @@ class ClusterInstanceGroupSpecificationTypeDef(TypedDict):
|
|
|
12034
12306
|
TrainingPlanArn: NotRequired[str]
|
|
12035
12307
|
OverrideVpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
12036
12308
|
ScheduledUpdateConfig: NotRequired[ScheduledUpdateConfigUnionTypeDef]
|
|
12309
|
+
ImageId: NotRequired[str]
|
|
12037
12310
|
|
|
12038
12311
|
class ClusterRestrictedInstanceGroupSpecificationTypeDef(TypedDict):
|
|
12039
12312
|
InstanceCount: int
|
|
@@ -12221,6 +12494,7 @@ class CreateClusterRequestTypeDef(TypedDict):
|
|
|
12221
12494
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
12222
12495
|
Orchestrator: NotRequired[ClusterOrchestratorTypeDef]
|
|
12223
12496
|
NodeRecovery: NotRequired[ClusterNodeRecoveryType]
|
|
12497
|
+
NodeProvisioningMode: NotRequired[Literal["Continuous"]]
|
|
12224
12498
|
|
|
12225
12499
|
class UpdateClusterRequestTypeDef(TypedDict):
|
|
12226
12500
|
ClusterName: str
|