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