mypy-boto3-sagemaker 1.35.86__py3-none-any.whl → 1.35.93__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 +1 -1
- mypy_boto3_sagemaker/__init__.pyi +1 -1
- mypy_boto3_sagemaker/__main__.py +5 -5
- mypy_boto3_sagemaker/client.py +23 -17
- mypy_boto3_sagemaker/client.pyi +23 -17
- mypy_boto3_sagemaker/literals.py +1 -1
- mypy_boto3_sagemaker/literals.pyi +1 -1
- mypy_boto3_sagemaker/paginator.py +1 -1
- mypy_boto3_sagemaker/paginator.pyi +1 -1
- mypy_boto3_sagemaker/type_defs.py +401 -389
- mypy_boto3_sagemaker/type_defs.pyi +401 -389
- mypy_boto3_sagemaker/version.py +2 -2
- mypy_boto3_sagemaker/waiter.py +1 -1
- mypy_boto3_sagemaker/waiter.pyi +1 -1
- {mypy_boto3_sagemaker-1.35.86.dist-info → mypy_boto3_sagemaker-1.35.93.dist-info}/LICENSE +1 -1
- {mypy_boto3_sagemaker-1.35.86.dist-info → mypy_boto3_sagemaker-1.35.93.dist-info}/METADATA +6 -6
- mypy_boto3_sagemaker-1.35.93.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.35.86.dist-info → mypy_boto3_sagemaker-1.35.93.dist-info}/WHEEL +1 -1
- mypy_boto3_sagemaker-1.35.86.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.35.86.dist-info → mypy_boto3_sagemaker-1.35.93.dist-info}/top_level.txt +0 -0
|
@@ -11,14 +11,14 @@ Usage::
|
|
|
11
11
|
data: ActionSourceTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
20
|
from datetime import datetime
|
|
21
|
-
from typing import Any,
|
|
21
|
+
from typing import Any, Union
|
|
22
22
|
|
|
23
23
|
from .literals import (
|
|
24
24
|
ActionStatusType,
|
|
@@ -307,6 +307,12 @@ from .literals import (
|
|
|
307
307
|
WorkforceStatusType,
|
|
308
308
|
)
|
|
309
309
|
|
|
310
|
+
if sys.version_info >= (3, 9):
|
|
311
|
+
from builtins import dict as Dict
|
|
312
|
+
from builtins import list as List
|
|
313
|
+
from collections.abc import Mapping, Sequence
|
|
314
|
+
else:
|
|
315
|
+
from typing import Dict, List, Mapping, Sequence
|
|
310
316
|
if sys.version_info >= (3, 12):
|
|
311
317
|
from typing import Literal, NotRequired, TypedDict
|
|
312
318
|
else:
|
|
@@ -1891,7 +1897,7 @@ class AddAssociationRequestRequestTypeDef(TypedDict):
|
|
|
1891
1897
|
class ResponseMetadataTypeDef(TypedDict):
|
|
1892
1898
|
RequestId: str
|
|
1893
1899
|
HTTPStatusCode: int
|
|
1894
|
-
HTTPHeaders:
|
|
1900
|
+
HTTPHeaders: Dict[str, str]
|
|
1895
1901
|
RetryAttempts: int
|
|
1896
1902
|
HostId: NotRequired[str]
|
|
1897
1903
|
|
|
@@ -1905,6 +1911,7 @@ class AdditionalS3DataSourceTypeDef(TypedDict):
|
|
|
1905
1911
|
S3DataType: AdditionalS3DataSourceDataTypeType
|
|
1906
1912
|
S3Uri: str
|
|
1907
1913
|
CompressionType: NotRequired[CompressionTypeType]
|
|
1914
|
+
ETag: NotRequired[str]
|
|
1908
1915
|
|
|
1909
1916
|
|
|
1910
1917
|
class AgentVersionTypeDef(TypedDict):
|
|
@@ -1961,8 +1968,8 @@ class IdleSettingsTypeDef(TypedDict):
|
|
|
1961
1968
|
|
|
1962
1969
|
class AppSpecificationOutputTypeDef(TypedDict):
|
|
1963
1970
|
ImageUri: str
|
|
1964
|
-
ContainerEntrypoint: NotRequired[
|
|
1965
|
-
ContainerArguments: NotRequired[
|
|
1971
|
+
ContainerEntrypoint: NotRequired[List[str]]
|
|
1972
|
+
ContainerArguments: NotRequired[List[str]]
|
|
1966
1973
|
|
|
1967
1974
|
|
|
1968
1975
|
class AppSpecificationTypeDef(TypedDict):
|
|
@@ -1988,7 +1995,7 @@ class AsyncInferenceClientConfigTypeDef(TypedDict):
|
|
|
1988
1995
|
class AsyncInferenceNotificationConfigOutputTypeDef(TypedDict):
|
|
1989
1996
|
SuccessTopic: NotRequired[str]
|
|
1990
1997
|
ErrorTopic: NotRequired[str]
|
|
1991
|
-
IncludeInferenceResponseIn: NotRequired[
|
|
1998
|
+
IncludeInferenceResponseIn: NotRequired[List[AsyncNotificationTopicTypesType]]
|
|
1992
1999
|
|
|
1993
2000
|
|
|
1994
2001
|
class AsyncInferenceNotificationConfigTypeDef(TypedDict):
|
|
@@ -2009,7 +2016,7 @@ class AthenaDatasetDefinitionTypeDef(TypedDict):
|
|
|
2009
2016
|
|
|
2010
2017
|
|
|
2011
2018
|
class AutoMLAlgorithmConfigOutputTypeDef(TypedDict):
|
|
2012
|
-
AutoMLAlgorithms:
|
|
2019
|
+
AutoMLAlgorithms: List[AutoMLAlgorithmType]
|
|
2013
2020
|
|
|
2014
2021
|
|
|
2015
2022
|
class AutoMLAlgorithmConfigTypeDef(TypedDict):
|
|
@@ -2025,7 +2032,7 @@ class AutoMLCandidateStepTypeDef(TypedDict):
|
|
|
2025
2032
|
class AutoMLContainerDefinitionTypeDef(TypedDict):
|
|
2026
2033
|
Image: str
|
|
2027
2034
|
ModelDataUrl: str
|
|
2028
|
-
Environment: NotRequired[
|
|
2035
|
+
Environment: NotRequired[Dict[str, str]]
|
|
2029
2036
|
|
|
2030
2037
|
|
|
2031
2038
|
FinalAutoMLJobObjectiveMetricTypeDef = TypedDict(
|
|
@@ -2089,8 +2096,8 @@ class TextGenerationResolvedAttributesTypeDef(TypedDict):
|
|
|
2089
2096
|
|
|
2090
2097
|
|
|
2091
2098
|
class VpcConfigOutputTypeDef(TypedDict):
|
|
2092
|
-
SecurityGroupIds:
|
|
2093
|
-
Subnets:
|
|
2099
|
+
SecurityGroupIds: List[str]
|
|
2100
|
+
Subnets: List[str]
|
|
2094
2101
|
|
|
2095
2102
|
|
|
2096
2103
|
class AutoParameterTypeDef(TypedDict):
|
|
@@ -2212,8 +2219,8 @@ CapacitySizeTypeDef = TypedDict(
|
|
|
2212
2219
|
|
|
2213
2220
|
|
|
2214
2221
|
class CaptureContentTypeHeaderOutputTypeDef(TypedDict):
|
|
2215
|
-
CsvContentTypes: NotRequired[
|
|
2216
|
-
JsonContentTypes: NotRequired[
|
|
2222
|
+
CsvContentTypes: NotRequired[List[str]]
|
|
2223
|
+
JsonContentTypes: NotRequired[List[str]]
|
|
2217
2224
|
|
|
2218
2225
|
|
|
2219
2226
|
class CaptureContentTypeHeaderTypeDef(TypedDict):
|
|
@@ -2227,16 +2234,16 @@ class CaptureOptionTypeDef(TypedDict):
|
|
|
2227
2234
|
|
|
2228
2235
|
class CategoricalParameterOutputTypeDef(TypedDict):
|
|
2229
2236
|
Name: str
|
|
2230
|
-
Value:
|
|
2237
|
+
Value: List[str]
|
|
2231
2238
|
|
|
2232
2239
|
|
|
2233
2240
|
class CategoricalParameterRangeOutputTypeDef(TypedDict):
|
|
2234
2241
|
Name: str
|
|
2235
|
-
Values:
|
|
2242
|
+
Values: List[str]
|
|
2236
2243
|
|
|
2237
2244
|
|
|
2238
2245
|
class CategoricalParameterRangeSpecificationOutputTypeDef(TypedDict):
|
|
2239
|
-
Values:
|
|
2246
|
+
Values: List[str]
|
|
2240
2247
|
|
|
2241
2248
|
|
|
2242
2249
|
class CategoricalParameterRangeSpecificationTypeDef(TypedDict):
|
|
@@ -2259,11 +2266,11 @@ class ShuffleConfigTypeDef(TypedDict):
|
|
|
2259
2266
|
|
|
2260
2267
|
class ChannelSpecificationOutputTypeDef(TypedDict):
|
|
2261
2268
|
Name: str
|
|
2262
|
-
SupportedContentTypes:
|
|
2263
|
-
SupportedInputModes:
|
|
2269
|
+
SupportedContentTypes: List[str]
|
|
2270
|
+
SupportedInputModes: List[TrainingInputModeType]
|
|
2264
2271
|
Description: NotRequired[str]
|
|
2265
2272
|
IsRequired: NotRequired[bool]
|
|
2266
|
-
SupportedCompressionTypes: NotRequired[
|
|
2273
|
+
SupportedCompressionTypes: NotRequired[List[CompressionTypeType]]
|
|
2267
2274
|
|
|
2268
2275
|
|
|
2269
2276
|
class ChannelSpecificationTypeDef(TypedDict):
|
|
@@ -2300,9 +2307,9 @@ class ClarifyInferenceConfigOutputTypeDef(TypedDict):
|
|
|
2300
2307
|
LabelIndex: NotRequired[int]
|
|
2301
2308
|
ProbabilityAttribute: NotRequired[str]
|
|
2302
2309
|
LabelAttribute: NotRequired[str]
|
|
2303
|
-
LabelHeaders: NotRequired[
|
|
2304
|
-
FeatureHeaders: NotRequired[
|
|
2305
|
-
FeatureTypes: NotRequired[
|
|
2310
|
+
LabelHeaders: NotRequired[List[str]]
|
|
2311
|
+
FeatureHeaders: NotRequired[List[str]]
|
|
2312
|
+
FeatureTypes: NotRequired[List[ClarifyFeatureTypeType]]
|
|
2306
2313
|
|
|
2307
2314
|
|
|
2308
2315
|
class ClarifyInferenceConfigTypeDef(TypedDict):
|
|
@@ -2369,13 +2376,13 @@ class ClusterSummaryTypeDef(TypedDict):
|
|
|
2369
2376
|
ClusterName: str
|
|
2370
2377
|
CreationTime: datetime
|
|
2371
2378
|
ClusterStatus: ClusterStatusType
|
|
2372
|
-
TrainingPlanArns: NotRequired[
|
|
2379
|
+
TrainingPlanArns: NotRequired[List[str]]
|
|
2373
2380
|
|
|
2374
2381
|
|
|
2375
2382
|
class ContainerConfigOutputTypeDef(TypedDict):
|
|
2376
|
-
ContainerArguments: NotRequired[
|
|
2377
|
-
ContainerEntrypoint: NotRequired[
|
|
2378
|
-
ContainerEnvironmentVariables: NotRequired[
|
|
2383
|
+
ContainerArguments: NotRequired[List[str]]
|
|
2384
|
+
ContainerEntrypoint: NotRequired[List[str]]
|
|
2385
|
+
ContainerEnvironmentVariables: NotRequired[Dict[str, str]]
|
|
2379
2386
|
|
|
2380
2387
|
|
|
2381
2388
|
class FileSystemConfigTypeDef(TypedDict):
|
|
@@ -2417,7 +2424,7 @@ class VectorConfigTypeDef(TypedDict):
|
|
|
2417
2424
|
|
|
2418
2425
|
class CollectionConfigurationOutputTypeDef(TypedDict):
|
|
2419
2426
|
CollectionName: NotRequired[str]
|
|
2420
|
-
CollectionParameters: NotRequired[
|
|
2427
|
+
CollectionParameters: NotRequired[Dict[str, str]]
|
|
2421
2428
|
|
|
2422
2429
|
|
|
2423
2430
|
class CollectionConfigurationTypeDef(TypedDict):
|
|
@@ -2881,11 +2888,11 @@ class DataCatalogConfigTypeDef(TypedDict):
|
|
|
2881
2888
|
|
|
2882
2889
|
class DataQualityAppSpecificationOutputTypeDef(TypedDict):
|
|
2883
2890
|
ImageUri: str
|
|
2884
|
-
ContainerEntrypoint: NotRequired[
|
|
2885
|
-
ContainerArguments: NotRequired[
|
|
2891
|
+
ContainerEntrypoint: NotRequired[List[str]]
|
|
2892
|
+
ContainerArguments: NotRequired[List[str]]
|
|
2886
2893
|
RecordPreprocessorSourceUri: NotRequired[str]
|
|
2887
2894
|
PostAnalyticsProcessorSourceUri: NotRequired[str]
|
|
2888
|
-
Environment: NotRequired[
|
|
2895
|
+
Environment: NotRequired[Dict[str, str]]
|
|
2889
2896
|
|
|
2890
2897
|
|
|
2891
2898
|
class MonitoringConstraintsResourceTypeDef(TypedDict):
|
|
@@ -2927,8 +2934,8 @@ S3DataSourceOutputTypeDef = TypedDict(
|
|
|
2927
2934
|
"S3DataType": S3DataTypeType,
|
|
2928
2935
|
"S3Uri": str,
|
|
2929
2936
|
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
2930
|
-
"AttributeNames": NotRequired[
|
|
2931
|
-
"InstanceGroupNames": NotRequired[
|
|
2937
|
+
"AttributeNames": NotRequired[List[str]],
|
|
2938
|
+
"InstanceGroupNames": NotRequired[List[str]],
|
|
2932
2939
|
},
|
|
2933
2940
|
)
|
|
2934
2941
|
|
|
@@ -2952,7 +2959,7 @@ class DebugRuleConfigurationOutputTypeDef(TypedDict):
|
|
|
2952
2959
|
S3OutputPath: NotRequired[str]
|
|
2953
2960
|
InstanceType: NotRequired[ProcessingInstanceTypeType]
|
|
2954
2961
|
VolumeSizeInGB: NotRequired[int]
|
|
2955
|
-
RuleParameters: NotRequired[
|
|
2962
|
+
RuleParameters: NotRequired[Dict[str, str]]
|
|
2956
2963
|
|
|
2957
2964
|
|
|
2958
2965
|
class DebugRuleConfigurationTypeDef(TypedDict):
|
|
@@ -3221,13 +3228,13 @@ class DeployedImageTypeDef(TypedDict):
|
|
|
3221
3228
|
class RealTimeInferenceRecommendationTypeDef(TypedDict):
|
|
3222
3229
|
RecommendationId: str
|
|
3223
3230
|
InstanceType: ProductionVariantInstanceTypeType
|
|
3224
|
-
Environment: NotRequired[
|
|
3231
|
+
Environment: NotRequired[Dict[str, str]]
|
|
3225
3232
|
|
|
3226
3233
|
|
|
3227
3234
|
class DeviceSelectionConfigOutputTypeDef(TypedDict):
|
|
3228
3235
|
DeviceSubsetType: DeviceSubsetTypeType
|
|
3229
3236
|
Percentage: NotRequired[int]
|
|
3230
|
-
DeviceNames: NotRequired[
|
|
3237
|
+
DeviceNames: NotRequired[List[str]]
|
|
3231
3238
|
DeviceNameContains: NotRequired[str]
|
|
3232
3239
|
|
|
3233
3240
|
|
|
@@ -3320,8 +3327,8 @@ class ModelDigestsTypeDef(TypedDict):
|
|
|
3320
3327
|
|
|
3321
3328
|
|
|
3322
3329
|
class NeoVpcConfigOutputTypeDef(TypedDict):
|
|
3323
|
-
SecurityGroupIds:
|
|
3324
|
-
Subnets:
|
|
3330
|
+
SecurityGroupIds: List[str]
|
|
3331
|
+
Subnets: List[str]
|
|
3325
3332
|
|
|
3326
3333
|
|
|
3327
3334
|
class DescribeComputeQuotaRequestRequestTypeDef(TypedDict):
|
|
@@ -3559,7 +3566,7 @@ class DescribeModelBiasJobDefinitionRequestRequestTypeDef(TypedDict):
|
|
|
3559
3566
|
class ModelBiasAppSpecificationOutputTypeDef(TypedDict):
|
|
3560
3567
|
ImageUri: str
|
|
3561
3568
|
ConfigUri: str
|
|
3562
|
-
Environment: NotRequired[
|
|
3569
|
+
Environment: NotRequired[Dict[str, str]]
|
|
3563
3570
|
|
|
3564
3571
|
|
|
3565
3572
|
class DescribeModelCardExportJobRequestRequestTypeDef(TypedDict):
|
|
@@ -3582,7 +3589,7 @@ class DescribeModelExplainabilityJobDefinitionRequestRequestTypeDef(TypedDict):
|
|
|
3582
3589
|
class ModelExplainabilityAppSpecificationOutputTypeDef(TypedDict):
|
|
3583
3590
|
ImageUri: str
|
|
3584
3591
|
ConfigUri: str
|
|
3585
|
-
Environment: NotRequired[
|
|
3592
|
+
Environment: NotRequired[Dict[str, str]]
|
|
3586
3593
|
|
|
3587
3594
|
|
|
3588
3595
|
class DescribeModelInputRequestTypeDef(TypedDict):
|
|
@@ -3603,12 +3610,12 @@ class DescribeModelQualityJobDefinitionRequestRequestTypeDef(TypedDict):
|
|
|
3603
3610
|
|
|
3604
3611
|
class ModelQualityAppSpecificationOutputTypeDef(TypedDict):
|
|
3605
3612
|
ImageUri: str
|
|
3606
|
-
ContainerEntrypoint: NotRequired[
|
|
3607
|
-
ContainerArguments: NotRequired[
|
|
3613
|
+
ContainerEntrypoint: NotRequired[List[str]]
|
|
3614
|
+
ContainerArguments: NotRequired[List[str]]
|
|
3608
3615
|
RecordPreprocessorSourceUri: NotRequired[str]
|
|
3609
3616
|
PostAnalyticsProcessorSourceUri: NotRequired[str]
|
|
3610
3617
|
ProblemType: NotRequired[MonitoringProblemTypeType]
|
|
3611
|
-
Environment: NotRequired[
|
|
3618
|
+
Environment: NotRequired[Dict[str, str]]
|
|
3612
3619
|
|
|
3613
3620
|
|
|
3614
3621
|
class DescribeMonitoringScheduleRequestRequestTypeDef(TypedDict):
|
|
@@ -3645,8 +3652,8 @@ class OptimizationOutputTypeDef(TypedDict):
|
|
|
3645
3652
|
|
|
3646
3653
|
|
|
3647
3654
|
class OptimizationVpcConfigOutputTypeDef(TypedDict):
|
|
3648
|
-
SecurityGroupIds:
|
|
3649
|
-
Subnets:
|
|
3655
|
+
SecurityGroupIds: List[str]
|
|
3656
|
+
Subnets: List[str]
|
|
3650
3657
|
|
|
3651
3658
|
|
|
3652
3659
|
class DescribePartnerAppRequestRequestTypeDef(TypedDict):
|
|
@@ -3659,8 +3666,8 @@ class ErrorInfoTypeDef(TypedDict):
|
|
|
3659
3666
|
|
|
3660
3667
|
|
|
3661
3668
|
class PartnerAppConfigOutputTypeDef(TypedDict):
|
|
3662
|
-
AdminUsers: NotRequired[
|
|
3663
|
-
Arguments: NotRequired[
|
|
3669
|
+
AdminUsers: NotRequired[List[str]]
|
|
3670
|
+
Arguments: NotRequired[Dict[str, str]]
|
|
3664
3671
|
|
|
3665
3672
|
|
|
3666
3673
|
class DescribePipelineDefinitionForExecutionRequestRequestTypeDef(TypedDict):
|
|
@@ -3727,7 +3734,7 @@ class MetricDataTypeDef(TypedDict):
|
|
|
3727
3734
|
class ProfilerConfigOutputTypeDef(TypedDict):
|
|
3728
3735
|
S3OutputPath: NotRequired[str]
|
|
3729
3736
|
ProfilingIntervalInMilliseconds: NotRequired[int]
|
|
3730
|
-
ProfilingParameters: NotRequired[
|
|
3737
|
+
ProfilingParameters: NotRequired[Dict[str, str]]
|
|
3731
3738
|
DisableProfiler: NotRequired[bool]
|
|
3732
3739
|
|
|
3733
3740
|
|
|
@@ -3738,7 +3745,7 @@ class ProfilerRuleConfigurationOutputTypeDef(TypedDict):
|
|
|
3738
3745
|
S3OutputPath: NotRequired[str]
|
|
3739
3746
|
InstanceType: NotRequired[ProcessingInstanceTypeType]
|
|
3740
3747
|
VolumeSizeInGB: NotRequired[int]
|
|
3741
|
-
RuleParameters: NotRequired[
|
|
3748
|
+
RuleParameters: NotRequired[Dict[str, str]]
|
|
3742
3749
|
|
|
3743
3750
|
|
|
3744
3751
|
class ProfilerRuleEvaluationStatusTypeDef(TypedDict):
|
|
@@ -3881,7 +3888,7 @@ class DisassociateTrialComponentRequestRequestTypeDef(TypedDict):
|
|
|
3881
3888
|
|
|
3882
3889
|
class DockerSettingsOutputTypeDef(TypedDict):
|
|
3883
3890
|
EnableDockerAccess: NotRequired[FeatureStatusType]
|
|
3884
|
-
VpcOnlyTrustedAccounts: NotRequired[
|
|
3891
|
+
VpcOnlyTrustedAccounts: NotRequired[List[str]]
|
|
3885
3892
|
|
|
3886
3893
|
|
|
3887
3894
|
class DockerSettingsTypeDef(TypedDict):
|
|
@@ -3954,8 +3961,8 @@ class EdgeTypeDef(TypedDict):
|
|
|
3954
3961
|
|
|
3955
3962
|
|
|
3956
3963
|
class EmrSettingsOutputTypeDef(TypedDict):
|
|
3957
|
-
AssumableRoleArns: NotRequired[
|
|
3958
|
-
ExecutionRoleArns: NotRequired[
|
|
3964
|
+
AssumableRoleArns: NotRequired[List[str]]
|
|
3965
|
+
ExecutionRoleArns: NotRequired[List[str]]
|
|
3959
3966
|
|
|
3960
3967
|
|
|
3961
3968
|
class EmrSettingsTypeDef(TypedDict):
|
|
@@ -4066,7 +4073,7 @@ class GitConfigForUpdateTypeDef(TypedDict):
|
|
|
4066
4073
|
|
|
4067
4074
|
class HiddenSageMakerImageOutputTypeDef(TypedDict):
|
|
4068
4075
|
SageMakerImageName: NotRequired[Literal["sagemaker_distribution"]]
|
|
4069
|
-
VersionAliases: NotRequired[
|
|
4076
|
+
VersionAliases: NotRequired[List[str]]
|
|
4070
4077
|
|
|
4071
4078
|
|
|
4072
4079
|
class HiddenSageMakerImageTypeDef(TypedDict):
|
|
@@ -4090,7 +4097,7 @@ class HubContentInfoTypeDef(TypedDict):
|
|
|
4090
4097
|
HubContentDisplayName: NotRequired[str]
|
|
4091
4098
|
HubContentDescription: NotRequired[str]
|
|
4092
4099
|
SupportStatus: NotRequired[HubContentSupportStatusType]
|
|
4093
|
-
HubContentSearchKeywords: NotRequired[
|
|
4100
|
+
HubContentSearchKeywords: NotRequired[List[str]]
|
|
4094
4101
|
OriginalCreationTime: NotRequired[datetime]
|
|
4095
4102
|
|
|
4096
4103
|
|
|
@@ -4102,7 +4109,7 @@ class HubInfoTypeDef(TypedDict):
|
|
|
4102
4109
|
LastModifiedTime: datetime
|
|
4103
4110
|
HubDisplayName: NotRequired[str]
|
|
4104
4111
|
HubDescription: NotRequired[str]
|
|
4105
|
-
HubSearchKeywords: NotRequired[
|
|
4112
|
+
HubSearchKeywords: NotRequired[List[str]]
|
|
4106
4113
|
|
|
4107
4114
|
|
|
4108
4115
|
class HumanLoopActivationConditionsConfigTypeDef(TypedDict):
|
|
@@ -4275,7 +4282,7 @@ class LabelCountersForWorkteamTypeDef(TypedDict):
|
|
|
4275
4282
|
|
|
4276
4283
|
|
|
4277
4284
|
class LabelingJobDataAttributesOutputTypeDef(TypedDict):
|
|
4278
|
-
ContentClassifiers: NotRequired[
|
|
4285
|
+
ContentClassifiers: NotRequired[List[ContentClassifierType]]
|
|
4279
4286
|
|
|
4280
4287
|
|
|
4281
4288
|
class LabelingJobDataAttributesTypeDef(TypedDict):
|
|
@@ -4463,7 +4470,7 @@ class NotebookInstanceSummaryTypeDef(TypedDict):
|
|
|
4463
4470
|
LastModifiedTime: NotRequired[datetime]
|
|
4464
4471
|
NotebookInstanceLifecycleConfigName: NotRequired[str]
|
|
4465
4472
|
DefaultCodeRepository: NotRequired[str]
|
|
4466
|
-
AdditionalCodeRepositories: NotRequired[
|
|
4473
|
+
AdditionalCodeRepositories: NotRequired[List[str]]
|
|
4467
4474
|
|
|
4468
4475
|
|
|
4469
4476
|
class OptimizationJobSummaryTypeDef(TypedDict):
|
|
@@ -4472,7 +4479,7 @@ class OptimizationJobSummaryTypeDef(TypedDict):
|
|
|
4472
4479
|
CreationTime: datetime
|
|
4473
4480
|
OptimizationJobStatus: OptimizationJobStatusType
|
|
4474
4481
|
DeploymentInstanceType: OptimizationJobDeploymentInstanceTypeType
|
|
4475
|
-
OptimizationTypes:
|
|
4482
|
+
OptimizationTypes: List[str]
|
|
4476
4483
|
OptimizationStartTime: NotRequired[datetime]
|
|
4477
4484
|
OptimizationEndTime: NotRequired[datetime]
|
|
4478
4485
|
LastModifiedTime: NotRequired[datetime]
|
|
@@ -4655,7 +4662,7 @@ class ListWorkteamsRequestRequestTypeDef(TypedDict):
|
|
|
4655
4662
|
|
|
4656
4663
|
|
|
4657
4664
|
class OidcMemberDefinitionOutputTypeDef(TypedDict):
|
|
4658
|
-
Groups: NotRequired[
|
|
4665
|
+
Groups: NotRequired[List[str]]
|
|
4659
4666
|
|
|
4660
4667
|
|
|
4661
4668
|
class PredefinedMetricSpecificationTypeDef(TypedDict):
|
|
@@ -4672,7 +4679,7 @@ class MonitoringGroundTruthS3InputTypeDef(TypedDict):
|
|
|
4672
4679
|
|
|
4673
4680
|
class ModelCompilationConfigOutputTypeDef(TypedDict):
|
|
4674
4681
|
Image: NotRequired[str]
|
|
4675
|
-
OverrideEnvironment: NotRequired[
|
|
4682
|
+
OverrideEnvironment: NotRequired[Dict[str, str]]
|
|
4676
4683
|
|
|
4677
4684
|
|
|
4678
4685
|
class ModelCompilationConfigTypeDef(TypedDict):
|
|
@@ -4719,7 +4726,7 @@ class ModelPackageStatusItemTypeDef(TypedDict):
|
|
|
4719
4726
|
|
|
4720
4727
|
class ModelQuantizationConfigOutputTypeDef(TypedDict):
|
|
4721
4728
|
Image: NotRequired[str]
|
|
4722
|
-
OverrideEnvironment: NotRequired[
|
|
4729
|
+
OverrideEnvironment: NotRequired[Dict[str, str]]
|
|
4723
4730
|
|
|
4724
4731
|
|
|
4725
4732
|
class ModelQuantizationConfigTypeDef(TypedDict):
|
|
@@ -4729,7 +4736,7 @@ class ModelQuantizationConfigTypeDef(TypedDict):
|
|
|
4729
4736
|
|
|
4730
4737
|
class ModelShardingConfigOutputTypeDef(TypedDict):
|
|
4731
4738
|
Image: NotRequired[str]
|
|
4732
|
-
OverrideEnvironment: NotRequired[
|
|
4739
|
+
OverrideEnvironment: NotRequired[Dict[str, str]]
|
|
4733
4740
|
|
|
4734
4741
|
|
|
4735
4742
|
class ModelShardingConfigTypeDef(TypedDict):
|
|
@@ -4743,8 +4750,8 @@ class ModelStepMetadataTypeDef(TypedDict):
|
|
|
4743
4750
|
|
|
4744
4751
|
class MonitoringAppSpecificationOutputTypeDef(TypedDict):
|
|
4745
4752
|
ImageUri: str
|
|
4746
|
-
ContainerEntrypoint: NotRequired[
|
|
4747
|
-
ContainerArguments: NotRequired[
|
|
4753
|
+
ContainerEntrypoint: NotRequired[List[str]]
|
|
4754
|
+
ContainerArguments: NotRequired[List[str]]
|
|
4748
4755
|
RecordPreprocessorSourceUri: NotRequired[str]
|
|
4749
4756
|
PostAnalyticsProcessorSourceUri: NotRequired[str]
|
|
4750
4757
|
|
|
@@ -4799,7 +4806,7 @@ class OidcConfigForResponseTypeDef(TypedDict):
|
|
|
4799
4806
|
LogoutEndpoint: NotRequired[str]
|
|
4800
4807
|
JwksUri: NotRequired[str]
|
|
4801
4808
|
Scope: NotRequired[str]
|
|
4802
|
-
AuthenticationRequestExtraParams: NotRequired[
|
|
4809
|
+
AuthenticationRequestExtraParams: NotRequired[Dict[str, str]]
|
|
4803
4810
|
|
|
4804
4811
|
|
|
4805
4812
|
class OidcMemberDefinitionTypeDef(TypedDict):
|
|
@@ -4991,7 +4998,7 @@ class RecommendationJobCompiledOutputConfigTypeDef(TypedDict):
|
|
|
4991
4998
|
|
|
4992
4999
|
class RecommendationJobPayloadConfigOutputTypeDef(TypedDict):
|
|
4993
5000
|
SamplePayloadUrl: NotRequired[str]
|
|
4994
|
-
SupportedContentTypes: NotRequired[
|
|
5001
|
+
SupportedContentTypes: NotRequired[List[str]]
|
|
4995
5002
|
|
|
4996
5003
|
|
|
4997
5004
|
class RecommendationJobResourceLimitTypeDef(TypedDict):
|
|
@@ -5000,8 +5007,8 @@ class RecommendationJobResourceLimitTypeDef(TypedDict):
|
|
|
5000
5007
|
|
|
5001
5008
|
|
|
5002
5009
|
class RecommendationJobVpcConfigOutputTypeDef(TypedDict):
|
|
5003
|
-
SecurityGroupIds:
|
|
5004
|
-
Subnets:
|
|
5010
|
+
SecurityGroupIds: List[str]
|
|
5011
|
+
Subnets: List[str]
|
|
5005
5012
|
|
|
5006
5013
|
|
|
5007
5014
|
class RecommendationJobPayloadConfigTypeDef(TypedDict):
|
|
@@ -5080,7 +5087,7 @@ class SharingSettingsTypeDef(TypedDict):
|
|
|
5080
5087
|
|
|
5081
5088
|
|
|
5082
5089
|
class SourceIpConfigOutputTypeDef(TypedDict):
|
|
5083
|
-
Cidrs:
|
|
5090
|
+
Cidrs: List[str]
|
|
5084
5091
|
|
|
5085
5092
|
|
|
5086
5093
|
class SpaceIdleSettingsTypeDef(TypedDict):
|
|
@@ -5190,7 +5197,7 @@ class TimeSeriesConfigOutputTypeDef(TypedDict):
|
|
|
5190
5197
|
TargetAttributeName: str
|
|
5191
5198
|
TimestampAttributeName: str
|
|
5192
5199
|
ItemIdentifierAttributeName: str
|
|
5193
|
-
GroupingAttributeNames: NotRequired[
|
|
5200
|
+
GroupingAttributeNames: NotRequired[List[str]]
|
|
5194
5201
|
|
|
5195
5202
|
|
|
5196
5203
|
class TimeSeriesConfigTypeDef(TypedDict):
|
|
@@ -5201,8 +5208,8 @@ class TimeSeriesConfigTypeDef(TypedDict):
|
|
|
5201
5208
|
|
|
5202
5209
|
|
|
5203
5210
|
class TimeSeriesTransformationsOutputTypeDef(TypedDict):
|
|
5204
|
-
Filling: NotRequired[
|
|
5205
|
-
Aggregation: NotRequired[
|
|
5211
|
+
Filling: NotRequired[Dict[str, Dict[FillingTypeType, str]]]
|
|
5212
|
+
Aggregation: NotRequired[Dict[str, AggregationTransformationValueType]]
|
|
5206
5213
|
|
|
5207
5214
|
|
|
5208
5215
|
class TimeSeriesTransformationsTypeDef(TypedDict):
|
|
@@ -5313,8 +5320,8 @@ class UpdateTrialRequestRequestTypeDef(TypedDict):
|
|
|
5313
5320
|
|
|
5314
5321
|
class WorkforceVpcConfigResponseTypeDef(TypedDict):
|
|
5315
5322
|
VpcId: str
|
|
5316
|
-
SecurityGroupIds:
|
|
5317
|
-
Subnets:
|
|
5323
|
+
SecurityGroupIds: List[str]
|
|
5324
|
+
Subnets: List[str]
|
|
5318
5325
|
VpcEndpointId: NotRequired[str]
|
|
5319
5326
|
|
|
5320
5327
|
|
|
@@ -5803,7 +5810,7 @@ class ImportHubContentResponseTypeDef(TypedDict):
|
|
|
5803
5810
|
|
|
5804
5811
|
|
|
5805
5812
|
class ListAliasesResponseTypeDef(TypedDict):
|
|
5806
|
-
SageMakerImageVersionAliases:
|
|
5813
|
+
SageMakerImageVersionAliases: List[str]
|
|
5807
5814
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5808
5815
|
NextToken: NotRequired[str]
|
|
5809
5816
|
|
|
@@ -6037,7 +6044,7 @@ class AddTagsInputRequestTypeDef(TypedDict):
|
|
|
6037
6044
|
|
|
6038
6045
|
|
|
6039
6046
|
class AddTagsOutputTypeDef(TypedDict):
|
|
6040
|
-
Tags:
|
|
6047
|
+
Tags: List[TagTypeDef]
|
|
6041
6048
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6042
6049
|
|
|
6043
6050
|
|
|
@@ -6109,13 +6116,13 @@ class ImportHubContentRequestRequestTypeDef(TypedDict):
|
|
|
6109
6116
|
|
|
6110
6117
|
|
|
6111
6118
|
class ListTagsOutputTypeDef(TypedDict):
|
|
6112
|
-
Tags:
|
|
6119
|
+
Tags: List[TagTypeDef]
|
|
6113
6120
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6114
6121
|
NextToken: NotRequired[str]
|
|
6115
6122
|
|
|
6116
6123
|
|
|
6117
6124
|
class AutoRollbackConfigOutputTypeDef(TypedDict):
|
|
6118
|
-
Alarms: NotRequired[
|
|
6125
|
+
Alarms: NotRequired[List[AlarmTypeDef]]
|
|
6119
6126
|
|
|
6120
6127
|
|
|
6121
6128
|
class AutoRollbackConfigTypeDef(TypedDict):
|
|
@@ -6126,7 +6133,7 @@ class HyperParameterAlgorithmSpecificationOutputTypeDef(TypedDict):
|
|
|
6126
6133
|
TrainingInputMode: TrainingInputModeType
|
|
6127
6134
|
TrainingImage: NotRequired[str]
|
|
6128
6135
|
AlgorithmName: NotRequired[str]
|
|
6129
|
-
MetricDefinitions: NotRequired[
|
|
6136
|
+
MetricDefinitions: NotRequired[List[MetricDefinitionTypeDef]]
|
|
6130
6137
|
|
|
6131
6138
|
|
|
6132
6139
|
class HyperParameterAlgorithmSpecificationTypeDef(TypedDict):
|
|
@@ -6137,12 +6144,12 @@ class HyperParameterAlgorithmSpecificationTypeDef(TypedDict):
|
|
|
6137
6144
|
|
|
6138
6145
|
|
|
6139
6146
|
class AlgorithmStatusDetailsTypeDef(TypedDict):
|
|
6140
|
-
ValidationStatuses: NotRequired[
|
|
6141
|
-
ImageScanStatuses: NotRequired[
|
|
6147
|
+
ValidationStatuses: NotRequired[List[AlgorithmStatusItemTypeDef]]
|
|
6148
|
+
ImageScanStatuses: NotRequired[List[AlgorithmStatusItemTypeDef]]
|
|
6142
6149
|
|
|
6143
6150
|
|
|
6144
6151
|
class ListAlgorithmsOutputTypeDef(TypedDict):
|
|
6145
|
-
AlgorithmSummaryList:
|
|
6152
|
+
AlgorithmSummaryList: List[AlgorithmSummaryTypeDef]
|
|
6146
6153
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6147
6154
|
NextToken: NotRequired[str]
|
|
6148
6155
|
|
|
@@ -6209,7 +6216,7 @@ class AppLifecycleManagementTypeDef(TypedDict):
|
|
|
6209
6216
|
|
|
6210
6217
|
class ArtifactSourceOutputTypeDef(TypedDict):
|
|
6211
6218
|
SourceUri: str
|
|
6212
|
-
SourceTypes: NotRequired[
|
|
6219
|
+
SourceTypes: NotRequired[List[ArtifactSourceTypeTypeDef]]
|
|
6213
6220
|
|
|
6214
6221
|
|
|
6215
6222
|
class ArtifactSourceTypeDef(TypedDict):
|
|
@@ -6231,11 +6238,11 @@ AsyncInferenceNotificationConfigUnionTypeDef = Union[
|
|
|
6231
6238
|
|
|
6232
6239
|
class AutoMLCandidateGenerationConfigOutputTypeDef(TypedDict):
|
|
6233
6240
|
FeatureSpecificationS3Uri: NotRequired[str]
|
|
6234
|
-
AlgorithmsConfig: NotRequired[
|
|
6241
|
+
AlgorithmsConfig: NotRequired[List[AutoMLAlgorithmConfigOutputTypeDef]]
|
|
6235
6242
|
|
|
6236
6243
|
|
|
6237
6244
|
class CandidateGenerationConfigOutputTypeDef(TypedDict):
|
|
6238
|
-
AlgorithmsConfig: NotRequired[
|
|
6245
|
+
AlgorithmsConfig: NotRequired[List[AutoMLAlgorithmConfigOutputTypeDef]]
|
|
6239
6246
|
|
|
6240
6247
|
|
|
6241
6248
|
AutoMLAlgorithmConfigUnionTypeDef = Union[
|
|
@@ -6276,7 +6283,7 @@ class AutoMLJobSummaryTypeDef(TypedDict):
|
|
|
6276
6283
|
LastModifiedTime: datetime
|
|
6277
6284
|
EndTime: NotRequired[datetime]
|
|
6278
6285
|
FailureReason: NotRequired[str]
|
|
6279
|
-
PartialFailureReasons: NotRequired[
|
|
6286
|
+
PartialFailureReasons: NotRequired[List[AutoMLPartialFailureReasonTypeDef]]
|
|
6280
6287
|
|
|
6281
6288
|
|
|
6282
6289
|
class AutoMLProblemTypeResolvedAttributesTypeDef(TypedDict):
|
|
@@ -6308,8 +6315,8 @@ class NetworkConfigOutputTypeDef(TypedDict):
|
|
|
6308
6315
|
|
|
6309
6316
|
|
|
6310
6317
|
class BatchDeleteClusterNodesResponseTypeDef(TypedDict):
|
|
6311
|
-
Failed:
|
|
6312
|
-
Successful:
|
|
6318
|
+
Failed: List[BatchDeleteClusterNodesErrorTypeDef]
|
|
6319
|
+
Successful: List[str]
|
|
6313
6320
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6314
6321
|
|
|
6315
6322
|
|
|
@@ -6346,12 +6353,12 @@ class ModelQualityTypeDef(TypedDict):
|
|
|
6346
6353
|
class CallbackStepMetadataTypeDef(TypedDict):
|
|
6347
6354
|
CallbackToken: NotRequired[str]
|
|
6348
6355
|
SqsQueueUrl: NotRequired[str]
|
|
6349
|
-
OutputParameters: NotRequired[
|
|
6356
|
+
OutputParameters: NotRequired[List[OutputParameterTypeDef]]
|
|
6350
6357
|
|
|
6351
6358
|
|
|
6352
6359
|
class LambdaStepMetadataTypeDef(TypedDict):
|
|
6353
6360
|
Arn: NotRequired[str]
|
|
6354
|
-
OutputParameters: NotRequired[
|
|
6361
|
+
OutputParameters: NotRequired[List[OutputParameterTypeDef]]
|
|
6355
6362
|
|
|
6356
6363
|
|
|
6357
6364
|
class SendPipelineExecutionStepSuccessRequestRequestTypeDef(TypedDict):
|
|
@@ -6362,14 +6369,14 @@ class SendPipelineExecutionStepSuccessRequestRequestTypeDef(TypedDict):
|
|
|
6362
6369
|
|
|
6363
6370
|
class CandidatePropertiesTypeDef(TypedDict):
|
|
6364
6371
|
CandidateArtifactLocations: NotRequired[CandidateArtifactLocationsTypeDef]
|
|
6365
|
-
CandidateMetrics: NotRequired[
|
|
6372
|
+
CandidateMetrics: NotRequired[List[MetricDatumTypeDef]]
|
|
6366
6373
|
|
|
6367
6374
|
|
|
6368
6375
|
class CanvasAppSettingsOutputTypeDef(TypedDict):
|
|
6369
6376
|
TimeSeriesForecastingSettings: NotRequired[TimeSeriesForecastingSettingsTypeDef]
|
|
6370
6377
|
ModelRegisterSettings: NotRequired[ModelRegisterSettingsTypeDef]
|
|
6371
6378
|
WorkspaceSettings: NotRequired[WorkspaceSettingsTypeDef]
|
|
6372
|
-
IdentityProviderOAuthSettings: NotRequired[
|
|
6379
|
+
IdentityProviderOAuthSettings: NotRequired[List[IdentityProviderOAuthSettingTypeDef]]
|
|
6373
6380
|
DirectDeploySettings: NotRequired[DirectDeploySettingsTypeDef]
|
|
6374
6381
|
KendraSettings: NotRequired[KendraSettingsTypeDef]
|
|
6375
6382
|
GenerativeAiSettings: NotRequired[GenerativeAiSettingsTypeDef]
|
|
@@ -6419,14 +6426,14 @@ CaptureContentTypeHeaderUnionTypeDef = Union[
|
|
|
6419
6426
|
class DataCaptureConfigOutputTypeDef(TypedDict):
|
|
6420
6427
|
InitialSamplingPercentage: int
|
|
6421
6428
|
DestinationS3Uri: str
|
|
6422
|
-
CaptureOptions:
|
|
6429
|
+
CaptureOptions: List[CaptureOptionTypeDef]
|
|
6423
6430
|
EnableCapture: NotRequired[bool]
|
|
6424
6431
|
KmsKeyId: NotRequired[str]
|
|
6425
6432
|
CaptureContentTypeHeader: NotRequired[CaptureContentTypeHeaderOutputTypeDef]
|
|
6426
6433
|
|
|
6427
6434
|
|
|
6428
6435
|
class EnvironmentParameterRangesOutputTypeDef(TypedDict):
|
|
6429
|
-
CategoricalParameterRanges: NotRequired[
|
|
6436
|
+
CategoricalParameterRanges: NotRequired[List[CategoricalParameterOutputTypeDef]]
|
|
6430
6437
|
|
|
6431
6438
|
|
|
6432
6439
|
CategoricalParameterRangeSpecificationUnionTypeDef = Union[
|
|
@@ -6472,14 +6479,14 @@ class ClusterOrchestratorTypeDef(TypedDict):
|
|
|
6472
6479
|
|
|
6473
6480
|
|
|
6474
6481
|
class ListClusterSchedulerConfigsResponseTypeDef(TypedDict):
|
|
6475
|
-
ClusterSchedulerConfigSummaries:
|
|
6482
|
+
ClusterSchedulerConfigSummaries: List[ClusterSchedulerConfigSummaryTypeDef]
|
|
6476
6483
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6477
6484
|
NextToken: NotRequired[str]
|
|
6478
6485
|
|
|
6479
6486
|
|
|
6480
6487
|
class ListClustersResponseTypeDef(TypedDict):
|
|
6481
6488
|
NextToken: str
|
|
6482
|
-
ClusterSummaries:
|
|
6489
|
+
ClusterSummaries: List[ClusterSummaryTypeDef]
|
|
6483
6490
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6484
6491
|
|
|
6485
6492
|
|
|
@@ -6495,8 +6502,8 @@ class JupyterLabAppImageConfigOutputTypeDef(TypedDict):
|
|
|
6495
6502
|
|
|
6496
6503
|
class KernelGatewayAppSettingsOutputTypeDef(TypedDict):
|
|
6497
6504
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
6498
|
-
CustomImages: NotRequired[
|
|
6499
|
-
LifecycleConfigArns: NotRequired[
|
|
6505
|
+
CustomImages: NotRequired[List[CustomImageTypeDef]]
|
|
6506
|
+
LifecycleConfigArns: NotRequired[List[str]]
|
|
6500
6507
|
|
|
6501
6508
|
|
|
6502
6509
|
class KernelGatewayAppSettingsTypeDef(TypedDict):
|
|
@@ -6507,7 +6514,7 @@ class KernelGatewayAppSettingsTypeDef(TypedDict):
|
|
|
6507
6514
|
|
|
6508
6515
|
class RSessionAppSettingsOutputTypeDef(TypedDict):
|
|
6509
6516
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
6510
|
-
CustomImages: NotRequired[
|
|
6517
|
+
CustomImages: NotRequired[List[CustomImageTypeDef]]
|
|
6511
6518
|
|
|
6512
6519
|
|
|
6513
6520
|
class RSessionAppSettingsTypeDef(TypedDict):
|
|
@@ -6540,8 +6547,8 @@ class DescribeCodeRepositoryOutputTypeDef(TypedDict):
|
|
|
6540
6547
|
|
|
6541
6548
|
class JupyterServerAppSettingsOutputTypeDef(TypedDict):
|
|
6542
6549
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
6543
|
-
LifecycleConfigArns: NotRequired[
|
|
6544
|
-
CodeRepositories: NotRequired[
|
|
6550
|
+
LifecycleConfigArns: NotRequired[List[str]]
|
|
6551
|
+
CodeRepositories: NotRequired[List[CodeRepositoryTypeDef]]
|
|
6545
6552
|
|
|
6546
6553
|
|
|
6547
6554
|
class JupyterServerAppSettingsTypeDef(TypedDict):
|
|
@@ -6557,8 +6564,8 @@ class CollectionConfigTypeDef(TypedDict):
|
|
|
6557
6564
|
class DebugHookConfigOutputTypeDef(TypedDict):
|
|
6558
6565
|
S3OutputPath: str
|
|
6559
6566
|
LocalPath: NotRequired[str]
|
|
6560
|
-
HookParameters: NotRequired[
|
|
6561
|
-
CollectionConfigurations: NotRequired[
|
|
6567
|
+
HookParameters: NotRequired[Dict[str, str]]
|
|
6568
|
+
CollectionConfigurations: NotRequired[List[CollectionConfigurationOutputTypeDef]]
|
|
6562
6569
|
|
|
6563
6570
|
|
|
6564
6571
|
CollectionConfigurationUnionTypeDef = Union[
|
|
@@ -6567,13 +6574,13 @@ CollectionConfigurationUnionTypeDef = Union[
|
|
|
6567
6574
|
|
|
6568
6575
|
|
|
6569
6576
|
class ListCompilationJobsResponseTypeDef(TypedDict):
|
|
6570
|
-
CompilationJobSummaries:
|
|
6577
|
+
CompilationJobSummaries: List[CompilationJobSummaryTypeDef]
|
|
6571
6578
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6572
6579
|
NextToken: NotRequired[str]
|
|
6573
6580
|
|
|
6574
6581
|
|
|
6575
6582
|
class ComputeQuotaConfigOutputTypeDef(TypedDict):
|
|
6576
|
-
ComputeQuotaResources: NotRequired[
|
|
6583
|
+
ComputeQuotaResources: NotRequired[List[ComputeQuotaResourceConfigTypeDef]]
|
|
6577
6584
|
ResourceSharingConfig: NotRequired[ResourceSharingConfigTypeDef]
|
|
6578
6585
|
PreemptTeamTasks: NotRequired[PreemptTeamTasksType]
|
|
6579
6586
|
|
|
@@ -6687,7 +6694,7 @@ class DescribeHubResponseTypeDef(TypedDict):
|
|
|
6687
6694
|
HubArn: str
|
|
6688
6695
|
HubDisplayName: str
|
|
6689
6696
|
HubDescription: str
|
|
6690
|
-
HubSearchKeywords:
|
|
6697
|
+
HubSearchKeywords: List[str]
|
|
6691
6698
|
S3StorageConfig: HubS3StorageConfigTypeDef
|
|
6692
6699
|
HubStatus: HubStatusType
|
|
6693
6700
|
FailureReason: str
|
|
@@ -6749,7 +6756,7 @@ class DescribeNotebookInstanceOutputTypeDef(TypedDict):
|
|
|
6749
6756
|
Url: str
|
|
6750
6757
|
InstanceType: InstanceTypeType
|
|
6751
6758
|
SubnetId: str
|
|
6752
|
-
SecurityGroups:
|
|
6759
|
+
SecurityGroups: List[str]
|
|
6753
6760
|
RoleArn: str
|
|
6754
6761
|
KmsKeyId: str
|
|
6755
6762
|
NetworkInterfaceId: str
|
|
@@ -6758,9 +6765,9 @@ class DescribeNotebookInstanceOutputTypeDef(TypedDict):
|
|
|
6758
6765
|
NotebookInstanceLifecycleConfigName: str
|
|
6759
6766
|
DirectInternetAccess: DirectInternetAccessType
|
|
6760
6767
|
VolumeSizeInGB: int
|
|
6761
|
-
AcceleratorTypes:
|
|
6768
|
+
AcceleratorTypes: List[NotebookInstanceAcceleratorTypeType]
|
|
6762
6769
|
DefaultCodeRepository: str
|
|
6763
|
-
AdditionalCodeRepositories:
|
|
6770
|
+
AdditionalCodeRepositories: List[str]
|
|
6764
6771
|
RootAccess: RootAccessType
|
|
6765
6772
|
PlatformIdentifier: str
|
|
6766
6773
|
InstanceMetadataServiceConfiguration: InstanceMetadataServiceConfigurationTypeDef
|
|
@@ -6793,8 +6800,8 @@ class CreateNotebookInstanceLifecycleConfigInputRequestTypeDef(TypedDict):
|
|
|
6793
6800
|
class DescribeNotebookInstanceLifecycleConfigOutputTypeDef(TypedDict):
|
|
6794
6801
|
NotebookInstanceLifecycleConfigArn: str
|
|
6795
6802
|
NotebookInstanceLifecycleConfigName: str
|
|
6796
|
-
OnCreate:
|
|
6797
|
-
OnStart:
|
|
6803
|
+
OnCreate: List[NotebookInstanceLifecycleHookTypeDef]
|
|
6804
|
+
OnStart: List[NotebookInstanceLifecycleHookTypeDef]
|
|
6798
6805
|
LastModifiedTime: datetime
|
|
6799
6806
|
CreationTime: datetime
|
|
6800
6807
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -7748,12 +7755,12 @@ class DeleteDomainRequestRequestTypeDef(TypedDict):
|
|
|
7748
7755
|
class InferenceComponentContainerSpecificationSummaryTypeDef(TypedDict):
|
|
7749
7756
|
DeployedImage: NotRequired[DeployedImageTypeDef]
|
|
7750
7757
|
ArtifactUrl: NotRequired[str]
|
|
7751
|
-
Environment: NotRequired[
|
|
7758
|
+
Environment: NotRequired[Dict[str, str]]
|
|
7752
7759
|
|
|
7753
7760
|
|
|
7754
7761
|
class DeploymentRecommendationTypeDef(TypedDict):
|
|
7755
7762
|
RecommendationStatus: RecommendationStatusType
|
|
7756
|
-
RealTimeInferenceRecommendations: NotRequired[
|
|
7763
|
+
RealTimeInferenceRecommendations: NotRequired[List[RealTimeInferenceRecommendationTypeDef]]
|
|
7757
7764
|
|
|
7758
7765
|
|
|
7759
7766
|
class DeploymentStageStatusSummaryTypeDef(TypedDict):
|
|
@@ -7771,7 +7778,7 @@ class DescribeDeviceResponseTypeDef(TypedDict):
|
|
|
7771
7778
|
IotThingName: str
|
|
7772
7779
|
RegistrationTime: datetime
|
|
7773
7780
|
LatestHeartbeat: datetime
|
|
7774
|
-
Models:
|
|
7781
|
+
Models: List[EdgeModelTypeDef]
|
|
7775
7782
|
MaxModels: int
|
|
7776
7783
|
AgentVersion: str
|
|
7777
7784
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -7859,7 +7866,7 @@ class DescribeFeatureMetadataResponseTypeDef(TypedDict):
|
|
|
7859
7866
|
CreationTime: datetime
|
|
7860
7867
|
LastModifiedTime: datetime
|
|
7861
7868
|
Description: str
|
|
7862
|
-
Parameters:
|
|
7869
|
+
Parameters: List[FeatureParameterTypeDef]
|
|
7863
7870
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7864
7871
|
|
|
7865
7872
|
|
|
@@ -7871,7 +7878,7 @@ class FeatureMetadataTypeDef(TypedDict):
|
|
|
7871
7878
|
CreationTime: NotRequired[datetime]
|
|
7872
7879
|
LastModifiedTime: NotRequired[datetime]
|
|
7873
7880
|
Description: NotRequired[str]
|
|
7874
|
-
Parameters: NotRequired[
|
|
7881
|
+
Parameters: NotRequired[List[FeatureParameterTypeDef]]
|
|
7875
7882
|
|
|
7876
7883
|
|
|
7877
7884
|
class UpdateFeatureMetadataRequestRequestTypeDef(TypedDict):
|
|
@@ -7897,8 +7904,8 @@ class DescribeHubContentResponseTypeDef(TypedDict):
|
|
|
7897
7904
|
SageMakerPublicHubContentArn: str
|
|
7898
7905
|
ReferenceMinVersion: str
|
|
7899
7906
|
SupportStatus: HubContentSupportStatusType
|
|
7900
|
-
HubContentSearchKeywords:
|
|
7901
|
-
HubContentDependencies:
|
|
7907
|
+
HubContentSearchKeywords: List[str]
|
|
7908
|
+
HubContentDependencies: List[HubContentDependencyTypeDef]
|
|
7902
7909
|
HubContentStatus: HubContentStatusType
|
|
7903
7910
|
FailureReason: str
|
|
7904
7911
|
CreationTime: datetime
|
|
@@ -7946,7 +7953,7 @@ class DescribeModelCardExportJobResponseTypeDef(TypedDict):
|
|
|
7946
7953
|
|
|
7947
7954
|
|
|
7948
7955
|
class ListMonitoringExecutionsResponseTypeDef(TypedDict):
|
|
7949
|
-
MonitoringExecutionSummaries:
|
|
7956
|
+
MonitoringExecutionSummaries: List[MonitoringExecutionSummaryTypeDef]
|
|
7950
7957
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7951
7958
|
NextToken: NotRequired[str]
|
|
7952
7959
|
|
|
@@ -7979,7 +7986,7 @@ class DescribeSubscribedWorkteamResponseTypeDef(TypedDict):
|
|
|
7979
7986
|
|
|
7980
7987
|
|
|
7981
7988
|
class ListSubscribedWorkteamsResponseTypeDef(TypedDict):
|
|
7982
|
-
SubscribedWorkteams:
|
|
7989
|
+
SubscribedWorkteams: List[SubscribedWorkteamTypeDef]
|
|
7983
7990
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7984
7991
|
NextToken: NotRequired[str]
|
|
7985
7992
|
|
|
@@ -8010,8 +8017,8 @@ class DescribeTrainingPlanResponseTypeDef(TypedDict):
|
|
|
8010
8017
|
TotalInstanceCount: int
|
|
8011
8018
|
AvailableInstanceCount: int
|
|
8012
8019
|
InUseInstanceCount: int
|
|
8013
|
-
TargetResources:
|
|
8014
|
-
ReservedCapacitySummaries:
|
|
8020
|
+
TargetResources: List[SageMakerResourceNameType]
|
|
8021
|
+
ReservedCapacitySummaries: List[ReservedCapacitySummaryTypeDef]
|
|
8015
8022
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8016
8023
|
|
|
8017
8024
|
|
|
@@ -8029,8 +8036,8 @@ class TrainingPlanSummaryTypeDef(TypedDict):
|
|
|
8029
8036
|
TotalInstanceCount: NotRequired[int]
|
|
8030
8037
|
AvailableInstanceCount: NotRequired[int]
|
|
8031
8038
|
InUseInstanceCount: NotRequired[int]
|
|
8032
|
-
TargetResources: NotRequired[
|
|
8033
|
-
ReservedCapacitySummaries: NotRequired[
|
|
8039
|
+
TargetResources: NotRequired[List[SageMakerResourceNameType]]
|
|
8040
|
+
ReservedCapacitySummaries: NotRequired[List[ReservedCapacitySummaryTypeDef]]
|
|
8034
8041
|
|
|
8035
8042
|
|
|
8036
8043
|
class TrialSummaryTypeDef(TypedDict):
|
|
@@ -8050,13 +8057,13 @@ class DesiredWeightAndCapacityTypeDef(TypedDict):
|
|
|
8050
8057
|
|
|
8051
8058
|
|
|
8052
8059
|
class ListStageDevicesResponseTypeDef(TypedDict):
|
|
8053
|
-
DeviceDeploymentSummaries:
|
|
8060
|
+
DeviceDeploymentSummaries: List[DeviceDeploymentSummaryTypeDef]
|
|
8054
8061
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8055
8062
|
NextToken: NotRequired[str]
|
|
8056
8063
|
|
|
8057
8064
|
|
|
8058
8065
|
class ListDeviceFleetsResponseTypeDef(TypedDict):
|
|
8059
|
-
DeviceFleetSummaries:
|
|
8066
|
+
DeviceFleetSummaries: List[DeviceFleetSummaryTypeDef]
|
|
8060
8067
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8061
8068
|
NextToken: NotRequired[str]
|
|
8062
8069
|
|
|
@@ -8074,7 +8081,7 @@ class DeviceSummaryTypeDef(TypedDict):
|
|
|
8074
8081
|
IotThingName: NotRequired[str]
|
|
8075
8082
|
RegistrationTime: NotRequired[datetime]
|
|
8076
8083
|
LatestHeartbeat: NotRequired[datetime]
|
|
8077
|
-
Models: NotRequired[
|
|
8084
|
+
Models: NotRequired[List[EdgeModelSummaryTypeDef]]
|
|
8078
8085
|
AgentVersion: NotRequired[str]
|
|
8079
8086
|
|
|
8080
8087
|
|
|
@@ -8093,7 +8100,7 @@ DockerSettingsUnionTypeDef = Union[DockerSettingsTypeDef, DockerSettingsOutputTy
|
|
|
8093
8100
|
|
|
8094
8101
|
|
|
8095
8102
|
class ListDomainsResponseTypeDef(TypedDict):
|
|
8096
|
-
Domains:
|
|
8103
|
+
Domains: List[DomainDetailsTypeDef]
|
|
8097
8104
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8098
8105
|
NextToken: NotRequired[str]
|
|
8099
8106
|
|
|
@@ -8114,7 +8121,7 @@ class SpaceStorageSettingsTypeDef(TypedDict):
|
|
|
8114
8121
|
|
|
8115
8122
|
|
|
8116
8123
|
class ListEdgeDeploymentPlansResponseTypeDef(TypedDict):
|
|
8117
|
-
EdgeDeploymentPlanSummaries:
|
|
8124
|
+
EdgeDeploymentPlanSummaries: List[EdgeDeploymentPlanSummaryTypeDef]
|
|
8118
8125
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8119
8126
|
NextToken: NotRequired[str]
|
|
8120
8127
|
|
|
@@ -8126,13 +8133,13 @@ class GetDeviceFleetReportResponseTypeDef(TypedDict):
|
|
|
8126
8133
|
Description: str
|
|
8127
8134
|
ReportGenerated: datetime
|
|
8128
8135
|
DeviceStats: DeviceStatsTypeDef
|
|
8129
|
-
AgentVersions:
|
|
8130
|
-
ModelStats:
|
|
8136
|
+
AgentVersions: List[AgentVersionTypeDef]
|
|
8137
|
+
ModelStats: List[EdgeModelStatTypeDef]
|
|
8131
8138
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8132
8139
|
|
|
8133
8140
|
|
|
8134
8141
|
class ListEdgePackagingJobsResponseTypeDef(TypedDict):
|
|
8135
|
-
EdgePackagingJobSummaries:
|
|
8142
|
+
EdgePackagingJobSummaries: List[EdgePackagingJobSummaryTypeDef]
|
|
8136
8143
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8137
8144
|
NextToken: NotRequired[str]
|
|
8138
8145
|
|
|
@@ -8141,7 +8148,7 @@ EmrSettingsUnionTypeDef = Union[EmrSettingsTypeDef, EmrSettingsOutputTypeDef]
|
|
|
8141
8148
|
|
|
8142
8149
|
|
|
8143
8150
|
class ListEndpointConfigsOutputTypeDef(TypedDict):
|
|
8144
|
-
EndpointConfigs:
|
|
8151
|
+
EndpointConfigs: List[EndpointConfigSummaryTypeDef]
|
|
8145
8152
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8146
8153
|
NextToken: NotRequired[str]
|
|
8147
8154
|
|
|
@@ -8160,14 +8167,14 @@ class EndpointPerformanceTypeDef(TypedDict):
|
|
|
8160
8167
|
|
|
8161
8168
|
|
|
8162
8169
|
class ListEndpointsOutputTypeDef(TypedDict):
|
|
8163
|
-
Endpoints:
|
|
8170
|
+
Endpoints: List[EndpointSummaryTypeDef]
|
|
8164
8171
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8165
8172
|
NextToken: NotRequired[str]
|
|
8166
8173
|
|
|
8167
8174
|
|
|
8168
8175
|
class ModelConfigurationTypeDef(TypedDict):
|
|
8169
8176
|
InferenceSpecificationName: NotRequired[str]
|
|
8170
|
-
EnvironmentParameters: NotRequired[
|
|
8177
|
+
EnvironmentParameters: NotRequired[List[EnvironmentParameterTypeDef]]
|
|
8171
8178
|
CompilationJobName: NotRequired[str]
|
|
8172
8179
|
|
|
8173
8180
|
|
|
@@ -8181,7 +8188,7 @@ class HyperParameterTrainingJobSummaryTypeDef(TypedDict):
|
|
|
8181
8188
|
TrainingJobArn: str
|
|
8182
8189
|
CreationTime: datetime
|
|
8183
8190
|
TrainingJobStatus: TrainingJobStatusType
|
|
8184
|
-
TunedHyperParameters:
|
|
8191
|
+
TunedHyperParameters: Dict[str, str]
|
|
8185
8192
|
TrainingJobDefinitionName: NotRequired[str]
|
|
8186
8193
|
TuningJobName: NotRequired[str]
|
|
8187
8194
|
TrainingStartTime: NotRequired[datetime]
|
|
@@ -8194,7 +8201,7 @@ class HyperParameterTrainingJobSummaryTypeDef(TypedDict):
|
|
|
8194
8201
|
|
|
8195
8202
|
|
|
8196
8203
|
class ListFlowDefinitionsResponseTypeDef(TypedDict):
|
|
8197
|
-
FlowDefinitionSummaries:
|
|
8204
|
+
FlowDefinitionSummaries: List[FlowDefinitionSummaryTypeDef]
|
|
8198
8205
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8199
8206
|
NextToken: NotRequired[str]
|
|
8200
8207
|
|
|
@@ -8208,7 +8215,7 @@ class GetScalingConfigurationRecommendationRequestRequestTypeDef(TypedDict):
|
|
|
8208
8215
|
|
|
8209
8216
|
|
|
8210
8217
|
class GetSearchSuggestionsResponseTypeDef(TypedDict):
|
|
8211
|
-
PropertyNameSuggestions:
|
|
8218
|
+
PropertyNameSuggestions: List[PropertyNameSuggestionTypeDef]
|
|
8212
8219
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8213
8220
|
|
|
8214
8221
|
|
|
@@ -8218,10 +8225,10 @@ class UpdateCodeRepositoryInputRequestTypeDef(TypedDict):
|
|
|
8218
8225
|
|
|
8219
8226
|
|
|
8220
8227
|
class StudioWebPortalSettingsOutputTypeDef(TypedDict):
|
|
8221
|
-
HiddenMlTools: NotRequired[
|
|
8222
|
-
HiddenAppTypes: NotRequired[
|
|
8223
|
-
HiddenInstanceTypes: NotRequired[
|
|
8224
|
-
HiddenSageMakerImageVersionAliases: NotRequired[
|
|
8228
|
+
HiddenMlTools: NotRequired[List[MlToolsType]]
|
|
8229
|
+
HiddenAppTypes: NotRequired[List[AppTypeType]]
|
|
8230
|
+
HiddenInstanceTypes: NotRequired[List[AppInstanceTypeType]]
|
|
8231
|
+
HiddenSageMakerImageVersionAliases: NotRequired[List[HiddenSageMakerImageOutputTypeDef]]
|
|
8225
8232
|
|
|
8226
8233
|
|
|
8227
8234
|
HiddenSageMakerImageUnionTypeDef = Union[
|
|
@@ -8230,19 +8237,19 @@ HiddenSageMakerImageUnionTypeDef = Union[
|
|
|
8230
8237
|
|
|
8231
8238
|
|
|
8232
8239
|
class ListHubContentVersionsResponseTypeDef(TypedDict):
|
|
8233
|
-
HubContentSummaries:
|
|
8240
|
+
HubContentSummaries: List[HubContentInfoTypeDef]
|
|
8234
8241
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8235
8242
|
NextToken: NotRequired[str]
|
|
8236
8243
|
|
|
8237
8244
|
|
|
8238
8245
|
class ListHubContentsResponseTypeDef(TypedDict):
|
|
8239
|
-
HubContentSummaries:
|
|
8246
|
+
HubContentSummaries: List[HubContentInfoTypeDef]
|
|
8240
8247
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8241
8248
|
NextToken: NotRequired[str]
|
|
8242
8249
|
|
|
8243
8250
|
|
|
8244
8251
|
class ListHubsResponseTypeDef(TypedDict):
|
|
8245
|
-
HubSummaries:
|
|
8252
|
+
HubSummaries: List[HubInfoTypeDef]
|
|
8246
8253
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8247
8254
|
NextToken: NotRequired[str]
|
|
8248
8255
|
|
|
@@ -8252,7 +8259,7 @@ class HumanLoopActivationConfigTypeDef(TypedDict):
|
|
|
8252
8259
|
|
|
8253
8260
|
|
|
8254
8261
|
class ListHumanTaskUisResponseTypeDef(TypedDict):
|
|
8255
|
-
HumanTaskUiSummaries:
|
|
8262
|
+
HumanTaskUiSummaries: List[HumanTaskUiSummaryTypeDef]
|
|
8256
8263
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8257
8264
|
NextToken: NotRequired[str]
|
|
8258
8265
|
|
|
@@ -8263,7 +8270,7 @@ class HyperParameterTuningResourceConfigOutputTypeDef(TypedDict):
|
|
|
8263
8270
|
VolumeSizeInGB: NotRequired[int]
|
|
8264
8271
|
VolumeKmsKeyId: NotRequired[str]
|
|
8265
8272
|
AllocationStrategy: NotRequired[Literal["Prioritized"]]
|
|
8266
|
-
InstanceConfigs: NotRequired[
|
|
8273
|
+
InstanceConfigs: NotRequired[List[HyperParameterTuningInstanceConfigTypeDef]]
|
|
8267
8274
|
|
|
8268
8275
|
|
|
8269
8276
|
class HyperParameterTuningResourceConfigTypeDef(TypedDict):
|
|
@@ -8293,7 +8300,7 @@ class HyperParameterTuningJobStrategyConfigTypeDef(TypedDict):
|
|
|
8293
8300
|
|
|
8294
8301
|
|
|
8295
8302
|
class HyperParameterTuningJobWarmStartConfigOutputTypeDef(TypedDict):
|
|
8296
|
-
ParentHyperParameterTuningJobs:
|
|
8303
|
+
ParentHyperParameterTuningJobs: List[ParentHyperParameterTuningJobTypeDef]
|
|
8297
8304
|
WarmStartType: HyperParameterTuningJobWarmStartTypeType
|
|
8298
8305
|
|
|
8299
8306
|
|
|
@@ -8319,13 +8326,13 @@ class ImageConfigTypeDef(TypedDict):
|
|
|
8319
8326
|
|
|
8320
8327
|
|
|
8321
8328
|
class ListImagesResponseTypeDef(TypedDict):
|
|
8322
|
-
Images:
|
|
8329
|
+
Images: List[ImageTypeDef]
|
|
8323
8330
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8324
8331
|
NextToken: NotRequired[str]
|
|
8325
8332
|
|
|
8326
8333
|
|
|
8327
8334
|
class ListImageVersionsResponseTypeDef(TypedDict):
|
|
8328
|
-
ImageVersions:
|
|
8335
|
+
ImageVersions: List[ImageVersionTypeDef]
|
|
8329
8336
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8330
8337
|
NextToken: NotRequired[str]
|
|
8331
8338
|
|
|
@@ -8345,13 +8352,13 @@ InferenceComponentSpecificationTypeDef = TypedDict(
|
|
|
8345
8352
|
|
|
8346
8353
|
|
|
8347
8354
|
class ListInferenceComponentsOutputTypeDef(TypedDict):
|
|
8348
|
-
InferenceComponents:
|
|
8355
|
+
InferenceComponents: List[InferenceComponentSummaryTypeDef]
|
|
8349
8356
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8350
8357
|
NextToken: NotRequired[str]
|
|
8351
8358
|
|
|
8352
8359
|
|
|
8353
8360
|
class ListInferenceRecommendationsJobsResponseTypeDef(TypedDict):
|
|
8354
|
-
InferenceRecommendationsJobs:
|
|
8361
|
+
InferenceRecommendationsJobs: List[InferenceRecommendationsJobTypeDef]
|
|
8355
8362
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8356
8363
|
NextToken: NotRequired[str]
|
|
8357
8364
|
|
|
@@ -8362,7 +8369,7 @@ class ResourceConfigOutputTypeDef(TypedDict):
|
|
|
8362
8369
|
InstanceCount: NotRequired[int]
|
|
8363
8370
|
VolumeKmsKeyId: NotRequired[str]
|
|
8364
8371
|
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
8365
|
-
InstanceGroups: NotRequired[
|
|
8372
|
+
InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
|
|
8366
8373
|
TrainingPlanArn: NotRequired[str]
|
|
8367
8374
|
|
|
8368
8375
|
|
|
@@ -8385,14 +8392,14 @@ class ParameterRangeOutputTypeDef(TypedDict):
|
|
|
8385
8392
|
|
|
8386
8393
|
|
|
8387
8394
|
class ParameterRangesOutputTypeDef(TypedDict):
|
|
8388
|
-
IntegerParameterRanges: NotRequired[
|
|
8389
|
-
ContinuousParameterRanges: NotRequired[
|
|
8390
|
-
CategoricalParameterRanges: NotRequired[
|
|
8391
|
-
AutoParameters: NotRequired[
|
|
8395
|
+
IntegerParameterRanges: NotRequired[List[IntegerParameterRangeTypeDef]]
|
|
8396
|
+
ContinuousParameterRanges: NotRequired[List[ContinuousParameterRangeTypeDef]]
|
|
8397
|
+
CategoricalParameterRanges: NotRequired[List[CategoricalParameterRangeOutputTypeDef]]
|
|
8398
|
+
AutoParameters: NotRequired[List[AutoParameterTypeDef]]
|
|
8392
8399
|
|
|
8393
8400
|
|
|
8394
8401
|
class KernelGatewayImageConfigOutputTypeDef(TypedDict):
|
|
8395
|
-
KernelSpecs:
|
|
8402
|
+
KernelSpecs: List[KernelSpecTypeDef]
|
|
8396
8403
|
FileSystemConfig: NotRequired[FileSystemConfigTypeDef]
|
|
8397
8404
|
|
|
8398
8405
|
|
|
@@ -8421,7 +8428,7 @@ class LabelingJobDataSourceTypeDef(TypedDict):
|
|
|
8421
8428
|
|
|
8422
8429
|
|
|
8423
8430
|
class ListLineageGroupsResponseTypeDef(TypedDict):
|
|
8424
|
-
LineageGroupSummaries:
|
|
8431
|
+
LineageGroupSummaries: List[LineageGroupSummaryTypeDef]
|
|
8425
8432
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8426
8433
|
NextToken: NotRequired[str]
|
|
8427
8434
|
|
|
@@ -9177,151 +9184,151 @@ class ListWorkteamsRequestPaginateTypeDef(TypedDict):
|
|
|
9177
9184
|
|
|
9178
9185
|
|
|
9179
9186
|
class ListDataQualityJobDefinitionsResponseTypeDef(TypedDict):
|
|
9180
|
-
JobDefinitionSummaries:
|
|
9187
|
+
JobDefinitionSummaries: List[MonitoringJobDefinitionSummaryTypeDef]
|
|
9181
9188
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9182
9189
|
NextToken: NotRequired[str]
|
|
9183
9190
|
|
|
9184
9191
|
|
|
9185
9192
|
class ListModelBiasJobDefinitionsResponseTypeDef(TypedDict):
|
|
9186
|
-
JobDefinitionSummaries:
|
|
9193
|
+
JobDefinitionSummaries: List[MonitoringJobDefinitionSummaryTypeDef]
|
|
9187
9194
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9188
9195
|
NextToken: NotRequired[str]
|
|
9189
9196
|
|
|
9190
9197
|
|
|
9191
9198
|
class ListModelExplainabilityJobDefinitionsResponseTypeDef(TypedDict):
|
|
9192
|
-
JobDefinitionSummaries:
|
|
9199
|
+
JobDefinitionSummaries: List[MonitoringJobDefinitionSummaryTypeDef]
|
|
9193
9200
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9194
9201
|
NextToken: NotRequired[str]
|
|
9195
9202
|
|
|
9196
9203
|
|
|
9197
9204
|
class ListModelQualityJobDefinitionsResponseTypeDef(TypedDict):
|
|
9198
|
-
JobDefinitionSummaries:
|
|
9205
|
+
JobDefinitionSummaries: List[MonitoringJobDefinitionSummaryTypeDef]
|
|
9199
9206
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9200
9207
|
NextToken: NotRequired[str]
|
|
9201
9208
|
|
|
9202
9209
|
|
|
9203
9210
|
class ListMlflowTrackingServersResponseTypeDef(TypedDict):
|
|
9204
|
-
TrackingServerSummaries:
|
|
9211
|
+
TrackingServerSummaries: List[TrackingServerSummaryTypeDef]
|
|
9205
9212
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9206
9213
|
NextToken: NotRequired[str]
|
|
9207
9214
|
|
|
9208
9215
|
|
|
9209
9216
|
class ListModelCardExportJobsResponseTypeDef(TypedDict):
|
|
9210
|
-
ModelCardExportJobSummaries:
|
|
9217
|
+
ModelCardExportJobSummaries: List[ModelCardExportJobSummaryTypeDef]
|
|
9211
9218
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9212
9219
|
NextToken: NotRequired[str]
|
|
9213
9220
|
|
|
9214
9221
|
|
|
9215
9222
|
class ListModelCardVersionsResponseTypeDef(TypedDict):
|
|
9216
|
-
ModelCardVersionSummaryList:
|
|
9223
|
+
ModelCardVersionSummaryList: List[ModelCardVersionSummaryTypeDef]
|
|
9217
9224
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9218
9225
|
NextToken: NotRequired[str]
|
|
9219
9226
|
|
|
9220
9227
|
|
|
9221
9228
|
class ListModelCardsResponseTypeDef(TypedDict):
|
|
9222
|
-
ModelCardSummaries:
|
|
9229
|
+
ModelCardSummaries: List[ModelCardSummaryTypeDef]
|
|
9223
9230
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9224
9231
|
NextToken: NotRequired[str]
|
|
9225
9232
|
|
|
9226
9233
|
|
|
9227
9234
|
class ListModelMetadataResponseTypeDef(TypedDict):
|
|
9228
|
-
ModelMetadataSummaries:
|
|
9235
|
+
ModelMetadataSummaries: List[ModelMetadataSummaryTypeDef]
|
|
9229
9236
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9230
9237
|
NextToken: NotRequired[str]
|
|
9231
9238
|
|
|
9232
9239
|
|
|
9233
9240
|
class ListModelPackageGroupsOutputTypeDef(TypedDict):
|
|
9234
|
-
ModelPackageGroupSummaryList:
|
|
9241
|
+
ModelPackageGroupSummaryList: List[ModelPackageGroupSummaryTypeDef]
|
|
9235
9242
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9236
9243
|
NextToken: NotRequired[str]
|
|
9237
9244
|
|
|
9238
9245
|
|
|
9239
9246
|
class ListModelPackagesOutputTypeDef(TypedDict):
|
|
9240
|
-
ModelPackageSummaryList:
|
|
9247
|
+
ModelPackageSummaryList: List[ModelPackageSummaryTypeDef]
|
|
9241
9248
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9242
9249
|
NextToken: NotRequired[str]
|
|
9243
9250
|
|
|
9244
9251
|
|
|
9245
9252
|
class ListModelsOutputTypeDef(TypedDict):
|
|
9246
|
-
Models:
|
|
9253
|
+
Models: List[ModelSummaryTypeDef]
|
|
9247
9254
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9248
9255
|
NextToken: NotRequired[str]
|
|
9249
9256
|
|
|
9250
9257
|
|
|
9251
9258
|
class ListMonitoringAlertHistoryResponseTypeDef(TypedDict):
|
|
9252
|
-
MonitoringAlertHistory:
|
|
9259
|
+
MonitoringAlertHistory: List[MonitoringAlertHistorySummaryTypeDef]
|
|
9253
9260
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9254
9261
|
NextToken: NotRequired[str]
|
|
9255
9262
|
|
|
9256
9263
|
|
|
9257
9264
|
class ListMonitoringSchedulesResponseTypeDef(TypedDict):
|
|
9258
|
-
MonitoringScheduleSummaries:
|
|
9265
|
+
MonitoringScheduleSummaries: List[MonitoringScheduleSummaryTypeDef]
|
|
9259
9266
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9260
9267
|
NextToken: NotRequired[str]
|
|
9261
9268
|
|
|
9262
9269
|
|
|
9263
9270
|
class ListNotebookInstanceLifecycleConfigsOutputTypeDef(TypedDict):
|
|
9264
|
-
NotebookInstanceLifecycleConfigs:
|
|
9271
|
+
NotebookInstanceLifecycleConfigs: List[NotebookInstanceLifecycleConfigSummaryTypeDef]
|
|
9265
9272
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9266
9273
|
NextToken: NotRequired[str]
|
|
9267
9274
|
|
|
9268
9275
|
|
|
9269
9276
|
class ListNotebookInstancesOutputTypeDef(TypedDict):
|
|
9270
|
-
NotebookInstances:
|
|
9277
|
+
NotebookInstances: List[NotebookInstanceSummaryTypeDef]
|
|
9271
9278
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9272
9279
|
NextToken: NotRequired[str]
|
|
9273
9280
|
|
|
9274
9281
|
|
|
9275
9282
|
class ListOptimizationJobsResponseTypeDef(TypedDict):
|
|
9276
|
-
OptimizationJobSummaries:
|
|
9283
|
+
OptimizationJobSummaries: List[OptimizationJobSummaryTypeDef]
|
|
9277
9284
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9278
9285
|
NextToken: NotRequired[str]
|
|
9279
9286
|
|
|
9280
9287
|
|
|
9281
9288
|
class ListPartnerAppsResponseTypeDef(TypedDict):
|
|
9282
|
-
Summaries:
|
|
9289
|
+
Summaries: List[PartnerAppSummaryTypeDef]
|
|
9283
9290
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9284
9291
|
NextToken: NotRequired[str]
|
|
9285
9292
|
|
|
9286
9293
|
|
|
9287
9294
|
class ListPipelineExecutionsResponseTypeDef(TypedDict):
|
|
9288
|
-
PipelineExecutionSummaries:
|
|
9295
|
+
PipelineExecutionSummaries: List[PipelineExecutionSummaryTypeDef]
|
|
9289
9296
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9290
9297
|
NextToken: NotRequired[str]
|
|
9291
9298
|
|
|
9292
9299
|
|
|
9293
9300
|
class ListPipelineParametersForExecutionResponseTypeDef(TypedDict):
|
|
9294
|
-
PipelineParameters:
|
|
9301
|
+
PipelineParameters: List[ParameterTypeDef]
|
|
9295
9302
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9296
9303
|
NextToken: NotRequired[str]
|
|
9297
9304
|
|
|
9298
9305
|
|
|
9299
9306
|
class ListPipelinesResponseTypeDef(TypedDict):
|
|
9300
|
-
PipelineSummaries:
|
|
9307
|
+
PipelineSummaries: List[PipelineSummaryTypeDef]
|
|
9301
9308
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9302
9309
|
NextToken: NotRequired[str]
|
|
9303
9310
|
|
|
9304
9311
|
|
|
9305
9312
|
class ListProcessingJobsResponseTypeDef(TypedDict):
|
|
9306
|
-
ProcessingJobSummaries:
|
|
9313
|
+
ProcessingJobSummaries: List[ProcessingJobSummaryTypeDef]
|
|
9307
9314
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9308
9315
|
NextToken: NotRequired[str]
|
|
9309
9316
|
|
|
9310
9317
|
|
|
9311
9318
|
class ListProjectsOutputTypeDef(TypedDict):
|
|
9312
|
-
ProjectSummaryList:
|
|
9319
|
+
ProjectSummaryList: List[ProjectSummaryTypeDef]
|
|
9313
9320
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9314
9321
|
NextToken: NotRequired[str]
|
|
9315
9322
|
|
|
9316
9323
|
|
|
9317
9324
|
class ListResourceCatalogsResponseTypeDef(TypedDict):
|
|
9318
|
-
ResourceCatalogs:
|
|
9325
|
+
ResourceCatalogs: List[ResourceCatalogTypeDef]
|
|
9319
9326
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9320
9327
|
NextToken: NotRequired[str]
|
|
9321
9328
|
|
|
9322
9329
|
|
|
9323
9330
|
class ListStudioLifecycleConfigsResponseTypeDef(TypedDict):
|
|
9324
|
-
StudioLifecycleConfigs:
|
|
9331
|
+
StudioLifecycleConfigs: List[StudioLifecycleConfigDetailsTypeDef]
|
|
9325
9332
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9326
9333
|
NextToken: NotRequired[str]
|
|
9327
9334
|
|
|
@@ -9346,13 +9353,13 @@ class ListTrainingPlansRequestRequestTypeDef(TypedDict):
|
|
|
9346
9353
|
|
|
9347
9354
|
|
|
9348
9355
|
class ListTransformJobsResponseTypeDef(TypedDict):
|
|
9349
|
-
TransformJobSummaries:
|
|
9356
|
+
TransformJobSummaries: List[TransformJobSummaryTypeDef]
|
|
9350
9357
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9351
9358
|
NextToken: NotRequired[str]
|
|
9352
9359
|
|
|
9353
9360
|
|
|
9354
9361
|
class ListUserProfilesResponseTypeDef(TypedDict):
|
|
9355
|
-
UserProfiles:
|
|
9362
|
+
UserProfiles: List[UserProfileDetailsTypeDef]
|
|
9356
9363
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9357
9364
|
NextToken: NotRequired[str]
|
|
9358
9365
|
|
|
@@ -9374,12 +9381,14 @@ class S3ModelDataSourceTypeDef(TypedDict):
|
|
|
9374
9381
|
ModelAccessConfig: NotRequired[ModelAccessConfigTypeDef]
|
|
9375
9382
|
HubAccessConfig: NotRequired[InferenceHubAccessConfigTypeDef]
|
|
9376
9383
|
ManifestS3Uri: NotRequired[str]
|
|
9384
|
+
ETag: NotRequired[str]
|
|
9385
|
+
ManifestEtag: NotRequired[str]
|
|
9377
9386
|
|
|
9378
9387
|
|
|
9379
9388
|
class TextGenerationJobConfigOutputTypeDef(TypedDict):
|
|
9380
9389
|
CompletionCriteria: NotRequired[AutoMLJobCompletionCriteriaTypeDef]
|
|
9381
9390
|
BaseModelName: NotRequired[str]
|
|
9382
|
-
TextGenerationHyperParameters: NotRequired[
|
|
9391
|
+
TextGenerationHyperParameters: NotRequired[Dict[str, str]]
|
|
9383
9392
|
ModelAccessConfig: NotRequired[ModelAccessConfigTypeDef]
|
|
9384
9393
|
|
|
9385
9394
|
|
|
@@ -9406,7 +9415,7 @@ class ModelInfrastructureConfigTypeDef(TypedDict):
|
|
|
9406
9415
|
|
|
9407
9416
|
class RecommendationJobStoppingConditionsOutputTypeDef(TypedDict):
|
|
9408
9417
|
MaxInvocations: NotRequired[int]
|
|
9409
|
-
ModelLatencyThresholds: NotRequired[
|
|
9418
|
+
ModelLatencyThresholds: NotRequired[List[ModelLatencyThresholdTypeDef]]
|
|
9410
9419
|
FlatInvocations: NotRequired[FlatInvocationsType]
|
|
9411
9420
|
|
|
9412
9421
|
|
|
@@ -9421,8 +9430,8 @@ class ModelMetadataSearchExpressionTypeDef(TypedDict):
|
|
|
9421
9430
|
|
|
9422
9431
|
|
|
9423
9432
|
class ModelPackageStatusDetailsTypeDef(TypedDict):
|
|
9424
|
-
ValidationStatuses:
|
|
9425
|
-
ImageScanStatuses: NotRequired[
|
|
9433
|
+
ValidationStatuses: List[ModelPackageStatusItemTypeDef]
|
|
9434
|
+
ImageScanStatuses: NotRequired[List[ModelPackageStatusItemTypeDef]]
|
|
9426
9435
|
|
|
9427
9436
|
|
|
9428
9437
|
ModelQuantizationConfigUnionTypeDef = Union[
|
|
@@ -9451,7 +9460,7 @@ class MonitoringResourcesTypeDef(TypedDict):
|
|
|
9451
9460
|
class MonitoringDatasetFormatOutputTypeDef(TypedDict):
|
|
9452
9461
|
Csv: NotRequired[MonitoringCsvDatasetFormatTypeDef]
|
|
9453
9462
|
Json: NotRequired[MonitoringJsonDatasetFormatTypeDef]
|
|
9454
|
-
Parquet: NotRequired[
|
|
9463
|
+
Parquet: NotRequired[Dict[str, Any]]
|
|
9455
9464
|
|
|
9456
9465
|
|
|
9457
9466
|
class MonitoringDatasetFormatTypeDef(TypedDict):
|
|
@@ -9502,14 +9511,14 @@ class OutputConfigTypeDef(TypedDict):
|
|
|
9502
9511
|
|
|
9503
9512
|
class PendingProductionVariantSummaryTypeDef(TypedDict):
|
|
9504
9513
|
VariantName: str
|
|
9505
|
-
DeployedImages: NotRequired[
|
|
9514
|
+
DeployedImages: NotRequired[List[DeployedImageTypeDef]]
|
|
9506
9515
|
CurrentWeight: NotRequired[float]
|
|
9507
9516
|
DesiredWeight: NotRequired[float]
|
|
9508
9517
|
CurrentInstanceCount: NotRequired[int]
|
|
9509
9518
|
DesiredInstanceCount: NotRequired[int]
|
|
9510
9519
|
InstanceType: NotRequired[ProductionVariantInstanceTypeType]
|
|
9511
9520
|
AcceleratorType: NotRequired[ProductionVariantAcceleratorTypeType]
|
|
9512
|
-
VariantStatus: NotRequired[
|
|
9521
|
+
VariantStatus: NotRequired[List[ProductionVariantStatusTypeDef]]
|
|
9513
9522
|
CurrentServerlessConfig: NotRequired[ProductionVariantServerlessConfigTypeDef]
|
|
9514
9523
|
DesiredServerlessConfig: NotRequired[ProductionVariantServerlessConfigTypeDef]
|
|
9515
9524
|
ManagedInstanceScaling: NotRequired[ProductionVariantManagedInstanceScalingTypeDef]
|
|
@@ -9518,12 +9527,12 @@ class PendingProductionVariantSummaryTypeDef(TypedDict):
|
|
|
9518
9527
|
|
|
9519
9528
|
class ProductionVariantSummaryTypeDef(TypedDict):
|
|
9520
9529
|
VariantName: str
|
|
9521
|
-
DeployedImages: NotRequired[
|
|
9530
|
+
DeployedImages: NotRequired[List[DeployedImageTypeDef]]
|
|
9522
9531
|
CurrentWeight: NotRequired[float]
|
|
9523
9532
|
DesiredWeight: NotRequired[float]
|
|
9524
9533
|
CurrentInstanceCount: NotRequired[int]
|
|
9525
9534
|
DesiredInstanceCount: NotRequired[int]
|
|
9526
|
-
VariantStatus: NotRequired[
|
|
9535
|
+
VariantStatus: NotRequired[List[ProductionVariantStatusTypeDef]]
|
|
9527
9536
|
CurrentServerlessConfig: NotRequired[ProductionVariantServerlessConfigTypeDef]
|
|
9528
9537
|
DesiredServerlessConfig: NotRequired[ProductionVariantServerlessConfigTypeDef]
|
|
9529
9538
|
ManagedInstanceScaling: NotRequired[ProductionVariantManagedInstanceScalingTypeDef]
|
|
@@ -9531,7 +9540,7 @@ class ProductionVariantSummaryTypeDef(TypedDict):
|
|
|
9531
9540
|
|
|
9532
9541
|
|
|
9533
9542
|
class SchedulerConfigOutputTypeDef(TypedDict):
|
|
9534
|
-
PriorityClasses: NotRequired[
|
|
9543
|
+
PriorityClasses: NotRequired[List[PriorityClassTypeDef]]
|
|
9535
9544
|
FairShare: NotRequired[FairShareType]
|
|
9536
9545
|
|
|
9537
9546
|
|
|
@@ -9582,7 +9591,7 @@ class ServiceCatalogProvisioningDetailsOutputTypeDef(TypedDict):
|
|
|
9582
9591
|
ProductId: str
|
|
9583
9592
|
ProvisioningArtifactId: NotRequired[str]
|
|
9584
9593
|
PathId: NotRequired[str]
|
|
9585
|
-
ProvisioningParameters: NotRequired[
|
|
9594
|
+
ProvisioningParameters: NotRequired[List[ProvisioningParameterTypeDef]]
|
|
9586
9595
|
|
|
9587
9596
|
|
|
9588
9597
|
class ServiceCatalogProvisioningDetailsTypeDef(TypedDict):
|
|
@@ -9602,8 +9611,8 @@ class PublicWorkforceTaskPriceTypeDef(TypedDict):
|
|
|
9602
9611
|
|
|
9603
9612
|
|
|
9604
9613
|
class QueryLineageResponseTypeDef(TypedDict):
|
|
9605
|
-
Vertices:
|
|
9606
|
-
Edges:
|
|
9614
|
+
Vertices: List[VertexTypeDef]
|
|
9615
|
+
Edges: List[EdgeTypeDef]
|
|
9607
9616
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9608
9617
|
NextToken: NotRequired[str]
|
|
9609
9618
|
|
|
@@ -9620,10 +9629,10 @@ class RecommendationJobContainerConfigOutputTypeDef(TypedDict):
|
|
|
9620
9629
|
FrameworkVersion: NotRequired[str]
|
|
9621
9630
|
PayloadConfig: NotRequired[RecommendationJobPayloadConfigOutputTypeDef]
|
|
9622
9631
|
NearestModelName: NotRequired[str]
|
|
9623
|
-
SupportedInstanceTypes: NotRequired[
|
|
9632
|
+
SupportedInstanceTypes: NotRequired[List[str]]
|
|
9624
9633
|
SupportedEndpointType: NotRequired[RecommendationJobSupportedEndpointTypeType]
|
|
9625
9634
|
DataInputConfig: NotRequired[str]
|
|
9626
|
-
SupportedResponseMIMETypes: NotRequired[
|
|
9635
|
+
SupportedResponseMIMETypes: NotRequired[List[str]]
|
|
9627
9636
|
|
|
9628
9637
|
|
|
9629
9638
|
RecommendationJobPayloadConfigUnionTypeDef = Union[
|
|
@@ -9643,20 +9652,20 @@ class RenderUiTemplateRequestRequestTypeDef(TypedDict):
|
|
|
9643
9652
|
|
|
9644
9653
|
class RenderUiTemplateResponseTypeDef(TypedDict):
|
|
9645
9654
|
RenderedContent: str
|
|
9646
|
-
Errors:
|
|
9655
|
+
Errors: List[RenderingErrorTypeDef]
|
|
9647
9656
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9648
9657
|
|
|
9649
9658
|
|
|
9650
9659
|
class TrainingPlanOfferingTypeDef(TypedDict):
|
|
9651
9660
|
TrainingPlanOfferingId: str
|
|
9652
|
-
TargetResources:
|
|
9661
|
+
TargetResources: List[SageMakerResourceNameType]
|
|
9653
9662
|
RequestedStartTimeAfter: NotRequired[datetime]
|
|
9654
9663
|
RequestedEndTimeBefore: NotRequired[datetime]
|
|
9655
9664
|
DurationHours: NotRequired[int]
|
|
9656
9665
|
DurationMinutes: NotRequired[int]
|
|
9657
9666
|
UpfrontFee: NotRequired[str]
|
|
9658
9667
|
CurrencyCode: NotRequired[str]
|
|
9659
|
-
ReservedCapacityOfferings: NotRequired[
|
|
9668
|
+
ReservedCapacityOfferings: NotRequired[List[ReservedCapacityOfferingTypeDef]]
|
|
9660
9669
|
|
|
9661
9670
|
|
|
9662
9671
|
class UpdateTrainingJobRequestRequestTypeDef(TypedDict):
|
|
@@ -9671,7 +9680,7 @@ S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
|
9671
9680
|
|
|
9672
9681
|
|
|
9673
9682
|
class SelectiveExecutionConfigOutputTypeDef(TypedDict):
|
|
9674
|
-
SelectedSteps:
|
|
9683
|
+
SelectedSteps: List[SelectedStepTypeDef]
|
|
9675
9684
|
SourcePipelineExecutionArn: NotRequired[str]
|
|
9676
9685
|
|
|
9677
9686
|
|
|
@@ -9682,7 +9691,7 @@ class SelectiveExecutionConfigTypeDef(TypedDict):
|
|
|
9682
9691
|
|
|
9683
9692
|
class ShadowModeConfigOutputTypeDef(TypedDict):
|
|
9684
9693
|
SourceModelVariantName: str
|
|
9685
|
-
ShadowModelVariants:
|
|
9694
|
+
ShadowModelVariants: List[ShadowModelVariantConfigTypeDef]
|
|
9686
9695
|
|
|
9687
9696
|
|
|
9688
9697
|
class ShadowModeConfigTypeDef(TypedDict):
|
|
@@ -9696,7 +9705,7 @@ class SpaceAppLifecycleManagementTypeDef(TypedDict):
|
|
|
9696
9705
|
|
|
9697
9706
|
class TrafficPatternOutputTypeDef(TypedDict):
|
|
9698
9707
|
TrafficType: NotRequired[TrafficTypeType]
|
|
9699
|
-
Phases: NotRequired[
|
|
9708
|
+
Phases: NotRequired[List[PhaseTypeDef]]
|
|
9700
9709
|
Stairs: NotRequired[StairsTypeDef]
|
|
9701
9710
|
|
|
9702
9711
|
|
|
@@ -9736,7 +9745,7 @@ class WorkforceTypeDef(TypedDict):
|
|
|
9736
9745
|
|
|
9737
9746
|
|
|
9738
9747
|
class ListActionsResponseTypeDef(TypedDict):
|
|
9739
|
-
ActionSummaries:
|
|
9748
|
+
ActionSummaries: List[ActionSummaryTypeDef]
|
|
9740
9749
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9741
9750
|
NextToken: NotRequired[str]
|
|
9742
9751
|
|
|
@@ -9748,13 +9757,13 @@ HyperParameterAlgorithmSpecificationUnionTypeDef = Union[
|
|
|
9748
9757
|
|
|
9749
9758
|
|
|
9750
9759
|
class ListAppsResponseTypeDef(TypedDict):
|
|
9751
|
-
Apps:
|
|
9760
|
+
Apps: List[AppDetailsTypeDef]
|
|
9752
9761
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9753
9762
|
NextToken: NotRequired[str]
|
|
9754
9763
|
|
|
9755
9764
|
|
|
9756
9765
|
class DomainSettingsOutputTypeDef(TypedDict):
|
|
9757
|
-
SecurityGroupIds: NotRequired[
|
|
9766
|
+
SecurityGroupIds: NotRequired[List[str]]
|
|
9758
9767
|
RStudioServerProDomainSettings: NotRequired[RStudioServerProDomainSettingsTypeDef]
|
|
9759
9768
|
ExecutionRoleIdentityConfig: NotRequired[ExecutionRoleIdentityConfigType]
|
|
9760
9769
|
DockerSettings: NotRequired[DockerSettingsOutputTypeDef]
|
|
@@ -9763,8 +9772,8 @@ class DomainSettingsOutputTypeDef(TypedDict):
|
|
|
9763
9772
|
|
|
9764
9773
|
class CodeEditorAppSettingsOutputTypeDef(TypedDict):
|
|
9765
9774
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
9766
|
-
CustomImages: NotRequired[
|
|
9767
|
-
LifecycleConfigArns: NotRequired[
|
|
9775
|
+
CustomImages: NotRequired[List[CustomImageTypeDef]]
|
|
9776
|
+
LifecycleConfigArns: NotRequired[List[str]]
|
|
9768
9777
|
AppLifecycleManagement: NotRequired[AppLifecycleManagementTypeDef]
|
|
9769
9778
|
BuiltInLifecycleConfigArn: NotRequired[str]
|
|
9770
9779
|
|
|
@@ -9779,9 +9788,9 @@ class CodeEditorAppSettingsTypeDef(TypedDict):
|
|
|
9779
9788
|
|
|
9780
9789
|
class JupyterLabAppSettingsOutputTypeDef(TypedDict):
|
|
9781
9790
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
9782
|
-
CustomImages: NotRequired[
|
|
9783
|
-
LifecycleConfigArns: NotRequired[
|
|
9784
|
-
CodeRepositories: NotRequired[
|
|
9791
|
+
CustomImages: NotRequired[List[CustomImageTypeDef]]
|
|
9792
|
+
LifecycleConfigArns: NotRequired[List[str]]
|
|
9793
|
+
CodeRepositories: NotRequired[List[CodeRepositoryTypeDef]]
|
|
9785
9794
|
AppLifecycleManagement: NotRequired[AppLifecycleManagementTypeDef]
|
|
9786
9795
|
EmrSettings: NotRequired[EmrSettingsOutputTypeDef]
|
|
9787
9796
|
BuiltInLifecycleConfigArn: NotRequired[str]
|
|
@@ -9839,9 +9848,9 @@ class TimeSeriesForecastingJobConfigOutputTypeDef(TypedDict):
|
|
|
9839
9848
|
TimeSeriesConfig: TimeSeriesConfigOutputTypeDef
|
|
9840
9849
|
FeatureSpecificationS3Uri: NotRequired[str]
|
|
9841
9850
|
CompletionCriteria: NotRequired[AutoMLJobCompletionCriteriaTypeDef]
|
|
9842
|
-
ForecastQuantiles: NotRequired[
|
|
9851
|
+
ForecastQuantiles: NotRequired[List[str]]
|
|
9843
9852
|
Transformations: NotRequired[TimeSeriesTransformationsOutputTypeDef]
|
|
9844
|
-
HolidayConfig: NotRequired[
|
|
9853
|
+
HolidayConfig: NotRequired[List[HolidayConfigAttributesTypeDef]]
|
|
9845
9854
|
CandidateGenerationConfig: NotRequired[CandidateGenerationConfigOutputTypeDef]
|
|
9846
9855
|
|
|
9847
9856
|
|
|
@@ -9871,7 +9880,7 @@ class AutoMLJobChannelTypeDef(TypedDict):
|
|
|
9871
9880
|
|
|
9872
9881
|
|
|
9873
9882
|
class ListAutoMLJobsResponseTypeDef(TypedDict):
|
|
9874
|
-
AutoMLJobSummaries:
|
|
9883
|
+
AutoMLJobSummaries: List[AutoMLJobSummaryTypeDef]
|
|
9875
9884
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9876
9885
|
NextToken: NotRequired[str]
|
|
9877
9886
|
|
|
@@ -9925,17 +9934,17 @@ class PipelineExecutionStepMetadataTypeDef(TypedDict):
|
|
|
9925
9934
|
class AutoMLCandidateTypeDef(TypedDict):
|
|
9926
9935
|
CandidateName: str
|
|
9927
9936
|
ObjectiveStatus: ObjectiveStatusType
|
|
9928
|
-
CandidateSteps:
|
|
9937
|
+
CandidateSteps: List[AutoMLCandidateStepTypeDef]
|
|
9929
9938
|
CandidateStatus: CandidateStatusType
|
|
9930
9939
|
CreationTime: datetime
|
|
9931
9940
|
LastModifiedTime: datetime
|
|
9932
9941
|
FinalAutoMLJobObjectiveMetric: NotRequired[FinalAutoMLJobObjectiveMetricTypeDef]
|
|
9933
|
-
InferenceContainers: NotRequired[
|
|
9942
|
+
InferenceContainers: NotRequired[List[AutoMLContainerDefinitionTypeDef]]
|
|
9934
9943
|
EndTime: NotRequired[datetime]
|
|
9935
9944
|
FailureReason: NotRequired[str]
|
|
9936
9945
|
CandidateProperties: NotRequired[CandidatePropertiesTypeDef]
|
|
9937
9946
|
InferenceContainerDefinitions: NotRequired[
|
|
9938
|
-
|
|
9947
|
+
Dict[AutoMLProcessingUnitType, List[AutoMLContainerDefinitionTypeDef]]
|
|
9939
9948
|
]
|
|
9940
9949
|
|
|
9941
9950
|
|
|
@@ -10009,8 +10018,8 @@ class ClusterInstanceGroupDetailsTypeDef(TypedDict):
|
|
|
10009
10018
|
LifeCycleConfig: NotRequired[ClusterLifeCycleConfigTypeDef]
|
|
10010
10019
|
ExecutionRole: NotRequired[str]
|
|
10011
10020
|
ThreadsPerCore: NotRequired[int]
|
|
10012
|
-
InstanceStorageConfigs: NotRequired[
|
|
10013
|
-
OnStartDeepHealthChecks: NotRequired[
|
|
10021
|
+
InstanceStorageConfigs: NotRequired[List[ClusterInstanceStorageConfigTypeDef]]
|
|
10022
|
+
OnStartDeepHealthChecks: NotRequired[List[DeepHealthCheckTypeType]]
|
|
10014
10023
|
Status: NotRequired[InstanceGroupStatusType]
|
|
10015
10024
|
TrainingPlanArn: NotRequired[str]
|
|
10016
10025
|
TrainingPlanStatus: NotRequired[str]
|
|
@@ -10026,7 +10035,7 @@ class ClusterNodeDetailsTypeDef(TypedDict):
|
|
|
10026
10035
|
LifeCycleConfig: NotRequired[ClusterLifeCycleConfigTypeDef]
|
|
10027
10036
|
OverrideVpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
10028
10037
|
ThreadsPerCore: NotRequired[int]
|
|
10029
|
-
InstanceStorageConfigs: NotRequired[
|
|
10038
|
+
InstanceStorageConfigs: NotRequired[List[ClusterInstanceStorageConfigTypeDef]]
|
|
10030
10039
|
PrivatePrimaryIp: NotRequired[str]
|
|
10031
10040
|
PrivateDnsHostname: NotRequired[str]
|
|
10032
10041
|
Placement: NotRequired[ClusterInstancePlacementTypeDef]
|
|
@@ -10034,7 +10043,7 @@ class ClusterNodeDetailsTypeDef(TypedDict):
|
|
|
10034
10043
|
|
|
10035
10044
|
class ListClusterNodesResponseTypeDef(TypedDict):
|
|
10036
10045
|
NextToken: str
|
|
10037
|
-
ClusterNodeSummaries:
|
|
10046
|
+
ClusterNodeSummaries: List[ClusterNodeSummaryTypeDef]
|
|
10038
10047
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10039
10048
|
|
|
10040
10049
|
|
|
@@ -10047,7 +10056,7 @@ RSessionAppSettingsUnionTypeDef = Union[
|
|
|
10047
10056
|
|
|
10048
10057
|
|
|
10049
10058
|
class ListCodeRepositoriesOutputTypeDef(TypedDict):
|
|
10050
|
-
CodeRepositorySummaryList:
|
|
10059
|
+
CodeRepositorySummaryList: List[CodeRepositorySummaryTypeDef]
|
|
10051
10060
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10052
10061
|
NextToken: NotRequired[str]
|
|
10053
10062
|
|
|
@@ -10115,7 +10124,7 @@ class JupyterLabAppImageConfigTypeDef(TypedDict):
|
|
|
10115
10124
|
|
|
10116
10125
|
|
|
10117
10126
|
class ListContextsResponseTypeDef(TypedDict):
|
|
10118
|
-
ContextSummaries:
|
|
10127
|
+
ContextSummaries: List[ContextSummaryTypeDef]
|
|
10119
10128
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10120
10129
|
NextToken: NotRequired[str]
|
|
10121
10130
|
|
|
@@ -10204,12 +10213,12 @@ InferenceComponentSpecificationSummaryTypeDef = TypedDict(
|
|
|
10204
10213
|
class DescribeEdgeDeploymentPlanResponseTypeDef(TypedDict):
|
|
10205
10214
|
EdgeDeploymentPlanArn: str
|
|
10206
10215
|
EdgeDeploymentPlanName: str
|
|
10207
|
-
ModelConfigs:
|
|
10216
|
+
ModelConfigs: List[EdgeDeploymentModelConfigTypeDef]
|
|
10208
10217
|
DeviceFleetName: str
|
|
10209
10218
|
EdgeDeploymentSuccess: int
|
|
10210
10219
|
EdgeDeploymentPending: int
|
|
10211
10220
|
EdgeDeploymentFailed: int
|
|
10212
|
-
Stages:
|
|
10221
|
+
Stages: List[DeploymentStageStatusSummaryTypeDef]
|
|
10213
10222
|
CreationTime: datetime
|
|
10214
10223
|
LastModifiedTime: datetime
|
|
10215
10224
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -10217,37 +10226,37 @@ class DescribeEdgeDeploymentPlanResponseTypeDef(TypedDict):
|
|
|
10217
10226
|
|
|
10218
10227
|
|
|
10219
10228
|
class ListExperimentsResponseTypeDef(TypedDict):
|
|
10220
|
-
ExperimentSummaries:
|
|
10229
|
+
ExperimentSummaries: List[ExperimentSummaryTypeDef]
|
|
10221
10230
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10222
10231
|
NextToken: NotRequired[str]
|
|
10223
10232
|
|
|
10224
10233
|
|
|
10225
10234
|
class ListFeatureGroupsResponseTypeDef(TypedDict):
|
|
10226
|
-
FeatureGroupSummaries:
|
|
10235
|
+
FeatureGroupSummaries: List[FeatureGroupSummaryTypeDef]
|
|
10227
10236
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10228
10237
|
NextToken: NotRequired[str]
|
|
10229
10238
|
|
|
10230
10239
|
|
|
10231
10240
|
class ListInferenceExperimentsResponseTypeDef(TypedDict):
|
|
10232
|
-
InferenceExperiments:
|
|
10241
|
+
InferenceExperiments: List[InferenceExperimentSummaryTypeDef]
|
|
10233
10242
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10234
10243
|
NextToken: NotRequired[str]
|
|
10235
10244
|
|
|
10236
10245
|
|
|
10237
10246
|
class ListTrainingJobsResponseTypeDef(TypedDict):
|
|
10238
|
-
TrainingJobSummaries:
|
|
10247
|
+
TrainingJobSummaries: List[TrainingJobSummaryTypeDef]
|
|
10239
10248
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10240
10249
|
NextToken: NotRequired[str]
|
|
10241
10250
|
|
|
10242
10251
|
|
|
10243
10252
|
class ListTrainingPlansResponseTypeDef(TypedDict):
|
|
10244
|
-
TrainingPlanSummaries:
|
|
10253
|
+
TrainingPlanSummaries: List[TrainingPlanSummaryTypeDef]
|
|
10245
10254
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10246
10255
|
NextToken: NotRequired[str]
|
|
10247
10256
|
|
|
10248
10257
|
|
|
10249
10258
|
class ListTrialsResponseTypeDef(TypedDict):
|
|
10250
|
-
TrialSummaries:
|
|
10259
|
+
TrialSummaries: List[TrialSummaryTypeDef]
|
|
10251
10260
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10252
10261
|
NextToken: NotRequired[str]
|
|
10253
10262
|
|
|
@@ -10264,7 +10273,7 @@ class DeploymentStageTypeDef(TypedDict):
|
|
|
10264
10273
|
|
|
10265
10274
|
|
|
10266
10275
|
class ListDevicesResponseTypeDef(TypedDict):
|
|
10267
|
-
DeviceSummaries:
|
|
10276
|
+
DeviceSummaries: List[DeviceSummaryTypeDef]
|
|
10268
10277
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10269
10278
|
NextToken: NotRequired[str]
|
|
10270
10279
|
|
|
@@ -10343,7 +10352,7 @@ class SearchExpressionTypeDef(TypedDict):
|
|
|
10343
10352
|
|
|
10344
10353
|
|
|
10345
10354
|
class ListTrainingJobsForHyperParameterTuningJobResponseTypeDef(TypedDict):
|
|
10346
|
-
TrainingJobSummaries:
|
|
10355
|
+
TrainingJobSummaries: List[HyperParameterTrainingJobSummaryTypeDef]
|
|
10347
10356
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10348
10357
|
NextToken: NotRequired[str]
|
|
10349
10358
|
|
|
@@ -10361,7 +10370,7 @@ HyperParameterTuningResourceConfigUnionTypeDef = Union[
|
|
|
10361
10370
|
|
|
10362
10371
|
|
|
10363
10372
|
class ListHyperParameterTuningJobsResponseTypeDef(TypedDict):
|
|
10364
|
-
HyperParameterTuningJobSummaries:
|
|
10373
|
+
HyperParameterTuningJobSummaries: List[HyperParameterTuningJobSummaryTypeDef]
|
|
10365
10374
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10366
10375
|
NextToken: NotRequired[str]
|
|
10367
10376
|
|
|
@@ -10385,7 +10394,7 @@ class DescribeActionResponseTypeDef(TypedDict):
|
|
|
10385
10394
|
ActionType: str
|
|
10386
10395
|
Description: str
|
|
10387
10396
|
Status: ActionStatusType
|
|
10388
|
-
Properties:
|
|
10397
|
+
Properties: Dict[str, str]
|
|
10389
10398
|
CreationTime: datetime
|
|
10390
10399
|
CreatedBy: UserContextTypeDef
|
|
10391
10400
|
LastModifiedTime: datetime
|
|
@@ -10400,7 +10409,7 @@ class DescribeArtifactResponseTypeDef(TypedDict):
|
|
|
10400
10409
|
ArtifactArn: str
|
|
10401
10410
|
Source: ArtifactSourceOutputTypeDef
|
|
10402
10411
|
ArtifactType: str
|
|
10403
|
-
Properties:
|
|
10412
|
+
Properties: Dict[str, str]
|
|
10404
10413
|
CreationTime: datetime
|
|
10405
10414
|
CreatedBy: UserContextTypeDef
|
|
10406
10415
|
LastModifiedTime: datetime
|
|
@@ -10435,7 +10444,7 @@ class DescribeContextResponseTypeDef(TypedDict):
|
|
|
10435
10444
|
Source: ContextSourceTypeDef
|
|
10436
10445
|
ContextType: str
|
|
10437
10446
|
Description: str
|
|
10438
|
-
Properties:
|
|
10447
|
+
Properties: Dict[str, str]
|
|
10439
10448
|
CreationTime: datetime
|
|
10440
10449
|
CreatedBy: UserContextTypeDef
|
|
10441
10450
|
LastModifiedTime: datetime
|
|
@@ -10542,13 +10551,13 @@ class DescribeTrialComponentResponseTypeDef(TypedDict):
|
|
|
10542
10551
|
CreatedBy: UserContextTypeDef
|
|
10543
10552
|
LastModifiedTime: datetime
|
|
10544
10553
|
LastModifiedBy: UserContextTypeDef
|
|
10545
|
-
Parameters:
|
|
10546
|
-
InputArtifacts:
|
|
10547
|
-
OutputArtifacts:
|
|
10554
|
+
Parameters: Dict[str, TrialComponentParameterValueTypeDef]
|
|
10555
|
+
InputArtifacts: Dict[str, TrialComponentArtifactTypeDef]
|
|
10556
|
+
OutputArtifacts: Dict[str, TrialComponentArtifactTypeDef]
|
|
10548
10557
|
MetadataProperties: MetadataPropertiesTypeDef
|
|
10549
|
-
Metrics:
|
|
10558
|
+
Metrics: List[TrialComponentMetricSummaryTypeDef]
|
|
10550
10559
|
LineageGroupArn: str
|
|
10551
|
-
Sources:
|
|
10560
|
+
Sources: List[TrialComponentSourceTypeDef]
|
|
10552
10561
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10553
10562
|
|
|
10554
10563
|
|
|
@@ -10576,7 +10585,7 @@ class ExperimentTypeDef(TypedDict):
|
|
|
10576
10585
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
10577
10586
|
LastModifiedTime: NotRequired[datetime]
|
|
10578
10587
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
10579
|
-
Tags: NotRequired[
|
|
10588
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10580
10589
|
|
|
10581
10590
|
|
|
10582
10591
|
class ModelCardTypeDef(TypedDict):
|
|
@@ -10590,7 +10599,7 @@ class ModelCardTypeDef(TypedDict):
|
|
|
10590
10599
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
10591
10600
|
LastModifiedTime: NotRequired[datetime]
|
|
10592
10601
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
10593
|
-
Tags: NotRequired[
|
|
10602
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10594
10603
|
ModelId: NotRequired[str]
|
|
10595
10604
|
RiskRating: NotRequired[str]
|
|
10596
10605
|
ModelPackageGroupName: NotRequired[str]
|
|
@@ -10606,7 +10615,7 @@ class ModelDashboardModelCardTypeDef(TypedDict):
|
|
|
10606
10615
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
10607
10616
|
LastModifiedTime: NotRequired[datetime]
|
|
10608
10617
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
10609
|
-
Tags: NotRequired[
|
|
10618
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10610
10619
|
ModelId: NotRequired[str]
|
|
10611
10620
|
RiskRating: NotRequired[str]
|
|
10612
10621
|
|
|
@@ -10618,7 +10627,7 @@ class ModelPackageGroupTypeDef(TypedDict):
|
|
|
10618
10627
|
CreationTime: NotRequired[datetime]
|
|
10619
10628
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
10620
10629
|
ModelPackageGroupStatus: NotRequired[ModelPackageGroupStatusType]
|
|
10621
|
-
Tags: NotRequired[
|
|
10630
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10622
10631
|
|
|
10623
10632
|
|
|
10624
10633
|
class PipelineTypeDef(TypedDict):
|
|
@@ -10634,7 +10643,7 @@ class PipelineTypeDef(TypedDict):
|
|
|
10634
10643
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
10635
10644
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
10636
10645
|
ParallelismConfiguration: NotRequired[ParallelismConfigurationTypeDef]
|
|
10637
|
-
Tags: NotRequired[
|
|
10646
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10638
10647
|
|
|
10639
10648
|
|
|
10640
10649
|
class TrialComponentSimpleSummaryTypeDef(TypedDict):
|
|
@@ -10726,7 +10735,7 @@ class DescribeAppImageConfigResponseTypeDef(TypedDict):
|
|
|
10726
10735
|
|
|
10727
10736
|
|
|
10728
10737
|
class ListLabelingJobsForWorkteamResponseTypeDef(TypedDict):
|
|
10729
|
-
LabelingJobSummaryList:
|
|
10738
|
+
LabelingJobSummaryList: List[LabelingJobForWorkteamSummaryTypeDef]
|
|
10730
10739
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10731
10740
|
NextToken: NotRequired[str]
|
|
10732
10741
|
|
|
@@ -10823,7 +10832,7 @@ MonitoringDatasetFormatUnionTypeDef = Union[
|
|
|
10823
10832
|
|
|
10824
10833
|
|
|
10825
10834
|
class MonitoringOutputConfigOutputTypeDef(TypedDict):
|
|
10826
|
-
MonitoringOutputs:
|
|
10835
|
+
MonitoringOutputs: List[MonitoringOutputTypeDef]
|
|
10827
10836
|
KmsKeyId: NotRequired[str]
|
|
10828
10837
|
|
|
10829
10838
|
|
|
@@ -10876,9 +10885,9 @@ class DescribeCompilationJobResponseTypeDef(TypedDict):
|
|
|
10876
10885
|
|
|
10877
10886
|
class PendingDeploymentSummaryTypeDef(TypedDict):
|
|
10878
10887
|
EndpointConfigName: str
|
|
10879
|
-
ProductionVariants: NotRequired[
|
|
10888
|
+
ProductionVariants: NotRequired[List[PendingProductionVariantSummaryTypeDef]]
|
|
10880
10889
|
StartTime: NotRequired[datetime]
|
|
10881
|
-
ShadowProductionVariants: NotRequired[
|
|
10890
|
+
ShadowProductionVariants: NotRequired[List[PendingProductionVariantSummaryTypeDef]]
|
|
10882
10891
|
|
|
10883
10892
|
|
|
10884
10893
|
class DescribeClusterSchedulerConfigResponseTypeDef(TypedDict):
|
|
@@ -10914,7 +10923,7 @@ class UpdateClusterSchedulerConfigRequestRequestTypeDef(TypedDict):
|
|
|
10914
10923
|
|
|
10915
10924
|
|
|
10916
10925
|
class ProcessingOutputConfigOutputTypeDef(TypedDict):
|
|
10917
|
-
Outputs:
|
|
10926
|
+
Outputs: List[ProcessingOutputTypeDef]
|
|
10918
10927
|
KmsKeyId: NotRequired[str]
|
|
10919
10928
|
|
|
10920
10929
|
|
|
@@ -10955,7 +10964,7 @@ class ProjectTypeDef(TypedDict):
|
|
|
10955
10964
|
ProjectStatus: NotRequired[ProjectStatusType]
|
|
10956
10965
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
10957
10966
|
CreationTime: NotRequired[datetime]
|
|
10958
|
-
Tags: NotRequired[
|
|
10967
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10959
10968
|
LastModifiedTime: NotRequired[datetime]
|
|
10960
10969
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
10961
10970
|
|
|
@@ -10984,7 +10993,7 @@ class HumanLoopConfigOutputTypeDef(TypedDict):
|
|
|
10984
10993
|
TaskCount: int
|
|
10985
10994
|
TaskAvailabilityLifetimeInSeconds: NotRequired[int]
|
|
10986
10995
|
TaskTimeLimitInSeconds: NotRequired[int]
|
|
10987
|
-
TaskKeywords: NotRequired[
|
|
10996
|
+
TaskKeywords: NotRequired[List[str]]
|
|
10988
10997
|
PublicWorkforceTaskPrice: NotRequired[PublicWorkforceTaskPriceTypeDef]
|
|
10989
10998
|
|
|
10990
10999
|
|
|
@@ -11008,7 +11017,7 @@ class HumanTaskConfigOutputTypeDef(TypedDict):
|
|
|
11008
11017
|
NumberOfHumanWorkersPerDataObject: int
|
|
11009
11018
|
TaskTimeLimitInSeconds: int
|
|
11010
11019
|
PreHumanTaskLambdaArn: NotRequired[str]
|
|
11011
|
-
TaskKeywords: NotRequired[
|
|
11020
|
+
TaskKeywords: NotRequired[List[str]]
|
|
11012
11021
|
TaskAvailabilityLifetimeInSeconds: NotRequired[int]
|
|
11013
11022
|
MaxConcurrentTaskCount: NotRequired[int]
|
|
11014
11023
|
AnnotationConsolidationConfig: NotRequired[AnnotationConsolidationConfigTypeDef]
|
|
@@ -11044,7 +11053,7 @@ class RecommendationJobContainerConfigTypeDef(TypedDict):
|
|
|
11044
11053
|
|
|
11045
11054
|
|
|
11046
11055
|
class SearchTrainingPlanOfferingsResponseTypeDef(TypedDict):
|
|
11047
|
-
TrainingPlanOfferings:
|
|
11056
|
+
TrainingPlanOfferings: List[TrainingPlanOfferingTypeDef]
|
|
11048
11057
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11049
11058
|
|
|
11050
11059
|
|
|
@@ -11084,7 +11093,7 @@ class PipelineExecutionTypeDef(TypedDict):
|
|
|
11084
11093
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
11085
11094
|
ParallelismConfiguration: NotRequired[ParallelismConfigurationTypeDef]
|
|
11086
11095
|
SelectiveExecutionConfig: NotRequired[SelectiveExecutionConfigOutputTypeDef]
|
|
11087
|
-
PipelineParameters: NotRequired[
|
|
11096
|
+
PipelineParameters: NotRequired[List[ParameterTypeDef]]
|
|
11088
11097
|
|
|
11089
11098
|
|
|
11090
11099
|
class StartPipelineExecutionRequestRequestTypeDef(TypedDict):
|
|
@@ -11104,7 +11113,7 @@ class SpaceCodeEditorAppSettingsTypeDef(TypedDict):
|
|
|
11104
11113
|
|
|
11105
11114
|
class SpaceJupyterLabAppSettingsOutputTypeDef(TypedDict):
|
|
11106
11115
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
11107
|
-
CodeRepositories: NotRequired[
|
|
11116
|
+
CodeRepositories: NotRequired[List[CodeRepositoryTypeDef]]
|
|
11108
11117
|
AppLifecycleManagement: NotRequired[SpaceAppLifecycleManagementTypeDef]
|
|
11109
11118
|
|
|
11110
11119
|
|
|
@@ -11121,10 +11130,10 @@ class AlgorithmSpecificationOutputTypeDef(TypedDict):
|
|
|
11121
11130
|
TrainingInputMode: TrainingInputModeType
|
|
11122
11131
|
TrainingImage: NotRequired[str]
|
|
11123
11132
|
AlgorithmName: NotRequired[str]
|
|
11124
|
-
MetricDefinitions: NotRequired[
|
|
11133
|
+
MetricDefinitions: NotRequired[List[MetricDefinitionTypeDef]]
|
|
11125
11134
|
EnableSageMakerMetricsTimeSeries: NotRequired[bool]
|
|
11126
|
-
ContainerEntrypoint: NotRequired[
|
|
11127
|
-
ContainerArguments: NotRequired[
|
|
11135
|
+
ContainerEntrypoint: NotRequired[List[str]]
|
|
11136
|
+
ContainerArguments: NotRequired[List[str]]
|
|
11128
11137
|
TrainingImageConfig: NotRequired[TrainingImageConfigTypeDef]
|
|
11129
11138
|
|
|
11130
11139
|
|
|
@@ -11152,7 +11161,7 @@ class DescribeWorkforceResponseTypeDef(TypedDict):
|
|
|
11152
11161
|
|
|
11153
11162
|
|
|
11154
11163
|
class ListWorkforcesResponseTypeDef(TypedDict):
|
|
11155
|
-
Workforces:
|
|
11164
|
+
Workforces: List[WorkforceTypeDef]
|
|
11156
11165
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11157
11166
|
NextToken: NotRequired[str]
|
|
11158
11167
|
|
|
@@ -11169,18 +11178,18 @@ CodeEditorAppSettingsUnionTypeDef = Union[
|
|
|
11169
11178
|
|
|
11170
11179
|
class DefaultSpaceSettingsOutputTypeDef(TypedDict):
|
|
11171
11180
|
ExecutionRole: NotRequired[str]
|
|
11172
|
-
SecurityGroups: NotRequired[
|
|
11181
|
+
SecurityGroups: NotRequired[List[str]]
|
|
11173
11182
|
JupyterServerAppSettings: NotRequired[JupyterServerAppSettingsOutputTypeDef]
|
|
11174
11183
|
KernelGatewayAppSettings: NotRequired[KernelGatewayAppSettingsOutputTypeDef]
|
|
11175
11184
|
JupyterLabAppSettings: NotRequired[JupyterLabAppSettingsOutputTypeDef]
|
|
11176
11185
|
SpaceStorageSettings: NotRequired[DefaultSpaceStorageSettingsTypeDef]
|
|
11177
11186
|
CustomPosixUserConfig: NotRequired[CustomPosixUserConfigTypeDef]
|
|
11178
|
-
CustomFileSystemConfigs: NotRequired[
|
|
11187
|
+
CustomFileSystemConfigs: NotRequired[List[CustomFileSystemConfigTypeDef]]
|
|
11179
11188
|
|
|
11180
11189
|
|
|
11181
11190
|
class UserSettingsOutputTypeDef(TypedDict):
|
|
11182
11191
|
ExecutionRole: NotRequired[str]
|
|
11183
|
-
SecurityGroups: NotRequired[
|
|
11192
|
+
SecurityGroups: NotRequired[List[str]]
|
|
11184
11193
|
SharingSettings: NotRequired[SharingSettingsTypeDef]
|
|
11185
11194
|
JupyterServerAppSettings: NotRequired[JupyterServerAppSettingsOutputTypeDef]
|
|
11186
11195
|
KernelGatewayAppSettings: NotRequired[KernelGatewayAppSettingsOutputTypeDef]
|
|
@@ -11194,13 +11203,13 @@ class UserSettingsOutputTypeDef(TypedDict):
|
|
|
11194
11203
|
DefaultLandingUri: NotRequired[str]
|
|
11195
11204
|
StudioWebPortal: NotRequired[StudioWebPortalType]
|
|
11196
11205
|
CustomPosixUserConfig: NotRequired[CustomPosixUserConfigTypeDef]
|
|
11197
|
-
CustomFileSystemConfigs: NotRequired[
|
|
11206
|
+
CustomFileSystemConfigs: NotRequired[List[CustomFileSystemConfigTypeDef]]
|
|
11198
11207
|
StudioWebPortalSettings: NotRequired[StudioWebPortalSettingsOutputTypeDef]
|
|
11199
11208
|
AutoMountHomeEFS: NotRequired[AutoMountHomeEFSType]
|
|
11200
11209
|
|
|
11201
11210
|
|
|
11202
11211
|
class ListArtifactsResponseTypeDef(TypedDict):
|
|
11203
|
-
ArtifactSummaries:
|
|
11212
|
+
ArtifactSummaries: List[ArtifactSummaryTypeDef]
|
|
11204
11213
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11205
11214
|
NextToken: NotRequired[str]
|
|
11206
11215
|
|
|
@@ -11243,7 +11252,7 @@ class PipelineExecutionStepTypeDef(TypedDict):
|
|
|
11243
11252
|
class DescribeAutoMLJobResponseTypeDef(TypedDict):
|
|
11244
11253
|
AutoMLJobName: str
|
|
11245
11254
|
AutoMLJobArn: str
|
|
11246
|
-
InputDataConfig:
|
|
11255
|
+
InputDataConfig: List[AutoMLChannelTypeDef]
|
|
11247
11256
|
OutputDataConfig: AutoMLOutputDataConfigTypeDef
|
|
11248
11257
|
RoleArn: str
|
|
11249
11258
|
AutoMLJobObjective: AutoMLJobObjectiveTypeDef
|
|
@@ -11253,7 +11262,7 @@ class DescribeAutoMLJobResponseTypeDef(TypedDict):
|
|
|
11253
11262
|
EndTime: datetime
|
|
11254
11263
|
LastModifiedTime: datetime
|
|
11255
11264
|
FailureReason: str
|
|
11256
|
-
PartialFailureReasons:
|
|
11265
|
+
PartialFailureReasons: List[AutoMLPartialFailureReasonTypeDef]
|
|
11257
11266
|
BestCandidate: AutoMLCandidateTypeDef
|
|
11258
11267
|
AutoMLJobStatus: AutoMLJobStatusType
|
|
11259
11268
|
AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatusType
|
|
@@ -11266,7 +11275,7 @@ class DescribeAutoMLJobResponseTypeDef(TypedDict):
|
|
|
11266
11275
|
|
|
11267
11276
|
|
|
11268
11277
|
class ListCandidatesForAutoMLJobResponseTypeDef(TypedDict):
|
|
11269
|
-
Candidates:
|
|
11278
|
+
Candidates: List[AutoMLCandidateTypeDef]
|
|
11270
11279
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11271
11280
|
NextToken: NotRequired[str]
|
|
11272
11281
|
|
|
@@ -11289,10 +11298,10 @@ class RecommendationJobInputConfigOutputTypeDef(TypedDict):
|
|
|
11289
11298
|
JobDurationInSeconds: NotRequired[int]
|
|
11290
11299
|
TrafficPattern: NotRequired[TrafficPatternOutputTypeDef]
|
|
11291
11300
|
ResourceLimit: NotRequired[RecommendationJobResourceLimitTypeDef]
|
|
11292
|
-
EndpointConfigurations: NotRequired[
|
|
11301
|
+
EndpointConfigurations: NotRequired[List[EndpointInputConfigurationOutputTypeDef]]
|
|
11293
11302
|
VolumeKmsKeyId: NotRequired[str]
|
|
11294
11303
|
ContainerConfig: NotRequired[RecommendationJobContainerConfigOutputTypeDef]
|
|
11295
|
-
Endpoints: NotRequired[
|
|
11304
|
+
Endpoints: NotRequired[List[EndpointInfoTypeDef]]
|
|
11296
11305
|
VpcConfig: NotRequired[RecommendationJobVpcConfigOutputTypeDef]
|
|
11297
11306
|
|
|
11298
11307
|
|
|
@@ -11318,7 +11327,7 @@ class DescribeClusterResponseTypeDef(TypedDict):
|
|
|
11318
11327
|
ClusterStatus: ClusterStatusType
|
|
11319
11328
|
CreationTime: datetime
|
|
11320
11329
|
FailureMessage: str
|
|
11321
|
-
InstanceGroups:
|
|
11330
|
+
InstanceGroups: List[ClusterInstanceGroupDetailsTypeDef]
|
|
11322
11331
|
VpcConfig: VpcConfigOutputTypeDef
|
|
11323
11332
|
Orchestrator: ClusterOrchestratorTypeDef
|
|
11324
11333
|
NodeRecovery: ClusterNodeRecoveryType
|
|
@@ -11348,7 +11357,7 @@ class DescribeFeatureGroupResponseTypeDef(TypedDict):
|
|
|
11348
11357
|
FeatureGroupName: str
|
|
11349
11358
|
RecordIdentifierFeatureName: str
|
|
11350
11359
|
EventTimeFeatureName: str
|
|
11351
|
-
FeatureDefinitions:
|
|
11360
|
+
FeatureDefinitions: List[FeatureDefinitionTypeDef]
|
|
11352
11361
|
CreationTime: datetime
|
|
11353
11362
|
LastModifiedTime: datetime
|
|
11354
11363
|
OnlineStoreConfig: OnlineStoreConfigTypeDef
|
|
@@ -11370,7 +11379,7 @@ class FeatureGroupTypeDef(TypedDict):
|
|
|
11370
11379
|
FeatureGroupName: NotRequired[str]
|
|
11371
11380
|
RecordIdentifierFeatureName: NotRequired[str]
|
|
11372
11381
|
EventTimeFeatureName: NotRequired[str]
|
|
11373
|
-
FeatureDefinitions: NotRequired[
|
|
11382
|
+
FeatureDefinitions: NotRequired[List[FeatureDefinitionTypeDef]]
|
|
11374
11383
|
CreationTime: NotRequired[datetime]
|
|
11375
11384
|
LastModifiedTime: NotRequired[datetime]
|
|
11376
11385
|
OnlineStoreConfig: NotRequired[OnlineStoreConfigTypeDef]
|
|
@@ -11381,7 +11390,7 @@ class FeatureGroupTypeDef(TypedDict):
|
|
|
11381
11390
|
LastUpdateStatus: NotRequired[LastUpdateStatusTypeDef]
|
|
11382
11391
|
FailureReason: NotRequired[str]
|
|
11383
11392
|
Description: NotRequired[str]
|
|
11384
|
-
Tags: NotRequired[
|
|
11393
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11385
11394
|
|
|
11386
11395
|
|
|
11387
11396
|
class UpdateFeatureGroupRequestRequestTypeDef(TypedDict):
|
|
@@ -11392,7 +11401,7 @@ class UpdateFeatureGroupRequestRequestTypeDef(TypedDict):
|
|
|
11392
11401
|
|
|
11393
11402
|
|
|
11394
11403
|
class ListComputeQuotasResponseTypeDef(TypedDict):
|
|
11395
|
-
ComputeQuotaSummaries:
|
|
11404
|
+
ComputeQuotaSummaries: List[ComputeQuotaSummaryTypeDef]
|
|
11396
11405
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11397
11406
|
NextToken: NotRequired[str]
|
|
11398
11407
|
|
|
@@ -11446,8 +11455,8 @@ class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
|
11446
11455
|
DefinitionName: NotRequired[str]
|
|
11447
11456
|
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
11448
11457
|
HyperParameterRanges: NotRequired[ParameterRangesOutputTypeDef]
|
|
11449
|
-
StaticHyperParameters: NotRequired[
|
|
11450
|
-
InputDataConfig: NotRequired[
|
|
11458
|
+
StaticHyperParameters: NotRequired[Dict[str, str]]
|
|
11459
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
11451
11460
|
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
11452
11461
|
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
11453
11462
|
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigOutputTypeDef]
|
|
@@ -11456,16 +11465,16 @@ class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
|
11456
11465
|
EnableManagedSpotTraining: NotRequired[bool]
|
|
11457
11466
|
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11458
11467
|
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11459
|
-
Environment: NotRequired[
|
|
11468
|
+
Environment: NotRequired[Dict[str, str]]
|
|
11460
11469
|
|
|
11461
11470
|
|
|
11462
11471
|
class TrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
11463
11472
|
TrainingInputMode: TrainingInputModeType
|
|
11464
|
-
InputDataConfig:
|
|
11473
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
11465
11474
|
OutputDataConfig: OutputDataConfigTypeDef
|
|
11466
11475
|
ResourceConfig: ResourceConfigOutputTypeDef
|
|
11467
11476
|
StoppingCondition: StoppingConditionTypeDef
|
|
11468
|
-
HyperParameters: NotRequired[
|
|
11477
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
11469
11478
|
|
|
11470
11479
|
|
|
11471
11480
|
class DescribeInferenceComponentOutputTypeDef(TypedDict):
|
|
@@ -11547,7 +11556,7 @@ StudioWebPortalSettingsUnionTypeDef = Union[
|
|
|
11547
11556
|
|
|
11548
11557
|
|
|
11549
11558
|
class ListAssociationsResponseTypeDef(TypedDict):
|
|
11550
|
-
AssociationSummaries:
|
|
11559
|
+
AssociationSummaries: List[AssociationSummaryTypeDef]
|
|
11551
11560
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11552
11561
|
NextToken: NotRequired[str]
|
|
11553
11562
|
|
|
@@ -11563,23 +11572,23 @@ class TrialTypeDef(TypedDict):
|
|
|
11563
11572
|
LastModifiedTime: NotRequired[datetime]
|
|
11564
11573
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
11565
11574
|
MetadataProperties: NotRequired[MetadataPropertiesTypeDef]
|
|
11566
|
-
Tags: NotRequired[
|
|
11567
|
-
TrialComponentSummaries: NotRequired[
|
|
11575
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11576
|
+
TrialComponentSummaries: NotRequired[List[TrialComponentSimpleSummaryTypeDef]]
|
|
11568
11577
|
|
|
11569
11578
|
|
|
11570
11579
|
class ListTrialComponentsResponseTypeDef(TypedDict):
|
|
11571
|
-
TrialComponentSummaries:
|
|
11580
|
+
TrialComponentSummaries: List[TrialComponentSummaryTypeDef]
|
|
11572
11581
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11573
11582
|
NextToken: NotRequired[str]
|
|
11574
11583
|
|
|
11575
11584
|
|
|
11576
11585
|
class WorkteamTypeDef(TypedDict):
|
|
11577
11586
|
WorkteamName: str
|
|
11578
|
-
MemberDefinitions:
|
|
11587
|
+
MemberDefinitions: List[MemberDefinitionOutputTypeDef]
|
|
11579
11588
|
WorkteamArn: str
|
|
11580
11589
|
Description: str
|
|
11581
11590
|
WorkforceArn: NotRequired[str]
|
|
11582
|
-
ProductListingIds: NotRequired[
|
|
11591
|
+
ProductListingIds: NotRequired[List[str]]
|
|
11583
11592
|
SubDomain: NotRequired[str]
|
|
11584
11593
|
CreateDate: NotRequired[datetime]
|
|
11585
11594
|
LastUpdatedDate: NotRequired[datetime]
|
|
@@ -11589,18 +11598,18 @@ class WorkteamTypeDef(TypedDict):
|
|
|
11589
11598
|
|
|
11590
11599
|
class TrainingSpecificationOutputTypeDef(TypedDict):
|
|
11591
11600
|
TrainingImage: str
|
|
11592
|
-
SupportedTrainingInstanceTypes:
|
|
11593
|
-
TrainingChannels:
|
|
11601
|
+
SupportedTrainingInstanceTypes: List[TrainingInstanceTypeType]
|
|
11602
|
+
TrainingChannels: List[ChannelSpecificationOutputTypeDef]
|
|
11594
11603
|
TrainingImageDigest: NotRequired[str]
|
|
11595
|
-
SupportedHyperParameters: NotRequired[
|
|
11604
|
+
SupportedHyperParameters: NotRequired[List[HyperParameterSpecificationOutputTypeDef]]
|
|
11596
11605
|
SupportsDistributedTraining: NotRequired[bool]
|
|
11597
|
-
MetricDefinitions: NotRequired[
|
|
11598
|
-
SupportedTuningJobObjectiveMetrics: NotRequired[
|
|
11606
|
+
MetricDefinitions: NotRequired[List[MetricDefinitionTypeDef]]
|
|
11607
|
+
SupportedTuningJobObjectiveMetrics: NotRequired[List[HyperParameterTuningJobObjectiveTypeDef]]
|
|
11599
11608
|
AdditionalS3DataSource: NotRequired[AdditionalS3DataSourceTypeDef]
|
|
11600
11609
|
|
|
11601
11610
|
|
|
11602
11611
|
class ListAppImageConfigsResponseTypeDef(TypedDict):
|
|
11603
|
-
AppImageConfigs:
|
|
11612
|
+
AppImageConfigs: List[AppImageConfigDetailsTypeDef]
|
|
11604
11613
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11605
11614
|
NextToken: NotRequired[str]
|
|
11606
11615
|
|
|
@@ -11631,8 +11640,8 @@ class ContainerDefinitionOutputTypeDef(TypedDict):
|
|
|
11631
11640
|
Mode: NotRequired[ContainerModeType]
|
|
11632
11641
|
ModelDataUrl: NotRequired[str]
|
|
11633
11642
|
ModelDataSource: NotRequired[ModelDataSourceTypeDef]
|
|
11634
|
-
AdditionalModelDataSources: NotRequired[
|
|
11635
|
-
Environment: NotRequired[
|
|
11643
|
+
AdditionalModelDataSources: NotRequired[List[AdditionalModelDataSourceTypeDef]]
|
|
11644
|
+
Environment: NotRequired[Dict[str, str]]
|
|
11636
11645
|
ModelPackageName: NotRequired[str]
|
|
11637
11646
|
InferenceSpecificationName: NotRequired[str]
|
|
11638
11647
|
MultiModelConfig: NotRequired[MultiModelConfigTypeDef]
|
|
@@ -11659,12 +11668,13 @@ class ModelPackageContainerDefinitionOutputTypeDef(TypedDict):
|
|
|
11659
11668
|
ModelDataUrl: NotRequired[str]
|
|
11660
11669
|
ModelDataSource: NotRequired[ModelDataSourceTypeDef]
|
|
11661
11670
|
ProductId: NotRequired[str]
|
|
11662
|
-
Environment: NotRequired[
|
|
11671
|
+
Environment: NotRequired[Dict[str, str]]
|
|
11663
11672
|
ModelInput: NotRequired[ModelInputTypeDef]
|
|
11664
11673
|
Framework: NotRequired[str]
|
|
11665
11674
|
FrameworkVersion: NotRequired[str]
|
|
11666
11675
|
NearestModelName: NotRequired[str]
|
|
11667
11676
|
AdditionalS3DataSource: NotRequired[AdditionalS3DataSourceTypeDef]
|
|
11677
|
+
ModelDataETag: NotRequired[str]
|
|
11668
11678
|
|
|
11669
11679
|
|
|
11670
11680
|
class ModelPackageContainerDefinitionTypeDef(TypedDict):
|
|
@@ -11680,16 +11690,18 @@ class ModelPackageContainerDefinitionTypeDef(TypedDict):
|
|
|
11680
11690
|
FrameworkVersion: NotRequired[str]
|
|
11681
11691
|
NearestModelName: NotRequired[str]
|
|
11682
11692
|
AdditionalS3DataSource: NotRequired[AdditionalS3DataSourceTypeDef]
|
|
11693
|
+
ModelDataETag: NotRequired[str]
|
|
11683
11694
|
|
|
11684
11695
|
|
|
11685
11696
|
class SourceAlgorithmTypeDef(TypedDict):
|
|
11686
11697
|
AlgorithmName: str
|
|
11687
11698
|
ModelDataUrl: NotRequired[str]
|
|
11688
11699
|
ModelDataSource: NotRequired[ModelDataSourceTypeDef]
|
|
11700
|
+
ModelDataETag: NotRequired[str]
|
|
11689
11701
|
|
|
11690
11702
|
|
|
11691
11703
|
class ListMonitoringAlertsResponseTypeDef(TypedDict):
|
|
11692
|
-
MonitoringAlertSummaries:
|
|
11704
|
+
MonitoringAlertSummaries: List[MonitoringAlertSummaryTypeDef]
|
|
11693
11705
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11694
11706
|
NextToken: NotRequired[str]
|
|
11695
11707
|
|
|
@@ -11709,7 +11721,7 @@ DescribeInferenceExperimentResponseTypeDef = TypedDict(
|
|
|
11709
11721
|
"LastModifiedTime": datetime,
|
|
11710
11722
|
"RoleArn": str,
|
|
11711
11723
|
"EndpointMetadata": EndpointMetadataTypeDef,
|
|
11712
|
-
"ModelVariants":
|
|
11724
|
+
"ModelVariants": List[ModelVariantConfigSummaryTypeDef],
|
|
11713
11725
|
"DataStorageConfig": InferenceExperimentDataStorageConfigOutputTypeDef,
|
|
11714
11726
|
"ShadowModeConfig": ShadowModeConfigOutputTypeDef,
|
|
11715
11727
|
"KmsKey": str,
|
|
@@ -11822,9 +11834,9 @@ class DescribeOptimizationJobResponseTypeDef(TypedDict):
|
|
|
11822
11834
|
FailureReason: str
|
|
11823
11835
|
OptimizationJobName: str
|
|
11824
11836
|
ModelSource: OptimizationJobModelSourceTypeDef
|
|
11825
|
-
OptimizationEnvironment:
|
|
11837
|
+
OptimizationEnvironment: Dict[str, str]
|
|
11826
11838
|
DeploymentInstanceType: OptimizationJobDeploymentInstanceTypeType
|
|
11827
|
-
OptimizationConfigs:
|
|
11839
|
+
OptimizationConfigs: List[OptimizationConfigOutputTypeDef]
|
|
11828
11840
|
OutputConfig: OptimizationJobOutputConfigTypeDef
|
|
11829
11841
|
OptimizationOutput: OptimizationOutputTypeDef
|
|
11830
11842
|
RoleArn: str
|
|
@@ -11834,13 +11846,13 @@ class DescribeOptimizationJobResponseTypeDef(TypedDict):
|
|
|
11834
11846
|
|
|
11835
11847
|
|
|
11836
11848
|
class DescribeProcessingJobResponseTypeDef(TypedDict):
|
|
11837
|
-
ProcessingInputs:
|
|
11849
|
+
ProcessingInputs: List[ProcessingInputTypeDef]
|
|
11838
11850
|
ProcessingOutputConfig: ProcessingOutputConfigOutputTypeDef
|
|
11839
11851
|
ProcessingJobName: str
|
|
11840
11852
|
ProcessingResources: ProcessingResourcesTypeDef
|
|
11841
11853
|
StoppingCondition: ProcessingStoppingConditionTypeDef
|
|
11842
11854
|
AppSpecification: AppSpecificationOutputTypeDef
|
|
11843
|
-
Environment:
|
|
11855
|
+
Environment: Dict[str, str]
|
|
11844
11856
|
NetworkConfig: NetworkConfigOutputTypeDef
|
|
11845
11857
|
RoleArn: str
|
|
11846
11858
|
ExperimentConfig: ExperimentConfigTypeDef
|
|
@@ -11859,13 +11871,13 @@ class DescribeProcessingJobResponseTypeDef(TypedDict):
|
|
|
11859
11871
|
|
|
11860
11872
|
|
|
11861
11873
|
class ProcessingJobTypeDef(TypedDict):
|
|
11862
|
-
ProcessingInputs: NotRequired[
|
|
11874
|
+
ProcessingInputs: NotRequired[List[ProcessingInputTypeDef]]
|
|
11863
11875
|
ProcessingOutputConfig: NotRequired[ProcessingOutputConfigOutputTypeDef]
|
|
11864
11876
|
ProcessingJobName: NotRequired[str]
|
|
11865
11877
|
ProcessingResources: NotRequired[ProcessingResourcesTypeDef]
|
|
11866
11878
|
StoppingCondition: NotRequired[ProcessingStoppingConditionTypeDef]
|
|
11867
11879
|
AppSpecification: NotRequired[AppSpecificationOutputTypeDef]
|
|
11868
|
-
Environment: NotRequired[
|
|
11880
|
+
Environment: NotRequired[Dict[str, str]]
|
|
11869
11881
|
NetworkConfig: NotRequired[NetworkConfigOutputTypeDef]
|
|
11870
11882
|
RoleArn: NotRequired[str]
|
|
11871
11883
|
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
@@ -11880,7 +11892,7 @@ class ProcessingJobTypeDef(TypedDict):
|
|
|
11880
11892
|
MonitoringScheduleArn: NotRequired[str]
|
|
11881
11893
|
AutoMLJobArn: NotRequired[str]
|
|
11882
11894
|
TrainingJobArn: NotRequired[str]
|
|
11883
|
-
Tags: NotRequired[
|
|
11895
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11884
11896
|
|
|
11885
11897
|
|
|
11886
11898
|
class CreateProcessingJobRequestRequestTypeDef(TypedDict):
|
|
@@ -11938,7 +11950,7 @@ class DescribeLabelingJobResponseTypeDef(TypedDict):
|
|
|
11938
11950
|
StoppingConditions: LabelingJobStoppingConditionsTypeDef
|
|
11939
11951
|
LabelingJobAlgorithmsConfig: LabelingJobAlgorithmsConfigOutputTypeDef
|
|
11940
11952
|
HumanTaskConfig: HumanTaskConfigOutputTypeDef
|
|
11941
|
-
Tags:
|
|
11953
|
+
Tags: List[TagTypeDef]
|
|
11942
11954
|
LabelingJobOutput: LabelingJobOutputTypeDef
|
|
11943
11955
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11944
11956
|
|
|
@@ -11956,7 +11968,7 @@ class SpaceSettingsOutputTypeDef(TypedDict):
|
|
|
11956
11968
|
JupyterLabAppSettings: NotRequired[SpaceJupyterLabAppSettingsOutputTypeDef]
|
|
11957
11969
|
AppType: NotRequired[AppTypeType]
|
|
11958
11970
|
SpaceStorageSettings: NotRequired[SpaceStorageSettingsTypeDef]
|
|
11959
|
-
CustomFileSystems: NotRequired[
|
|
11971
|
+
CustomFileSystems: NotRequired[List[CustomFileSystemTypeDef]]
|
|
11960
11972
|
|
|
11961
11973
|
|
|
11962
11974
|
SpaceJupyterLabAppSettingsUnionTypeDef = Union[
|
|
@@ -11974,10 +11986,10 @@ class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
|
11974
11986
|
TrainingJobStatus: TrainingJobStatusType
|
|
11975
11987
|
SecondaryStatus: SecondaryStatusType
|
|
11976
11988
|
FailureReason: str
|
|
11977
|
-
HyperParameters:
|
|
11989
|
+
HyperParameters: Dict[str, str]
|
|
11978
11990
|
AlgorithmSpecification: AlgorithmSpecificationOutputTypeDef
|
|
11979
11991
|
RoleArn: str
|
|
11980
|
-
InputDataConfig:
|
|
11992
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
11981
11993
|
OutputDataConfig: OutputDataConfigTypeDef
|
|
11982
11994
|
ResourceConfig: ResourceConfigOutputTypeDef
|
|
11983
11995
|
WarmPoolStatus: WarmPoolStatusTypeDef
|
|
@@ -11987,8 +11999,8 @@ class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
|
11987
11999
|
TrainingStartTime: datetime
|
|
11988
12000
|
TrainingEndTime: datetime
|
|
11989
12001
|
LastModifiedTime: datetime
|
|
11990
|
-
SecondaryStatusTransitions:
|
|
11991
|
-
FinalMetricDataList:
|
|
12002
|
+
SecondaryStatusTransitions: List[SecondaryStatusTransitionTypeDef]
|
|
12003
|
+
FinalMetricDataList: List[MetricDataTypeDef]
|
|
11992
12004
|
EnableNetworkIsolation: bool
|
|
11993
12005
|
EnableInterContainerTrafficEncryption: bool
|
|
11994
12006
|
EnableManagedSpotTraining: bool
|
|
@@ -11997,14 +12009,14 @@ class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
|
11997
12009
|
BillableTimeInSeconds: int
|
|
11998
12010
|
DebugHookConfig: DebugHookConfigOutputTypeDef
|
|
11999
12011
|
ExperimentConfig: ExperimentConfigTypeDef
|
|
12000
|
-
DebugRuleConfigurations:
|
|
12012
|
+
DebugRuleConfigurations: List[DebugRuleConfigurationOutputTypeDef]
|
|
12001
12013
|
TensorBoardOutputConfig: TensorBoardOutputConfigTypeDef
|
|
12002
|
-
DebugRuleEvaluationStatuses:
|
|
12014
|
+
DebugRuleEvaluationStatuses: List[DebugRuleEvaluationStatusTypeDef]
|
|
12003
12015
|
ProfilerConfig: ProfilerConfigOutputTypeDef
|
|
12004
|
-
ProfilerRuleConfigurations:
|
|
12005
|
-
ProfilerRuleEvaluationStatuses:
|
|
12016
|
+
ProfilerRuleConfigurations: List[ProfilerRuleConfigurationOutputTypeDef]
|
|
12017
|
+
ProfilerRuleEvaluationStatuses: List[ProfilerRuleEvaluationStatusTypeDef]
|
|
12006
12018
|
ProfilingStatus: ProfilingStatusType
|
|
12007
|
-
Environment:
|
|
12019
|
+
Environment: Dict[str, str]
|
|
12008
12020
|
RetryStrategy: RetryStrategyTypeDef
|
|
12009
12021
|
RemoteDebugConfig: RemoteDebugConfigTypeDef
|
|
12010
12022
|
InfraCheckConfig: InfraCheckConfigTypeDef
|
|
@@ -12021,10 +12033,10 @@ class TrainingJobTypeDef(TypedDict):
|
|
|
12021
12033
|
TrainingJobStatus: NotRequired[TrainingJobStatusType]
|
|
12022
12034
|
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
12023
12035
|
FailureReason: NotRequired[str]
|
|
12024
|
-
HyperParameters: NotRequired[
|
|
12036
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
12025
12037
|
AlgorithmSpecification: NotRequired[AlgorithmSpecificationOutputTypeDef]
|
|
12026
12038
|
RoleArn: NotRequired[str]
|
|
12027
|
-
InputDataConfig: NotRequired[
|
|
12039
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
12028
12040
|
OutputDataConfig: NotRequired[OutputDataConfigTypeDef]
|
|
12029
12041
|
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
12030
12042
|
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
@@ -12033,8 +12045,8 @@ class TrainingJobTypeDef(TypedDict):
|
|
|
12033
12045
|
TrainingStartTime: NotRequired[datetime]
|
|
12034
12046
|
TrainingEndTime: NotRequired[datetime]
|
|
12035
12047
|
LastModifiedTime: NotRequired[datetime]
|
|
12036
|
-
SecondaryStatusTransitions: NotRequired[
|
|
12037
|
-
FinalMetricDataList: NotRequired[
|
|
12048
|
+
SecondaryStatusTransitions: NotRequired[List[SecondaryStatusTransitionTypeDef]]
|
|
12049
|
+
FinalMetricDataList: NotRequired[List[MetricDataTypeDef]]
|
|
12038
12050
|
EnableNetworkIsolation: NotRequired[bool]
|
|
12039
12051
|
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
12040
12052
|
EnableManagedSpotTraining: NotRequired[bool]
|
|
@@ -12043,13 +12055,13 @@ class TrainingJobTypeDef(TypedDict):
|
|
|
12043
12055
|
BillableTimeInSeconds: NotRequired[int]
|
|
12044
12056
|
DebugHookConfig: NotRequired[DebugHookConfigOutputTypeDef]
|
|
12045
12057
|
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
12046
|
-
DebugRuleConfigurations: NotRequired[
|
|
12058
|
+
DebugRuleConfigurations: NotRequired[List[DebugRuleConfigurationOutputTypeDef]]
|
|
12047
12059
|
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
12048
|
-
DebugRuleEvaluationStatuses: NotRequired[
|
|
12060
|
+
DebugRuleEvaluationStatuses: NotRequired[List[DebugRuleEvaluationStatusTypeDef]]
|
|
12049
12061
|
ProfilerConfig: NotRequired[ProfilerConfigOutputTypeDef]
|
|
12050
|
-
Environment: NotRequired[
|
|
12062
|
+
Environment: NotRequired[Dict[str, str]]
|
|
12051
12063
|
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
12052
|
-
Tags: NotRequired[
|
|
12064
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
12053
12065
|
|
|
12054
12066
|
|
|
12055
12067
|
class CreateTransformJobRequestRequestTypeDef(TypedDict):
|
|
@@ -12079,7 +12091,7 @@ class DescribeTransformJobResponseTypeDef(TypedDict):
|
|
|
12079
12091
|
ModelClientConfig: ModelClientConfigTypeDef
|
|
12080
12092
|
MaxPayloadInMB: int
|
|
12081
12093
|
BatchStrategy: BatchStrategyType
|
|
12082
|
-
Environment:
|
|
12094
|
+
Environment: Dict[str, str]
|
|
12083
12095
|
TransformInput: TransformInputTypeDef
|
|
12084
12096
|
TransformOutput: TransformOutputTypeDef
|
|
12085
12097
|
DataCaptureConfig: BatchDataCaptureConfigTypeDef
|
|
@@ -12101,7 +12113,7 @@ class TransformJobDefinitionOutputTypeDef(TypedDict):
|
|
|
12101
12113
|
MaxConcurrentTransforms: NotRequired[int]
|
|
12102
12114
|
MaxPayloadInMB: NotRequired[int]
|
|
12103
12115
|
BatchStrategy: NotRequired[BatchStrategyType]
|
|
12104
|
-
Environment: NotRequired[
|
|
12116
|
+
Environment: NotRequired[Dict[str, str]]
|
|
12105
12117
|
|
|
12106
12118
|
|
|
12107
12119
|
class TransformJobDefinitionTypeDef(TypedDict):
|
|
@@ -12124,7 +12136,7 @@ class TransformJobTypeDef(TypedDict):
|
|
|
12124
12136
|
ModelClientConfig: NotRequired[ModelClientConfigTypeDef]
|
|
12125
12137
|
MaxPayloadInMB: NotRequired[int]
|
|
12126
12138
|
BatchStrategy: NotRequired[BatchStrategyType]
|
|
12127
|
-
Environment: NotRequired[
|
|
12139
|
+
Environment: NotRequired[Dict[str, str]]
|
|
12128
12140
|
TransformInput: NotRequired[TransformInputTypeDef]
|
|
12129
12141
|
TransformOutput: NotRequired[TransformOutputTypeDef]
|
|
12130
12142
|
DataCaptureConfig: NotRequired[BatchDataCaptureConfigTypeDef]
|
|
@@ -12136,7 +12148,7 @@ class TransformJobTypeDef(TypedDict):
|
|
|
12136
12148
|
AutoMLJobArn: NotRequired[str]
|
|
12137
12149
|
DataProcessing: NotRequired[DataProcessingTypeDef]
|
|
12138
12150
|
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
12139
|
-
Tags: NotRequired[
|
|
12151
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
12140
12152
|
|
|
12141
12153
|
|
|
12142
12154
|
class DescribeDomainResponseTypeDef(TypedDict):
|
|
@@ -12156,7 +12168,7 @@ class DescribeDomainResponseTypeDef(TypedDict):
|
|
|
12156
12168
|
DomainSettings: DomainSettingsOutputTypeDef
|
|
12157
12169
|
AppNetworkAccessType: AppNetworkAccessTypeType
|
|
12158
12170
|
HomeEfsFileSystemKmsKeyId: str
|
|
12159
|
-
SubnetIds:
|
|
12171
|
+
SubnetIds: List[str]
|
|
12160
12172
|
Url: str
|
|
12161
12173
|
VpcId: str
|
|
12162
12174
|
KmsKeyId: str
|
|
@@ -12189,7 +12201,7 @@ class AsyncInferenceConfigTypeDef(TypedDict):
|
|
|
12189
12201
|
class DescribeAutoMLJobV2ResponseTypeDef(TypedDict):
|
|
12190
12202
|
AutoMLJobName: str
|
|
12191
12203
|
AutoMLJobArn: str
|
|
12192
|
-
AutoMLJobInputDataConfig:
|
|
12204
|
+
AutoMLJobInputDataConfig: List[AutoMLJobChannelTypeDef]
|
|
12193
12205
|
OutputDataConfig: AutoMLOutputDataConfigTypeDef
|
|
12194
12206
|
RoleArn: str
|
|
12195
12207
|
AutoMLJobObjective: AutoMLJobObjectiveTypeDef
|
|
@@ -12199,7 +12211,7 @@ class DescribeAutoMLJobV2ResponseTypeDef(TypedDict):
|
|
|
12199
12211
|
EndTime: datetime
|
|
12200
12212
|
LastModifiedTime: datetime
|
|
12201
12213
|
FailureReason: str
|
|
12202
|
-
PartialFailureReasons:
|
|
12214
|
+
PartialFailureReasons: List[AutoMLPartialFailureReasonTypeDef]
|
|
12203
12215
|
BestCandidate: AutoMLCandidateTypeDef
|
|
12204
12216
|
AutoMLJobStatus: AutoMLJobStatusType
|
|
12205
12217
|
AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatusType
|
|
@@ -12237,7 +12249,7 @@ class TimeSeriesForecastingJobConfigTypeDef(TypedDict):
|
|
|
12237
12249
|
|
|
12238
12250
|
|
|
12239
12251
|
class ListPipelineExecutionStepsResponseTypeDef(TypedDict):
|
|
12240
|
-
PipelineExecutionSteps:
|
|
12252
|
+
PipelineExecutionSteps: List[PipelineExecutionStepTypeDef]
|
|
12241
12253
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
12242
12254
|
NextToken: NotRequired[str]
|
|
12243
12255
|
|
|
@@ -12271,8 +12283,8 @@ class DescribeInferenceRecommendationsJobResponseTypeDef(TypedDict):
|
|
|
12271
12283
|
FailureReason: str
|
|
12272
12284
|
InputConfig: RecommendationJobInputConfigOutputTypeDef
|
|
12273
12285
|
StoppingConditions: RecommendationJobStoppingConditionsOutputTypeDef
|
|
12274
|
-
InferenceRecommendations:
|
|
12275
|
-
EndpointPerformances:
|
|
12286
|
+
InferenceRecommendations: List[InferenceRecommendationTypeDef]
|
|
12287
|
+
EndpointPerformances: List[EndpointPerformanceTypeDef]
|
|
12276
12288
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
12277
12289
|
|
|
12278
12290
|
|
|
@@ -12311,13 +12323,13 @@ class EndpointInputConfigurationTypeDef(TypedDict):
|
|
|
12311
12323
|
class DescribeEndpointConfigOutputTypeDef(TypedDict):
|
|
12312
12324
|
EndpointConfigName: str
|
|
12313
12325
|
EndpointConfigArn: str
|
|
12314
|
-
ProductionVariants:
|
|
12326
|
+
ProductionVariants: List[ProductionVariantTypeDef]
|
|
12315
12327
|
DataCaptureConfig: DataCaptureConfigOutputTypeDef
|
|
12316
12328
|
KmsKeyId: str
|
|
12317
12329
|
CreationTime: datetime
|
|
12318
12330
|
AsyncInferenceConfig: AsyncInferenceConfigOutputTypeDef
|
|
12319
12331
|
ExplainerConfig: ExplainerConfigOutputTypeDef
|
|
12320
|
-
ShadowProductionVariants:
|
|
12332
|
+
ShadowProductionVariants: List[ProductionVariantTypeDef]
|
|
12321
12333
|
ExecutionRoleArn: str
|
|
12322
12334
|
VpcConfig: VpcConfigOutputTypeDef
|
|
12323
12335
|
EnableNetworkIsolation: bool
|
|
@@ -12328,7 +12340,7 @@ class DescribeEndpointOutputTypeDef(TypedDict):
|
|
|
12328
12340
|
EndpointName: str
|
|
12329
12341
|
EndpointArn: str
|
|
12330
12342
|
EndpointConfigName: str
|
|
12331
|
-
ProductionVariants:
|
|
12343
|
+
ProductionVariants: List[ProductionVariantSummaryTypeDef]
|
|
12332
12344
|
DataCaptureConfig: DataCaptureConfigSummaryTypeDef
|
|
12333
12345
|
EndpointStatus: EndpointStatusType
|
|
12334
12346
|
FailureReason: str
|
|
@@ -12338,7 +12350,7 @@ class DescribeEndpointOutputTypeDef(TypedDict):
|
|
|
12338
12350
|
AsyncInferenceConfig: AsyncInferenceConfigOutputTypeDef
|
|
12339
12351
|
PendingDeploymentSummary: PendingDeploymentSummaryTypeDef
|
|
12340
12352
|
ExplainerConfig: ExplainerConfigOutputTypeDef
|
|
12341
|
-
ShadowProductionVariants:
|
|
12353
|
+
ShadowProductionVariants: List[ProductionVariantSummaryTypeDef]
|
|
12342
12354
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
12343
12355
|
|
|
12344
12356
|
|
|
@@ -12365,7 +12377,7 @@ class DescribeHyperParameterTuningJobResponseTypeDef(TypedDict):
|
|
|
12365
12377
|
HyperParameterTuningJobArn: str
|
|
12366
12378
|
HyperParameterTuningJobConfig: HyperParameterTuningJobConfigOutputTypeDef
|
|
12367
12379
|
TrainingJobDefinition: HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
12368
|
-
TrainingJobDefinitions:
|
|
12380
|
+
TrainingJobDefinitions: List[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
12369
12381
|
HyperParameterTuningJobStatus: HyperParameterTuningJobStatusType
|
|
12370
12382
|
CreationTime: datetime
|
|
12371
12383
|
HyperParameterTuningEndTime: datetime
|
|
@@ -12387,7 +12399,7 @@ class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
|
12387
12399
|
HyperParameterTuningJobArn: NotRequired[str]
|
|
12388
12400
|
HyperParameterTuningJobConfig: NotRequired[HyperParameterTuningJobConfigOutputTypeDef]
|
|
12389
12401
|
TrainingJobDefinition: NotRequired[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
12390
|
-
TrainingJobDefinitions: NotRequired[
|
|
12402
|
+
TrainingJobDefinitions: NotRequired[List[HyperParameterTrainingJobDefinitionOutputTypeDef]]
|
|
12391
12403
|
HyperParameterTuningJobStatus: NotRequired[HyperParameterTuningJobStatusType]
|
|
12392
12404
|
CreationTime: NotRequired[datetime]
|
|
12393
12405
|
HyperParameterTuningEndTime: NotRequired[datetime]
|
|
@@ -12400,11 +12412,11 @@ class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
|
12400
12412
|
FailureReason: NotRequired[str]
|
|
12401
12413
|
TuningJobCompletionDetails: NotRequired[HyperParameterTuningJobCompletionDetailsTypeDef]
|
|
12402
12414
|
ConsumedResources: NotRequired[HyperParameterTuningJobConsumedResourcesTypeDef]
|
|
12403
|
-
Tags: NotRequired[
|
|
12415
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
12404
12416
|
|
|
12405
12417
|
|
|
12406
12418
|
class ListSpacesResponseTypeDef(TypedDict):
|
|
12407
|
-
Spaces:
|
|
12419
|
+
Spaces: List[SpaceDetailsTypeDef]
|
|
12408
12420
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
12409
12421
|
NextToken: NotRequired[str]
|
|
12410
12422
|
|
|
@@ -12421,7 +12433,7 @@ class DefaultSpaceSettingsTypeDef(TypedDict):
|
|
|
12421
12433
|
|
|
12422
12434
|
|
|
12423
12435
|
class ListInferenceRecommendationsJobStepsResponseTypeDef(TypedDict):
|
|
12424
|
-
Steps:
|
|
12436
|
+
Steps: List[InferenceRecommendationsJobStepTypeDef]
|
|
12425
12437
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
12426
12438
|
NextToken: NotRequired[str]
|
|
12427
12439
|
|
|
@@ -12453,7 +12465,7 @@ class DescribeWorkteamResponseTypeDef(TypedDict):
|
|
|
12453
12465
|
|
|
12454
12466
|
|
|
12455
12467
|
class ListWorkteamsResponseTypeDef(TypedDict):
|
|
12456
|
-
Workteams:
|
|
12468
|
+
Workteams: List[WorkteamTypeDef]
|
|
12457
12469
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
12458
12470
|
NextToken: NotRequired[str]
|
|
12459
12471
|
|
|
@@ -12464,7 +12476,7 @@ class UpdateWorkteamResponseTypeDef(TypedDict):
|
|
|
12464
12476
|
|
|
12465
12477
|
|
|
12466
12478
|
class ListLabelingJobsResponseTypeDef(TypedDict):
|
|
12467
|
-
LabelingJobSummaryList:
|
|
12479
|
+
LabelingJobSummaryList: List[LabelingJobSummaryTypeDef]
|
|
12468
12480
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
12469
12481
|
NextToken: NotRequired[str]
|
|
12470
12482
|
|
|
@@ -12474,13 +12486,13 @@ class DynamicScalingConfigurationTypeDef(TypedDict):
|
|
|
12474
12486
|
MaxCapacity: NotRequired[int]
|
|
12475
12487
|
ScaleInCooldown: NotRequired[int]
|
|
12476
12488
|
ScaleOutCooldown: NotRequired[int]
|
|
12477
|
-
ScalingPolicies: NotRequired[
|
|
12489
|
+
ScalingPolicies: NotRequired[List[ScalingPolicyTypeDef]]
|
|
12478
12490
|
|
|
12479
12491
|
|
|
12480
12492
|
class DescribeModelOutputTypeDef(TypedDict):
|
|
12481
12493
|
ModelName: str
|
|
12482
12494
|
PrimaryContainer: ContainerDefinitionOutputTypeDef
|
|
12483
|
-
Containers:
|
|
12495
|
+
Containers: List[ContainerDefinitionOutputTypeDef]
|
|
12484
12496
|
InferenceExecutionConfig: InferenceExecutionConfigTypeDef
|
|
12485
12497
|
ExecutionRoleArn: str
|
|
12486
12498
|
VpcConfig: VpcConfigOutputTypeDef
|
|
@@ -12494,14 +12506,14 @@ class DescribeModelOutputTypeDef(TypedDict):
|
|
|
12494
12506
|
class ModelTypeDef(TypedDict):
|
|
12495
12507
|
ModelName: NotRequired[str]
|
|
12496
12508
|
PrimaryContainer: NotRequired[ContainerDefinitionOutputTypeDef]
|
|
12497
|
-
Containers: NotRequired[
|
|
12509
|
+
Containers: NotRequired[List[ContainerDefinitionOutputTypeDef]]
|
|
12498
12510
|
InferenceExecutionConfig: NotRequired[InferenceExecutionConfigTypeDef]
|
|
12499
12511
|
ExecutionRoleArn: NotRequired[str]
|
|
12500
12512
|
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
12501
12513
|
CreationTime: NotRequired[datetime]
|
|
12502
12514
|
ModelArn: NotRequired[str]
|
|
12503
12515
|
EnableNetworkIsolation: NotRequired[bool]
|
|
12504
|
-
Tags: NotRequired[
|
|
12516
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
12505
12517
|
DeploymentRecommendation: NotRequired[DeploymentRecommendationTypeDef]
|
|
12506
12518
|
|
|
12507
12519
|
|
|
@@ -12512,20 +12524,20 @@ ContainerDefinitionUnionTypeDef = Union[
|
|
|
12512
12524
|
|
|
12513
12525
|
class AdditionalInferenceSpecificationDefinitionOutputTypeDef(TypedDict):
|
|
12514
12526
|
Name: str
|
|
12515
|
-
Containers:
|
|
12527
|
+
Containers: List[ModelPackageContainerDefinitionOutputTypeDef]
|
|
12516
12528
|
Description: NotRequired[str]
|
|
12517
|
-
SupportedTransformInstanceTypes: NotRequired[
|
|
12518
|
-
SupportedRealtimeInferenceInstanceTypes: NotRequired[
|
|
12519
|
-
SupportedContentTypes: NotRequired[
|
|
12520
|
-
SupportedResponseMIMETypes: NotRequired[
|
|
12529
|
+
SupportedTransformInstanceTypes: NotRequired[List[TransformInstanceTypeType]]
|
|
12530
|
+
SupportedRealtimeInferenceInstanceTypes: NotRequired[List[ProductionVariantInstanceTypeType]]
|
|
12531
|
+
SupportedContentTypes: NotRequired[List[str]]
|
|
12532
|
+
SupportedResponseMIMETypes: NotRequired[List[str]]
|
|
12521
12533
|
|
|
12522
12534
|
|
|
12523
12535
|
class InferenceSpecificationOutputTypeDef(TypedDict):
|
|
12524
|
-
Containers:
|
|
12525
|
-
SupportedTransformInstanceTypes: NotRequired[
|
|
12526
|
-
SupportedRealtimeInferenceInstanceTypes: NotRequired[
|
|
12527
|
-
SupportedContentTypes: NotRequired[
|
|
12528
|
-
SupportedResponseMIMETypes: NotRequired[
|
|
12536
|
+
Containers: List[ModelPackageContainerDefinitionOutputTypeDef]
|
|
12537
|
+
SupportedTransformInstanceTypes: NotRequired[List[TransformInstanceTypeType]]
|
|
12538
|
+
SupportedRealtimeInferenceInstanceTypes: NotRequired[List[ProductionVariantInstanceTypeType]]
|
|
12539
|
+
SupportedContentTypes: NotRequired[List[str]]
|
|
12540
|
+
SupportedResponseMIMETypes: NotRequired[List[str]]
|
|
12529
12541
|
|
|
12530
12542
|
|
|
12531
12543
|
ModelPackageContainerDefinitionUnionTypeDef = Union[
|
|
@@ -12534,7 +12546,7 @@ ModelPackageContainerDefinitionUnionTypeDef = Union[
|
|
|
12534
12546
|
|
|
12535
12547
|
|
|
12536
12548
|
class SourceAlgorithmSpecificationOutputTypeDef(TypedDict):
|
|
12537
|
-
SourceAlgorithms:
|
|
12549
|
+
SourceAlgorithms: List[SourceAlgorithmTypeDef]
|
|
12538
12550
|
|
|
12539
12551
|
|
|
12540
12552
|
class SourceAlgorithmSpecificationTypeDef(TypedDict):
|
|
@@ -12615,14 +12627,14 @@ class DescribeModelQualityJobDefinitionResponseTypeDef(TypedDict):
|
|
|
12615
12627
|
|
|
12616
12628
|
|
|
12617
12629
|
class MonitoringJobDefinitionOutputTypeDef(TypedDict):
|
|
12618
|
-
MonitoringInputs:
|
|
12630
|
+
MonitoringInputs: List[MonitoringInputOutputTypeDef]
|
|
12619
12631
|
MonitoringOutputConfig: MonitoringOutputConfigOutputTypeDef
|
|
12620
12632
|
MonitoringResources: MonitoringResourcesTypeDef
|
|
12621
12633
|
MonitoringAppSpecification: MonitoringAppSpecificationOutputTypeDef
|
|
12622
12634
|
RoleArn: str
|
|
12623
12635
|
BaselineConfig: NotRequired[MonitoringBaselineConfigTypeDef]
|
|
12624
12636
|
StoppingCondition: NotRequired[MonitoringStoppingConditionTypeDef]
|
|
12625
|
-
Environment: NotRequired[
|
|
12637
|
+
Environment: NotRequired[Dict[str, str]]
|
|
12626
12638
|
NetworkConfig: NotRequired[NetworkConfigOutputTypeDef]
|
|
12627
12639
|
|
|
12628
12640
|
|
|
@@ -12910,12 +12922,12 @@ class UpdateSpaceRequestRequestTypeDef(TypedDict):
|
|
|
12910
12922
|
|
|
12911
12923
|
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
12912
12924
|
ValidationRole: str
|
|
12913
|
-
ValidationProfiles:
|
|
12925
|
+
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
12914
12926
|
|
|
12915
12927
|
|
|
12916
12928
|
class ModelPackageValidationSpecificationOutputTypeDef(TypedDict):
|
|
12917
12929
|
ValidationRole: str
|
|
12918
|
-
ValidationProfiles:
|
|
12930
|
+
ValidationProfiles: List[ModelPackageValidationProfileOutputTypeDef]
|
|
12919
12931
|
|
|
12920
12932
|
|
|
12921
12933
|
class ModelPackageValidationProfileTypeDef(TypedDict):
|
|
@@ -12935,15 +12947,15 @@ class TrialComponentTypeDef(TypedDict):
|
|
|
12935
12947
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
12936
12948
|
LastModifiedTime: NotRequired[datetime]
|
|
12937
12949
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
12938
|
-
Parameters: NotRequired[
|
|
12939
|
-
InputArtifacts: NotRequired[
|
|
12940
|
-
OutputArtifacts: NotRequired[
|
|
12941
|
-
Metrics: NotRequired[
|
|
12950
|
+
Parameters: NotRequired[Dict[str, TrialComponentParameterValueTypeDef]]
|
|
12951
|
+
InputArtifacts: NotRequired[Dict[str, TrialComponentArtifactTypeDef]]
|
|
12952
|
+
OutputArtifacts: NotRequired[Dict[str, TrialComponentArtifactTypeDef]]
|
|
12953
|
+
Metrics: NotRequired[List[TrialComponentMetricSummaryTypeDef]]
|
|
12942
12954
|
MetadataProperties: NotRequired[MetadataPropertiesTypeDef]
|
|
12943
12955
|
SourceDetail: NotRequired[TrialComponentSourceDetailTypeDef]
|
|
12944
12956
|
LineageGroupArn: NotRequired[str]
|
|
12945
|
-
Tags: NotRequired[
|
|
12946
|
-
Parents: NotRequired[
|
|
12957
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
12958
|
+
Parents: NotRequired[List[ParentTypeDef]]
|
|
12947
12959
|
RunName: NotRequired[str]
|
|
12948
12960
|
|
|
12949
12961
|
|
|
@@ -12983,8 +12995,8 @@ class RecommendationJobInputConfigTypeDef(TypedDict):
|
|
|
12983
12995
|
|
|
12984
12996
|
|
|
12985
12997
|
class BatchDescribeModelPackageOutputTypeDef(TypedDict):
|
|
12986
|
-
ModelPackageSummaries:
|
|
12987
|
-
BatchDescribeModelPackageErrorMap:
|
|
12998
|
+
ModelPackageSummaries: Dict[str, BatchDescribeModelPackageSummaryTypeDef]
|
|
12999
|
+
BatchDescribeModelPackageErrorMap: Dict[str, BatchDescribeModelPackageErrorTypeDef]
|
|
12988
13000
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
12989
13001
|
|
|
12990
13002
|
|
|
@@ -13034,7 +13046,7 @@ class ModelDashboardMonitoringScheduleTypeDef(TypedDict):
|
|
|
13034
13046
|
LastModifiedTime: NotRequired[datetime]
|
|
13035
13047
|
MonitoringScheduleConfig: NotRequired[MonitoringScheduleConfigOutputTypeDef]
|
|
13036
13048
|
EndpointName: NotRequired[str]
|
|
13037
|
-
MonitoringAlertSummaries: NotRequired[
|
|
13049
|
+
MonitoringAlertSummaries: NotRequired[List[MonitoringAlertSummaryTypeDef]]
|
|
13038
13050
|
LastMonitoringExecutionSummary: NotRequired[MonitoringExecutionSummaryTypeDef]
|
|
13039
13051
|
BatchTransformInput: NotRequired[BatchTransformInputOutputTypeDef]
|
|
13040
13052
|
|
|
@@ -13050,7 +13062,7 @@ class MonitoringScheduleTypeDef(TypedDict):
|
|
|
13050
13062
|
MonitoringScheduleConfig: NotRequired[MonitoringScheduleConfigOutputTypeDef]
|
|
13051
13063
|
EndpointName: NotRequired[str]
|
|
13052
13064
|
LastMonitoringExecutionSummary: NotRequired[MonitoringExecutionSummaryTypeDef]
|
|
13053
|
-
Tags: NotRequired[
|
|
13065
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
13054
13066
|
|
|
13055
13067
|
|
|
13056
13068
|
class CreateDataQualityJobDefinitionRequestRequestTypeDef(TypedDict):
|
|
@@ -13204,9 +13216,9 @@ class DescribeModelPackageOutputTypeDef(TypedDict):
|
|
|
13204
13216
|
Domain: str
|
|
13205
13217
|
Task: str
|
|
13206
13218
|
SamplePayloadUrl: str
|
|
13207
|
-
CustomerMetadataProperties:
|
|
13219
|
+
CustomerMetadataProperties: Dict[str, str]
|
|
13208
13220
|
DriftCheckBaselines: DriftCheckBaselinesTypeDef
|
|
13209
|
-
AdditionalInferenceSpecifications:
|
|
13221
|
+
AdditionalInferenceSpecifications: List[AdditionalInferenceSpecificationDefinitionOutputTypeDef]
|
|
13210
13222
|
SkipModelValidation: SkipModelValidationType
|
|
13211
13223
|
SourceUri: str
|
|
13212
13224
|
SecurityConfig: ModelPackageSecurityConfigTypeDef
|
|
@@ -13239,14 +13251,14 @@ class ModelPackageTypeDef(TypedDict):
|
|
|
13239
13251
|
Task: NotRequired[str]
|
|
13240
13252
|
SamplePayloadUrl: NotRequired[str]
|
|
13241
13253
|
AdditionalInferenceSpecifications: NotRequired[
|
|
13242
|
-
|
|
13254
|
+
List[AdditionalInferenceSpecificationDefinitionOutputTypeDef]
|
|
13243
13255
|
]
|
|
13244
13256
|
SourceUri: NotRequired[str]
|
|
13245
13257
|
SecurityConfig: NotRequired[ModelPackageSecurityConfigTypeDef]
|
|
13246
13258
|
ModelCard: NotRequired[ModelPackageModelCardTypeDef]
|
|
13247
13259
|
ModelLifeCycle: NotRequired[ModelLifeCycleTypeDef]
|
|
13248
|
-
Tags: NotRequired[
|
|
13249
|
-
CustomerMetadataProperties: NotRequired[
|
|
13260
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
13261
|
+
CustomerMetadataProperties: NotRequired[Dict[str, str]]
|
|
13250
13262
|
DriftCheckBaselines: NotRequired[DriftCheckBaselinesTypeDef]
|
|
13251
13263
|
SkipModelValidation: NotRequired[SkipModelValidationType]
|
|
13252
13264
|
|
|
@@ -13283,9 +13295,9 @@ class CreateInferenceRecommendationsJobRequestRequestTypeDef(TypedDict):
|
|
|
13283
13295
|
|
|
13284
13296
|
class ModelDashboardModelTypeDef(TypedDict):
|
|
13285
13297
|
Model: NotRequired[ModelTypeDef]
|
|
13286
|
-
Endpoints: NotRequired[
|
|
13298
|
+
Endpoints: NotRequired[List[ModelDashboardEndpointTypeDef]]
|
|
13287
13299
|
LastBatchTransformJob: NotRequired[TransformJobTypeDef]
|
|
13288
|
-
MonitoringSchedules: NotRequired[
|
|
13300
|
+
MonitoringSchedules: NotRequired[List[ModelDashboardMonitoringScheduleTypeDef]]
|
|
13289
13301
|
ModelCard: NotRequired[ModelDashboardModelCardTypeDef]
|
|
13290
13302
|
|
|
13291
13303
|
|
|
@@ -13296,12 +13308,12 @@ class EndpointTypeDef(TypedDict):
|
|
|
13296
13308
|
EndpointStatus: EndpointStatusType
|
|
13297
13309
|
CreationTime: datetime
|
|
13298
13310
|
LastModifiedTime: datetime
|
|
13299
|
-
ProductionVariants: NotRequired[
|
|
13311
|
+
ProductionVariants: NotRequired[List[ProductionVariantSummaryTypeDef]]
|
|
13300
13312
|
DataCaptureConfig: NotRequired[DataCaptureConfigSummaryTypeDef]
|
|
13301
13313
|
FailureReason: NotRequired[str]
|
|
13302
|
-
MonitoringSchedules: NotRequired[
|
|
13303
|
-
Tags: NotRequired[
|
|
13304
|
-
ShadowProductionVariants: NotRequired[
|
|
13314
|
+
MonitoringSchedules: NotRequired[List[MonitoringScheduleTypeDef]]
|
|
13315
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
13316
|
+
ShadowProductionVariants: NotRequired[List[ProductionVariantSummaryTypeDef]]
|
|
13305
13317
|
|
|
13306
13318
|
|
|
13307
13319
|
class MonitoringJobDefinitionTypeDef(TypedDict):
|
|
@@ -13397,7 +13409,7 @@ class CreateModelPackageInputRequestTypeDef(TypedDict):
|
|
|
13397
13409
|
|
|
13398
13410
|
|
|
13399
13411
|
class SearchResponseTypeDef(TypedDict):
|
|
13400
|
-
Results:
|
|
13412
|
+
Results: List[SearchRecordTypeDef]
|
|
13401
13413
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
13402
13414
|
NextToken: NotRequired[str]
|
|
13403
13415
|
|