mypy-boto3-sagemaker 1.35.61__py3-none-any.whl → 1.35.68__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 +2 -0
- mypy_boto3_sagemaker/__init__.pyi +2 -0
- mypy_boto3_sagemaker/__main__.py +7 -5
- mypy_boto3_sagemaker/client.py +459 -487
- mypy_boto3_sagemaker/client.pyi +459 -487
- mypy_boto3_sagemaker/literals.py +34 -0
- mypy_boto3_sagemaker/literals.pyi +34 -0
- mypy_boto3_sagemaker/paginator.py +150 -148
- mypy_boto3_sagemaker/paginator.pyi +150 -148
- mypy_boto3_sagemaker/type_defs.py +62 -31
- mypy_boto3_sagemaker/type_defs.pyi +55 -28
- mypy_boto3_sagemaker/version.py +3 -1
- mypy_boto3_sagemaker/waiter.py +28 -26
- mypy_boto3_sagemaker/waiter.pyi +28 -26
- {mypy_boto3_sagemaker-1.35.61.dist-info → mypy_boto3_sagemaker-1.35.68.dist-info}/METADATA +30 -16
- mypy_boto3_sagemaker-1.35.68.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.35.61.dist-info → mypy_boto3_sagemaker-1.35.68.dist-info}/WHEEL +1 -1
- mypy_boto3_sagemaker-1.35.61.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.35.61.dist-info → mypy_boto3_sagemaker-1.35.68.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.35.61.dist-info → mypy_boto3_sagemaker-1.35.68.dist-info}/top_level.txt +0 -0
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: ActionSourceTypeDef = ...
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2024 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -1346,6 +1348,9 @@ __all__ = (
|
|
|
1346
1348
|
"ModelQuantizationConfigTypeDef",
|
|
1347
1349
|
"ModelQuantizationConfigUnionTypeDef",
|
|
1348
1350
|
"ModelRegisterSettingsTypeDef",
|
|
1351
|
+
"ModelShardingConfigOutputTypeDef",
|
|
1352
|
+
"ModelShardingConfigTypeDef",
|
|
1353
|
+
"ModelShardingConfigUnionTypeDef",
|
|
1349
1354
|
"ModelStepMetadataTypeDef",
|
|
1350
1355
|
"ModelSummaryTypeDef",
|
|
1351
1356
|
"ModelTypeDef",
|
|
@@ -4520,6 +4525,16 @@ class ModelQuantizationConfigTypeDef(TypedDict):
|
|
|
4520
4525
|
OverrideEnvironment: NotRequired[Mapping[str, str]]
|
|
4521
4526
|
|
|
4522
4527
|
|
|
4528
|
+
class ModelShardingConfigOutputTypeDef(TypedDict):
|
|
4529
|
+
Image: NotRequired[str]
|
|
4530
|
+
OverrideEnvironment: NotRequired[Dict[str, str]]
|
|
4531
|
+
|
|
4532
|
+
|
|
4533
|
+
class ModelShardingConfigTypeDef(TypedDict):
|
|
4534
|
+
Image: NotRequired[str]
|
|
4535
|
+
OverrideEnvironment: NotRequired[Mapping[str, str]]
|
|
4536
|
+
|
|
4537
|
+
|
|
4523
4538
|
class ModelStepMetadataTypeDef(TypedDict):
|
|
4524
4539
|
Arn: NotRequired[str]
|
|
4525
4540
|
|
|
@@ -7936,10 +7951,13 @@ class ListImageVersionsResponseTypeDef(TypedDict):
|
|
|
7936
7951
|
InferenceComponentSpecificationTypeDef = TypedDict(
|
|
7937
7952
|
"InferenceComponentSpecificationTypeDef",
|
|
7938
7953
|
{
|
|
7939
|
-
"ComputeResourceRequirements": InferenceComponentComputeResourceRequirementsTypeDef,
|
|
7940
7954
|
"ModelName": NotRequired[str],
|
|
7941
7955
|
"Container": NotRequired[InferenceComponentContainerSpecificationTypeDef],
|
|
7942
7956
|
"StartupParameters": NotRequired[InferenceComponentStartupParametersTypeDef],
|
|
7957
|
+
"ComputeResourceRequirements": NotRequired[
|
|
7958
|
+
InferenceComponentComputeResourceRequirementsTypeDef
|
|
7959
|
+
],
|
|
7960
|
+
"BaseInferenceComponentName": NotRequired[str],
|
|
7943
7961
|
},
|
|
7944
7962
|
)
|
|
7945
7963
|
|
|
@@ -8982,13 +9000,19 @@ class ModelPackageStatusDetailsTypeDef(TypedDict):
|
|
|
8982
9000
|
ImageScanStatuses: NotRequired[List[ModelPackageStatusItemTypeDef]]
|
|
8983
9001
|
|
|
8984
9002
|
|
|
9003
|
+
ModelQuantizationConfigUnionTypeDef = Union[
|
|
9004
|
+
ModelQuantizationConfigTypeDef, ModelQuantizationConfigOutputTypeDef
|
|
9005
|
+
]
|
|
9006
|
+
|
|
9007
|
+
|
|
8985
9008
|
class OptimizationConfigOutputTypeDef(TypedDict):
|
|
8986
9009
|
ModelQuantizationConfig: NotRequired[ModelQuantizationConfigOutputTypeDef]
|
|
8987
9010
|
ModelCompilationConfig: NotRequired[ModelCompilationConfigOutputTypeDef]
|
|
9011
|
+
ModelShardingConfig: NotRequired[ModelShardingConfigOutputTypeDef]
|
|
8988
9012
|
|
|
8989
9013
|
|
|
8990
|
-
|
|
8991
|
-
|
|
9014
|
+
ModelShardingConfigUnionTypeDef = Union[
|
|
9015
|
+
ModelShardingConfigTypeDef, ModelShardingConfigOutputTypeDef
|
|
8992
9016
|
]
|
|
8993
9017
|
MonitoringAppSpecificationUnionTypeDef = Union[
|
|
8994
9018
|
MonitoringAppSpecificationTypeDef, MonitoringAppSpecificationOutputTypeDef
|
|
@@ -9540,17 +9564,7 @@ class ClusterInstanceGroupDetailsTypeDef(TypedDict):
|
|
|
9540
9564
|
ThreadsPerCore: NotRequired[int]
|
|
9541
9565
|
InstanceStorageConfigs: NotRequired[List[ClusterInstanceStorageConfigTypeDef]]
|
|
9542
9566
|
OnStartDeepHealthChecks: NotRequired[List[DeepHealthCheckTypeType]]
|
|
9543
|
-
|
|
9544
|
-
|
|
9545
|
-
class ClusterInstanceGroupSpecificationTypeDef(TypedDict):
|
|
9546
|
-
InstanceCount: int
|
|
9547
|
-
InstanceGroupName: str
|
|
9548
|
-
InstanceType: ClusterInstanceTypeType
|
|
9549
|
-
LifeCycleConfig: ClusterLifeCycleConfigTypeDef
|
|
9550
|
-
ExecutionRole: str
|
|
9551
|
-
ThreadsPerCore: NotRequired[int]
|
|
9552
|
-
InstanceStorageConfigs: NotRequired[Sequence[ClusterInstanceStorageConfigTypeDef]]
|
|
9553
|
-
OnStartDeepHealthChecks: NotRequired[Sequence[DeepHealthCheckTypeType]]
|
|
9567
|
+
OverrideVpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
9554
9568
|
|
|
9555
9569
|
|
|
9556
9570
|
class ClusterNodeDetailsTypeDef(TypedDict):
|
|
@@ -9560,6 +9574,7 @@ class ClusterNodeDetailsTypeDef(TypedDict):
|
|
|
9560
9574
|
InstanceType: NotRequired[ClusterInstanceTypeType]
|
|
9561
9575
|
LaunchTime: NotRequired[datetime]
|
|
9562
9576
|
LifeCycleConfig: NotRequired[ClusterLifeCycleConfigTypeDef]
|
|
9577
|
+
OverrideVpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
9563
9578
|
ThreadsPerCore: NotRequired[int]
|
|
9564
9579
|
InstanceStorageConfigs: NotRequired[List[ClusterInstanceStorageConfigTypeDef]]
|
|
9565
9580
|
PrivatePrimaryIp: NotRequired[str]
|
|
@@ -9628,6 +9643,18 @@ class AutoMLSecurityConfigTypeDef(TypedDict):
|
|
|
9628
9643
|
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
9629
9644
|
|
|
9630
9645
|
|
|
9646
|
+
class ClusterInstanceGroupSpecificationTypeDef(TypedDict):
|
|
9647
|
+
InstanceCount: int
|
|
9648
|
+
InstanceGroupName: str
|
|
9649
|
+
InstanceType: ClusterInstanceTypeType
|
|
9650
|
+
LifeCycleConfig: ClusterLifeCycleConfigTypeDef
|
|
9651
|
+
ExecutionRole: str
|
|
9652
|
+
ThreadsPerCore: NotRequired[int]
|
|
9653
|
+
InstanceStorageConfigs: NotRequired[Sequence[ClusterInstanceStorageConfigTypeDef]]
|
|
9654
|
+
OnStartDeepHealthChecks: NotRequired[Sequence[DeepHealthCheckTypeType]]
|
|
9655
|
+
OverrideVpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
9656
|
+
|
|
9657
|
+
|
|
9631
9658
|
class LabelingJobResourceConfigTypeDef(TypedDict):
|
|
9632
9659
|
VolumeKmsKeyId: NotRequired[str]
|
|
9633
9660
|
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
@@ -9685,6 +9712,7 @@ InferenceComponentSpecificationSummaryTypeDef = TypedDict(
|
|
|
9685
9712
|
"ComputeResourceRequirements": NotRequired[
|
|
9686
9713
|
InferenceComponentComputeResourceRequirementsTypeDef
|
|
9687
9714
|
],
|
|
9715
|
+
"BaseInferenceComponentName": NotRequired[str],
|
|
9688
9716
|
},
|
|
9689
9717
|
)
|
|
9690
9718
|
|
|
@@ -10129,9 +10157,9 @@ class WorkerAccessConfigurationTypeDef(TypedDict):
|
|
|
10129
10157
|
class CreateInferenceComponentInputRequestTypeDef(TypedDict):
|
|
10130
10158
|
InferenceComponentName: str
|
|
10131
10159
|
EndpointName: str
|
|
10132
|
-
VariantName: str
|
|
10133
10160
|
Specification: InferenceComponentSpecificationTypeDef
|
|
10134
|
-
|
|
10161
|
+
VariantName: NotRequired[str]
|
|
10162
|
+
RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
|
|
10135
10163
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
10136
10164
|
|
|
10137
10165
|
|
|
@@ -10260,6 +10288,7 @@ class ListModelMetadataRequestRequestTypeDef(TypedDict):
|
|
|
10260
10288
|
class OptimizationConfigTypeDef(TypedDict):
|
|
10261
10289
|
ModelQuantizationConfig: NotRequired[ModelQuantizationConfigUnionTypeDef]
|
|
10262
10290
|
ModelCompilationConfig: NotRequired[ModelCompilationConfigUnionTypeDef]
|
|
10291
|
+
ModelShardingConfig: NotRequired[ModelShardingConfigUnionTypeDef]
|
|
10263
10292
|
|
|
10264
10293
|
|
|
10265
10294
|
BatchTransformInputOutputTypeDef = TypedDict(
|
|
@@ -10750,21 +10779,6 @@ class DescribeClusterResponseTypeDef(TypedDict):
|
|
|
10750
10779
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10751
10780
|
|
|
10752
10781
|
|
|
10753
|
-
class CreateClusterRequestRequestTypeDef(TypedDict):
|
|
10754
|
-
ClusterName: str
|
|
10755
|
-
InstanceGroups: Sequence[ClusterInstanceGroupSpecificationTypeDef]
|
|
10756
|
-
VpcConfig: NotRequired[VpcConfigTypeDef]
|
|
10757
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
10758
|
-
Orchestrator: NotRequired[ClusterOrchestratorTypeDef]
|
|
10759
|
-
NodeRecovery: NotRequired[ClusterNodeRecoveryType]
|
|
10760
|
-
|
|
10761
|
-
|
|
10762
|
-
class UpdateClusterRequestRequestTypeDef(TypedDict):
|
|
10763
|
-
ClusterName: str
|
|
10764
|
-
InstanceGroups: Sequence[ClusterInstanceGroupSpecificationTypeDef]
|
|
10765
|
-
NodeRecovery: NotRequired[ClusterNodeRecoveryType]
|
|
10766
|
-
|
|
10767
|
-
|
|
10768
10782
|
class DescribeClusterNodeResponseTypeDef(TypedDict):
|
|
10769
10783
|
NodeDetails: ClusterNodeDetailsTypeDef
|
|
10770
10784
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -10849,6 +10863,23 @@ class UpdateAppImageConfigRequestRequestTypeDef(TypedDict):
|
|
|
10849
10863
|
AutoMLSecurityConfigUnionTypeDef = Union[
|
|
10850
10864
|
AutoMLSecurityConfigTypeDef, AutoMLSecurityConfigOutputTypeDef
|
|
10851
10865
|
]
|
|
10866
|
+
|
|
10867
|
+
|
|
10868
|
+
class CreateClusterRequestRequestTypeDef(TypedDict):
|
|
10869
|
+
ClusterName: str
|
|
10870
|
+
InstanceGroups: Sequence[ClusterInstanceGroupSpecificationTypeDef]
|
|
10871
|
+
VpcConfig: NotRequired[VpcConfigTypeDef]
|
|
10872
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
10873
|
+
Orchestrator: NotRequired[ClusterOrchestratorTypeDef]
|
|
10874
|
+
NodeRecovery: NotRequired[ClusterNodeRecoveryType]
|
|
10875
|
+
|
|
10876
|
+
|
|
10877
|
+
class UpdateClusterRequestRequestTypeDef(TypedDict):
|
|
10878
|
+
ClusterName: str
|
|
10879
|
+
InstanceGroups: Sequence[ClusterInstanceGroupSpecificationTypeDef]
|
|
10880
|
+
NodeRecovery: NotRequired[ClusterNodeRecoveryType]
|
|
10881
|
+
|
|
10882
|
+
|
|
10852
10883
|
LabelingJobResourceConfigUnionTypeDef = Union[
|
|
10853
10884
|
LabelingJobResourceConfigTypeDef, LabelingJobResourceConfigOutputTypeDef
|
|
10854
10885
|
]
|
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: ActionSourceTypeDef = ...
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2024 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -1345,6 +1347,9 @@ __all__ = (
|
|
|
1345
1347
|
"ModelQuantizationConfigTypeDef",
|
|
1346
1348
|
"ModelQuantizationConfigUnionTypeDef",
|
|
1347
1349
|
"ModelRegisterSettingsTypeDef",
|
|
1350
|
+
"ModelShardingConfigOutputTypeDef",
|
|
1351
|
+
"ModelShardingConfigTypeDef",
|
|
1352
|
+
"ModelShardingConfigUnionTypeDef",
|
|
1348
1353
|
"ModelStepMetadataTypeDef",
|
|
1349
1354
|
"ModelSummaryTypeDef",
|
|
1350
1355
|
"ModelTypeDef",
|
|
@@ -4046,6 +4051,14 @@ class ModelQuantizationConfigTypeDef(TypedDict):
|
|
|
4046
4051
|
Image: NotRequired[str]
|
|
4047
4052
|
OverrideEnvironment: NotRequired[Mapping[str, str]]
|
|
4048
4053
|
|
|
4054
|
+
class ModelShardingConfigOutputTypeDef(TypedDict):
|
|
4055
|
+
Image: NotRequired[str]
|
|
4056
|
+
OverrideEnvironment: NotRequired[Dict[str, str]]
|
|
4057
|
+
|
|
4058
|
+
class ModelShardingConfigTypeDef(TypedDict):
|
|
4059
|
+
Image: NotRequired[str]
|
|
4060
|
+
OverrideEnvironment: NotRequired[Mapping[str, str]]
|
|
4061
|
+
|
|
4049
4062
|
class ModelStepMetadataTypeDef(TypedDict):
|
|
4050
4063
|
Arn: NotRequired[str]
|
|
4051
4064
|
|
|
@@ -6973,10 +6986,13 @@ class ListImageVersionsResponseTypeDef(TypedDict):
|
|
|
6973
6986
|
InferenceComponentSpecificationTypeDef = TypedDict(
|
|
6974
6987
|
"InferenceComponentSpecificationTypeDef",
|
|
6975
6988
|
{
|
|
6976
|
-
"ComputeResourceRequirements": InferenceComponentComputeResourceRequirementsTypeDef,
|
|
6977
6989
|
"ModelName": NotRequired[str],
|
|
6978
6990
|
"Container": NotRequired[InferenceComponentContainerSpecificationTypeDef],
|
|
6979
6991
|
"StartupParameters": NotRequired[InferenceComponentStartupParametersTypeDef],
|
|
6992
|
+
"ComputeResourceRequirements": NotRequired[
|
|
6993
|
+
InferenceComponentComputeResourceRequirementsTypeDef
|
|
6994
|
+
],
|
|
6995
|
+
"BaseInferenceComponentName": NotRequired[str],
|
|
6980
6996
|
},
|
|
6981
6997
|
)
|
|
6982
6998
|
|
|
@@ -7896,12 +7912,17 @@ class ModelPackageStatusDetailsTypeDef(TypedDict):
|
|
|
7896
7912
|
ValidationStatuses: List[ModelPackageStatusItemTypeDef]
|
|
7897
7913
|
ImageScanStatuses: NotRequired[List[ModelPackageStatusItemTypeDef]]
|
|
7898
7914
|
|
|
7915
|
+
ModelQuantizationConfigUnionTypeDef = Union[
|
|
7916
|
+
ModelQuantizationConfigTypeDef, ModelQuantizationConfigOutputTypeDef
|
|
7917
|
+
]
|
|
7918
|
+
|
|
7899
7919
|
class OptimizationConfigOutputTypeDef(TypedDict):
|
|
7900
7920
|
ModelQuantizationConfig: NotRequired[ModelQuantizationConfigOutputTypeDef]
|
|
7901
7921
|
ModelCompilationConfig: NotRequired[ModelCompilationConfigOutputTypeDef]
|
|
7922
|
+
ModelShardingConfig: NotRequired[ModelShardingConfigOutputTypeDef]
|
|
7902
7923
|
|
|
7903
|
-
|
|
7904
|
-
|
|
7924
|
+
ModelShardingConfigUnionTypeDef = Union[
|
|
7925
|
+
ModelShardingConfigTypeDef, ModelShardingConfigOutputTypeDef
|
|
7905
7926
|
]
|
|
7906
7927
|
MonitoringAppSpecificationUnionTypeDef = Union[
|
|
7907
7928
|
MonitoringAppSpecificationTypeDef, MonitoringAppSpecificationOutputTypeDef
|
|
@@ -8377,16 +8398,7 @@ class ClusterInstanceGroupDetailsTypeDef(TypedDict):
|
|
|
8377
8398
|
ThreadsPerCore: NotRequired[int]
|
|
8378
8399
|
InstanceStorageConfigs: NotRequired[List[ClusterInstanceStorageConfigTypeDef]]
|
|
8379
8400
|
OnStartDeepHealthChecks: NotRequired[List[DeepHealthCheckTypeType]]
|
|
8380
|
-
|
|
8381
|
-
class ClusterInstanceGroupSpecificationTypeDef(TypedDict):
|
|
8382
|
-
InstanceCount: int
|
|
8383
|
-
InstanceGroupName: str
|
|
8384
|
-
InstanceType: ClusterInstanceTypeType
|
|
8385
|
-
LifeCycleConfig: ClusterLifeCycleConfigTypeDef
|
|
8386
|
-
ExecutionRole: str
|
|
8387
|
-
ThreadsPerCore: NotRequired[int]
|
|
8388
|
-
InstanceStorageConfigs: NotRequired[Sequence[ClusterInstanceStorageConfigTypeDef]]
|
|
8389
|
-
OnStartDeepHealthChecks: NotRequired[Sequence[DeepHealthCheckTypeType]]
|
|
8401
|
+
OverrideVpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
8390
8402
|
|
|
8391
8403
|
class ClusterNodeDetailsTypeDef(TypedDict):
|
|
8392
8404
|
InstanceGroupName: NotRequired[str]
|
|
@@ -8395,6 +8407,7 @@ class ClusterNodeDetailsTypeDef(TypedDict):
|
|
|
8395
8407
|
InstanceType: NotRequired[ClusterInstanceTypeType]
|
|
8396
8408
|
LaunchTime: NotRequired[datetime]
|
|
8397
8409
|
LifeCycleConfig: NotRequired[ClusterLifeCycleConfigTypeDef]
|
|
8410
|
+
OverrideVpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
8398
8411
|
ThreadsPerCore: NotRequired[int]
|
|
8399
8412
|
InstanceStorageConfigs: NotRequired[List[ClusterInstanceStorageConfigTypeDef]]
|
|
8400
8413
|
PrivatePrimaryIp: NotRequired[str]
|
|
@@ -8452,6 +8465,17 @@ class AutoMLSecurityConfigTypeDef(TypedDict):
|
|
|
8452
8465
|
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
8453
8466
|
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
8454
8467
|
|
|
8468
|
+
class ClusterInstanceGroupSpecificationTypeDef(TypedDict):
|
|
8469
|
+
InstanceCount: int
|
|
8470
|
+
InstanceGroupName: str
|
|
8471
|
+
InstanceType: ClusterInstanceTypeType
|
|
8472
|
+
LifeCycleConfig: ClusterLifeCycleConfigTypeDef
|
|
8473
|
+
ExecutionRole: str
|
|
8474
|
+
ThreadsPerCore: NotRequired[int]
|
|
8475
|
+
InstanceStorageConfigs: NotRequired[Sequence[ClusterInstanceStorageConfigTypeDef]]
|
|
8476
|
+
OnStartDeepHealthChecks: NotRequired[Sequence[DeepHealthCheckTypeType]]
|
|
8477
|
+
OverrideVpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
8478
|
+
|
|
8455
8479
|
class LabelingJobResourceConfigTypeDef(TypedDict):
|
|
8456
8480
|
VolumeKmsKeyId: NotRequired[str]
|
|
8457
8481
|
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
@@ -8503,6 +8527,7 @@ InferenceComponentSpecificationSummaryTypeDef = TypedDict(
|
|
|
8503
8527
|
"ComputeResourceRequirements": NotRequired[
|
|
8504
8528
|
InferenceComponentComputeResourceRequirementsTypeDef
|
|
8505
8529
|
],
|
|
8530
|
+
"BaseInferenceComponentName": NotRequired[str],
|
|
8506
8531
|
},
|
|
8507
8532
|
)
|
|
8508
8533
|
|
|
@@ -8904,9 +8929,9 @@ class WorkerAccessConfigurationTypeDef(TypedDict):
|
|
|
8904
8929
|
class CreateInferenceComponentInputRequestTypeDef(TypedDict):
|
|
8905
8930
|
InferenceComponentName: str
|
|
8906
8931
|
EndpointName: str
|
|
8907
|
-
VariantName: str
|
|
8908
8932
|
Specification: InferenceComponentSpecificationTypeDef
|
|
8909
|
-
|
|
8933
|
+
VariantName: NotRequired[str]
|
|
8934
|
+
RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
|
|
8910
8935
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
8911
8936
|
|
|
8912
8937
|
class UpdateInferenceComponentInputRequestTypeDef(TypedDict):
|
|
@@ -9017,6 +9042,7 @@ class ListModelMetadataRequestRequestTypeDef(TypedDict):
|
|
|
9017
9042
|
class OptimizationConfigTypeDef(TypedDict):
|
|
9018
9043
|
ModelQuantizationConfig: NotRequired[ModelQuantizationConfigUnionTypeDef]
|
|
9019
9044
|
ModelCompilationConfig: NotRequired[ModelCompilationConfigUnionTypeDef]
|
|
9045
|
+
ModelShardingConfig: NotRequired[ModelShardingConfigUnionTypeDef]
|
|
9020
9046
|
|
|
9021
9047
|
BatchTransformInputOutputTypeDef = TypedDict(
|
|
9022
9048
|
"BatchTransformInputOutputTypeDef",
|
|
@@ -9455,19 +9481,6 @@ class DescribeClusterResponseTypeDef(TypedDict):
|
|
|
9455
9481
|
NodeRecovery: ClusterNodeRecoveryType
|
|
9456
9482
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9457
9483
|
|
|
9458
|
-
class CreateClusterRequestRequestTypeDef(TypedDict):
|
|
9459
|
-
ClusterName: str
|
|
9460
|
-
InstanceGroups: Sequence[ClusterInstanceGroupSpecificationTypeDef]
|
|
9461
|
-
VpcConfig: NotRequired[VpcConfigTypeDef]
|
|
9462
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
9463
|
-
Orchestrator: NotRequired[ClusterOrchestratorTypeDef]
|
|
9464
|
-
NodeRecovery: NotRequired[ClusterNodeRecoveryType]
|
|
9465
|
-
|
|
9466
|
-
class UpdateClusterRequestRequestTypeDef(TypedDict):
|
|
9467
|
-
ClusterName: str
|
|
9468
|
-
InstanceGroups: Sequence[ClusterInstanceGroupSpecificationTypeDef]
|
|
9469
|
-
NodeRecovery: NotRequired[ClusterNodeRecoveryType]
|
|
9470
|
-
|
|
9471
9484
|
class DescribeClusterNodeResponseTypeDef(TypedDict):
|
|
9472
9485
|
NodeDetails: ClusterNodeDetailsTypeDef
|
|
9473
9486
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -9545,6 +9558,20 @@ class UpdateAppImageConfigRequestRequestTypeDef(TypedDict):
|
|
|
9545
9558
|
AutoMLSecurityConfigUnionTypeDef = Union[
|
|
9546
9559
|
AutoMLSecurityConfigTypeDef, AutoMLSecurityConfigOutputTypeDef
|
|
9547
9560
|
]
|
|
9561
|
+
|
|
9562
|
+
class CreateClusterRequestRequestTypeDef(TypedDict):
|
|
9563
|
+
ClusterName: str
|
|
9564
|
+
InstanceGroups: Sequence[ClusterInstanceGroupSpecificationTypeDef]
|
|
9565
|
+
VpcConfig: NotRequired[VpcConfigTypeDef]
|
|
9566
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
9567
|
+
Orchestrator: NotRequired[ClusterOrchestratorTypeDef]
|
|
9568
|
+
NodeRecovery: NotRequired[ClusterNodeRecoveryType]
|
|
9569
|
+
|
|
9570
|
+
class UpdateClusterRequestRequestTypeDef(TypedDict):
|
|
9571
|
+
ClusterName: str
|
|
9572
|
+
InstanceGroups: Sequence[ClusterInstanceGroupSpecificationTypeDef]
|
|
9573
|
+
NodeRecovery: NotRequired[ClusterNodeRecoveryType]
|
|
9574
|
+
|
|
9548
9575
|
LabelingJobResourceConfigUnionTypeDef = Union[
|
|
9549
9576
|
LabelingJobResourceConfigTypeDef, LabelingJobResourceConfigOutputTypeDef
|
|
9550
9577
|
]
|
mypy_boto3_sagemaker/version.py
CHANGED
mypy_boto3_sagemaker/waiter.py
CHANGED
|
@@ -42,6 +42,8 @@ Usage::
|
|
|
42
42
|
training_job_completed_or_stopped_waiter: TrainingJobCompletedOrStoppedWaiter = client.get_waiter("training_job_completed_or_stopped")
|
|
43
43
|
transform_job_completed_or_stopped_waiter: TransformJobCompletedOrStoppedWaiter = client.get_waiter("transform_job_completed_or_stopped")
|
|
44
44
|
```
|
|
45
|
+
|
|
46
|
+
Copyright 2024 Vlad Emelianov
|
|
45
47
|
"""
|
|
46
48
|
|
|
47
49
|
import sys
|
|
@@ -89,72 +91,72 @@ __all__ = (
|
|
|
89
91
|
|
|
90
92
|
class EndpointDeletedWaiter(Waiter):
|
|
91
93
|
"""
|
|
92
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointDeleted)
|
|
94
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted)
|
|
93
95
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
94
96
|
"""
|
|
95
97
|
|
|
96
98
|
def wait(self, **kwargs: Unpack[DescribeEndpointInputEndpointDeletedWaitTypeDef]) -> None:
|
|
97
99
|
"""
|
|
98
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointDeleted.wait)
|
|
100
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted.wait)
|
|
99
101
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
100
102
|
"""
|
|
101
103
|
|
|
102
104
|
|
|
103
105
|
class EndpointInServiceWaiter(Waiter):
|
|
104
106
|
"""
|
|
105
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointInService)
|
|
107
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointInService.html#SageMaker.Waiter.EndpointInService)
|
|
106
108
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
107
109
|
"""
|
|
108
110
|
|
|
109
111
|
def wait(self, **kwargs: Unpack[DescribeEndpointInputEndpointInServiceWaitTypeDef]) -> None:
|
|
110
112
|
"""
|
|
111
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointInService.wait)
|
|
113
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointInService.html#SageMaker.Waiter.EndpointInService.wait)
|
|
112
114
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
113
115
|
"""
|
|
114
116
|
|
|
115
117
|
|
|
116
118
|
class ImageCreatedWaiter(Waiter):
|
|
117
119
|
"""
|
|
118
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageCreated)
|
|
120
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageCreated.html#SageMaker.Waiter.ImageCreated)
|
|
119
121
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
120
122
|
"""
|
|
121
123
|
|
|
122
124
|
def wait(self, **kwargs: Unpack[DescribeImageRequestImageCreatedWaitTypeDef]) -> None:
|
|
123
125
|
"""
|
|
124
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageCreated.wait)
|
|
126
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageCreated.html#SageMaker.Waiter.ImageCreated.wait)
|
|
125
127
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
126
128
|
"""
|
|
127
129
|
|
|
128
130
|
|
|
129
131
|
class ImageDeletedWaiter(Waiter):
|
|
130
132
|
"""
|
|
131
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageDeleted)
|
|
133
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted)
|
|
132
134
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
133
135
|
"""
|
|
134
136
|
|
|
135
137
|
def wait(self, **kwargs: Unpack[DescribeImageRequestImageDeletedWaitTypeDef]) -> None:
|
|
136
138
|
"""
|
|
137
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageDeleted.wait)
|
|
139
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted.wait)
|
|
138
140
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
139
141
|
"""
|
|
140
142
|
|
|
141
143
|
|
|
142
144
|
class ImageUpdatedWaiter(Waiter):
|
|
143
145
|
"""
|
|
144
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageUpdated)
|
|
146
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated)
|
|
145
147
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
146
148
|
"""
|
|
147
149
|
|
|
148
150
|
def wait(self, **kwargs: Unpack[DescribeImageRequestImageUpdatedWaitTypeDef]) -> None:
|
|
149
151
|
"""
|
|
150
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageUpdated.wait)
|
|
152
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated.wait)
|
|
151
153
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
152
154
|
"""
|
|
153
155
|
|
|
154
156
|
|
|
155
157
|
class ImageVersionCreatedWaiter(Waiter):
|
|
156
158
|
"""
|
|
157
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionCreated)
|
|
159
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionCreated.html#SageMaker.Waiter.ImageVersionCreated)
|
|
158
160
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversioncreatedwaiter)
|
|
159
161
|
"""
|
|
160
162
|
|
|
@@ -162,14 +164,14 @@ class ImageVersionCreatedWaiter(Waiter):
|
|
|
162
164
|
self, **kwargs: Unpack[DescribeImageVersionRequestImageVersionCreatedWaitTypeDef]
|
|
163
165
|
) -> None:
|
|
164
166
|
"""
|
|
165
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionCreated.wait)
|
|
167
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionCreated.html#SageMaker.Waiter.ImageVersionCreated.wait)
|
|
166
168
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversioncreatedwaiter)
|
|
167
169
|
"""
|
|
168
170
|
|
|
169
171
|
|
|
170
172
|
class ImageVersionDeletedWaiter(Waiter):
|
|
171
173
|
"""
|
|
172
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionDeleted)
|
|
174
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionDeleted.html#SageMaker.Waiter.ImageVersionDeleted)
|
|
173
175
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversiondeletedwaiter)
|
|
174
176
|
"""
|
|
175
177
|
|
|
@@ -177,14 +179,14 @@ class ImageVersionDeletedWaiter(Waiter):
|
|
|
177
179
|
self, **kwargs: Unpack[DescribeImageVersionRequestImageVersionDeletedWaitTypeDef]
|
|
178
180
|
) -> None:
|
|
179
181
|
"""
|
|
180
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionDeleted.wait)
|
|
182
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionDeleted.html#SageMaker.Waiter.ImageVersionDeleted.wait)
|
|
181
183
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversiondeletedwaiter)
|
|
182
184
|
"""
|
|
183
185
|
|
|
184
186
|
|
|
185
187
|
class NotebookInstanceDeletedWaiter(Waiter):
|
|
186
188
|
"""
|
|
187
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceDeleted)
|
|
189
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted)
|
|
188
190
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
189
191
|
"""
|
|
190
192
|
|
|
@@ -192,14 +194,14 @@ class NotebookInstanceDeletedWaiter(Waiter):
|
|
|
192
194
|
self, **kwargs: Unpack[DescribeNotebookInstanceInputNotebookInstanceDeletedWaitTypeDef]
|
|
193
195
|
) -> None:
|
|
194
196
|
"""
|
|
195
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
|
|
197
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
|
|
196
198
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
197
199
|
"""
|
|
198
200
|
|
|
199
201
|
|
|
200
202
|
class NotebookInstanceInServiceWaiter(Waiter):
|
|
201
203
|
"""
|
|
202
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceInService)
|
|
204
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceInService.html#SageMaker.Waiter.NotebookInstanceInService)
|
|
203
205
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
|
|
204
206
|
"""
|
|
205
207
|
|
|
@@ -207,14 +209,14 @@ class NotebookInstanceInServiceWaiter(Waiter):
|
|
|
207
209
|
self, **kwargs: Unpack[DescribeNotebookInstanceInputNotebookInstanceInServiceWaitTypeDef]
|
|
208
210
|
) -> None:
|
|
209
211
|
"""
|
|
210
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceInService.wait)
|
|
212
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceInService.html#SageMaker.Waiter.NotebookInstanceInService.wait)
|
|
211
213
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
|
|
212
214
|
"""
|
|
213
215
|
|
|
214
216
|
|
|
215
217
|
class NotebookInstanceStoppedWaiter(Waiter):
|
|
216
218
|
"""
|
|
217
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceStopped)
|
|
219
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped)
|
|
218
220
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
219
221
|
"""
|
|
220
222
|
|
|
@@ -222,14 +224,14 @@ class NotebookInstanceStoppedWaiter(Waiter):
|
|
|
222
224
|
self, **kwargs: Unpack[DescribeNotebookInstanceInputNotebookInstanceStoppedWaitTypeDef]
|
|
223
225
|
) -> None:
|
|
224
226
|
"""
|
|
225
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
|
|
227
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
|
|
226
228
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
227
229
|
"""
|
|
228
230
|
|
|
229
231
|
|
|
230
232
|
class ProcessingJobCompletedOrStoppedWaiter(Waiter):
|
|
231
233
|
"""
|
|
232
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped)
|
|
234
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ProcessingJobCompletedOrStopped.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped)
|
|
233
235
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#processingjobcompletedorstoppedwaiter)
|
|
234
236
|
"""
|
|
235
237
|
|
|
@@ -238,14 +240,14 @@ class ProcessingJobCompletedOrStoppedWaiter(Waiter):
|
|
|
238
240
|
**kwargs: Unpack[DescribeProcessingJobRequestProcessingJobCompletedOrStoppedWaitTypeDef],
|
|
239
241
|
) -> None:
|
|
240
242
|
"""
|
|
241
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped.wait)
|
|
243
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ProcessingJobCompletedOrStopped.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped.wait)
|
|
242
244
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#processingjobcompletedorstoppedwaiter)
|
|
243
245
|
"""
|
|
244
246
|
|
|
245
247
|
|
|
246
248
|
class TrainingJobCompletedOrStoppedWaiter(Waiter):
|
|
247
249
|
"""
|
|
248
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TrainingJobCompletedOrStopped)
|
|
250
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TrainingJobCompletedOrStopped.html#SageMaker.Waiter.TrainingJobCompletedOrStopped)
|
|
249
251
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#trainingjobcompletedorstoppedwaiter)
|
|
250
252
|
"""
|
|
251
253
|
|
|
@@ -253,14 +255,14 @@ class TrainingJobCompletedOrStoppedWaiter(Waiter):
|
|
|
253
255
|
self, **kwargs: Unpack[DescribeTrainingJobRequestTrainingJobCompletedOrStoppedWaitTypeDef]
|
|
254
256
|
) -> None:
|
|
255
257
|
"""
|
|
256
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TrainingJobCompletedOrStopped.wait)
|
|
258
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TrainingJobCompletedOrStopped.html#SageMaker.Waiter.TrainingJobCompletedOrStopped.wait)
|
|
257
259
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#trainingjobcompletedorstoppedwaiter)
|
|
258
260
|
"""
|
|
259
261
|
|
|
260
262
|
|
|
261
263
|
class TransformJobCompletedOrStoppedWaiter(Waiter):
|
|
262
264
|
"""
|
|
263
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TransformJobCompletedOrStopped)
|
|
265
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TransformJobCompletedOrStopped.html#SageMaker.Waiter.TransformJobCompletedOrStopped)
|
|
264
266
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#transformjobcompletedorstoppedwaiter)
|
|
265
267
|
"""
|
|
266
268
|
|
|
@@ -268,6 +270,6 @@ class TransformJobCompletedOrStoppedWaiter(Waiter):
|
|
|
268
270
|
self, **kwargs: Unpack[DescribeTransformJobRequestTransformJobCompletedOrStoppedWaitTypeDef]
|
|
269
271
|
) -> None:
|
|
270
272
|
"""
|
|
271
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TransformJobCompletedOrStopped.wait)
|
|
273
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TransformJobCompletedOrStopped.html#SageMaker.Waiter.TransformJobCompletedOrStopped.wait)
|
|
272
274
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#transformjobcompletedorstoppedwaiter)
|
|
273
275
|
"""
|