mypy-boto3-sagemaker 1.35.86__py3-none-any.whl → 1.35.93__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mypy-boto3-sagemaker might be problematic. Click here for more details.
- mypy_boto3_sagemaker/__init__.py +1 -1
- mypy_boto3_sagemaker/__init__.pyi +1 -1
- mypy_boto3_sagemaker/__main__.py +5 -5
- mypy_boto3_sagemaker/client.py +23 -17
- mypy_boto3_sagemaker/client.pyi +23 -17
- mypy_boto3_sagemaker/literals.py +1 -1
- mypy_boto3_sagemaker/literals.pyi +1 -1
- mypy_boto3_sagemaker/paginator.py +1 -1
- mypy_boto3_sagemaker/paginator.pyi +1 -1
- mypy_boto3_sagemaker/type_defs.py +401 -389
- mypy_boto3_sagemaker/type_defs.pyi +401 -389
- mypy_boto3_sagemaker/version.py +2 -2
- mypy_boto3_sagemaker/waiter.py +1 -1
- mypy_boto3_sagemaker/waiter.pyi +1 -1
- {mypy_boto3_sagemaker-1.35.86.dist-info → mypy_boto3_sagemaker-1.35.93.dist-info}/LICENSE +1 -1
- {mypy_boto3_sagemaker-1.35.86.dist-info → mypy_boto3_sagemaker-1.35.93.dist-info}/METADATA +6 -6
- mypy_boto3_sagemaker-1.35.93.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.35.86.dist-info → mypy_boto3_sagemaker-1.35.93.dist-info}/WHEEL +1 -1
- mypy_boto3_sagemaker-1.35.86.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.35.86.dist-info → mypy_boto3_sagemaker-1.35.93.dist-info}/top_level.txt +0 -0
|
@@ -11,14 +11,14 @@ Usage::
|
|
|
11
11
|
data: ActionSourceTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
20
|
from datetime import datetime
|
|
21
|
-
from typing import Any,
|
|
21
|
+
from typing import Any, Union
|
|
22
22
|
|
|
23
23
|
from .literals import (
|
|
24
24
|
ActionStatusType,
|
|
@@ -307,6 +307,12 @@ from .literals import (
|
|
|
307
307
|
WorkforceStatusType,
|
|
308
308
|
)
|
|
309
309
|
|
|
310
|
+
if sys.version_info >= (3, 9):
|
|
311
|
+
from builtins import dict as Dict
|
|
312
|
+
from builtins import list as List
|
|
313
|
+
from collections.abc import Mapping, Sequence
|
|
314
|
+
else:
|
|
315
|
+
from typing import Dict, List, Mapping, Sequence
|
|
310
316
|
if sys.version_info >= (3, 12):
|
|
311
317
|
from typing import Literal, NotRequired, TypedDict
|
|
312
318
|
else:
|
|
@@ -1887,7 +1893,7 @@ class AddAssociationRequestRequestTypeDef(TypedDict):
|
|
|
1887
1893
|
class ResponseMetadataTypeDef(TypedDict):
|
|
1888
1894
|
RequestId: str
|
|
1889
1895
|
HTTPStatusCode: int
|
|
1890
|
-
HTTPHeaders:
|
|
1896
|
+
HTTPHeaders: Dict[str, str]
|
|
1891
1897
|
RetryAttempts: int
|
|
1892
1898
|
HostId: NotRequired[str]
|
|
1893
1899
|
|
|
@@ -1899,6 +1905,7 @@ class AdditionalS3DataSourceTypeDef(TypedDict):
|
|
|
1899
1905
|
S3DataType: AdditionalS3DataSourceDataTypeType
|
|
1900
1906
|
S3Uri: str
|
|
1901
1907
|
CompressionType: NotRequired[CompressionTypeType]
|
|
1908
|
+
ETag: NotRequired[str]
|
|
1902
1909
|
|
|
1903
1910
|
class AgentVersionTypeDef(TypedDict):
|
|
1904
1911
|
Version: str
|
|
@@ -1945,8 +1952,8 @@ class IdleSettingsTypeDef(TypedDict):
|
|
|
1945
1952
|
|
|
1946
1953
|
class AppSpecificationOutputTypeDef(TypedDict):
|
|
1947
1954
|
ImageUri: str
|
|
1948
|
-
ContainerEntrypoint: NotRequired[
|
|
1949
|
-
ContainerArguments: NotRequired[
|
|
1955
|
+
ContainerEntrypoint: NotRequired[List[str]]
|
|
1956
|
+
ContainerArguments: NotRequired[List[str]]
|
|
1950
1957
|
|
|
1951
1958
|
class AppSpecificationTypeDef(TypedDict):
|
|
1952
1959
|
ImageUri: str
|
|
@@ -1967,7 +1974,7 @@ class AsyncInferenceClientConfigTypeDef(TypedDict):
|
|
|
1967
1974
|
class AsyncInferenceNotificationConfigOutputTypeDef(TypedDict):
|
|
1968
1975
|
SuccessTopic: NotRequired[str]
|
|
1969
1976
|
ErrorTopic: NotRequired[str]
|
|
1970
|
-
IncludeInferenceResponseIn: NotRequired[
|
|
1977
|
+
IncludeInferenceResponseIn: NotRequired[List[AsyncNotificationTopicTypesType]]
|
|
1971
1978
|
|
|
1972
1979
|
class AsyncInferenceNotificationConfigTypeDef(TypedDict):
|
|
1973
1980
|
SuccessTopic: NotRequired[str]
|
|
@@ -1985,7 +1992,7 @@ class AthenaDatasetDefinitionTypeDef(TypedDict):
|
|
|
1985
1992
|
OutputCompression: NotRequired[AthenaResultCompressionTypeType]
|
|
1986
1993
|
|
|
1987
1994
|
class AutoMLAlgorithmConfigOutputTypeDef(TypedDict):
|
|
1988
|
-
AutoMLAlgorithms:
|
|
1995
|
+
AutoMLAlgorithms: List[AutoMLAlgorithmType]
|
|
1989
1996
|
|
|
1990
1997
|
class AutoMLAlgorithmConfigTypeDef(TypedDict):
|
|
1991
1998
|
AutoMLAlgorithms: Sequence[AutoMLAlgorithmType]
|
|
@@ -1998,7 +2005,7 @@ class AutoMLCandidateStepTypeDef(TypedDict):
|
|
|
1998
2005
|
class AutoMLContainerDefinitionTypeDef(TypedDict):
|
|
1999
2006
|
Image: str
|
|
2000
2007
|
ModelDataUrl: str
|
|
2001
|
-
Environment: NotRequired[
|
|
2008
|
+
Environment: NotRequired[Dict[str, str]]
|
|
2002
2009
|
|
|
2003
2010
|
FinalAutoMLJobObjectiveMetricTypeDef = TypedDict(
|
|
2004
2011
|
"FinalAutoMLJobObjectiveMetricTypeDef",
|
|
@@ -2049,8 +2056,8 @@ class TextGenerationResolvedAttributesTypeDef(TypedDict):
|
|
|
2049
2056
|
BaseModelName: NotRequired[str]
|
|
2050
2057
|
|
|
2051
2058
|
class VpcConfigOutputTypeDef(TypedDict):
|
|
2052
|
-
SecurityGroupIds:
|
|
2053
|
-
Subnets:
|
|
2059
|
+
SecurityGroupIds: List[str]
|
|
2060
|
+
Subnets: List[str]
|
|
2054
2061
|
|
|
2055
2062
|
class AutoParameterTypeDef(TypedDict):
|
|
2056
2063
|
Name: str
|
|
@@ -2149,8 +2156,8 @@ CapacitySizeTypeDef = TypedDict(
|
|
|
2149
2156
|
)
|
|
2150
2157
|
|
|
2151
2158
|
class CaptureContentTypeHeaderOutputTypeDef(TypedDict):
|
|
2152
|
-
CsvContentTypes: NotRequired[
|
|
2153
|
-
JsonContentTypes: NotRequired[
|
|
2159
|
+
CsvContentTypes: NotRequired[List[str]]
|
|
2160
|
+
JsonContentTypes: NotRequired[List[str]]
|
|
2154
2161
|
|
|
2155
2162
|
class CaptureContentTypeHeaderTypeDef(TypedDict):
|
|
2156
2163
|
CsvContentTypes: NotRequired[Sequence[str]]
|
|
@@ -2161,14 +2168,14 @@ class CaptureOptionTypeDef(TypedDict):
|
|
|
2161
2168
|
|
|
2162
2169
|
class CategoricalParameterOutputTypeDef(TypedDict):
|
|
2163
2170
|
Name: str
|
|
2164
|
-
Value:
|
|
2171
|
+
Value: List[str]
|
|
2165
2172
|
|
|
2166
2173
|
class CategoricalParameterRangeOutputTypeDef(TypedDict):
|
|
2167
2174
|
Name: str
|
|
2168
|
-
Values:
|
|
2175
|
+
Values: List[str]
|
|
2169
2176
|
|
|
2170
2177
|
class CategoricalParameterRangeSpecificationOutputTypeDef(TypedDict):
|
|
2171
|
-
Values:
|
|
2178
|
+
Values: List[str]
|
|
2172
2179
|
|
|
2173
2180
|
class CategoricalParameterRangeSpecificationTypeDef(TypedDict):
|
|
2174
2181
|
Values: Sequence[str]
|
|
@@ -2186,11 +2193,11 @@ class ShuffleConfigTypeDef(TypedDict):
|
|
|
2186
2193
|
|
|
2187
2194
|
class ChannelSpecificationOutputTypeDef(TypedDict):
|
|
2188
2195
|
Name: str
|
|
2189
|
-
SupportedContentTypes:
|
|
2190
|
-
SupportedInputModes:
|
|
2196
|
+
SupportedContentTypes: List[str]
|
|
2197
|
+
SupportedInputModes: List[TrainingInputModeType]
|
|
2191
2198
|
Description: NotRequired[str]
|
|
2192
2199
|
IsRequired: NotRequired[bool]
|
|
2193
|
-
SupportedCompressionTypes: NotRequired[
|
|
2200
|
+
SupportedCompressionTypes: NotRequired[List[CompressionTypeType]]
|
|
2194
2201
|
|
|
2195
2202
|
class ChannelSpecificationTypeDef(TypedDict):
|
|
2196
2203
|
Name: str
|
|
@@ -2223,9 +2230,9 @@ class ClarifyInferenceConfigOutputTypeDef(TypedDict):
|
|
|
2223
2230
|
LabelIndex: NotRequired[int]
|
|
2224
2231
|
ProbabilityAttribute: NotRequired[str]
|
|
2225
2232
|
LabelAttribute: NotRequired[str]
|
|
2226
|
-
LabelHeaders: NotRequired[
|
|
2227
|
-
FeatureHeaders: NotRequired[
|
|
2228
|
-
FeatureTypes: NotRequired[
|
|
2233
|
+
LabelHeaders: NotRequired[List[str]]
|
|
2234
|
+
FeatureHeaders: NotRequired[List[str]]
|
|
2235
|
+
FeatureTypes: NotRequired[List[ClarifyFeatureTypeType]]
|
|
2229
2236
|
|
|
2230
2237
|
class ClarifyInferenceConfigTypeDef(TypedDict):
|
|
2231
2238
|
FeaturesAttribute: NotRequired[str]
|
|
@@ -2282,12 +2289,12 @@ class ClusterSummaryTypeDef(TypedDict):
|
|
|
2282
2289
|
ClusterName: str
|
|
2283
2290
|
CreationTime: datetime
|
|
2284
2291
|
ClusterStatus: ClusterStatusType
|
|
2285
|
-
TrainingPlanArns: NotRequired[
|
|
2292
|
+
TrainingPlanArns: NotRequired[List[str]]
|
|
2286
2293
|
|
|
2287
2294
|
class ContainerConfigOutputTypeDef(TypedDict):
|
|
2288
|
-
ContainerArguments: NotRequired[
|
|
2289
|
-
ContainerEntrypoint: NotRequired[
|
|
2290
|
-
ContainerEnvironmentVariables: NotRequired[
|
|
2295
|
+
ContainerArguments: NotRequired[List[str]]
|
|
2296
|
+
ContainerEntrypoint: NotRequired[List[str]]
|
|
2297
|
+
ContainerEnvironmentVariables: NotRequired[Dict[str, str]]
|
|
2291
2298
|
|
|
2292
2299
|
class FileSystemConfigTypeDef(TypedDict):
|
|
2293
2300
|
MountPath: NotRequired[str]
|
|
@@ -2321,7 +2328,7 @@ class VectorConfigTypeDef(TypedDict):
|
|
|
2321
2328
|
|
|
2322
2329
|
class CollectionConfigurationOutputTypeDef(TypedDict):
|
|
2323
2330
|
CollectionName: NotRequired[str]
|
|
2324
|
-
CollectionParameters: NotRequired[
|
|
2331
|
+
CollectionParameters: NotRequired[Dict[str, str]]
|
|
2325
2332
|
|
|
2326
2333
|
class CollectionConfigurationTypeDef(TypedDict):
|
|
2327
2334
|
CollectionName: NotRequired[str]
|
|
@@ -2701,11 +2708,11 @@ class DataCatalogConfigTypeDef(TypedDict):
|
|
|
2701
2708
|
|
|
2702
2709
|
class DataQualityAppSpecificationOutputTypeDef(TypedDict):
|
|
2703
2710
|
ImageUri: str
|
|
2704
|
-
ContainerEntrypoint: NotRequired[
|
|
2705
|
-
ContainerArguments: NotRequired[
|
|
2711
|
+
ContainerEntrypoint: NotRequired[List[str]]
|
|
2712
|
+
ContainerArguments: NotRequired[List[str]]
|
|
2706
2713
|
RecordPreprocessorSourceUri: NotRequired[str]
|
|
2707
2714
|
PostAnalyticsProcessorSourceUri: NotRequired[str]
|
|
2708
|
-
Environment: NotRequired[
|
|
2715
|
+
Environment: NotRequired[Dict[str, str]]
|
|
2709
2716
|
|
|
2710
2717
|
class MonitoringConstraintsResourceTypeDef(TypedDict):
|
|
2711
2718
|
S3Uri: NotRequired[str]
|
|
@@ -2742,8 +2749,8 @@ S3DataSourceOutputTypeDef = TypedDict(
|
|
|
2742
2749
|
"S3DataType": S3DataTypeType,
|
|
2743
2750
|
"S3Uri": str,
|
|
2744
2751
|
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
2745
|
-
"AttributeNames": NotRequired[
|
|
2746
|
-
"InstanceGroupNames": NotRequired[
|
|
2752
|
+
"AttributeNames": NotRequired[List[str]],
|
|
2753
|
+
"InstanceGroupNames": NotRequired[List[str]],
|
|
2747
2754
|
},
|
|
2748
2755
|
)
|
|
2749
2756
|
|
|
@@ -2765,7 +2772,7 @@ class DebugRuleConfigurationOutputTypeDef(TypedDict):
|
|
|
2765
2772
|
S3OutputPath: NotRequired[str]
|
|
2766
2773
|
InstanceType: NotRequired[ProcessingInstanceTypeType]
|
|
2767
2774
|
VolumeSizeInGB: NotRequired[int]
|
|
2768
|
-
RuleParameters: NotRequired[
|
|
2775
|
+
RuleParameters: NotRequired[Dict[str, str]]
|
|
2769
2776
|
|
|
2770
2777
|
class DebugRuleConfigurationTypeDef(TypedDict):
|
|
2771
2778
|
RuleConfigurationName: str
|
|
@@ -2975,12 +2982,12 @@ class DeployedImageTypeDef(TypedDict):
|
|
|
2975
2982
|
class RealTimeInferenceRecommendationTypeDef(TypedDict):
|
|
2976
2983
|
RecommendationId: str
|
|
2977
2984
|
InstanceType: ProductionVariantInstanceTypeType
|
|
2978
|
-
Environment: NotRequired[
|
|
2985
|
+
Environment: NotRequired[Dict[str, str]]
|
|
2979
2986
|
|
|
2980
2987
|
class DeviceSelectionConfigOutputTypeDef(TypedDict):
|
|
2981
2988
|
DeviceSubsetType: DeviceSubsetTypeType
|
|
2982
2989
|
Percentage: NotRequired[int]
|
|
2983
|
-
DeviceNames: NotRequired[
|
|
2990
|
+
DeviceNames: NotRequired[List[str]]
|
|
2984
2991
|
DeviceNameContains: NotRequired[str]
|
|
2985
2992
|
|
|
2986
2993
|
class EdgeDeploymentConfigTypeDef(TypedDict):
|
|
@@ -3053,8 +3060,8 @@ class ModelDigestsTypeDef(TypedDict):
|
|
|
3053
3060
|
ArtifactDigest: NotRequired[str]
|
|
3054
3061
|
|
|
3055
3062
|
class NeoVpcConfigOutputTypeDef(TypedDict):
|
|
3056
|
-
SecurityGroupIds:
|
|
3057
|
-
Subnets:
|
|
3063
|
+
SecurityGroupIds: List[str]
|
|
3064
|
+
Subnets: List[str]
|
|
3058
3065
|
|
|
3059
3066
|
class DescribeComputeQuotaRequestRequestTypeDef(TypedDict):
|
|
3060
3067
|
ComputeQuotaId: str
|
|
@@ -3245,7 +3252,7 @@ class DescribeModelBiasJobDefinitionRequestRequestTypeDef(TypedDict):
|
|
|
3245
3252
|
class ModelBiasAppSpecificationOutputTypeDef(TypedDict):
|
|
3246
3253
|
ImageUri: str
|
|
3247
3254
|
ConfigUri: str
|
|
3248
|
-
Environment: NotRequired[
|
|
3255
|
+
Environment: NotRequired[Dict[str, str]]
|
|
3249
3256
|
|
|
3250
3257
|
class DescribeModelCardExportJobRequestRequestTypeDef(TypedDict):
|
|
3251
3258
|
ModelCardExportJobArn: str
|
|
@@ -3263,7 +3270,7 @@ class DescribeModelExplainabilityJobDefinitionRequestRequestTypeDef(TypedDict):
|
|
|
3263
3270
|
class ModelExplainabilityAppSpecificationOutputTypeDef(TypedDict):
|
|
3264
3271
|
ImageUri: str
|
|
3265
3272
|
ConfigUri: str
|
|
3266
|
-
Environment: NotRequired[
|
|
3273
|
+
Environment: NotRequired[Dict[str, str]]
|
|
3267
3274
|
|
|
3268
3275
|
class DescribeModelInputRequestTypeDef(TypedDict):
|
|
3269
3276
|
ModelName: str
|
|
@@ -3279,12 +3286,12 @@ class DescribeModelQualityJobDefinitionRequestRequestTypeDef(TypedDict):
|
|
|
3279
3286
|
|
|
3280
3287
|
class ModelQualityAppSpecificationOutputTypeDef(TypedDict):
|
|
3281
3288
|
ImageUri: str
|
|
3282
|
-
ContainerEntrypoint: NotRequired[
|
|
3283
|
-
ContainerArguments: NotRequired[
|
|
3289
|
+
ContainerEntrypoint: NotRequired[List[str]]
|
|
3290
|
+
ContainerArguments: NotRequired[List[str]]
|
|
3284
3291
|
RecordPreprocessorSourceUri: NotRequired[str]
|
|
3285
3292
|
PostAnalyticsProcessorSourceUri: NotRequired[str]
|
|
3286
3293
|
ProblemType: NotRequired[MonitoringProblemTypeType]
|
|
3287
|
-
Environment: NotRequired[
|
|
3294
|
+
Environment: NotRequired[Dict[str, str]]
|
|
3288
3295
|
|
|
3289
3296
|
class DescribeMonitoringScheduleRequestRequestTypeDef(TypedDict):
|
|
3290
3297
|
MonitoringScheduleName: str
|
|
@@ -3314,8 +3321,8 @@ class OptimizationOutputTypeDef(TypedDict):
|
|
|
3314
3321
|
RecommendedInferenceImage: NotRequired[str]
|
|
3315
3322
|
|
|
3316
3323
|
class OptimizationVpcConfigOutputTypeDef(TypedDict):
|
|
3317
|
-
SecurityGroupIds:
|
|
3318
|
-
Subnets:
|
|
3324
|
+
SecurityGroupIds: List[str]
|
|
3325
|
+
Subnets: List[str]
|
|
3319
3326
|
|
|
3320
3327
|
class DescribePartnerAppRequestRequestTypeDef(TypedDict):
|
|
3321
3328
|
Arn: str
|
|
@@ -3325,8 +3332,8 @@ class ErrorInfoTypeDef(TypedDict):
|
|
|
3325
3332
|
Reason: NotRequired[str]
|
|
3326
3333
|
|
|
3327
3334
|
class PartnerAppConfigOutputTypeDef(TypedDict):
|
|
3328
|
-
AdminUsers: NotRequired[
|
|
3329
|
-
Arguments: NotRequired[
|
|
3335
|
+
AdminUsers: NotRequired[List[str]]
|
|
3336
|
+
Arguments: NotRequired[Dict[str, str]]
|
|
3330
3337
|
|
|
3331
3338
|
class DescribePipelineDefinitionForExecutionRequestRequestTypeDef(TypedDict):
|
|
3332
3339
|
PipelineExecutionArn: str
|
|
@@ -3379,7 +3386,7 @@ class MetricDataTypeDef(TypedDict):
|
|
|
3379
3386
|
class ProfilerConfigOutputTypeDef(TypedDict):
|
|
3380
3387
|
S3OutputPath: NotRequired[str]
|
|
3381
3388
|
ProfilingIntervalInMilliseconds: NotRequired[int]
|
|
3382
|
-
ProfilingParameters: NotRequired[
|
|
3389
|
+
ProfilingParameters: NotRequired[Dict[str, str]]
|
|
3383
3390
|
DisableProfiler: NotRequired[bool]
|
|
3384
3391
|
|
|
3385
3392
|
class ProfilerRuleConfigurationOutputTypeDef(TypedDict):
|
|
@@ -3389,7 +3396,7 @@ class ProfilerRuleConfigurationOutputTypeDef(TypedDict):
|
|
|
3389
3396
|
S3OutputPath: NotRequired[str]
|
|
3390
3397
|
InstanceType: NotRequired[ProcessingInstanceTypeType]
|
|
3391
3398
|
VolumeSizeInGB: NotRequired[int]
|
|
3392
|
-
RuleParameters: NotRequired[
|
|
3399
|
+
RuleParameters: NotRequired[Dict[str, str]]
|
|
3393
3400
|
|
|
3394
3401
|
class ProfilerRuleEvaluationStatusTypeDef(TypedDict):
|
|
3395
3402
|
RuleConfigurationName: NotRequired[str]
|
|
@@ -3509,7 +3516,7 @@ class DisassociateTrialComponentRequestRequestTypeDef(TypedDict):
|
|
|
3509
3516
|
|
|
3510
3517
|
class DockerSettingsOutputTypeDef(TypedDict):
|
|
3511
3518
|
EnableDockerAccess: NotRequired[FeatureStatusType]
|
|
3512
|
-
VpcOnlyTrustedAccounts: NotRequired[
|
|
3519
|
+
VpcOnlyTrustedAccounts: NotRequired[List[str]]
|
|
3513
3520
|
|
|
3514
3521
|
class DockerSettingsTypeDef(TypedDict):
|
|
3515
3522
|
EnableDockerAccess: NotRequired[FeatureStatusType]
|
|
@@ -3572,8 +3579,8 @@ class EdgeTypeDef(TypedDict):
|
|
|
3572
3579
|
AssociationType: NotRequired[AssociationEdgeTypeType]
|
|
3573
3580
|
|
|
3574
3581
|
class EmrSettingsOutputTypeDef(TypedDict):
|
|
3575
|
-
AssumableRoleArns: NotRequired[
|
|
3576
|
-
ExecutionRoleArns: NotRequired[
|
|
3582
|
+
AssumableRoleArns: NotRequired[List[str]]
|
|
3583
|
+
ExecutionRoleArns: NotRequired[List[str]]
|
|
3577
3584
|
|
|
3578
3585
|
class EmrSettingsTypeDef(TypedDict):
|
|
3579
3586
|
AssumableRoleArns: NotRequired[Sequence[str]]
|
|
@@ -3663,7 +3670,7 @@ class GitConfigForUpdateTypeDef(TypedDict):
|
|
|
3663
3670
|
|
|
3664
3671
|
class HiddenSageMakerImageOutputTypeDef(TypedDict):
|
|
3665
3672
|
SageMakerImageName: NotRequired[Literal["sagemaker_distribution"]]
|
|
3666
|
-
VersionAliases: NotRequired[
|
|
3673
|
+
VersionAliases: NotRequired[List[str]]
|
|
3667
3674
|
|
|
3668
3675
|
class HiddenSageMakerImageTypeDef(TypedDict):
|
|
3669
3676
|
SageMakerImageName: NotRequired[Literal["sagemaker_distribution"]]
|
|
@@ -3684,7 +3691,7 @@ class HubContentInfoTypeDef(TypedDict):
|
|
|
3684
3691
|
HubContentDisplayName: NotRequired[str]
|
|
3685
3692
|
HubContentDescription: NotRequired[str]
|
|
3686
3693
|
SupportStatus: NotRequired[HubContentSupportStatusType]
|
|
3687
|
-
HubContentSearchKeywords: NotRequired[
|
|
3694
|
+
HubContentSearchKeywords: NotRequired[List[str]]
|
|
3688
3695
|
OriginalCreationTime: NotRequired[datetime]
|
|
3689
3696
|
|
|
3690
3697
|
class HubInfoTypeDef(TypedDict):
|
|
@@ -3695,7 +3702,7 @@ class HubInfoTypeDef(TypedDict):
|
|
|
3695
3702
|
LastModifiedTime: datetime
|
|
3696
3703
|
HubDisplayName: NotRequired[str]
|
|
3697
3704
|
HubDescription: NotRequired[str]
|
|
3698
|
-
HubSearchKeywords: NotRequired[
|
|
3705
|
+
HubSearchKeywords: NotRequired[List[str]]
|
|
3699
3706
|
|
|
3700
3707
|
class HumanLoopActivationConditionsConfigTypeDef(TypedDict):
|
|
3701
3708
|
HumanLoopActivationConditions: str
|
|
@@ -3842,7 +3849,7 @@ class LabelCountersForWorkteamTypeDef(TypedDict):
|
|
|
3842
3849
|
Total: NotRequired[int]
|
|
3843
3850
|
|
|
3844
3851
|
class LabelingJobDataAttributesOutputTypeDef(TypedDict):
|
|
3845
|
-
ContentClassifiers: NotRequired[
|
|
3852
|
+
ContentClassifiers: NotRequired[List[ContentClassifierType]]
|
|
3846
3853
|
|
|
3847
3854
|
class LabelingJobDataAttributesTypeDef(TypedDict):
|
|
3848
3855
|
ContentClassifiers: NotRequired[Sequence[ContentClassifierType]]
|
|
@@ -4006,7 +4013,7 @@ class NotebookInstanceSummaryTypeDef(TypedDict):
|
|
|
4006
4013
|
LastModifiedTime: NotRequired[datetime]
|
|
4007
4014
|
NotebookInstanceLifecycleConfigName: NotRequired[str]
|
|
4008
4015
|
DefaultCodeRepository: NotRequired[str]
|
|
4009
|
-
AdditionalCodeRepositories: NotRequired[
|
|
4016
|
+
AdditionalCodeRepositories: NotRequired[List[str]]
|
|
4010
4017
|
|
|
4011
4018
|
class OptimizationJobSummaryTypeDef(TypedDict):
|
|
4012
4019
|
OptimizationJobName: str
|
|
@@ -4014,7 +4021,7 @@ class OptimizationJobSummaryTypeDef(TypedDict):
|
|
|
4014
4021
|
CreationTime: datetime
|
|
4015
4022
|
OptimizationJobStatus: OptimizationJobStatusType
|
|
4016
4023
|
DeploymentInstanceType: OptimizationJobDeploymentInstanceTypeType
|
|
4017
|
-
OptimizationTypes:
|
|
4024
|
+
OptimizationTypes: List[str]
|
|
4018
4025
|
OptimizationStartTime: NotRequired[datetime]
|
|
4019
4026
|
OptimizationEndTime: NotRequired[datetime]
|
|
4020
4027
|
LastModifiedTime: NotRequired[datetime]
|
|
@@ -4174,7 +4181,7 @@ class ListWorkteamsRequestRequestTypeDef(TypedDict):
|
|
|
4174
4181
|
MaxResults: NotRequired[int]
|
|
4175
4182
|
|
|
4176
4183
|
class OidcMemberDefinitionOutputTypeDef(TypedDict):
|
|
4177
|
-
Groups: NotRequired[
|
|
4184
|
+
Groups: NotRequired[List[str]]
|
|
4178
4185
|
|
|
4179
4186
|
class PredefinedMetricSpecificationTypeDef(TypedDict):
|
|
4180
4187
|
PredefinedMetricType: NotRequired[str]
|
|
@@ -4187,7 +4194,7 @@ class MonitoringGroundTruthS3InputTypeDef(TypedDict):
|
|
|
4187
4194
|
|
|
4188
4195
|
class ModelCompilationConfigOutputTypeDef(TypedDict):
|
|
4189
4196
|
Image: NotRequired[str]
|
|
4190
|
-
OverrideEnvironment: NotRequired[
|
|
4197
|
+
OverrideEnvironment: NotRequired[Dict[str, str]]
|
|
4191
4198
|
|
|
4192
4199
|
class ModelCompilationConfigTypeDef(TypedDict):
|
|
4193
4200
|
Image: NotRequired[str]
|
|
@@ -4225,7 +4232,7 @@ class ModelPackageStatusItemTypeDef(TypedDict):
|
|
|
4225
4232
|
|
|
4226
4233
|
class ModelQuantizationConfigOutputTypeDef(TypedDict):
|
|
4227
4234
|
Image: NotRequired[str]
|
|
4228
|
-
OverrideEnvironment: NotRequired[
|
|
4235
|
+
OverrideEnvironment: NotRequired[Dict[str, str]]
|
|
4229
4236
|
|
|
4230
4237
|
class ModelQuantizationConfigTypeDef(TypedDict):
|
|
4231
4238
|
Image: NotRequired[str]
|
|
@@ -4233,7 +4240,7 @@ class ModelQuantizationConfigTypeDef(TypedDict):
|
|
|
4233
4240
|
|
|
4234
4241
|
class ModelShardingConfigOutputTypeDef(TypedDict):
|
|
4235
4242
|
Image: NotRequired[str]
|
|
4236
|
-
OverrideEnvironment: NotRequired[
|
|
4243
|
+
OverrideEnvironment: NotRequired[Dict[str, str]]
|
|
4237
4244
|
|
|
4238
4245
|
class ModelShardingConfigTypeDef(TypedDict):
|
|
4239
4246
|
Image: NotRequired[str]
|
|
@@ -4244,8 +4251,8 @@ class ModelStepMetadataTypeDef(TypedDict):
|
|
|
4244
4251
|
|
|
4245
4252
|
class MonitoringAppSpecificationOutputTypeDef(TypedDict):
|
|
4246
4253
|
ImageUri: str
|
|
4247
|
-
ContainerEntrypoint: NotRequired[
|
|
4248
|
-
ContainerArguments: NotRequired[
|
|
4254
|
+
ContainerEntrypoint: NotRequired[List[str]]
|
|
4255
|
+
ContainerArguments: NotRequired[List[str]]
|
|
4249
4256
|
RecordPreprocessorSourceUri: NotRequired[str]
|
|
4250
4257
|
PostAnalyticsProcessorSourceUri: NotRequired[str]
|
|
4251
4258
|
|
|
@@ -4292,7 +4299,7 @@ class OidcConfigForResponseTypeDef(TypedDict):
|
|
|
4292
4299
|
LogoutEndpoint: NotRequired[str]
|
|
4293
4300
|
JwksUri: NotRequired[str]
|
|
4294
4301
|
Scope: NotRequired[str]
|
|
4295
|
-
AuthenticationRequestExtraParams: NotRequired[
|
|
4302
|
+
AuthenticationRequestExtraParams: NotRequired[Dict[str, str]]
|
|
4296
4303
|
|
|
4297
4304
|
class OidcMemberDefinitionTypeDef(TypedDict):
|
|
4298
4305
|
Groups: NotRequired[Sequence[str]]
|
|
@@ -4450,15 +4457,15 @@ class RecommendationJobCompiledOutputConfigTypeDef(TypedDict):
|
|
|
4450
4457
|
|
|
4451
4458
|
class RecommendationJobPayloadConfigOutputTypeDef(TypedDict):
|
|
4452
4459
|
SamplePayloadUrl: NotRequired[str]
|
|
4453
|
-
SupportedContentTypes: NotRequired[
|
|
4460
|
+
SupportedContentTypes: NotRequired[List[str]]
|
|
4454
4461
|
|
|
4455
4462
|
class RecommendationJobResourceLimitTypeDef(TypedDict):
|
|
4456
4463
|
MaxNumberOfTests: NotRequired[int]
|
|
4457
4464
|
MaxParallelOfTests: NotRequired[int]
|
|
4458
4465
|
|
|
4459
4466
|
class RecommendationJobVpcConfigOutputTypeDef(TypedDict):
|
|
4460
|
-
SecurityGroupIds:
|
|
4461
|
-
Subnets:
|
|
4467
|
+
SecurityGroupIds: List[str]
|
|
4468
|
+
Subnets: List[str]
|
|
4462
4469
|
|
|
4463
4470
|
class RecommendationJobPayloadConfigTypeDef(TypedDict):
|
|
4464
4471
|
SamplePayloadUrl: NotRequired[str]
|
|
@@ -4523,7 +4530,7 @@ class SharingSettingsTypeDef(TypedDict):
|
|
|
4523
4530
|
S3KmsKeyId: NotRequired[str]
|
|
4524
4531
|
|
|
4525
4532
|
class SourceIpConfigOutputTypeDef(TypedDict):
|
|
4526
|
-
Cidrs:
|
|
4533
|
+
Cidrs: List[str]
|
|
4527
4534
|
|
|
4528
4535
|
class SpaceIdleSettingsTypeDef(TypedDict):
|
|
4529
4536
|
IdleTimeoutInMinutes: NotRequired[int]
|
|
@@ -4608,7 +4615,7 @@ class TimeSeriesConfigOutputTypeDef(TypedDict):
|
|
|
4608
4615
|
TargetAttributeName: str
|
|
4609
4616
|
TimestampAttributeName: str
|
|
4610
4617
|
ItemIdentifierAttributeName: str
|
|
4611
|
-
GroupingAttributeNames: NotRequired[
|
|
4618
|
+
GroupingAttributeNames: NotRequired[List[str]]
|
|
4612
4619
|
|
|
4613
4620
|
class TimeSeriesConfigTypeDef(TypedDict):
|
|
4614
4621
|
TargetAttributeName: str
|
|
@@ -4617,8 +4624,8 @@ class TimeSeriesConfigTypeDef(TypedDict):
|
|
|
4617
4624
|
GroupingAttributeNames: NotRequired[Sequence[str]]
|
|
4618
4625
|
|
|
4619
4626
|
class TimeSeriesTransformationsOutputTypeDef(TypedDict):
|
|
4620
|
-
Filling: NotRequired[
|
|
4621
|
-
Aggregation: NotRequired[
|
|
4627
|
+
Filling: NotRequired[Dict[str, Dict[FillingTypeType, str]]]
|
|
4628
|
+
Aggregation: NotRequired[Dict[str, AggregationTransformationValueType]]
|
|
4622
4629
|
|
|
4623
4630
|
class TimeSeriesTransformationsTypeDef(TypedDict):
|
|
4624
4631
|
Filling: NotRequired[Mapping[str, Mapping[FillingTypeType, str]]]
|
|
@@ -4712,8 +4719,8 @@ class UpdateTrialRequestRequestTypeDef(TypedDict):
|
|
|
4712
4719
|
|
|
4713
4720
|
class WorkforceVpcConfigResponseTypeDef(TypedDict):
|
|
4714
4721
|
VpcId: str
|
|
4715
|
-
SecurityGroupIds:
|
|
4716
|
-
Subnets:
|
|
4722
|
+
SecurityGroupIds: List[str]
|
|
4723
|
+
Subnets: List[str]
|
|
4717
4724
|
VpcEndpointId: NotRequired[str]
|
|
4718
4725
|
|
|
4719
4726
|
class ActionSummaryTypeDef(TypedDict):
|
|
@@ -5113,7 +5120,7 @@ class ImportHubContentResponseTypeDef(TypedDict):
|
|
|
5113
5120
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5114
5121
|
|
|
5115
5122
|
class ListAliasesResponseTypeDef(TypedDict):
|
|
5116
|
-
SageMakerImageVersionAliases:
|
|
5123
|
+
SageMakerImageVersionAliases: List[str]
|
|
5117
5124
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5118
5125
|
NextToken: NotRequired[str]
|
|
5119
5126
|
|
|
@@ -5301,7 +5308,7 @@ class AddTagsInputRequestTypeDef(TypedDict):
|
|
|
5301
5308
|
Tags: Sequence[TagTypeDef]
|
|
5302
5309
|
|
|
5303
5310
|
class AddTagsOutputTypeDef(TypedDict):
|
|
5304
|
-
Tags:
|
|
5311
|
+
Tags: List[TagTypeDef]
|
|
5305
5312
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5306
5313
|
|
|
5307
5314
|
class CreateExperimentRequestRequestTypeDef(TypedDict):
|
|
@@ -5364,12 +5371,12 @@ class ImportHubContentRequestRequestTypeDef(TypedDict):
|
|
|
5364
5371
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
5365
5372
|
|
|
5366
5373
|
class ListTagsOutputTypeDef(TypedDict):
|
|
5367
|
-
Tags:
|
|
5374
|
+
Tags: List[TagTypeDef]
|
|
5368
5375
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5369
5376
|
NextToken: NotRequired[str]
|
|
5370
5377
|
|
|
5371
5378
|
class AutoRollbackConfigOutputTypeDef(TypedDict):
|
|
5372
|
-
Alarms: NotRequired[
|
|
5379
|
+
Alarms: NotRequired[List[AlarmTypeDef]]
|
|
5373
5380
|
|
|
5374
5381
|
class AutoRollbackConfigTypeDef(TypedDict):
|
|
5375
5382
|
Alarms: NotRequired[Sequence[AlarmTypeDef]]
|
|
@@ -5378,7 +5385,7 @@ class HyperParameterAlgorithmSpecificationOutputTypeDef(TypedDict):
|
|
|
5378
5385
|
TrainingInputMode: TrainingInputModeType
|
|
5379
5386
|
TrainingImage: NotRequired[str]
|
|
5380
5387
|
AlgorithmName: NotRequired[str]
|
|
5381
|
-
MetricDefinitions: NotRequired[
|
|
5388
|
+
MetricDefinitions: NotRequired[List[MetricDefinitionTypeDef]]
|
|
5382
5389
|
|
|
5383
5390
|
class HyperParameterAlgorithmSpecificationTypeDef(TypedDict):
|
|
5384
5391
|
TrainingInputMode: TrainingInputModeType
|
|
@@ -5387,11 +5394,11 @@ class HyperParameterAlgorithmSpecificationTypeDef(TypedDict):
|
|
|
5387
5394
|
MetricDefinitions: NotRequired[Sequence[MetricDefinitionTypeDef]]
|
|
5388
5395
|
|
|
5389
5396
|
class AlgorithmStatusDetailsTypeDef(TypedDict):
|
|
5390
|
-
ValidationStatuses: NotRequired[
|
|
5391
|
-
ImageScanStatuses: NotRequired[
|
|
5397
|
+
ValidationStatuses: NotRequired[List[AlgorithmStatusItemTypeDef]]
|
|
5398
|
+
ImageScanStatuses: NotRequired[List[AlgorithmStatusItemTypeDef]]
|
|
5392
5399
|
|
|
5393
5400
|
class ListAlgorithmsOutputTypeDef(TypedDict):
|
|
5394
|
-
AlgorithmSummaryList:
|
|
5401
|
+
AlgorithmSummaryList: List[AlgorithmSummaryTypeDef]
|
|
5395
5402
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5396
5403
|
NextToken: NotRequired[str]
|
|
5397
5404
|
|
|
@@ -5450,7 +5457,7 @@ class AppLifecycleManagementTypeDef(TypedDict):
|
|
|
5450
5457
|
|
|
5451
5458
|
class ArtifactSourceOutputTypeDef(TypedDict):
|
|
5452
5459
|
SourceUri: str
|
|
5453
|
-
SourceTypes: NotRequired[
|
|
5460
|
+
SourceTypes: NotRequired[List[ArtifactSourceTypeTypeDef]]
|
|
5454
5461
|
|
|
5455
5462
|
class ArtifactSourceTypeDef(TypedDict):
|
|
5456
5463
|
SourceUri: str
|
|
@@ -5468,10 +5475,10 @@ AsyncInferenceNotificationConfigUnionTypeDef = Union[
|
|
|
5468
5475
|
|
|
5469
5476
|
class AutoMLCandidateGenerationConfigOutputTypeDef(TypedDict):
|
|
5470
5477
|
FeatureSpecificationS3Uri: NotRequired[str]
|
|
5471
|
-
AlgorithmsConfig: NotRequired[
|
|
5478
|
+
AlgorithmsConfig: NotRequired[List[AutoMLAlgorithmConfigOutputTypeDef]]
|
|
5472
5479
|
|
|
5473
5480
|
class CandidateGenerationConfigOutputTypeDef(TypedDict):
|
|
5474
|
-
AlgorithmsConfig: NotRequired[
|
|
5481
|
+
AlgorithmsConfig: NotRequired[List[AutoMLAlgorithmConfigOutputTypeDef]]
|
|
5475
5482
|
|
|
5476
5483
|
AutoMLAlgorithmConfigUnionTypeDef = Union[
|
|
5477
5484
|
AutoMLAlgorithmConfigTypeDef, AutoMLAlgorithmConfigOutputTypeDef
|
|
@@ -5505,7 +5512,7 @@ class AutoMLJobSummaryTypeDef(TypedDict):
|
|
|
5505
5512
|
LastModifiedTime: datetime
|
|
5506
5513
|
EndTime: NotRequired[datetime]
|
|
5507
5514
|
FailureReason: NotRequired[str]
|
|
5508
|
-
PartialFailureReasons: NotRequired[
|
|
5515
|
+
PartialFailureReasons: NotRequired[List[AutoMLPartialFailureReasonTypeDef]]
|
|
5509
5516
|
|
|
5510
5517
|
class AutoMLProblemTypeResolvedAttributesTypeDef(TypedDict):
|
|
5511
5518
|
TabularResolvedAttributes: NotRequired[TabularResolvedAttributesTypeDef]
|
|
@@ -5531,8 +5538,8 @@ class NetworkConfigOutputTypeDef(TypedDict):
|
|
|
5531
5538
|
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
5532
5539
|
|
|
5533
5540
|
class BatchDeleteClusterNodesResponseTypeDef(TypedDict):
|
|
5534
|
-
Failed:
|
|
5535
|
-
Successful:
|
|
5541
|
+
Failed: List[BatchDeleteClusterNodesErrorTypeDef]
|
|
5542
|
+
Successful: List[str]
|
|
5536
5543
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5537
5544
|
|
|
5538
5545
|
class BiasTypeDef(TypedDict):
|
|
@@ -5562,11 +5569,11 @@ class ModelQualityTypeDef(TypedDict):
|
|
|
5562
5569
|
class CallbackStepMetadataTypeDef(TypedDict):
|
|
5563
5570
|
CallbackToken: NotRequired[str]
|
|
5564
5571
|
SqsQueueUrl: NotRequired[str]
|
|
5565
|
-
OutputParameters: NotRequired[
|
|
5572
|
+
OutputParameters: NotRequired[List[OutputParameterTypeDef]]
|
|
5566
5573
|
|
|
5567
5574
|
class LambdaStepMetadataTypeDef(TypedDict):
|
|
5568
5575
|
Arn: NotRequired[str]
|
|
5569
|
-
OutputParameters: NotRequired[
|
|
5576
|
+
OutputParameters: NotRequired[List[OutputParameterTypeDef]]
|
|
5570
5577
|
|
|
5571
5578
|
class SendPipelineExecutionStepSuccessRequestRequestTypeDef(TypedDict):
|
|
5572
5579
|
CallbackToken: str
|
|
@@ -5575,13 +5582,13 @@ class SendPipelineExecutionStepSuccessRequestRequestTypeDef(TypedDict):
|
|
|
5575
5582
|
|
|
5576
5583
|
class CandidatePropertiesTypeDef(TypedDict):
|
|
5577
5584
|
CandidateArtifactLocations: NotRequired[CandidateArtifactLocationsTypeDef]
|
|
5578
|
-
CandidateMetrics: NotRequired[
|
|
5585
|
+
CandidateMetrics: NotRequired[List[MetricDatumTypeDef]]
|
|
5579
5586
|
|
|
5580
5587
|
class CanvasAppSettingsOutputTypeDef(TypedDict):
|
|
5581
5588
|
TimeSeriesForecastingSettings: NotRequired[TimeSeriesForecastingSettingsTypeDef]
|
|
5582
5589
|
ModelRegisterSettings: NotRequired[ModelRegisterSettingsTypeDef]
|
|
5583
5590
|
WorkspaceSettings: NotRequired[WorkspaceSettingsTypeDef]
|
|
5584
|
-
IdentityProviderOAuthSettings: NotRequired[
|
|
5591
|
+
IdentityProviderOAuthSettings: NotRequired[List[IdentityProviderOAuthSettingTypeDef]]
|
|
5585
5592
|
DirectDeploySettings: NotRequired[DirectDeploySettingsTypeDef]
|
|
5586
5593
|
KendraSettings: NotRequired[KendraSettingsTypeDef]
|
|
5587
5594
|
GenerativeAiSettings: NotRequired[GenerativeAiSettingsTypeDef]
|
|
@@ -5625,13 +5632,13 @@ CaptureContentTypeHeaderUnionTypeDef = Union[
|
|
|
5625
5632
|
class DataCaptureConfigOutputTypeDef(TypedDict):
|
|
5626
5633
|
InitialSamplingPercentage: int
|
|
5627
5634
|
DestinationS3Uri: str
|
|
5628
|
-
CaptureOptions:
|
|
5635
|
+
CaptureOptions: List[CaptureOptionTypeDef]
|
|
5629
5636
|
EnableCapture: NotRequired[bool]
|
|
5630
5637
|
KmsKeyId: NotRequired[str]
|
|
5631
5638
|
CaptureContentTypeHeader: NotRequired[CaptureContentTypeHeaderOutputTypeDef]
|
|
5632
5639
|
|
|
5633
5640
|
class EnvironmentParameterRangesOutputTypeDef(TypedDict):
|
|
5634
|
-
CategoricalParameterRanges: NotRequired[
|
|
5641
|
+
CategoricalParameterRanges: NotRequired[List[CategoricalParameterOutputTypeDef]]
|
|
5635
5642
|
|
|
5636
5643
|
CategoricalParameterRangeSpecificationUnionTypeDef = Union[
|
|
5637
5644
|
CategoricalParameterRangeSpecificationTypeDef,
|
|
@@ -5671,13 +5678,13 @@ class ClusterOrchestratorTypeDef(TypedDict):
|
|
|
5671
5678
|
Eks: ClusterOrchestratorEksConfigTypeDef
|
|
5672
5679
|
|
|
5673
5680
|
class ListClusterSchedulerConfigsResponseTypeDef(TypedDict):
|
|
5674
|
-
ClusterSchedulerConfigSummaries:
|
|
5681
|
+
ClusterSchedulerConfigSummaries: List[ClusterSchedulerConfigSummaryTypeDef]
|
|
5675
5682
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5676
5683
|
NextToken: NotRequired[str]
|
|
5677
5684
|
|
|
5678
5685
|
class ListClustersResponseTypeDef(TypedDict):
|
|
5679
5686
|
NextToken: str
|
|
5680
|
-
ClusterSummaries:
|
|
5687
|
+
ClusterSummaries: List[ClusterSummaryTypeDef]
|
|
5681
5688
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5682
5689
|
|
|
5683
5690
|
class CodeEditorAppImageConfigOutputTypeDef(TypedDict):
|
|
@@ -5690,8 +5697,8 @@ class JupyterLabAppImageConfigOutputTypeDef(TypedDict):
|
|
|
5690
5697
|
|
|
5691
5698
|
class KernelGatewayAppSettingsOutputTypeDef(TypedDict):
|
|
5692
5699
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
5693
|
-
CustomImages: NotRequired[
|
|
5694
|
-
LifecycleConfigArns: NotRequired[
|
|
5700
|
+
CustomImages: NotRequired[List[CustomImageTypeDef]]
|
|
5701
|
+
LifecycleConfigArns: NotRequired[List[str]]
|
|
5695
5702
|
|
|
5696
5703
|
class KernelGatewayAppSettingsTypeDef(TypedDict):
|
|
5697
5704
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
@@ -5700,7 +5707,7 @@ class KernelGatewayAppSettingsTypeDef(TypedDict):
|
|
|
5700
5707
|
|
|
5701
5708
|
class RSessionAppSettingsOutputTypeDef(TypedDict):
|
|
5702
5709
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
5703
|
-
CustomImages: NotRequired[
|
|
5710
|
+
CustomImages: NotRequired[List[CustomImageTypeDef]]
|
|
5704
5711
|
|
|
5705
5712
|
class RSessionAppSettingsTypeDef(TypedDict):
|
|
5706
5713
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
@@ -5728,8 +5735,8 @@ class DescribeCodeRepositoryOutputTypeDef(TypedDict):
|
|
|
5728
5735
|
|
|
5729
5736
|
class JupyterServerAppSettingsOutputTypeDef(TypedDict):
|
|
5730
5737
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
5731
|
-
LifecycleConfigArns: NotRequired[
|
|
5732
|
-
CodeRepositories: NotRequired[
|
|
5738
|
+
LifecycleConfigArns: NotRequired[List[str]]
|
|
5739
|
+
CodeRepositories: NotRequired[List[CodeRepositoryTypeDef]]
|
|
5733
5740
|
|
|
5734
5741
|
class JupyterServerAppSettingsTypeDef(TypedDict):
|
|
5735
5742
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
@@ -5742,20 +5749,20 @@ class CollectionConfigTypeDef(TypedDict):
|
|
|
5742
5749
|
class DebugHookConfigOutputTypeDef(TypedDict):
|
|
5743
5750
|
S3OutputPath: str
|
|
5744
5751
|
LocalPath: NotRequired[str]
|
|
5745
|
-
HookParameters: NotRequired[
|
|
5746
|
-
CollectionConfigurations: NotRequired[
|
|
5752
|
+
HookParameters: NotRequired[Dict[str, str]]
|
|
5753
|
+
CollectionConfigurations: NotRequired[List[CollectionConfigurationOutputTypeDef]]
|
|
5747
5754
|
|
|
5748
5755
|
CollectionConfigurationUnionTypeDef = Union[
|
|
5749
5756
|
CollectionConfigurationTypeDef, CollectionConfigurationOutputTypeDef
|
|
5750
5757
|
]
|
|
5751
5758
|
|
|
5752
5759
|
class ListCompilationJobsResponseTypeDef(TypedDict):
|
|
5753
|
-
CompilationJobSummaries:
|
|
5760
|
+
CompilationJobSummaries: List[CompilationJobSummaryTypeDef]
|
|
5754
5761
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5755
5762
|
NextToken: NotRequired[str]
|
|
5756
5763
|
|
|
5757
5764
|
class ComputeQuotaConfigOutputTypeDef(TypedDict):
|
|
5758
|
-
ComputeQuotaResources: NotRequired[
|
|
5765
|
+
ComputeQuotaResources: NotRequired[List[ComputeQuotaResourceConfigTypeDef]]
|
|
5759
5766
|
ResourceSharingConfig: NotRequired[ResourceSharingConfigTypeDef]
|
|
5760
5767
|
PreemptTeamTasks: NotRequired[PreemptTeamTasksType]
|
|
5761
5768
|
|
|
@@ -5855,7 +5862,7 @@ class DescribeHubResponseTypeDef(TypedDict):
|
|
|
5855
5862
|
HubArn: str
|
|
5856
5863
|
HubDisplayName: str
|
|
5857
5864
|
HubDescription: str
|
|
5858
|
-
HubSearchKeywords:
|
|
5865
|
+
HubSearchKeywords: List[str]
|
|
5859
5866
|
S3StorageConfig: HubS3StorageConfigTypeDef
|
|
5860
5867
|
HubStatus: HubStatusType
|
|
5861
5868
|
FailureReason: str
|
|
@@ -5911,7 +5918,7 @@ class DescribeNotebookInstanceOutputTypeDef(TypedDict):
|
|
|
5911
5918
|
Url: str
|
|
5912
5919
|
InstanceType: InstanceTypeType
|
|
5913
5920
|
SubnetId: str
|
|
5914
|
-
SecurityGroups:
|
|
5921
|
+
SecurityGroups: List[str]
|
|
5915
5922
|
RoleArn: str
|
|
5916
5923
|
KmsKeyId: str
|
|
5917
5924
|
NetworkInterfaceId: str
|
|
@@ -5920,9 +5927,9 @@ class DescribeNotebookInstanceOutputTypeDef(TypedDict):
|
|
|
5920
5927
|
NotebookInstanceLifecycleConfigName: str
|
|
5921
5928
|
DirectInternetAccess: DirectInternetAccessType
|
|
5922
5929
|
VolumeSizeInGB: int
|
|
5923
|
-
AcceleratorTypes:
|
|
5930
|
+
AcceleratorTypes: List[NotebookInstanceAcceleratorTypeType]
|
|
5924
5931
|
DefaultCodeRepository: str
|
|
5925
|
-
AdditionalCodeRepositories:
|
|
5932
|
+
AdditionalCodeRepositories: List[str]
|
|
5926
5933
|
RootAccess: RootAccessType
|
|
5927
5934
|
PlatformIdentifier: str
|
|
5928
5935
|
InstanceMetadataServiceConfiguration: InstanceMetadataServiceConfigurationTypeDef
|
|
@@ -5952,8 +5959,8 @@ class CreateNotebookInstanceLifecycleConfigInputRequestTypeDef(TypedDict):
|
|
|
5952
5959
|
class DescribeNotebookInstanceLifecycleConfigOutputTypeDef(TypedDict):
|
|
5953
5960
|
NotebookInstanceLifecycleConfigArn: str
|
|
5954
5961
|
NotebookInstanceLifecycleConfigName: str
|
|
5955
|
-
OnCreate:
|
|
5956
|
-
OnStart:
|
|
5962
|
+
OnCreate: List[NotebookInstanceLifecycleHookTypeDef]
|
|
5963
|
+
OnStart: List[NotebookInstanceLifecycleHookTypeDef]
|
|
5957
5964
|
LastModifiedTime: datetime
|
|
5958
5965
|
CreationTime: datetime
|
|
5959
5966
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -6818,11 +6825,11 @@ class DeleteDomainRequestRequestTypeDef(TypedDict):
|
|
|
6818
6825
|
class InferenceComponentContainerSpecificationSummaryTypeDef(TypedDict):
|
|
6819
6826
|
DeployedImage: NotRequired[DeployedImageTypeDef]
|
|
6820
6827
|
ArtifactUrl: NotRequired[str]
|
|
6821
|
-
Environment: NotRequired[
|
|
6828
|
+
Environment: NotRequired[Dict[str, str]]
|
|
6822
6829
|
|
|
6823
6830
|
class DeploymentRecommendationTypeDef(TypedDict):
|
|
6824
6831
|
RecommendationStatus: RecommendationStatusType
|
|
6825
|
-
RealTimeInferenceRecommendations: NotRequired[
|
|
6832
|
+
RealTimeInferenceRecommendations: NotRequired[List[RealTimeInferenceRecommendationTypeDef]]
|
|
6826
6833
|
|
|
6827
6834
|
class DeploymentStageStatusSummaryTypeDef(TypedDict):
|
|
6828
6835
|
StageName: str
|
|
@@ -6838,7 +6845,7 @@ class DescribeDeviceResponseTypeDef(TypedDict):
|
|
|
6838
6845
|
IotThingName: str
|
|
6839
6846
|
RegistrationTime: datetime
|
|
6840
6847
|
LatestHeartbeat: datetime
|
|
6841
|
-
Models:
|
|
6848
|
+
Models: List[EdgeModelTypeDef]
|
|
6842
6849
|
MaxModels: int
|
|
6843
6850
|
AgentVersion: str
|
|
6844
6851
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -6915,7 +6922,7 @@ class DescribeFeatureMetadataResponseTypeDef(TypedDict):
|
|
|
6915
6922
|
CreationTime: datetime
|
|
6916
6923
|
LastModifiedTime: datetime
|
|
6917
6924
|
Description: str
|
|
6918
|
-
Parameters:
|
|
6925
|
+
Parameters: List[FeatureParameterTypeDef]
|
|
6919
6926
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6920
6927
|
|
|
6921
6928
|
class FeatureMetadataTypeDef(TypedDict):
|
|
@@ -6926,7 +6933,7 @@ class FeatureMetadataTypeDef(TypedDict):
|
|
|
6926
6933
|
CreationTime: NotRequired[datetime]
|
|
6927
6934
|
LastModifiedTime: NotRequired[datetime]
|
|
6928
6935
|
Description: NotRequired[str]
|
|
6929
|
-
Parameters: NotRequired[
|
|
6936
|
+
Parameters: NotRequired[List[FeatureParameterTypeDef]]
|
|
6930
6937
|
|
|
6931
6938
|
class UpdateFeatureMetadataRequestRequestTypeDef(TypedDict):
|
|
6932
6939
|
FeatureGroupName: str
|
|
@@ -6950,8 +6957,8 @@ class DescribeHubContentResponseTypeDef(TypedDict):
|
|
|
6950
6957
|
SageMakerPublicHubContentArn: str
|
|
6951
6958
|
ReferenceMinVersion: str
|
|
6952
6959
|
SupportStatus: HubContentSupportStatusType
|
|
6953
|
-
HubContentSearchKeywords:
|
|
6954
|
-
HubContentDependencies:
|
|
6960
|
+
HubContentSearchKeywords: List[str]
|
|
6961
|
+
HubContentDependencies: List[HubContentDependencyTypeDef]
|
|
6955
6962
|
HubContentStatus: HubContentStatusType
|
|
6956
6963
|
FailureReason: str
|
|
6957
6964
|
CreationTime: datetime
|
|
@@ -6995,7 +7002,7 @@ class DescribeModelCardExportJobResponseTypeDef(TypedDict):
|
|
|
6995
7002
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6996
7003
|
|
|
6997
7004
|
class ListMonitoringExecutionsResponseTypeDef(TypedDict):
|
|
6998
|
-
MonitoringExecutionSummaries:
|
|
7005
|
+
MonitoringExecutionSummaries: List[MonitoringExecutionSummaryTypeDef]
|
|
6999
7006
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7000
7007
|
NextToken: NotRequired[str]
|
|
7001
7008
|
|
|
@@ -7025,7 +7032,7 @@ class DescribeSubscribedWorkteamResponseTypeDef(TypedDict):
|
|
|
7025
7032
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7026
7033
|
|
|
7027
7034
|
class ListSubscribedWorkteamsResponseTypeDef(TypedDict):
|
|
7028
|
-
SubscribedWorkteams:
|
|
7035
|
+
SubscribedWorkteams: List[SubscribedWorkteamTypeDef]
|
|
7029
7036
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7030
7037
|
NextToken: NotRequired[str]
|
|
7031
7038
|
|
|
@@ -7054,8 +7061,8 @@ class DescribeTrainingPlanResponseTypeDef(TypedDict):
|
|
|
7054
7061
|
TotalInstanceCount: int
|
|
7055
7062
|
AvailableInstanceCount: int
|
|
7056
7063
|
InUseInstanceCount: int
|
|
7057
|
-
TargetResources:
|
|
7058
|
-
ReservedCapacitySummaries:
|
|
7064
|
+
TargetResources: List[SageMakerResourceNameType]
|
|
7065
|
+
ReservedCapacitySummaries: List[ReservedCapacitySummaryTypeDef]
|
|
7059
7066
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7060
7067
|
|
|
7061
7068
|
class TrainingPlanSummaryTypeDef(TypedDict):
|
|
@@ -7072,8 +7079,8 @@ class TrainingPlanSummaryTypeDef(TypedDict):
|
|
|
7072
7079
|
TotalInstanceCount: NotRequired[int]
|
|
7073
7080
|
AvailableInstanceCount: NotRequired[int]
|
|
7074
7081
|
InUseInstanceCount: NotRequired[int]
|
|
7075
|
-
TargetResources: NotRequired[
|
|
7076
|
-
ReservedCapacitySummaries: NotRequired[
|
|
7082
|
+
TargetResources: NotRequired[List[SageMakerResourceNameType]]
|
|
7083
|
+
ReservedCapacitySummaries: NotRequired[List[ReservedCapacitySummaryTypeDef]]
|
|
7077
7084
|
|
|
7078
7085
|
class TrialSummaryTypeDef(TypedDict):
|
|
7079
7086
|
TrialArn: NotRequired[str]
|
|
@@ -7090,12 +7097,12 @@ class DesiredWeightAndCapacityTypeDef(TypedDict):
|
|
|
7090
7097
|
ServerlessUpdateConfig: NotRequired[ProductionVariantServerlessUpdateConfigTypeDef]
|
|
7091
7098
|
|
|
7092
7099
|
class ListStageDevicesResponseTypeDef(TypedDict):
|
|
7093
|
-
DeviceDeploymentSummaries:
|
|
7100
|
+
DeviceDeploymentSummaries: List[DeviceDeploymentSummaryTypeDef]
|
|
7094
7101
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7095
7102
|
NextToken: NotRequired[str]
|
|
7096
7103
|
|
|
7097
7104
|
class ListDeviceFleetsResponseTypeDef(TypedDict):
|
|
7098
|
-
DeviceFleetSummaries:
|
|
7105
|
+
DeviceFleetSummaries: List[DeviceFleetSummaryTypeDef]
|
|
7099
7106
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7100
7107
|
NextToken: NotRequired[str]
|
|
7101
7108
|
|
|
@@ -7111,7 +7118,7 @@ class DeviceSummaryTypeDef(TypedDict):
|
|
|
7111
7118
|
IotThingName: NotRequired[str]
|
|
7112
7119
|
RegistrationTime: NotRequired[datetime]
|
|
7113
7120
|
LatestHeartbeat: NotRequired[datetime]
|
|
7114
|
-
Models: NotRequired[
|
|
7121
|
+
Models: NotRequired[List[EdgeModelSummaryTypeDef]]
|
|
7115
7122
|
AgentVersion: NotRequired[str]
|
|
7116
7123
|
|
|
7117
7124
|
class RegisterDevicesRequestRequestTypeDef(TypedDict):
|
|
@@ -7126,7 +7133,7 @@ class UpdateDevicesRequestRequestTypeDef(TypedDict):
|
|
|
7126
7133
|
DockerSettingsUnionTypeDef = Union[DockerSettingsTypeDef, DockerSettingsOutputTypeDef]
|
|
7127
7134
|
|
|
7128
7135
|
class ListDomainsResponseTypeDef(TypedDict):
|
|
7129
|
-
Domains:
|
|
7136
|
+
Domains: List[DomainDetailsTypeDef]
|
|
7130
7137
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7131
7138
|
NextToken: NotRequired[str]
|
|
7132
7139
|
|
|
@@ -7143,7 +7150,7 @@ class SpaceStorageSettingsTypeDef(TypedDict):
|
|
|
7143
7150
|
EbsStorageSettings: NotRequired[EbsStorageSettingsTypeDef]
|
|
7144
7151
|
|
|
7145
7152
|
class ListEdgeDeploymentPlansResponseTypeDef(TypedDict):
|
|
7146
|
-
EdgeDeploymentPlanSummaries:
|
|
7153
|
+
EdgeDeploymentPlanSummaries: List[EdgeDeploymentPlanSummaryTypeDef]
|
|
7147
7154
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7148
7155
|
NextToken: NotRequired[str]
|
|
7149
7156
|
|
|
@@ -7154,19 +7161,19 @@ class GetDeviceFleetReportResponseTypeDef(TypedDict):
|
|
|
7154
7161
|
Description: str
|
|
7155
7162
|
ReportGenerated: datetime
|
|
7156
7163
|
DeviceStats: DeviceStatsTypeDef
|
|
7157
|
-
AgentVersions:
|
|
7158
|
-
ModelStats:
|
|
7164
|
+
AgentVersions: List[AgentVersionTypeDef]
|
|
7165
|
+
ModelStats: List[EdgeModelStatTypeDef]
|
|
7159
7166
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7160
7167
|
|
|
7161
7168
|
class ListEdgePackagingJobsResponseTypeDef(TypedDict):
|
|
7162
|
-
EdgePackagingJobSummaries:
|
|
7169
|
+
EdgePackagingJobSummaries: List[EdgePackagingJobSummaryTypeDef]
|
|
7163
7170
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7164
7171
|
NextToken: NotRequired[str]
|
|
7165
7172
|
|
|
7166
7173
|
EmrSettingsUnionTypeDef = Union[EmrSettingsTypeDef, EmrSettingsOutputTypeDef]
|
|
7167
7174
|
|
|
7168
7175
|
class ListEndpointConfigsOutputTypeDef(TypedDict):
|
|
7169
|
-
EndpointConfigs:
|
|
7176
|
+
EndpointConfigs: List[EndpointConfigSummaryTypeDef]
|
|
7170
7177
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7171
7178
|
NextToken: NotRequired[str]
|
|
7172
7179
|
|
|
@@ -7182,13 +7189,13 @@ class EndpointPerformanceTypeDef(TypedDict):
|
|
|
7182
7189
|
EndpointInfo: EndpointInfoTypeDef
|
|
7183
7190
|
|
|
7184
7191
|
class ListEndpointsOutputTypeDef(TypedDict):
|
|
7185
|
-
Endpoints:
|
|
7192
|
+
Endpoints: List[EndpointSummaryTypeDef]
|
|
7186
7193
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7187
7194
|
NextToken: NotRequired[str]
|
|
7188
7195
|
|
|
7189
7196
|
class ModelConfigurationTypeDef(TypedDict):
|
|
7190
7197
|
InferenceSpecificationName: NotRequired[str]
|
|
7191
|
-
EnvironmentParameters: NotRequired[
|
|
7198
|
+
EnvironmentParameters: NotRequired[List[EnvironmentParameterTypeDef]]
|
|
7192
7199
|
CompilationJobName: NotRequired[str]
|
|
7193
7200
|
|
|
7194
7201
|
class NestedFiltersTypeDef(TypedDict):
|
|
@@ -7200,7 +7207,7 @@ class HyperParameterTrainingJobSummaryTypeDef(TypedDict):
|
|
|
7200
7207
|
TrainingJobArn: str
|
|
7201
7208
|
CreationTime: datetime
|
|
7202
7209
|
TrainingJobStatus: TrainingJobStatusType
|
|
7203
|
-
TunedHyperParameters:
|
|
7210
|
+
TunedHyperParameters: Dict[str, str]
|
|
7204
7211
|
TrainingJobDefinitionName: NotRequired[str]
|
|
7205
7212
|
TuningJobName: NotRequired[str]
|
|
7206
7213
|
TrainingStartTime: NotRequired[datetime]
|
|
@@ -7212,7 +7219,7 @@ class HyperParameterTrainingJobSummaryTypeDef(TypedDict):
|
|
|
7212
7219
|
ObjectiveStatus: NotRequired[ObjectiveStatusType]
|
|
7213
7220
|
|
|
7214
7221
|
class ListFlowDefinitionsResponseTypeDef(TypedDict):
|
|
7215
|
-
FlowDefinitionSummaries:
|
|
7222
|
+
FlowDefinitionSummaries: List[FlowDefinitionSummaryTypeDef]
|
|
7216
7223
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7217
7224
|
NextToken: NotRequired[str]
|
|
7218
7225
|
|
|
@@ -7224,7 +7231,7 @@ class GetScalingConfigurationRecommendationRequestRequestTypeDef(TypedDict):
|
|
|
7224
7231
|
ScalingPolicyObjective: NotRequired[ScalingPolicyObjectiveTypeDef]
|
|
7225
7232
|
|
|
7226
7233
|
class GetSearchSuggestionsResponseTypeDef(TypedDict):
|
|
7227
|
-
PropertyNameSuggestions:
|
|
7234
|
+
PropertyNameSuggestions: List[PropertyNameSuggestionTypeDef]
|
|
7228
7235
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7229
7236
|
|
|
7230
7237
|
class UpdateCodeRepositoryInputRequestTypeDef(TypedDict):
|
|
@@ -7232,27 +7239,27 @@ class UpdateCodeRepositoryInputRequestTypeDef(TypedDict):
|
|
|
7232
7239
|
GitConfig: NotRequired[GitConfigForUpdateTypeDef]
|
|
7233
7240
|
|
|
7234
7241
|
class StudioWebPortalSettingsOutputTypeDef(TypedDict):
|
|
7235
|
-
HiddenMlTools: NotRequired[
|
|
7236
|
-
HiddenAppTypes: NotRequired[
|
|
7237
|
-
HiddenInstanceTypes: NotRequired[
|
|
7238
|
-
HiddenSageMakerImageVersionAliases: NotRequired[
|
|
7242
|
+
HiddenMlTools: NotRequired[List[MlToolsType]]
|
|
7243
|
+
HiddenAppTypes: NotRequired[List[AppTypeType]]
|
|
7244
|
+
HiddenInstanceTypes: NotRequired[List[AppInstanceTypeType]]
|
|
7245
|
+
HiddenSageMakerImageVersionAliases: NotRequired[List[HiddenSageMakerImageOutputTypeDef]]
|
|
7239
7246
|
|
|
7240
7247
|
HiddenSageMakerImageUnionTypeDef = Union[
|
|
7241
7248
|
HiddenSageMakerImageTypeDef, HiddenSageMakerImageOutputTypeDef
|
|
7242
7249
|
]
|
|
7243
7250
|
|
|
7244
7251
|
class ListHubContentVersionsResponseTypeDef(TypedDict):
|
|
7245
|
-
HubContentSummaries:
|
|
7252
|
+
HubContentSummaries: List[HubContentInfoTypeDef]
|
|
7246
7253
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7247
7254
|
NextToken: NotRequired[str]
|
|
7248
7255
|
|
|
7249
7256
|
class ListHubContentsResponseTypeDef(TypedDict):
|
|
7250
|
-
HubContentSummaries:
|
|
7257
|
+
HubContentSummaries: List[HubContentInfoTypeDef]
|
|
7251
7258
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7252
7259
|
NextToken: NotRequired[str]
|
|
7253
7260
|
|
|
7254
7261
|
class ListHubsResponseTypeDef(TypedDict):
|
|
7255
|
-
HubSummaries:
|
|
7262
|
+
HubSummaries: List[HubInfoTypeDef]
|
|
7256
7263
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7257
7264
|
NextToken: NotRequired[str]
|
|
7258
7265
|
|
|
@@ -7260,7 +7267,7 @@ class HumanLoopActivationConfigTypeDef(TypedDict):
|
|
|
7260
7267
|
HumanLoopActivationConditionsConfig: HumanLoopActivationConditionsConfigTypeDef
|
|
7261
7268
|
|
|
7262
7269
|
class ListHumanTaskUisResponseTypeDef(TypedDict):
|
|
7263
|
-
HumanTaskUiSummaries:
|
|
7270
|
+
HumanTaskUiSummaries: List[HumanTaskUiSummaryTypeDef]
|
|
7264
7271
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7265
7272
|
NextToken: NotRequired[str]
|
|
7266
7273
|
|
|
@@ -7270,7 +7277,7 @@ class HyperParameterTuningResourceConfigOutputTypeDef(TypedDict):
|
|
|
7270
7277
|
VolumeSizeInGB: NotRequired[int]
|
|
7271
7278
|
VolumeKmsKeyId: NotRequired[str]
|
|
7272
7279
|
AllocationStrategy: NotRequired[Literal["Prioritized"]]
|
|
7273
|
-
InstanceConfigs: NotRequired[
|
|
7280
|
+
InstanceConfigs: NotRequired[List[HyperParameterTuningInstanceConfigTypeDef]]
|
|
7274
7281
|
|
|
7275
7282
|
class HyperParameterTuningResourceConfigTypeDef(TypedDict):
|
|
7276
7283
|
InstanceType: NotRequired[TrainingInstanceTypeType]
|
|
@@ -7296,7 +7303,7 @@ class HyperParameterTuningJobStrategyConfigTypeDef(TypedDict):
|
|
|
7296
7303
|
HyperbandStrategyConfig: NotRequired[HyperbandStrategyConfigTypeDef]
|
|
7297
7304
|
|
|
7298
7305
|
class HyperParameterTuningJobWarmStartConfigOutputTypeDef(TypedDict):
|
|
7299
|
-
ParentHyperParameterTuningJobs:
|
|
7306
|
+
ParentHyperParameterTuningJobs: List[ParentHyperParameterTuningJobTypeDef]
|
|
7300
7307
|
WarmStartType: HyperParameterTuningJobWarmStartTypeType
|
|
7301
7308
|
|
|
7302
7309
|
class HyperParameterTuningJobWarmStartConfigTypeDef(TypedDict):
|
|
@@ -7317,12 +7324,12 @@ class ImageConfigTypeDef(TypedDict):
|
|
|
7317
7324
|
RepositoryAuthConfig: NotRequired[RepositoryAuthConfigTypeDef]
|
|
7318
7325
|
|
|
7319
7326
|
class ListImagesResponseTypeDef(TypedDict):
|
|
7320
|
-
Images:
|
|
7327
|
+
Images: List[ImageTypeDef]
|
|
7321
7328
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7322
7329
|
NextToken: NotRequired[str]
|
|
7323
7330
|
|
|
7324
7331
|
class ListImageVersionsResponseTypeDef(TypedDict):
|
|
7325
|
-
ImageVersions:
|
|
7332
|
+
ImageVersions: List[ImageVersionTypeDef]
|
|
7326
7333
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7327
7334
|
NextToken: NotRequired[str]
|
|
7328
7335
|
|
|
@@ -7340,12 +7347,12 @@ InferenceComponentSpecificationTypeDef = TypedDict(
|
|
|
7340
7347
|
)
|
|
7341
7348
|
|
|
7342
7349
|
class ListInferenceComponentsOutputTypeDef(TypedDict):
|
|
7343
|
-
InferenceComponents:
|
|
7350
|
+
InferenceComponents: List[InferenceComponentSummaryTypeDef]
|
|
7344
7351
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7345
7352
|
NextToken: NotRequired[str]
|
|
7346
7353
|
|
|
7347
7354
|
class ListInferenceRecommendationsJobsResponseTypeDef(TypedDict):
|
|
7348
|
-
InferenceRecommendationsJobs:
|
|
7355
|
+
InferenceRecommendationsJobs: List[InferenceRecommendationsJobTypeDef]
|
|
7349
7356
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7350
7357
|
NextToken: NotRequired[str]
|
|
7351
7358
|
|
|
@@ -7355,7 +7362,7 @@ class ResourceConfigOutputTypeDef(TypedDict):
|
|
|
7355
7362
|
InstanceCount: NotRequired[int]
|
|
7356
7363
|
VolumeKmsKeyId: NotRequired[str]
|
|
7357
7364
|
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
7358
|
-
InstanceGroups: NotRequired[
|
|
7365
|
+
InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
|
|
7359
7366
|
TrainingPlanArn: NotRequired[str]
|
|
7360
7367
|
|
|
7361
7368
|
class ResourceConfigTypeDef(TypedDict):
|
|
@@ -7375,13 +7382,13 @@ class ParameterRangeOutputTypeDef(TypedDict):
|
|
|
7375
7382
|
]
|
|
7376
7383
|
|
|
7377
7384
|
class ParameterRangesOutputTypeDef(TypedDict):
|
|
7378
|
-
IntegerParameterRanges: NotRequired[
|
|
7379
|
-
ContinuousParameterRanges: NotRequired[
|
|
7380
|
-
CategoricalParameterRanges: NotRequired[
|
|
7381
|
-
AutoParameters: NotRequired[
|
|
7385
|
+
IntegerParameterRanges: NotRequired[List[IntegerParameterRangeTypeDef]]
|
|
7386
|
+
ContinuousParameterRanges: NotRequired[List[ContinuousParameterRangeTypeDef]]
|
|
7387
|
+
CategoricalParameterRanges: NotRequired[List[CategoricalParameterRangeOutputTypeDef]]
|
|
7388
|
+
AutoParameters: NotRequired[List[AutoParameterTypeDef]]
|
|
7382
7389
|
|
|
7383
7390
|
class KernelGatewayImageConfigOutputTypeDef(TypedDict):
|
|
7384
|
-
KernelSpecs:
|
|
7391
|
+
KernelSpecs: List[KernelSpecTypeDef]
|
|
7385
7392
|
FileSystemConfig: NotRequired[FileSystemConfigTypeDef]
|
|
7386
7393
|
|
|
7387
7394
|
class KernelGatewayImageConfigTypeDef(TypedDict):
|
|
@@ -7405,7 +7412,7 @@ class LabelingJobDataSourceTypeDef(TypedDict):
|
|
|
7405
7412
|
SnsDataSource: NotRequired[LabelingJobSnsDataSourceTypeDef]
|
|
7406
7413
|
|
|
7407
7414
|
class ListLineageGroupsResponseTypeDef(TypedDict):
|
|
7408
|
-
LineageGroupSummaries:
|
|
7415
|
+
LineageGroupSummaries: List[LineageGroupSummaryTypeDef]
|
|
7409
7416
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7410
7417
|
NextToken: NotRequired[str]
|
|
7411
7418
|
|
|
@@ -8085,127 +8092,127 @@ class ListWorkteamsRequestPaginateTypeDef(TypedDict):
|
|
|
8085
8092
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
8086
8093
|
|
|
8087
8094
|
class ListDataQualityJobDefinitionsResponseTypeDef(TypedDict):
|
|
8088
|
-
JobDefinitionSummaries:
|
|
8095
|
+
JobDefinitionSummaries: List[MonitoringJobDefinitionSummaryTypeDef]
|
|
8089
8096
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8090
8097
|
NextToken: NotRequired[str]
|
|
8091
8098
|
|
|
8092
8099
|
class ListModelBiasJobDefinitionsResponseTypeDef(TypedDict):
|
|
8093
|
-
JobDefinitionSummaries:
|
|
8100
|
+
JobDefinitionSummaries: List[MonitoringJobDefinitionSummaryTypeDef]
|
|
8094
8101
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8095
8102
|
NextToken: NotRequired[str]
|
|
8096
8103
|
|
|
8097
8104
|
class ListModelExplainabilityJobDefinitionsResponseTypeDef(TypedDict):
|
|
8098
|
-
JobDefinitionSummaries:
|
|
8105
|
+
JobDefinitionSummaries: List[MonitoringJobDefinitionSummaryTypeDef]
|
|
8099
8106
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8100
8107
|
NextToken: NotRequired[str]
|
|
8101
8108
|
|
|
8102
8109
|
class ListModelQualityJobDefinitionsResponseTypeDef(TypedDict):
|
|
8103
|
-
JobDefinitionSummaries:
|
|
8110
|
+
JobDefinitionSummaries: List[MonitoringJobDefinitionSummaryTypeDef]
|
|
8104
8111
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8105
8112
|
NextToken: NotRequired[str]
|
|
8106
8113
|
|
|
8107
8114
|
class ListMlflowTrackingServersResponseTypeDef(TypedDict):
|
|
8108
|
-
TrackingServerSummaries:
|
|
8115
|
+
TrackingServerSummaries: List[TrackingServerSummaryTypeDef]
|
|
8109
8116
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8110
8117
|
NextToken: NotRequired[str]
|
|
8111
8118
|
|
|
8112
8119
|
class ListModelCardExportJobsResponseTypeDef(TypedDict):
|
|
8113
|
-
ModelCardExportJobSummaries:
|
|
8120
|
+
ModelCardExportJobSummaries: List[ModelCardExportJobSummaryTypeDef]
|
|
8114
8121
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8115
8122
|
NextToken: NotRequired[str]
|
|
8116
8123
|
|
|
8117
8124
|
class ListModelCardVersionsResponseTypeDef(TypedDict):
|
|
8118
|
-
ModelCardVersionSummaryList:
|
|
8125
|
+
ModelCardVersionSummaryList: List[ModelCardVersionSummaryTypeDef]
|
|
8119
8126
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8120
8127
|
NextToken: NotRequired[str]
|
|
8121
8128
|
|
|
8122
8129
|
class ListModelCardsResponseTypeDef(TypedDict):
|
|
8123
|
-
ModelCardSummaries:
|
|
8130
|
+
ModelCardSummaries: List[ModelCardSummaryTypeDef]
|
|
8124
8131
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8125
8132
|
NextToken: NotRequired[str]
|
|
8126
8133
|
|
|
8127
8134
|
class ListModelMetadataResponseTypeDef(TypedDict):
|
|
8128
|
-
ModelMetadataSummaries:
|
|
8135
|
+
ModelMetadataSummaries: List[ModelMetadataSummaryTypeDef]
|
|
8129
8136
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8130
8137
|
NextToken: NotRequired[str]
|
|
8131
8138
|
|
|
8132
8139
|
class ListModelPackageGroupsOutputTypeDef(TypedDict):
|
|
8133
|
-
ModelPackageGroupSummaryList:
|
|
8140
|
+
ModelPackageGroupSummaryList: List[ModelPackageGroupSummaryTypeDef]
|
|
8134
8141
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8135
8142
|
NextToken: NotRequired[str]
|
|
8136
8143
|
|
|
8137
8144
|
class ListModelPackagesOutputTypeDef(TypedDict):
|
|
8138
|
-
ModelPackageSummaryList:
|
|
8145
|
+
ModelPackageSummaryList: List[ModelPackageSummaryTypeDef]
|
|
8139
8146
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8140
8147
|
NextToken: NotRequired[str]
|
|
8141
8148
|
|
|
8142
8149
|
class ListModelsOutputTypeDef(TypedDict):
|
|
8143
|
-
Models:
|
|
8150
|
+
Models: List[ModelSummaryTypeDef]
|
|
8144
8151
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8145
8152
|
NextToken: NotRequired[str]
|
|
8146
8153
|
|
|
8147
8154
|
class ListMonitoringAlertHistoryResponseTypeDef(TypedDict):
|
|
8148
|
-
MonitoringAlertHistory:
|
|
8155
|
+
MonitoringAlertHistory: List[MonitoringAlertHistorySummaryTypeDef]
|
|
8149
8156
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8150
8157
|
NextToken: NotRequired[str]
|
|
8151
8158
|
|
|
8152
8159
|
class ListMonitoringSchedulesResponseTypeDef(TypedDict):
|
|
8153
|
-
MonitoringScheduleSummaries:
|
|
8160
|
+
MonitoringScheduleSummaries: List[MonitoringScheduleSummaryTypeDef]
|
|
8154
8161
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8155
8162
|
NextToken: NotRequired[str]
|
|
8156
8163
|
|
|
8157
8164
|
class ListNotebookInstanceLifecycleConfigsOutputTypeDef(TypedDict):
|
|
8158
|
-
NotebookInstanceLifecycleConfigs:
|
|
8165
|
+
NotebookInstanceLifecycleConfigs: List[NotebookInstanceLifecycleConfigSummaryTypeDef]
|
|
8159
8166
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8160
8167
|
NextToken: NotRequired[str]
|
|
8161
8168
|
|
|
8162
8169
|
class ListNotebookInstancesOutputTypeDef(TypedDict):
|
|
8163
|
-
NotebookInstances:
|
|
8170
|
+
NotebookInstances: List[NotebookInstanceSummaryTypeDef]
|
|
8164
8171
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8165
8172
|
NextToken: NotRequired[str]
|
|
8166
8173
|
|
|
8167
8174
|
class ListOptimizationJobsResponseTypeDef(TypedDict):
|
|
8168
|
-
OptimizationJobSummaries:
|
|
8175
|
+
OptimizationJobSummaries: List[OptimizationJobSummaryTypeDef]
|
|
8169
8176
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8170
8177
|
NextToken: NotRequired[str]
|
|
8171
8178
|
|
|
8172
8179
|
class ListPartnerAppsResponseTypeDef(TypedDict):
|
|
8173
|
-
Summaries:
|
|
8180
|
+
Summaries: List[PartnerAppSummaryTypeDef]
|
|
8174
8181
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8175
8182
|
NextToken: NotRequired[str]
|
|
8176
8183
|
|
|
8177
8184
|
class ListPipelineExecutionsResponseTypeDef(TypedDict):
|
|
8178
|
-
PipelineExecutionSummaries:
|
|
8185
|
+
PipelineExecutionSummaries: List[PipelineExecutionSummaryTypeDef]
|
|
8179
8186
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8180
8187
|
NextToken: NotRequired[str]
|
|
8181
8188
|
|
|
8182
8189
|
class ListPipelineParametersForExecutionResponseTypeDef(TypedDict):
|
|
8183
|
-
PipelineParameters:
|
|
8190
|
+
PipelineParameters: List[ParameterTypeDef]
|
|
8184
8191
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8185
8192
|
NextToken: NotRequired[str]
|
|
8186
8193
|
|
|
8187
8194
|
class ListPipelinesResponseTypeDef(TypedDict):
|
|
8188
|
-
PipelineSummaries:
|
|
8195
|
+
PipelineSummaries: List[PipelineSummaryTypeDef]
|
|
8189
8196
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8190
8197
|
NextToken: NotRequired[str]
|
|
8191
8198
|
|
|
8192
8199
|
class ListProcessingJobsResponseTypeDef(TypedDict):
|
|
8193
|
-
ProcessingJobSummaries:
|
|
8200
|
+
ProcessingJobSummaries: List[ProcessingJobSummaryTypeDef]
|
|
8194
8201
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8195
8202
|
NextToken: NotRequired[str]
|
|
8196
8203
|
|
|
8197
8204
|
class ListProjectsOutputTypeDef(TypedDict):
|
|
8198
|
-
ProjectSummaryList:
|
|
8205
|
+
ProjectSummaryList: List[ProjectSummaryTypeDef]
|
|
8199
8206
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8200
8207
|
NextToken: NotRequired[str]
|
|
8201
8208
|
|
|
8202
8209
|
class ListResourceCatalogsResponseTypeDef(TypedDict):
|
|
8203
|
-
ResourceCatalogs:
|
|
8210
|
+
ResourceCatalogs: List[ResourceCatalogTypeDef]
|
|
8204
8211
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8205
8212
|
NextToken: NotRequired[str]
|
|
8206
8213
|
|
|
8207
8214
|
class ListStudioLifecycleConfigsResponseTypeDef(TypedDict):
|
|
8208
|
-
StudioLifecycleConfigs:
|
|
8215
|
+
StudioLifecycleConfigs: List[StudioLifecycleConfigDetailsTypeDef]
|
|
8209
8216
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8210
8217
|
NextToken: NotRequired[str]
|
|
8211
8218
|
|
|
@@ -8227,12 +8234,12 @@ class ListTrainingPlansRequestRequestTypeDef(TypedDict):
|
|
|
8227
8234
|
Filters: NotRequired[Sequence[TrainingPlanFilterTypeDef]]
|
|
8228
8235
|
|
|
8229
8236
|
class ListTransformJobsResponseTypeDef(TypedDict):
|
|
8230
|
-
TransformJobSummaries:
|
|
8237
|
+
TransformJobSummaries: List[TransformJobSummaryTypeDef]
|
|
8231
8238
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8232
8239
|
NextToken: NotRequired[str]
|
|
8233
8240
|
|
|
8234
8241
|
class ListUserProfilesResponseTypeDef(TypedDict):
|
|
8235
|
-
UserProfiles:
|
|
8242
|
+
UserProfiles: List[UserProfileDetailsTypeDef]
|
|
8236
8243
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8237
8244
|
NextToken: NotRequired[str]
|
|
8238
8245
|
|
|
@@ -8251,11 +8258,13 @@ class S3ModelDataSourceTypeDef(TypedDict):
|
|
|
8251
8258
|
ModelAccessConfig: NotRequired[ModelAccessConfigTypeDef]
|
|
8252
8259
|
HubAccessConfig: NotRequired[InferenceHubAccessConfigTypeDef]
|
|
8253
8260
|
ManifestS3Uri: NotRequired[str]
|
|
8261
|
+
ETag: NotRequired[str]
|
|
8262
|
+
ManifestEtag: NotRequired[str]
|
|
8254
8263
|
|
|
8255
8264
|
class TextGenerationJobConfigOutputTypeDef(TypedDict):
|
|
8256
8265
|
CompletionCriteria: NotRequired[AutoMLJobCompletionCriteriaTypeDef]
|
|
8257
8266
|
BaseModelName: NotRequired[str]
|
|
8258
|
-
TextGenerationHyperParameters: NotRequired[
|
|
8267
|
+
TextGenerationHyperParameters: NotRequired[Dict[str, str]]
|
|
8259
8268
|
ModelAccessConfig: NotRequired[ModelAccessConfigTypeDef]
|
|
8260
8269
|
|
|
8261
8270
|
class TextGenerationJobConfigTypeDef(TypedDict):
|
|
@@ -8277,7 +8286,7 @@ class ModelInfrastructureConfigTypeDef(TypedDict):
|
|
|
8277
8286
|
|
|
8278
8287
|
class RecommendationJobStoppingConditionsOutputTypeDef(TypedDict):
|
|
8279
8288
|
MaxInvocations: NotRequired[int]
|
|
8280
|
-
ModelLatencyThresholds: NotRequired[
|
|
8289
|
+
ModelLatencyThresholds: NotRequired[List[ModelLatencyThresholdTypeDef]]
|
|
8281
8290
|
FlatInvocations: NotRequired[FlatInvocationsType]
|
|
8282
8291
|
|
|
8283
8292
|
class RecommendationJobStoppingConditionsTypeDef(TypedDict):
|
|
@@ -8289,8 +8298,8 @@ class ModelMetadataSearchExpressionTypeDef(TypedDict):
|
|
|
8289
8298
|
Filters: NotRequired[Sequence[ModelMetadataFilterTypeDef]]
|
|
8290
8299
|
|
|
8291
8300
|
class ModelPackageStatusDetailsTypeDef(TypedDict):
|
|
8292
|
-
ValidationStatuses:
|
|
8293
|
-
ImageScanStatuses: NotRequired[
|
|
8301
|
+
ValidationStatuses: List[ModelPackageStatusItemTypeDef]
|
|
8302
|
+
ImageScanStatuses: NotRequired[List[ModelPackageStatusItemTypeDef]]
|
|
8294
8303
|
|
|
8295
8304
|
ModelQuantizationConfigUnionTypeDef = Union[
|
|
8296
8305
|
ModelQuantizationConfigTypeDef, ModelQuantizationConfigOutputTypeDef
|
|
@@ -8314,7 +8323,7 @@ class MonitoringResourcesTypeDef(TypedDict):
|
|
|
8314
8323
|
class MonitoringDatasetFormatOutputTypeDef(TypedDict):
|
|
8315
8324
|
Csv: NotRequired[MonitoringCsvDatasetFormatTypeDef]
|
|
8316
8325
|
Json: NotRequired[MonitoringJsonDatasetFormatTypeDef]
|
|
8317
|
-
Parquet: NotRequired[
|
|
8326
|
+
Parquet: NotRequired[Dict[str, Any]]
|
|
8318
8327
|
|
|
8319
8328
|
class MonitoringDatasetFormatTypeDef(TypedDict):
|
|
8320
8329
|
Csv: NotRequired[MonitoringCsvDatasetFormatTypeDef]
|
|
@@ -8356,14 +8365,14 @@ class OutputConfigTypeDef(TypedDict):
|
|
|
8356
8365
|
|
|
8357
8366
|
class PendingProductionVariantSummaryTypeDef(TypedDict):
|
|
8358
8367
|
VariantName: str
|
|
8359
|
-
DeployedImages: NotRequired[
|
|
8368
|
+
DeployedImages: NotRequired[List[DeployedImageTypeDef]]
|
|
8360
8369
|
CurrentWeight: NotRequired[float]
|
|
8361
8370
|
DesiredWeight: NotRequired[float]
|
|
8362
8371
|
CurrentInstanceCount: NotRequired[int]
|
|
8363
8372
|
DesiredInstanceCount: NotRequired[int]
|
|
8364
8373
|
InstanceType: NotRequired[ProductionVariantInstanceTypeType]
|
|
8365
8374
|
AcceleratorType: NotRequired[ProductionVariantAcceleratorTypeType]
|
|
8366
|
-
VariantStatus: NotRequired[
|
|
8375
|
+
VariantStatus: NotRequired[List[ProductionVariantStatusTypeDef]]
|
|
8367
8376
|
CurrentServerlessConfig: NotRequired[ProductionVariantServerlessConfigTypeDef]
|
|
8368
8377
|
DesiredServerlessConfig: NotRequired[ProductionVariantServerlessConfigTypeDef]
|
|
8369
8378
|
ManagedInstanceScaling: NotRequired[ProductionVariantManagedInstanceScalingTypeDef]
|
|
@@ -8371,19 +8380,19 @@ class PendingProductionVariantSummaryTypeDef(TypedDict):
|
|
|
8371
8380
|
|
|
8372
8381
|
class ProductionVariantSummaryTypeDef(TypedDict):
|
|
8373
8382
|
VariantName: str
|
|
8374
|
-
DeployedImages: NotRequired[
|
|
8383
|
+
DeployedImages: NotRequired[List[DeployedImageTypeDef]]
|
|
8375
8384
|
CurrentWeight: NotRequired[float]
|
|
8376
8385
|
DesiredWeight: NotRequired[float]
|
|
8377
8386
|
CurrentInstanceCount: NotRequired[int]
|
|
8378
8387
|
DesiredInstanceCount: NotRequired[int]
|
|
8379
|
-
VariantStatus: NotRequired[
|
|
8388
|
+
VariantStatus: NotRequired[List[ProductionVariantStatusTypeDef]]
|
|
8380
8389
|
CurrentServerlessConfig: NotRequired[ProductionVariantServerlessConfigTypeDef]
|
|
8381
8390
|
DesiredServerlessConfig: NotRequired[ProductionVariantServerlessConfigTypeDef]
|
|
8382
8391
|
ManagedInstanceScaling: NotRequired[ProductionVariantManagedInstanceScalingTypeDef]
|
|
8383
8392
|
RoutingConfig: NotRequired[ProductionVariantRoutingConfigTypeDef]
|
|
8384
8393
|
|
|
8385
8394
|
class SchedulerConfigOutputTypeDef(TypedDict):
|
|
8386
|
-
PriorityClasses: NotRequired[
|
|
8395
|
+
PriorityClasses: NotRequired[List[PriorityClassTypeDef]]
|
|
8387
8396
|
FairShare: NotRequired[FairShareType]
|
|
8388
8397
|
|
|
8389
8398
|
class SchedulerConfigTypeDef(TypedDict):
|
|
@@ -8427,7 +8436,7 @@ class ServiceCatalogProvisioningDetailsOutputTypeDef(TypedDict):
|
|
|
8427
8436
|
ProductId: str
|
|
8428
8437
|
ProvisioningArtifactId: NotRequired[str]
|
|
8429
8438
|
PathId: NotRequired[str]
|
|
8430
|
-
ProvisioningParameters: NotRequired[
|
|
8439
|
+
ProvisioningParameters: NotRequired[List[ProvisioningParameterTypeDef]]
|
|
8431
8440
|
|
|
8432
8441
|
class ServiceCatalogProvisioningDetailsTypeDef(TypedDict):
|
|
8433
8442
|
ProductId: str
|
|
@@ -8443,8 +8452,8 @@ class PublicWorkforceTaskPriceTypeDef(TypedDict):
|
|
|
8443
8452
|
AmountInUsd: NotRequired[USDTypeDef]
|
|
8444
8453
|
|
|
8445
8454
|
class QueryLineageResponseTypeDef(TypedDict):
|
|
8446
|
-
Vertices:
|
|
8447
|
-
Edges:
|
|
8455
|
+
Vertices: List[VertexTypeDef]
|
|
8456
|
+
Edges: List[EdgeTypeDef]
|
|
8448
8457
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8449
8458
|
NextToken: NotRequired[str]
|
|
8450
8459
|
|
|
@@ -8459,10 +8468,10 @@ class RecommendationJobContainerConfigOutputTypeDef(TypedDict):
|
|
|
8459
8468
|
FrameworkVersion: NotRequired[str]
|
|
8460
8469
|
PayloadConfig: NotRequired[RecommendationJobPayloadConfigOutputTypeDef]
|
|
8461
8470
|
NearestModelName: NotRequired[str]
|
|
8462
|
-
SupportedInstanceTypes: NotRequired[
|
|
8471
|
+
SupportedInstanceTypes: NotRequired[List[str]]
|
|
8463
8472
|
SupportedEndpointType: NotRequired[RecommendationJobSupportedEndpointTypeType]
|
|
8464
8473
|
DataInputConfig: NotRequired[str]
|
|
8465
|
-
SupportedResponseMIMETypes: NotRequired[
|
|
8474
|
+
SupportedResponseMIMETypes: NotRequired[List[str]]
|
|
8466
8475
|
|
|
8467
8476
|
RecommendationJobPayloadConfigUnionTypeDef = Union[
|
|
8468
8477
|
RecommendationJobPayloadConfigTypeDef, RecommendationJobPayloadConfigOutputTypeDef
|
|
@@ -8479,19 +8488,19 @@ class RenderUiTemplateRequestRequestTypeDef(TypedDict):
|
|
|
8479
8488
|
|
|
8480
8489
|
class RenderUiTemplateResponseTypeDef(TypedDict):
|
|
8481
8490
|
RenderedContent: str
|
|
8482
|
-
Errors:
|
|
8491
|
+
Errors: List[RenderingErrorTypeDef]
|
|
8483
8492
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8484
8493
|
|
|
8485
8494
|
class TrainingPlanOfferingTypeDef(TypedDict):
|
|
8486
8495
|
TrainingPlanOfferingId: str
|
|
8487
|
-
TargetResources:
|
|
8496
|
+
TargetResources: List[SageMakerResourceNameType]
|
|
8488
8497
|
RequestedStartTimeAfter: NotRequired[datetime]
|
|
8489
8498
|
RequestedEndTimeBefore: NotRequired[datetime]
|
|
8490
8499
|
DurationHours: NotRequired[int]
|
|
8491
8500
|
DurationMinutes: NotRequired[int]
|
|
8492
8501
|
UpfrontFee: NotRequired[str]
|
|
8493
8502
|
CurrencyCode: NotRequired[str]
|
|
8494
|
-
ReservedCapacityOfferings: NotRequired[
|
|
8503
|
+
ReservedCapacityOfferings: NotRequired[List[ReservedCapacityOfferingTypeDef]]
|
|
8495
8504
|
|
|
8496
8505
|
class UpdateTrainingJobRequestRequestTypeDef(TypedDict):
|
|
8497
8506
|
TrainingJobName: str
|
|
@@ -8503,7 +8512,7 @@ class UpdateTrainingJobRequestRequestTypeDef(TypedDict):
|
|
|
8503
8512
|
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
8504
8513
|
|
|
8505
8514
|
class SelectiveExecutionConfigOutputTypeDef(TypedDict):
|
|
8506
|
-
SelectedSteps:
|
|
8515
|
+
SelectedSteps: List[SelectedStepTypeDef]
|
|
8507
8516
|
SourcePipelineExecutionArn: NotRequired[str]
|
|
8508
8517
|
|
|
8509
8518
|
class SelectiveExecutionConfigTypeDef(TypedDict):
|
|
@@ -8512,7 +8521,7 @@ class SelectiveExecutionConfigTypeDef(TypedDict):
|
|
|
8512
8521
|
|
|
8513
8522
|
class ShadowModeConfigOutputTypeDef(TypedDict):
|
|
8514
8523
|
SourceModelVariantName: str
|
|
8515
|
-
ShadowModelVariants:
|
|
8524
|
+
ShadowModelVariants: List[ShadowModelVariantConfigTypeDef]
|
|
8516
8525
|
|
|
8517
8526
|
class ShadowModeConfigTypeDef(TypedDict):
|
|
8518
8527
|
SourceModelVariantName: str
|
|
@@ -8523,7 +8532,7 @@ class SpaceAppLifecycleManagementTypeDef(TypedDict):
|
|
|
8523
8532
|
|
|
8524
8533
|
class TrafficPatternOutputTypeDef(TypedDict):
|
|
8525
8534
|
TrafficType: NotRequired[TrafficTypeType]
|
|
8526
|
-
Phases: NotRequired[
|
|
8535
|
+
Phases: NotRequired[List[PhaseTypeDef]]
|
|
8527
8536
|
Stairs: NotRequired[StairsTypeDef]
|
|
8528
8537
|
|
|
8529
8538
|
class TrafficPatternTypeDef(TypedDict):
|
|
@@ -8557,7 +8566,7 @@ class WorkforceTypeDef(TypedDict):
|
|
|
8557
8566
|
FailureReason: NotRequired[str]
|
|
8558
8567
|
|
|
8559
8568
|
class ListActionsResponseTypeDef(TypedDict):
|
|
8560
|
-
ActionSummaries:
|
|
8569
|
+
ActionSummaries: List[ActionSummaryTypeDef]
|
|
8561
8570
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8562
8571
|
NextToken: NotRequired[str]
|
|
8563
8572
|
|
|
@@ -8567,12 +8576,12 @@ HyperParameterAlgorithmSpecificationUnionTypeDef = Union[
|
|
|
8567
8576
|
]
|
|
8568
8577
|
|
|
8569
8578
|
class ListAppsResponseTypeDef(TypedDict):
|
|
8570
|
-
Apps:
|
|
8579
|
+
Apps: List[AppDetailsTypeDef]
|
|
8571
8580
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8572
8581
|
NextToken: NotRequired[str]
|
|
8573
8582
|
|
|
8574
8583
|
class DomainSettingsOutputTypeDef(TypedDict):
|
|
8575
|
-
SecurityGroupIds: NotRequired[
|
|
8584
|
+
SecurityGroupIds: NotRequired[List[str]]
|
|
8576
8585
|
RStudioServerProDomainSettings: NotRequired[RStudioServerProDomainSettingsTypeDef]
|
|
8577
8586
|
ExecutionRoleIdentityConfig: NotRequired[ExecutionRoleIdentityConfigType]
|
|
8578
8587
|
DockerSettings: NotRequired[DockerSettingsOutputTypeDef]
|
|
@@ -8580,8 +8589,8 @@ class DomainSettingsOutputTypeDef(TypedDict):
|
|
|
8580
8589
|
|
|
8581
8590
|
class CodeEditorAppSettingsOutputTypeDef(TypedDict):
|
|
8582
8591
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
8583
|
-
CustomImages: NotRequired[
|
|
8584
|
-
LifecycleConfigArns: NotRequired[
|
|
8592
|
+
CustomImages: NotRequired[List[CustomImageTypeDef]]
|
|
8593
|
+
LifecycleConfigArns: NotRequired[List[str]]
|
|
8585
8594
|
AppLifecycleManagement: NotRequired[AppLifecycleManagementTypeDef]
|
|
8586
8595
|
BuiltInLifecycleConfigArn: NotRequired[str]
|
|
8587
8596
|
|
|
@@ -8594,9 +8603,9 @@ class CodeEditorAppSettingsTypeDef(TypedDict):
|
|
|
8594
8603
|
|
|
8595
8604
|
class JupyterLabAppSettingsOutputTypeDef(TypedDict):
|
|
8596
8605
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
8597
|
-
CustomImages: NotRequired[
|
|
8598
|
-
LifecycleConfigArns: NotRequired[
|
|
8599
|
-
CodeRepositories: NotRequired[
|
|
8606
|
+
CustomImages: NotRequired[List[CustomImageTypeDef]]
|
|
8607
|
+
LifecycleConfigArns: NotRequired[List[str]]
|
|
8608
|
+
CodeRepositories: NotRequired[List[CodeRepositoryTypeDef]]
|
|
8600
8609
|
AppLifecycleManagement: NotRequired[AppLifecycleManagementTypeDef]
|
|
8601
8610
|
EmrSettings: NotRequired[EmrSettingsOutputTypeDef]
|
|
8602
8611
|
BuiltInLifecycleConfigArn: NotRequired[str]
|
|
@@ -8647,9 +8656,9 @@ class TimeSeriesForecastingJobConfigOutputTypeDef(TypedDict):
|
|
|
8647
8656
|
TimeSeriesConfig: TimeSeriesConfigOutputTypeDef
|
|
8648
8657
|
FeatureSpecificationS3Uri: NotRequired[str]
|
|
8649
8658
|
CompletionCriteria: NotRequired[AutoMLJobCompletionCriteriaTypeDef]
|
|
8650
|
-
ForecastQuantiles: NotRequired[
|
|
8659
|
+
ForecastQuantiles: NotRequired[List[str]]
|
|
8651
8660
|
Transformations: NotRequired[TimeSeriesTransformationsOutputTypeDef]
|
|
8652
|
-
HolidayConfig: NotRequired[
|
|
8661
|
+
HolidayConfig: NotRequired[List[HolidayConfigAttributesTypeDef]]
|
|
8653
8662
|
CandidateGenerationConfig: NotRequired[CandidateGenerationConfigOutputTypeDef]
|
|
8654
8663
|
|
|
8655
8664
|
class AutoMLCandidateGenerationConfigTypeDef(TypedDict):
|
|
@@ -8674,7 +8683,7 @@ class AutoMLJobChannelTypeDef(TypedDict):
|
|
|
8674
8683
|
DataSource: NotRequired[AutoMLDataSourceTypeDef]
|
|
8675
8684
|
|
|
8676
8685
|
class ListAutoMLJobsResponseTypeDef(TypedDict):
|
|
8677
|
-
AutoMLJobSummaries:
|
|
8686
|
+
AutoMLJobSummaries: List[AutoMLJobSummaryTypeDef]
|
|
8678
8687
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8679
8688
|
NextToken: NotRequired[str]
|
|
8680
8689
|
|
|
@@ -8722,17 +8731,17 @@ class PipelineExecutionStepMetadataTypeDef(TypedDict):
|
|
|
8722
8731
|
class AutoMLCandidateTypeDef(TypedDict):
|
|
8723
8732
|
CandidateName: str
|
|
8724
8733
|
ObjectiveStatus: ObjectiveStatusType
|
|
8725
|
-
CandidateSteps:
|
|
8734
|
+
CandidateSteps: List[AutoMLCandidateStepTypeDef]
|
|
8726
8735
|
CandidateStatus: CandidateStatusType
|
|
8727
8736
|
CreationTime: datetime
|
|
8728
8737
|
LastModifiedTime: datetime
|
|
8729
8738
|
FinalAutoMLJobObjectiveMetric: NotRequired[FinalAutoMLJobObjectiveMetricTypeDef]
|
|
8730
|
-
InferenceContainers: NotRequired[
|
|
8739
|
+
InferenceContainers: NotRequired[List[AutoMLContainerDefinitionTypeDef]]
|
|
8731
8740
|
EndTime: NotRequired[datetime]
|
|
8732
8741
|
FailureReason: NotRequired[str]
|
|
8733
8742
|
CandidateProperties: NotRequired[CandidatePropertiesTypeDef]
|
|
8734
8743
|
InferenceContainerDefinitions: NotRequired[
|
|
8735
|
-
|
|
8744
|
+
Dict[AutoMLProcessingUnitType, List[AutoMLContainerDefinitionTypeDef]]
|
|
8736
8745
|
]
|
|
8737
8746
|
|
|
8738
8747
|
CanvasAppSettingsUnionTypeDef = Union[CanvasAppSettingsTypeDef, CanvasAppSettingsOutputTypeDef]
|
|
@@ -8795,8 +8804,8 @@ class ClusterInstanceGroupDetailsTypeDef(TypedDict):
|
|
|
8795
8804
|
LifeCycleConfig: NotRequired[ClusterLifeCycleConfigTypeDef]
|
|
8796
8805
|
ExecutionRole: NotRequired[str]
|
|
8797
8806
|
ThreadsPerCore: NotRequired[int]
|
|
8798
|
-
InstanceStorageConfigs: NotRequired[
|
|
8799
|
-
OnStartDeepHealthChecks: NotRequired[
|
|
8807
|
+
InstanceStorageConfigs: NotRequired[List[ClusterInstanceStorageConfigTypeDef]]
|
|
8808
|
+
OnStartDeepHealthChecks: NotRequired[List[DeepHealthCheckTypeType]]
|
|
8800
8809
|
Status: NotRequired[InstanceGroupStatusType]
|
|
8801
8810
|
TrainingPlanArn: NotRequired[str]
|
|
8802
8811
|
TrainingPlanStatus: NotRequired[str]
|
|
@@ -8811,14 +8820,14 @@ class ClusterNodeDetailsTypeDef(TypedDict):
|
|
|
8811
8820
|
LifeCycleConfig: NotRequired[ClusterLifeCycleConfigTypeDef]
|
|
8812
8821
|
OverrideVpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
8813
8822
|
ThreadsPerCore: NotRequired[int]
|
|
8814
|
-
InstanceStorageConfigs: NotRequired[
|
|
8823
|
+
InstanceStorageConfigs: NotRequired[List[ClusterInstanceStorageConfigTypeDef]]
|
|
8815
8824
|
PrivatePrimaryIp: NotRequired[str]
|
|
8816
8825
|
PrivateDnsHostname: NotRequired[str]
|
|
8817
8826
|
Placement: NotRequired[ClusterInstancePlacementTypeDef]
|
|
8818
8827
|
|
|
8819
8828
|
class ListClusterNodesResponseTypeDef(TypedDict):
|
|
8820
8829
|
NextToken: str
|
|
8821
|
-
ClusterNodeSummaries:
|
|
8830
|
+
ClusterNodeSummaries: List[ClusterNodeSummaryTypeDef]
|
|
8822
8831
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8823
8832
|
|
|
8824
8833
|
KernelGatewayAppSettingsUnionTypeDef = Union[
|
|
@@ -8829,7 +8838,7 @@ RSessionAppSettingsUnionTypeDef = Union[
|
|
|
8829
8838
|
]
|
|
8830
8839
|
|
|
8831
8840
|
class ListCodeRepositoriesOutputTypeDef(TypedDict):
|
|
8832
|
-
CodeRepositorySummaryList:
|
|
8841
|
+
CodeRepositorySummaryList: List[CodeRepositorySummaryTypeDef]
|
|
8833
8842
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8834
8843
|
NextToken: NotRequired[str]
|
|
8835
8844
|
|
|
@@ -8888,7 +8897,7 @@ class JupyterLabAppImageConfigTypeDef(TypedDict):
|
|
|
8888
8897
|
ContainerConfig: NotRequired[ContainerConfigUnionTypeDef]
|
|
8889
8898
|
|
|
8890
8899
|
class ListContextsResponseTypeDef(TypedDict):
|
|
8891
|
-
ContextSummaries:
|
|
8900
|
+
ContextSummaries: List[ContextSummaryTypeDef]
|
|
8892
8901
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8893
8902
|
NextToken: NotRequired[str]
|
|
8894
8903
|
|
|
@@ -8967,44 +8976,44 @@ InferenceComponentSpecificationSummaryTypeDef = TypedDict(
|
|
|
8967
8976
|
class DescribeEdgeDeploymentPlanResponseTypeDef(TypedDict):
|
|
8968
8977
|
EdgeDeploymentPlanArn: str
|
|
8969
8978
|
EdgeDeploymentPlanName: str
|
|
8970
|
-
ModelConfigs:
|
|
8979
|
+
ModelConfigs: List[EdgeDeploymentModelConfigTypeDef]
|
|
8971
8980
|
DeviceFleetName: str
|
|
8972
8981
|
EdgeDeploymentSuccess: int
|
|
8973
8982
|
EdgeDeploymentPending: int
|
|
8974
8983
|
EdgeDeploymentFailed: int
|
|
8975
|
-
Stages:
|
|
8984
|
+
Stages: List[DeploymentStageStatusSummaryTypeDef]
|
|
8976
8985
|
CreationTime: datetime
|
|
8977
8986
|
LastModifiedTime: datetime
|
|
8978
8987
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8979
8988
|
NextToken: NotRequired[str]
|
|
8980
8989
|
|
|
8981
8990
|
class ListExperimentsResponseTypeDef(TypedDict):
|
|
8982
|
-
ExperimentSummaries:
|
|
8991
|
+
ExperimentSummaries: List[ExperimentSummaryTypeDef]
|
|
8983
8992
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8984
8993
|
NextToken: NotRequired[str]
|
|
8985
8994
|
|
|
8986
8995
|
class ListFeatureGroupsResponseTypeDef(TypedDict):
|
|
8987
|
-
FeatureGroupSummaries:
|
|
8996
|
+
FeatureGroupSummaries: List[FeatureGroupSummaryTypeDef]
|
|
8988
8997
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8989
8998
|
NextToken: NotRequired[str]
|
|
8990
8999
|
|
|
8991
9000
|
class ListInferenceExperimentsResponseTypeDef(TypedDict):
|
|
8992
|
-
InferenceExperiments:
|
|
9001
|
+
InferenceExperiments: List[InferenceExperimentSummaryTypeDef]
|
|
8993
9002
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8994
9003
|
NextToken: NotRequired[str]
|
|
8995
9004
|
|
|
8996
9005
|
class ListTrainingJobsResponseTypeDef(TypedDict):
|
|
8997
|
-
TrainingJobSummaries:
|
|
9006
|
+
TrainingJobSummaries: List[TrainingJobSummaryTypeDef]
|
|
8998
9007
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8999
9008
|
NextToken: NotRequired[str]
|
|
9000
9009
|
|
|
9001
9010
|
class ListTrainingPlansResponseTypeDef(TypedDict):
|
|
9002
|
-
TrainingPlanSummaries:
|
|
9011
|
+
TrainingPlanSummaries: List[TrainingPlanSummaryTypeDef]
|
|
9003
9012
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9004
9013
|
NextToken: NotRequired[str]
|
|
9005
9014
|
|
|
9006
9015
|
class ListTrialsResponseTypeDef(TypedDict):
|
|
9007
|
-
TrialSummaries:
|
|
9016
|
+
TrialSummaries: List[TrialSummaryTypeDef]
|
|
9008
9017
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9009
9018
|
NextToken: NotRequired[str]
|
|
9010
9019
|
|
|
@@ -9018,7 +9027,7 @@ class DeploymentStageTypeDef(TypedDict):
|
|
|
9018
9027
|
DeploymentConfig: NotRequired[EdgeDeploymentConfigTypeDef]
|
|
9019
9028
|
|
|
9020
9029
|
class ListDevicesResponseTypeDef(TypedDict):
|
|
9021
|
-
DeviceSummaries:
|
|
9030
|
+
DeviceSummaries: List[DeviceSummaryTypeDef]
|
|
9022
9031
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9023
9032
|
NextToken: NotRequired[str]
|
|
9024
9033
|
|
|
@@ -9087,7 +9096,7 @@ class SearchExpressionTypeDef(TypedDict):
|
|
|
9087
9096
|
Operator: NotRequired[BooleanOperatorType]
|
|
9088
9097
|
|
|
9089
9098
|
class ListTrainingJobsForHyperParameterTuningJobResponseTypeDef(TypedDict):
|
|
9090
|
-
TrainingJobSummaries:
|
|
9099
|
+
TrainingJobSummaries: List[HyperParameterTrainingJobSummaryTypeDef]
|
|
9091
9100
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9092
9101
|
NextToken: NotRequired[str]
|
|
9093
9102
|
|
|
@@ -9102,7 +9111,7 @@ HyperParameterTuningResourceConfigUnionTypeDef = Union[
|
|
|
9102
9111
|
]
|
|
9103
9112
|
|
|
9104
9113
|
class ListHyperParameterTuningJobsResponseTypeDef(TypedDict):
|
|
9105
|
-
HyperParameterTuningJobSummaries:
|
|
9114
|
+
HyperParameterTuningJobSummaries: List[HyperParameterTuningJobSummaryTypeDef]
|
|
9106
9115
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9107
9116
|
NextToken: NotRequired[str]
|
|
9108
9117
|
|
|
@@ -9124,7 +9133,7 @@ class DescribeActionResponseTypeDef(TypedDict):
|
|
|
9124
9133
|
ActionType: str
|
|
9125
9134
|
Description: str
|
|
9126
9135
|
Status: ActionStatusType
|
|
9127
|
-
Properties:
|
|
9136
|
+
Properties: Dict[str, str]
|
|
9128
9137
|
CreationTime: datetime
|
|
9129
9138
|
CreatedBy: UserContextTypeDef
|
|
9130
9139
|
LastModifiedTime: datetime
|
|
@@ -9138,7 +9147,7 @@ class DescribeArtifactResponseTypeDef(TypedDict):
|
|
|
9138
9147
|
ArtifactArn: str
|
|
9139
9148
|
Source: ArtifactSourceOutputTypeDef
|
|
9140
9149
|
ArtifactType: str
|
|
9141
|
-
Properties:
|
|
9150
|
+
Properties: Dict[str, str]
|
|
9142
9151
|
CreationTime: datetime
|
|
9143
9152
|
CreatedBy: UserContextTypeDef
|
|
9144
9153
|
LastModifiedTime: datetime
|
|
@@ -9171,7 +9180,7 @@ class DescribeContextResponseTypeDef(TypedDict):
|
|
|
9171
9180
|
Source: ContextSourceTypeDef
|
|
9172
9181
|
ContextType: str
|
|
9173
9182
|
Description: str
|
|
9174
|
-
Properties:
|
|
9183
|
+
Properties: Dict[str, str]
|
|
9175
9184
|
CreationTime: datetime
|
|
9176
9185
|
CreatedBy: UserContextTypeDef
|
|
9177
9186
|
LastModifiedTime: datetime
|
|
@@ -9271,13 +9280,13 @@ class DescribeTrialComponentResponseTypeDef(TypedDict):
|
|
|
9271
9280
|
CreatedBy: UserContextTypeDef
|
|
9272
9281
|
LastModifiedTime: datetime
|
|
9273
9282
|
LastModifiedBy: UserContextTypeDef
|
|
9274
|
-
Parameters:
|
|
9275
|
-
InputArtifacts:
|
|
9276
|
-
OutputArtifacts:
|
|
9283
|
+
Parameters: Dict[str, TrialComponentParameterValueTypeDef]
|
|
9284
|
+
InputArtifacts: Dict[str, TrialComponentArtifactTypeDef]
|
|
9285
|
+
OutputArtifacts: Dict[str, TrialComponentArtifactTypeDef]
|
|
9277
9286
|
MetadataProperties: MetadataPropertiesTypeDef
|
|
9278
|
-
Metrics:
|
|
9287
|
+
Metrics: List[TrialComponentMetricSummaryTypeDef]
|
|
9279
9288
|
LineageGroupArn: str
|
|
9280
|
-
Sources:
|
|
9289
|
+
Sources: List[TrialComponentSourceTypeDef]
|
|
9281
9290
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9282
9291
|
|
|
9283
9292
|
class DescribeTrialResponseTypeDef(TypedDict):
|
|
@@ -9303,7 +9312,7 @@ class ExperimentTypeDef(TypedDict):
|
|
|
9303
9312
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
9304
9313
|
LastModifiedTime: NotRequired[datetime]
|
|
9305
9314
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
9306
|
-
Tags: NotRequired[
|
|
9315
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
9307
9316
|
|
|
9308
9317
|
class ModelCardTypeDef(TypedDict):
|
|
9309
9318
|
ModelCardArn: NotRequired[str]
|
|
@@ -9316,7 +9325,7 @@ class ModelCardTypeDef(TypedDict):
|
|
|
9316
9325
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
9317
9326
|
LastModifiedTime: NotRequired[datetime]
|
|
9318
9327
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
9319
|
-
Tags: NotRequired[
|
|
9328
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
9320
9329
|
ModelId: NotRequired[str]
|
|
9321
9330
|
RiskRating: NotRequired[str]
|
|
9322
9331
|
ModelPackageGroupName: NotRequired[str]
|
|
@@ -9331,7 +9340,7 @@ class ModelDashboardModelCardTypeDef(TypedDict):
|
|
|
9331
9340
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
9332
9341
|
LastModifiedTime: NotRequired[datetime]
|
|
9333
9342
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
9334
|
-
Tags: NotRequired[
|
|
9343
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
9335
9344
|
ModelId: NotRequired[str]
|
|
9336
9345
|
RiskRating: NotRequired[str]
|
|
9337
9346
|
|
|
@@ -9342,7 +9351,7 @@ class ModelPackageGroupTypeDef(TypedDict):
|
|
|
9342
9351
|
CreationTime: NotRequired[datetime]
|
|
9343
9352
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
9344
9353
|
ModelPackageGroupStatus: NotRequired[ModelPackageGroupStatusType]
|
|
9345
|
-
Tags: NotRequired[
|
|
9354
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
9346
9355
|
|
|
9347
9356
|
class PipelineTypeDef(TypedDict):
|
|
9348
9357
|
PipelineArn: NotRequired[str]
|
|
@@ -9357,7 +9366,7 @@ class PipelineTypeDef(TypedDict):
|
|
|
9357
9366
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
9358
9367
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
9359
9368
|
ParallelismConfiguration: NotRequired[ParallelismConfigurationTypeDef]
|
|
9360
|
-
Tags: NotRequired[
|
|
9369
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
9361
9370
|
|
|
9362
9371
|
class TrialComponentSimpleSummaryTypeDef(TypedDict):
|
|
9363
9372
|
TrialComponentName: NotRequired[str]
|
|
@@ -9439,7 +9448,7 @@ class DescribeAppImageConfigResponseTypeDef(TypedDict):
|
|
|
9439
9448
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9440
9449
|
|
|
9441
9450
|
class ListLabelingJobsForWorkteamResponseTypeDef(TypedDict):
|
|
9442
|
-
LabelingJobSummaryList:
|
|
9451
|
+
LabelingJobSummaryList: List[LabelingJobForWorkteamSummaryTypeDef]
|
|
9443
9452
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9444
9453
|
NextToken: NotRequired[str]
|
|
9445
9454
|
|
|
@@ -9522,7 +9531,7 @@ MonitoringDatasetFormatUnionTypeDef = Union[
|
|
|
9522
9531
|
]
|
|
9523
9532
|
|
|
9524
9533
|
class MonitoringOutputConfigOutputTypeDef(TypedDict):
|
|
9525
|
-
MonitoringOutputs:
|
|
9534
|
+
MonitoringOutputs: List[MonitoringOutputTypeDef]
|
|
9526
9535
|
KmsKeyId: NotRequired[str]
|
|
9527
9536
|
|
|
9528
9537
|
class MonitoringOutputConfigTypeDef(TypedDict):
|
|
@@ -9569,9 +9578,9 @@ class DescribeCompilationJobResponseTypeDef(TypedDict):
|
|
|
9569
9578
|
|
|
9570
9579
|
class PendingDeploymentSummaryTypeDef(TypedDict):
|
|
9571
9580
|
EndpointConfigName: str
|
|
9572
|
-
ProductionVariants: NotRequired[
|
|
9581
|
+
ProductionVariants: NotRequired[List[PendingProductionVariantSummaryTypeDef]]
|
|
9573
9582
|
StartTime: NotRequired[datetime]
|
|
9574
|
-
ShadowProductionVariants: NotRequired[
|
|
9583
|
+
ShadowProductionVariants: NotRequired[List[PendingProductionVariantSummaryTypeDef]]
|
|
9575
9584
|
|
|
9576
9585
|
class DescribeClusterSchedulerConfigResponseTypeDef(TypedDict):
|
|
9577
9586
|
ClusterSchedulerConfigArn: str
|
|
@@ -9603,7 +9612,7 @@ class UpdateClusterSchedulerConfigRequestRequestTypeDef(TypedDict):
|
|
|
9603
9612
|
Description: NotRequired[str]
|
|
9604
9613
|
|
|
9605
9614
|
class ProcessingOutputConfigOutputTypeDef(TypedDict):
|
|
9606
|
-
Outputs:
|
|
9615
|
+
Outputs: List[ProcessingOutputTypeDef]
|
|
9607
9616
|
KmsKeyId: NotRequired[str]
|
|
9608
9617
|
|
|
9609
9618
|
class ProcessingOutputConfigTypeDef(TypedDict):
|
|
@@ -9640,7 +9649,7 @@ class ProjectTypeDef(TypedDict):
|
|
|
9640
9649
|
ProjectStatus: NotRequired[ProjectStatusType]
|
|
9641
9650
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
9642
9651
|
CreationTime: NotRequired[datetime]
|
|
9643
|
-
Tags: NotRequired[
|
|
9652
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
9644
9653
|
LastModifiedTime: NotRequired[datetime]
|
|
9645
9654
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
9646
9655
|
|
|
@@ -9666,7 +9675,7 @@ class HumanLoopConfigOutputTypeDef(TypedDict):
|
|
|
9666
9675
|
TaskCount: int
|
|
9667
9676
|
TaskAvailabilityLifetimeInSeconds: NotRequired[int]
|
|
9668
9677
|
TaskTimeLimitInSeconds: NotRequired[int]
|
|
9669
|
-
TaskKeywords: NotRequired[
|
|
9678
|
+
TaskKeywords: NotRequired[List[str]]
|
|
9670
9679
|
PublicWorkforceTaskPrice: NotRequired[PublicWorkforceTaskPriceTypeDef]
|
|
9671
9680
|
|
|
9672
9681
|
class HumanLoopConfigTypeDef(TypedDict):
|
|
@@ -9688,7 +9697,7 @@ class HumanTaskConfigOutputTypeDef(TypedDict):
|
|
|
9688
9697
|
NumberOfHumanWorkersPerDataObject: int
|
|
9689
9698
|
TaskTimeLimitInSeconds: int
|
|
9690
9699
|
PreHumanTaskLambdaArn: NotRequired[str]
|
|
9691
|
-
TaskKeywords: NotRequired[
|
|
9700
|
+
TaskKeywords: NotRequired[List[str]]
|
|
9692
9701
|
TaskAvailabilityLifetimeInSeconds: NotRequired[int]
|
|
9693
9702
|
MaxConcurrentTaskCount: NotRequired[int]
|
|
9694
9703
|
AnnotationConsolidationConfig: NotRequired[AnnotationConsolidationConfigTypeDef]
|
|
@@ -9721,7 +9730,7 @@ class RecommendationJobContainerConfigTypeDef(TypedDict):
|
|
|
9721
9730
|
SupportedResponseMIMETypes: NotRequired[Sequence[str]]
|
|
9722
9731
|
|
|
9723
9732
|
class SearchTrainingPlanOfferingsResponseTypeDef(TypedDict):
|
|
9724
|
-
TrainingPlanOfferings:
|
|
9733
|
+
TrainingPlanOfferings: List[TrainingPlanOfferingTypeDef]
|
|
9725
9734
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9726
9735
|
|
|
9727
9736
|
class DataSourceTypeDef(TypedDict):
|
|
@@ -9758,7 +9767,7 @@ class PipelineExecutionTypeDef(TypedDict):
|
|
|
9758
9767
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
9759
9768
|
ParallelismConfiguration: NotRequired[ParallelismConfigurationTypeDef]
|
|
9760
9769
|
SelectiveExecutionConfig: NotRequired[SelectiveExecutionConfigOutputTypeDef]
|
|
9761
|
-
PipelineParameters: NotRequired[
|
|
9770
|
+
PipelineParameters: NotRequired[List[ParameterTypeDef]]
|
|
9762
9771
|
|
|
9763
9772
|
class StartPipelineExecutionRequestRequestTypeDef(TypedDict):
|
|
9764
9773
|
PipelineName: str
|
|
@@ -9775,7 +9784,7 @@ class SpaceCodeEditorAppSettingsTypeDef(TypedDict):
|
|
|
9775
9784
|
|
|
9776
9785
|
class SpaceJupyterLabAppSettingsOutputTypeDef(TypedDict):
|
|
9777
9786
|
DefaultResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
9778
|
-
CodeRepositories: NotRequired[
|
|
9787
|
+
CodeRepositories: NotRequired[List[CodeRepositoryTypeDef]]
|
|
9779
9788
|
AppLifecycleManagement: NotRequired[SpaceAppLifecycleManagementTypeDef]
|
|
9780
9789
|
|
|
9781
9790
|
class SpaceJupyterLabAppSettingsTypeDef(TypedDict):
|
|
@@ -9789,10 +9798,10 @@ class AlgorithmSpecificationOutputTypeDef(TypedDict):
|
|
|
9789
9798
|
TrainingInputMode: TrainingInputModeType
|
|
9790
9799
|
TrainingImage: NotRequired[str]
|
|
9791
9800
|
AlgorithmName: NotRequired[str]
|
|
9792
|
-
MetricDefinitions: NotRequired[
|
|
9801
|
+
MetricDefinitions: NotRequired[List[MetricDefinitionTypeDef]]
|
|
9793
9802
|
EnableSageMakerMetricsTimeSeries: NotRequired[bool]
|
|
9794
|
-
ContainerEntrypoint: NotRequired[
|
|
9795
|
-
ContainerArguments: NotRequired[
|
|
9803
|
+
ContainerEntrypoint: NotRequired[List[str]]
|
|
9804
|
+
ContainerArguments: NotRequired[List[str]]
|
|
9796
9805
|
TrainingImageConfig: NotRequired[TrainingImageConfigTypeDef]
|
|
9797
9806
|
|
|
9798
9807
|
class AlgorithmSpecificationTypeDef(TypedDict):
|
|
@@ -9816,7 +9825,7 @@ class DescribeWorkforceResponseTypeDef(TypedDict):
|
|
|
9816
9825
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9817
9826
|
|
|
9818
9827
|
class ListWorkforcesResponseTypeDef(TypedDict):
|
|
9819
|
-
Workforces:
|
|
9828
|
+
Workforces: List[WorkforceTypeDef]
|
|
9820
9829
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9821
9830
|
NextToken: NotRequired[str]
|
|
9822
9831
|
|
|
@@ -9830,17 +9839,17 @@ CodeEditorAppSettingsUnionTypeDef = Union[
|
|
|
9830
9839
|
|
|
9831
9840
|
class DefaultSpaceSettingsOutputTypeDef(TypedDict):
|
|
9832
9841
|
ExecutionRole: NotRequired[str]
|
|
9833
|
-
SecurityGroups: NotRequired[
|
|
9842
|
+
SecurityGroups: NotRequired[List[str]]
|
|
9834
9843
|
JupyterServerAppSettings: NotRequired[JupyterServerAppSettingsOutputTypeDef]
|
|
9835
9844
|
KernelGatewayAppSettings: NotRequired[KernelGatewayAppSettingsOutputTypeDef]
|
|
9836
9845
|
JupyterLabAppSettings: NotRequired[JupyterLabAppSettingsOutputTypeDef]
|
|
9837
9846
|
SpaceStorageSettings: NotRequired[DefaultSpaceStorageSettingsTypeDef]
|
|
9838
9847
|
CustomPosixUserConfig: NotRequired[CustomPosixUserConfigTypeDef]
|
|
9839
|
-
CustomFileSystemConfigs: NotRequired[
|
|
9848
|
+
CustomFileSystemConfigs: NotRequired[List[CustomFileSystemConfigTypeDef]]
|
|
9840
9849
|
|
|
9841
9850
|
class UserSettingsOutputTypeDef(TypedDict):
|
|
9842
9851
|
ExecutionRole: NotRequired[str]
|
|
9843
|
-
SecurityGroups: NotRequired[
|
|
9852
|
+
SecurityGroups: NotRequired[List[str]]
|
|
9844
9853
|
SharingSettings: NotRequired[SharingSettingsTypeDef]
|
|
9845
9854
|
JupyterServerAppSettings: NotRequired[JupyterServerAppSettingsOutputTypeDef]
|
|
9846
9855
|
KernelGatewayAppSettings: NotRequired[KernelGatewayAppSettingsOutputTypeDef]
|
|
@@ -9854,12 +9863,12 @@ class UserSettingsOutputTypeDef(TypedDict):
|
|
|
9854
9863
|
DefaultLandingUri: NotRequired[str]
|
|
9855
9864
|
StudioWebPortal: NotRequired[StudioWebPortalType]
|
|
9856
9865
|
CustomPosixUserConfig: NotRequired[CustomPosixUserConfigTypeDef]
|
|
9857
|
-
CustomFileSystemConfigs: NotRequired[
|
|
9866
|
+
CustomFileSystemConfigs: NotRequired[List[CustomFileSystemConfigTypeDef]]
|
|
9858
9867
|
StudioWebPortalSettings: NotRequired[StudioWebPortalSettingsOutputTypeDef]
|
|
9859
9868
|
AutoMountHomeEFS: NotRequired[AutoMountHomeEFSType]
|
|
9860
9869
|
|
|
9861
9870
|
class ListArtifactsResponseTypeDef(TypedDict):
|
|
9862
|
-
ArtifactSummaries:
|
|
9871
|
+
ArtifactSummaries: List[ArtifactSummaryTypeDef]
|
|
9863
9872
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9864
9873
|
NextToken: NotRequired[str]
|
|
9865
9874
|
|
|
@@ -9897,7 +9906,7 @@ class PipelineExecutionStepTypeDef(TypedDict):
|
|
|
9897
9906
|
class DescribeAutoMLJobResponseTypeDef(TypedDict):
|
|
9898
9907
|
AutoMLJobName: str
|
|
9899
9908
|
AutoMLJobArn: str
|
|
9900
|
-
InputDataConfig:
|
|
9909
|
+
InputDataConfig: List[AutoMLChannelTypeDef]
|
|
9901
9910
|
OutputDataConfig: AutoMLOutputDataConfigTypeDef
|
|
9902
9911
|
RoleArn: str
|
|
9903
9912
|
AutoMLJobObjective: AutoMLJobObjectiveTypeDef
|
|
@@ -9907,7 +9916,7 @@ class DescribeAutoMLJobResponseTypeDef(TypedDict):
|
|
|
9907
9916
|
EndTime: datetime
|
|
9908
9917
|
LastModifiedTime: datetime
|
|
9909
9918
|
FailureReason: str
|
|
9910
|
-
PartialFailureReasons:
|
|
9919
|
+
PartialFailureReasons: List[AutoMLPartialFailureReasonTypeDef]
|
|
9911
9920
|
BestCandidate: AutoMLCandidateTypeDef
|
|
9912
9921
|
AutoMLJobStatus: AutoMLJobStatusType
|
|
9913
9922
|
AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatusType
|
|
@@ -9919,7 +9928,7 @@ class DescribeAutoMLJobResponseTypeDef(TypedDict):
|
|
|
9919
9928
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9920
9929
|
|
|
9921
9930
|
class ListCandidatesForAutoMLJobResponseTypeDef(TypedDict):
|
|
9922
|
-
Candidates:
|
|
9931
|
+
Candidates: List[AutoMLCandidateTypeDef]
|
|
9923
9932
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9924
9933
|
NextToken: NotRequired[str]
|
|
9925
9934
|
|
|
@@ -9939,10 +9948,10 @@ class RecommendationJobInputConfigOutputTypeDef(TypedDict):
|
|
|
9939
9948
|
JobDurationInSeconds: NotRequired[int]
|
|
9940
9949
|
TrafficPattern: NotRequired[TrafficPatternOutputTypeDef]
|
|
9941
9950
|
ResourceLimit: NotRequired[RecommendationJobResourceLimitTypeDef]
|
|
9942
|
-
EndpointConfigurations: NotRequired[
|
|
9951
|
+
EndpointConfigurations: NotRequired[List[EndpointInputConfigurationOutputTypeDef]]
|
|
9943
9952
|
VolumeKmsKeyId: NotRequired[str]
|
|
9944
9953
|
ContainerConfig: NotRequired[RecommendationJobContainerConfigOutputTypeDef]
|
|
9945
|
-
Endpoints: NotRequired[
|
|
9954
|
+
Endpoints: NotRequired[List[EndpointInfoTypeDef]]
|
|
9946
9955
|
VpcConfig: NotRequired[RecommendationJobVpcConfigOutputTypeDef]
|
|
9947
9956
|
|
|
9948
9957
|
ParameterRangeUnionTypeDef = Union[ParameterRangeTypeDef, ParameterRangeOutputTypeDef]
|
|
@@ -9964,7 +9973,7 @@ class DescribeClusterResponseTypeDef(TypedDict):
|
|
|
9964
9973
|
ClusterStatus: ClusterStatusType
|
|
9965
9974
|
CreationTime: datetime
|
|
9966
9975
|
FailureMessage: str
|
|
9967
|
-
InstanceGroups:
|
|
9976
|
+
InstanceGroups: List[ClusterInstanceGroupDetailsTypeDef]
|
|
9968
9977
|
VpcConfig: VpcConfigOutputTypeDef
|
|
9969
9978
|
Orchestrator: ClusterOrchestratorTypeDef
|
|
9970
9979
|
NodeRecovery: ClusterNodeRecoveryType
|
|
@@ -9991,7 +10000,7 @@ class DescribeFeatureGroupResponseTypeDef(TypedDict):
|
|
|
9991
10000
|
FeatureGroupName: str
|
|
9992
10001
|
RecordIdentifierFeatureName: str
|
|
9993
10002
|
EventTimeFeatureName: str
|
|
9994
|
-
FeatureDefinitions:
|
|
10003
|
+
FeatureDefinitions: List[FeatureDefinitionTypeDef]
|
|
9995
10004
|
CreationTime: datetime
|
|
9996
10005
|
LastModifiedTime: datetime
|
|
9997
10006
|
OnlineStoreConfig: OnlineStoreConfigTypeDef
|
|
@@ -10012,7 +10021,7 @@ class FeatureGroupTypeDef(TypedDict):
|
|
|
10012
10021
|
FeatureGroupName: NotRequired[str]
|
|
10013
10022
|
RecordIdentifierFeatureName: NotRequired[str]
|
|
10014
10023
|
EventTimeFeatureName: NotRequired[str]
|
|
10015
|
-
FeatureDefinitions: NotRequired[
|
|
10024
|
+
FeatureDefinitions: NotRequired[List[FeatureDefinitionTypeDef]]
|
|
10016
10025
|
CreationTime: NotRequired[datetime]
|
|
10017
10026
|
LastModifiedTime: NotRequired[datetime]
|
|
10018
10027
|
OnlineStoreConfig: NotRequired[OnlineStoreConfigTypeDef]
|
|
@@ -10023,7 +10032,7 @@ class FeatureGroupTypeDef(TypedDict):
|
|
|
10023
10032
|
LastUpdateStatus: NotRequired[LastUpdateStatusTypeDef]
|
|
10024
10033
|
FailureReason: NotRequired[str]
|
|
10025
10034
|
Description: NotRequired[str]
|
|
10026
|
-
Tags: NotRequired[
|
|
10035
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10027
10036
|
|
|
10028
10037
|
class UpdateFeatureGroupRequestRequestTypeDef(TypedDict):
|
|
10029
10038
|
FeatureGroupName: str
|
|
@@ -10032,7 +10041,7 @@ class UpdateFeatureGroupRequestRequestTypeDef(TypedDict):
|
|
|
10032
10041
|
ThroughputConfig: NotRequired[ThroughputConfigUpdateTypeDef]
|
|
10033
10042
|
|
|
10034
10043
|
class ListComputeQuotasResponseTypeDef(TypedDict):
|
|
10035
|
-
ComputeQuotaSummaries:
|
|
10044
|
+
ComputeQuotaSummaries: List[ComputeQuotaSummaryTypeDef]
|
|
10036
10045
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10037
10046
|
NextToken: NotRequired[str]
|
|
10038
10047
|
|
|
@@ -10079,8 +10088,8 @@ class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
|
10079
10088
|
DefinitionName: NotRequired[str]
|
|
10080
10089
|
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
10081
10090
|
HyperParameterRanges: NotRequired[ParameterRangesOutputTypeDef]
|
|
10082
|
-
StaticHyperParameters: NotRequired[
|
|
10083
|
-
InputDataConfig: NotRequired[
|
|
10091
|
+
StaticHyperParameters: NotRequired[Dict[str, str]]
|
|
10092
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
10084
10093
|
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
10085
10094
|
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
10086
10095
|
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigOutputTypeDef]
|
|
@@ -10089,15 +10098,15 @@ class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
|
10089
10098
|
EnableManagedSpotTraining: NotRequired[bool]
|
|
10090
10099
|
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
10091
10100
|
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
10092
|
-
Environment: NotRequired[
|
|
10101
|
+
Environment: NotRequired[Dict[str, str]]
|
|
10093
10102
|
|
|
10094
10103
|
class TrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
10095
10104
|
TrainingInputMode: TrainingInputModeType
|
|
10096
|
-
InputDataConfig:
|
|
10105
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
10097
10106
|
OutputDataConfig: OutputDataConfigTypeDef
|
|
10098
10107
|
ResourceConfig: ResourceConfigOutputTypeDef
|
|
10099
10108
|
StoppingCondition: StoppingConditionTypeDef
|
|
10100
|
-
HyperParameters: NotRequired[
|
|
10109
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
10101
10110
|
|
|
10102
10111
|
class DescribeInferenceComponentOutputTypeDef(TypedDict):
|
|
10103
10112
|
InferenceComponentName: str
|
|
@@ -10169,7 +10178,7 @@ StudioWebPortalSettingsUnionTypeDef = Union[
|
|
|
10169
10178
|
]
|
|
10170
10179
|
|
|
10171
10180
|
class ListAssociationsResponseTypeDef(TypedDict):
|
|
10172
|
-
AssociationSummaries:
|
|
10181
|
+
AssociationSummaries: List[AssociationSummaryTypeDef]
|
|
10173
10182
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10174
10183
|
NextToken: NotRequired[str]
|
|
10175
10184
|
|
|
@@ -10184,21 +10193,21 @@ class TrialTypeDef(TypedDict):
|
|
|
10184
10193
|
LastModifiedTime: NotRequired[datetime]
|
|
10185
10194
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
10186
10195
|
MetadataProperties: NotRequired[MetadataPropertiesTypeDef]
|
|
10187
|
-
Tags: NotRequired[
|
|
10188
|
-
TrialComponentSummaries: NotRequired[
|
|
10196
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10197
|
+
TrialComponentSummaries: NotRequired[List[TrialComponentSimpleSummaryTypeDef]]
|
|
10189
10198
|
|
|
10190
10199
|
class ListTrialComponentsResponseTypeDef(TypedDict):
|
|
10191
|
-
TrialComponentSummaries:
|
|
10200
|
+
TrialComponentSummaries: List[TrialComponentSummaryTypeDef]
|
|
10192
10201
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10193
10202
|
NextToken: NotRequired[str]
|
|
10194
10203
|
|
|
10195
10204
|
class WorkteamTypeDef(TypedDict):
|
|
10196
10205
|
WorkteamName: str
|
|
10197
|
-
MemberDefinitions:
|
|
10206
|
+
MemberDefinitions: List[MemberDefinitionOutputTypeDef]
|
|
10198
10207
|
WorkteamArn: str
|
|
10199
10208
|
Description: str
|
|
10200
10209
|
WorkforceArn: NotRequired[str]
|
|
10201
|
-
ProductListingIds: NotRequired[
|
|
10210
|
+
ProductListingIds: NotRequired[List[str]]
|
|
10202
10211
|
SubDomain: NotRequired[str]
|
|
10203
10212
|
CreateDate: NotRequired[datetime]
|
|
10204
10213
|
LastUpdatedDate: NotRequired[datetime]
|
|
@@ -10207,17 +10216,17 @@ class WorkteamTypeDef(TypedDict):
|
|
|
10207
10216
|
|
|
10208
10217
|
class TrainingSpecificationOutputTypeDef(TypedDict):
|
|
10209
10218
|
TrainingImage: str
|
|
10210
|
-
SupportedTrainingInstanceTypes:
|
|
10211
|
-
TrainingChannels:
|
|
10219
|
+
SupportedTrainingInstanceTypes: List[TrainingInstanceTypeType]
|
|
10220
|
+
TrainingChannels: List[ChannelSpecificationOutputTypeDef]
|
|
10212
10221
|
TrainingImageDigest: NotRequired[str]
|
|
10213
|
-
SupportedHyperParameters: NotRequired[
|
|
10222
|
+
SupportedHyperParameters: NotRequired[List[HyperParameterSpecificationOutputTypeDef]]
|
|
10214
10223
|
SupportsDistributedTraining: NotRequired[bool]
|
|
10215
|
-
MetricDefinitions: NotRequired[
|
|
10216
|
-
SupportedTuningJobObjectiveMetrics: NotRequired[
|
|
10224
|
+
MetricDefinitions: NotRequired[List[MetricDefinitionTypeDef]]
|
|
10225
|
+
SupportedTuningJobObjectiveMetrics: NotRequired[List[HyperParameterTuningJobObjectiveTypeDef]]
|
|
10217
10226
|
AdditionalS3DataSource: NotRequired[AdditionalS3DataSourceTypeDef]
|
|
10218
10227
|
|
|
10219
10228
|
class ListAppImageConfigsResponseTypeDef(TypedDict):
|
|
10220
|
-
AppImageConfigs:
|
|
10229
|
+
AppImageConfigs: List[AppImageConfigDetailsTypeDef]
|
|
10221
10230
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10222
10231
|
NextToken: NotRequired[str]
|
|
10223
10232
|
|
|
@@ -10245,8 +10254,8 @@ class ContainerDefinitionOutputTypeDef(TypedDict):
|
|
|
10245
10254
|
Mode: NotRequired[ContainerModeType]
|
|
10246
10255
|
ModelDataUrl: NotRequired[str]
|
|
10247
10256
|
ModelDataSource: NotRequired[ModelDataSourceTypeDef]
|
|
10248
|
-
AdditionalModelDataSources: NotRequired[
|
|
10249
|
-
Environment: NotRequired[
|
|
10257
|
+
AdditionalModelDataSources: NotRequired[List[AdditionalModelDataSourceTypeDef]]
|
|
10258
|
+
Environment: NotRequired[Dict[str, str]]
|
|
10250
10259
|
ModelPackageName: NotRequired[str]
|
|
10251
10260
|
InferenceSpecificationName: NotRequired[str]
|
|
10252
10261
|
MultiModelConfig: NotRequired[MultiModelConfigTypeDef]
|
|
@@ -10271,12 +10280,13 @@ class ModelPackageContainerDefinitionOutputTypeDef(TypedDict):
|
|
|
10271
10280
|
ModelDataUrl: NotRequired[str]
|
|
10272
10281
|
ModelDataSource: NotRequired[ModelDataSourceTypeDef]
|
|
10273
10282
|
ProductId: NotRequired[str]
|
|
10274
|
-
Environment: NotRequired[
|
|
10283
|
+
Environment: NotRequired[Dict[str, str]]
|
|
10275
10284
|
ModelInput: NotRequired[ModelInputTypeDef]
|
|
10276
10285
|
Framework: NotRequired[str]
|
|
10277
10286
|
FrameworkVersion: NotRequired[str]
|
|
10278
10287
|
NearestModelName: NotRequired[str]
|
|
10279
10288
|
AdditionalS3DataSource: NotRequired[AdditionalS3DataSourceTypeDef]
|
|
10289
|
+
ModelDataETag: NotRequired[str]
|
|
10280
10290
|
|
|
10281
10291
|
class ModelPackageContainerDefinitionTypeDef(TypedDict):
|
|
10282
10292
|
Image: str
|
|
@@ -10291,14 +10301,16 @@ class ModelPackageContainerDefinitionTypeDef(TypedDict):
|
|
|
10291
10301
|
FrameworkVersion: NotRequired[str]
|
|
10292
10302
|
NearestModelName: NotRequired[str]
|
|
10293
10303
|
AdditionalS3DataSource: NotRequired[AdditionalS3DataSourceTypeDef]
|
|
10304
|
+
ModelDataETag: NotRequired[str]
|
|
10294
10305
|
|
|
10295
10306
|
class SourceAlgorithmTypeDef(TypedDict):
|
|
10296
10307
|
AlgorithmName: str
|
|
10297
10308
|
ModelDataUrl: NotRequired[str]
|
|
10298
10309
|
ModelDataSource: NotRequired[ModelDataSourceTypeDef]
|
|
10310
|
+
ModelDataETag: NotRequired[str]
|
|
10299
10311
|
|
|
10300
10312
|
class ListMonitoringAlertsResponseTypeDef(TypedDict):
|
|
10301
|
-
MonitoringAlertSummaries:
|
|
10313
|
+
MonitoringAlertSummaries: List[MonitoringAlertSummaryTypeDef]
|
|
10302
10314
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10303
10315
|
NextToken: NotRequired[str]
|
|
10304
10316
|
|
|
@@ -10317,7 +10329,7 @@ DescribeInferenceExperimentResponseTypeDef = TypedDict(
|
|
|
10317
10329
|
"LastModifiedTime": datetime,
|
|
10318
10330
|
"RoleArn": str,
|
|
10319
10331
|
"EndpointMetadata": EndpointMetadataTypeDef,
|
|
10320
|
-
"ModelVariants":
|
|
10332
|
+
"ModelVariants": List[ModelVariantConfigSummaryTypeDef],
|
|
10321
10333
|
"DataStorageConfig": InferenceExperimentDataStorageConfigOutputTypeDef,
|
|
10322
10334
|
"ShadowModeConfig": ShadowModeConfigOutputTypeDef,
|
|
10323
10335
|
"KmsKey": str,
|
|
@@ -10419,9 +10431,9 @@ class DescribeOptimizationJobResponseTypeDef(TypedDict):
|
|
|
10419
10431
|
FailureReason: str
|
|
10420
10432
|
OptimizationJobName: str
|
|
10421
10433
|
ModelSource: OptimizationJobModelSourceTypeDef
|
|
10422
|
-
OptimizationEnvironment:
|
|
10434
|
+
OptimizationEnvironment: Dict[str, str]
|
|
10423
10435
|
DeploymentInstanceType: OptimizationJobDeploymentInstanceTypeType
|
|
10424
|
-
OptimizationConfigs:
|
|
10436
|
+
OptimizationConfigs: List[OptimizationConfigOutputTypeDef]
|
|
10425
10437
|
OutputConfig: OptimizationJobOutputConfigTypeDef
|
|
10426
10438
|
OptimizationOutput: OptimizationOutputTypeDef
|
|
10427
10439
|
RoleArn: str
|
|
@@ -10430,13 +10442,13 @@ class DescribeOptimizationJobResponseTypeDef(TypedDict):
|
|
|
10430
10442
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10431
10443
|
|
|
10432
10444
|
class DescribeProcessingJobResponseTypeDef(TypedDict):
|
|
10433
|
-
ProcessingInputs:
|
|
10445
|
+
ProcessingInputs: List[ProcessingInputTypeDef]
|
|
10434
10446
|
ProcessingOutputConfig: ProcessingOutputConfigOutputTypeDef
|
|
10435
10447
|
ProcessingJobName: str
|
|
10436
10448
|
ProcessingResources: ProcessingResourcesTypeDef
|
|
10437
10449
|
StoppingCondition: ProcessingStoppingConditionTypeDef
|
|
10438
10450
|
AppSpecification: AppSpecificationOutputTypeDef
|
|
10439
|
-
Environment:
|
|
10451
|
+
Environment: Dict[str, str]
|
|
10440
10452
|
NetworkConfig: NetworkConfigOutputTypeDef
|
|
10441
10453
|
RoleArn: str
|
|
10442
10454
|
ExperimentConfig: ExperimentConfigTypeDef
|
|
@@ -10454,13 +10466,13 @@ class DescribeProcessingJobResponseTypeDef(TypedDict):
|
|
|
10454
10466
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10455
10467
|
|
|
10456
10468
|
class ProcessingJobTypeDef(TypedDict):
|
|
10457
|
-
ProcessingInputs: NotRequired[
|
|
10469
|
+
ProcessingInputs: NotRequired[List[ProcessingInputTypeDef]]
|
|
10458
10470
|
ProcessingOutputConfig: NotRequired[ProcessingOutputConfigOutputTypeDef]
|
|
10459
10471
|
ProcessingJobName: NotRequired[str]
|
|
10460
10472
|
ProcessingResources: NotRequired[ProcessingResourcesTypeDef]
|
|
10461
10473
|
StoppingCondition: NotRequired[ProcessingStoppingConditionTypeDef]
|
|
10462
10474
|
AppSpecification: NotRequired[AppSpecificationOutputTypeDef]
|
|
10463
|
-
Environment: NotRequired[
|
|
10475
|
+
Environment: NotRequired[Dict[str, str]]
|
|
10464
10476
|
NetworkConfig: NotRequired[NetworkConfigOutputTypeDef]
|
|
10465
10477
|
RoleArn: NotRequired[str]
|
|
10466
10478
|
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
@@ -10475,7 +10487,7 @@ class ProcessingJobTypeDef(TypedDict):
|
|
|
10475
10487
|
MonitoringScheduleArn: NotRequired[str]
|
|
10476
10488
|
AutoMLJobArn: NotRequired[str]
|
|
10477
10489
|
TrainingJobArn: NotRequired[str]
|
|
10478
|
-
Tags: NotRequired[
|
|
10490
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10479
10491
|
|
|
10480
10492
|
class CreateProcessingJobRequestRequestTypeDef(TypedDict):
|
|
10481
10493
|
ProcessingJobName: str
|
|
@@ -10529,7 +10541,7 @@ class DescribeLabelingJobResponseTypeDef(TypedDict):
|
|
|
10529
10541
|
StoppingConditions: LabelingJobStoppingConditionsTypeDef
|
|
10530
10542
|
LabelingJobAlgorithmsConfig: LabelingJobAlgorithmsConfigOutputTypeDef
|
|
10531
10543
|
HumanTaskConfig: HumanTaskConfigOutputTypeDef
|
|
10532
|
-
Tags:
|
|
10544
|
+
Tags: List[TagTypeDef]
|
|
10533
10545
|
LabelingJobOutput: LabelingJobOutputTypeDef
|
|
10534
10546
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10535
10547
|
|
|
@@ -10545,7 +10557,7 @@ class SpaceSettingsOutputTypeDef(TypedDict):
|
|
|
10545
10557
|
JupyterLabAppSettings: NotRequired[SpaceJupyterLabAppSettingsOutputTypeDef]
|
|
10546
10558
|
AppType: NotRequired[AppTypeType]
|
|
10547
10559
|
SpaceStorageSettings: NotRequired[SpaceStorageSettingsTypeDef]
|
|
10548
|
-
CustomFileSystems: NotRequired[
|
|
10560
|
+
CustomFileSystems: NotRequired[List[CustomFileSystemTypeDef]]
|
|
10549
10561
|
|
|
10550
10562
|
SpaceJupyterLabAppSettingsUnionTypeDef = Union[
|
|
10551
10563
|
SpaceJupyterLabAppSettingsTypeDef, SpaceJupyterLabAppSettingsOutputTypeDef
|
|
@@ -10561,10 +10573,10 @@ class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
|
10561
10573
|
TrainingJobStatus: TrainingJobStatusType
|
|
10562
10574
|
SecondaryStatus: SecondaryStatusType
|
|
10563
10575
|
FailureReason: str
|
|
10564
|
-
HyperParameters:
|
|
10576
|
+
HyperParameters: Dict[str, str]
|
|
10565
10577
|
AlgorithmSpecification: AlgorithmSpecificationOutputTypeDef
|
|
10566
10578
|
RoleArn: str
|
|
10567
|
-
InputDataConfig:
|
|
10579
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
10568
10580
|
OutputDataConfig: OutputDataConfigTypeDef
|
|
10569
10581
|
ResourceConfig: ResourceConfigOutputTypeDef
|
|
10570
10582
|
WarmPoolStatus: WarmPoolStatusTypeDef
|
|
@@ -10574,8 +10586,8 @@ class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
|
10574
10586
|
TrainingStartTime: datetime
|
|
10575
10587
|
TrainingEndTime: datetime
|
|
10576
10588
|
LastModifiedTime: datetime
|
|
10577
|
-
SecondaryStatusTransitions:
|
|
10578
|
-
FinalMetricDataList:
|
|
10589
|
+
SecondaryStatusTransitions: List[SecondaryStatusTransitionTypeDef]
|
|
10590
|
+
FinalMetricDataList: List[MetricDataTypeDef]
|
|
10579
10591
|
EnableNetworkIsolation: bool
|
|
10580
10592
|
EnableInterContainerTrafficEncryption: bool
|
|
10581
10593
|
EnableManagedSpotTraining: bool
|
|
@@ -10584,14 +10596,14 @@ class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
|
10584
10596
|
BillableTimeInSeconds: int
|
|
10585
10597
|
DebugHookConfig: DebugHookConfigOutputTypeDef
|
|
10586
10598
|
ExperimentConfig: ExperimentConfigTypeDef
|
|
10587
|
-
DebugRuleConfigurations:
|
|
10599
|
+
DebugRuleConfigurations: List[DebugRuleConfigurationOutputTypeDef]
|
|
10588
10600
|
TensorBoardOutputConfig: TensorBoardOutputConfigTypeDef
|
|
10589
|
-
DebugRuleEvaluationStatuses:
|
|
10601
|
+
DebugRuleEvaluationStatuses: List[DebugRuleEvaluationStatusTypeDef]
|
|
10590
10602
|
ProfilerConfig: ProfilerConfigOutputTypeDef
|
|
10591
|
-
ProfilerRuleConfigurations:
|
|
10592
|
-
ProfilerRuleEvaluationStatuses:
|
|
10603
|
+
ProfilerRuleConfigurations: List[ProfilerRuleConfigurationOutputTypeDef]
|
|
10604
|
+
ProfilerRuleEvaluationStatuses: List[ProfilerRuleEvaluationStatusTypeDef]
|
|
10593
10605
|
ProfilingStatus: ProfilingStatusType
|
|
10594
|
-
Environment:
|
|
10606
|
+
Environment: Dict[str, str]
|
|
10595
10607
|
RetryStrategy: RetryStrategyTypeDef
|
|
10596
10608
|
RemoteDebugConfig: RemoteDebugConfigTypeDef
|
|
10597
10609
|
InfraCheckConfig: InfraCheckConfigTypeDef
|
|
@@ -10607,10 +10619,10 @@ class TrainingJobTypeDef(TypedDict):
|
|
|
10607
10619
|
TrainingJobStatus: NotRequired[TrainingJobStatusType]
|
|
10608
10620
|
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
10609
10621
|
FailureReason: NotRequired[str]
|
|
10610
|
-
HyperParameters: NotRequired[
|
|
10622
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
10611
10623
|
AlgorithmSpecification: NotRequired[AlgorithmSpecificationOutputTypeDef]
|
|
10612
10624
|
RoleArn: NotRequired[str]
|
|
10613
|
-
InputDataConfig: NotRequired[
|
|
10625
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
10614
10626
|
OutputDataConfig: NotRequired[OutputDataConfigTypeDef]
|
|
10615
10627
|
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
10616
10628
|
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
@@ -10619,8 +10631,8 @@ class TrainingJobTypeDef(TypedDict):
|
|
|
10619
10631
|
TrainingStartTime: NotRequired[datetime]
|
|
10620
10632
|
TrainingEndTime: NotRequired[datetime]
|
|
10621
10633
|
LastModifiedTime: NotRequired[datetime]
|
|
10622
|
-
SecondaryStatusTransitions: NotRequired[
|
|
10623
|
-
FinalMetricDataList: NotRequired[
|
|
10634
|
+
SecondaryStatusTransitions: NotRequired[List[SecondaryStatusTransitionTypeDef]]
|
|
10635
|
+
FinalMetricDataList: NotRequired[List[MetricDataTypeDef]]
|
|
10624
10636
|
EnableNetworkIsolation: NotRequired[bool]
|
|
10625
10637
|
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
10626
10638
|
EnableManagedSpotTraining: NotRequired[bool]
|
|
@@ -10629,13 +10641,13 @@ class TrainingJobTypeDef(TypedDict):
|
|
|
10629
10641
|
BillableTimeInSeconds: NotRequired[int]
|
|
10630
10642
|
DebugHookConfig: NotRequired[DebugHookConfigOutputTypeDef]
|
|
10631
10643
|
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
10632
|
-
DebugRuleConfigurations: NotRequired[
|
|
10644
|
+
DebugRuleConfigurations: NotRequired[List[DebugRuleConfigurationOutputTypeDef]]
|
|
10633
10645
|
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
10634
|
-
DebugRuleEvaluationStatuses: NotRequired[
|
|
10646
|
+
DebugRuleEvaluationStatuses: NotRequired[List[DebugRuleEvaluationStatusTypeDef]]
|
|
10635
10647
|
ProfilerConfig: NotRequired[ProfilerConfigOutputTypeDef]
|
|
10636
|
-
Environment: NotRequired[
|
|
10648
|
+
Environment: NotRequired[Dict[str, str]]
|
|
10637
10649
|
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
10638
|
-
Tags: NotRequired[
|
|
10650
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10639
10651
|
|
|
10640
10652
|
class CreateTransformJobRequestRequestTypeDef(TypedDict):
|
|
10641
10653
|
TransformJobName: str
|
|
@@ -10663,7 +10675,7 @@ class DescribeTransformJobResponseTypeDef(TypedDict):
|
|
|
10663
10675
|
ModelClientConfig: ModelClientConfigTypeDef
|
|
10664
10676
|
MaxPayloadInMB: int
|
|
10665
10677
|
BatchStrategy: BatchStrategyType
|
|
10666
|
-
Environment:
|
|
10678
|
+
Environment: Dict[str, str]
|
|
10667
10679
|
TransformInput: TransformInputTypeDef
|
|
10668
10680
|
TransformOutput: TransformOutputTypeDef
|
|
10669
10681
|
DataCaptureConfig: BatchDataCaptureConfigTypeDef
|
|
@@ -10684,7 +10696,7 @@ class TransformJobDefinitionOutputTypeDef(TypedDict):
|
|
|
10684
10696
|
MaxConcurrentTransforms: NotRequired[int]
|
|
10685
10697
|
MaxPayloadInMB: NotRequired[int]
|
|
10686
10698
|
BatchStrategy: NotRequired[BatchStrategyType]
|
|
10687
|
-
Environment: NotRequired[
|
|
10699
|
+
Environment: NotRequired[Dict[str, str]]
|
|
10688
10700
|
|
|
10689
10701
|
class TransformJobDefinitionTypeDef(TypedDict):
|
|
10690
10702
|
TransformInput: TransformInputTypeDef
|
|
@@ -10705,7 +10717,7 @@ class TransformJobTypeDef(TypedDict):
|
|
|
10705
10717
|
ModelClientConfig: NotRequired[ModelClientConfigTypeDef]
|
|
10706
10718
|
MaxPayloadInMB: NotRequired[int]
|
|
10707
10719
|
BatchStrategy: NotRequired[BatchStrategyType]
|
|
10708
|
-
Environment: NotRequired[
|
|
10720
|
+
Environment: NotRequired[Dict[str, str]]
|
|
10709
10721
|
TransformInput: NotRequired[TransformInputTypeDef]
|
|
10710
10722
|
TransformOutput: NotRequired[TransformOutputTypeDef]
|
|
10711
10723
|
DataCaptureConfig: NotRequired[BatchDataCaptureConfigTypeDef]
|
|
@@ -10717,7 +10729,7 @@ class TransformJobTypeDef(TypedDict):
|
|
|
10717
10729
|
AutoMLJobArn: NotRequired[str]
|
|
10718
10730
|
DataProcessing: NotRequired[DataProcessingTypeDef]
|
|
10719
10731
|
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
10720
|
-
Tags: NotRequired[
|
|
10732
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10721
10733
|
|
|
10722
10734
|
class DescribeDomainResponseTypeDef(TypedDict):
|
|
10723
10735
|
DomainArn: str
|
|
@@ -10736,7 +10748,7 @@ class DescribeDomainResponseTypeDef(TypedDict):
|
|
|
10736
10748
|
DomainSettings: DomainSettingsOutputTypeDef
|
|
10737
10749
|
AppNetworkAccessType: AppNetworkAccessTypeType
|
|
10738
10750
|
HomeEfsFileSystemKmsKeyId: str
|
|
10739
|
-
SubnetIds:
|
|
10751
|
+
SubnetIds: List[str]
|
|
10740
10752
|
Url: str
|
|
10741
10753
|
VpcId: str
|
|
10742
10754
|
KmsKeyId: str
|
|
@@ -10766,7 +10778,7 @@ class AsyncInferenceConfigTypeDef(TypedDict):
|
|
|
10766
10778
|
class DescribeAutoMLJobV2ResponseTypeDef(TypedDict):
|
|
10767
10779
|
AutoMLJobName: str
|
|
10768
10780
|
AutoMLJobArn: str
|
|
10769
|
-
AutoMLJobInputDataConfig:
|
|
10781
|
+
AutoMLJobInputDataConfig: List[AutoMLJobChannelTypeDef]
|
|
10770
10782
|
OutputDataConfig: AutoMLOutputDataConfigTypeDef
|
|
10771
10783
|
RoleArn: str
|
|
10772
10784
|
AutoMLJobObjective: AutoMLJobObjectiveTypeDef
|
|
@@ -10776,7 +10788,7 @@ class DescribeAutoMLJobV2ResponseTypeDef(TypedDict):
|
|
|
10776
10788
|
EndTime: datetime
|
|
10777
10789
|
LastModifiedTime: datetime
|
|
10778
10790
|
FailureReason: str
|
|
10779
|
-
PartialFailureReasons:
|
|
10791
|
+
PartialFailureReasons: List[AutoMLPartialFailureReasonTypeDef]
|
|
10780
10792
|
BestCandidate: AutoMLCandidateTypeDef
|
|
10781
10793
|
AutoMLJobStatus: AutoMLJobStatusType
|
|
10782
10794
|
AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatusType
|
|
@@ -10811,7 +10823,7 @@ class TimeSeriesForecastingJobConfigTypeDef(TypedDict):
|
|
|
10811
10823
|
CandidateGenerationConfig: NotRequired[CandidateGenerationConfigUnionTypeDef]
|
|
10812
10824
|
|
|
10813
10825
|
class ListPipelineExecutionStepsResponseTypeDef(TypedDict):
|
|
10814
|
-
PipelineExecutionSteps:
|
|
10826
|
+
PipelineExecutionSteps: List[PipelineExecutionStepTypeDef]
|
|
10815
10827
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10816
10828
|
NextToken: NotRequired[str]
|
|
10817
10829
|
|
|
@@ -10842,8 +10854,8 @@ class DescribeInferenceRecommendationsJobResponseTypeDef(TypedDict):
|
|
|
10842
10854
|
FailureReason: str
|
|
10843
10855
|
InputConfig: RecommendationJobInputConfigOutputTypeDef
|
|
10844
10856
|
StoppingConditions: RecommendationJobStoppingConditionsOutputTypeDef
|
|
10845
|
-
InferenceRecommendations:
|
|
10846
|
-
EndpointPerformances:
|
|
10857
|
+
InferenceRecommendations: List[InferenceRecommendationTypeDef]
|
|
10858
|
+
EndpointPerformances: List[EndpointPerformanceTypeDef]
|
|
10847
10859
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10848
10860
|
|
|
10849
10861
|
HyperParameterSpecificationTypeDef = TypedDict(
|
|
@@ -10878,13 +10890,13 @@ class EndpointInputConfigurationTypeDef(TypedDict):
|
|
|
10878
10890
|
class DescribeEndpointConfigOutputTypeDef(TypedDict):
|
|
10879
10891
|
EndpointConfigName: str
|
|
10880
10892
|
EndpointConfigArn: str
|
|
10881
|
-
ProductionVariants:
|
|
10893
|
+
ProductionVariants: List[ProductionVariantTypeDef]
|
|
10882
10894
|
DataCaptureConfig: DataCaptureConfigOutputTypeDef
|
|
10883
10895
|
KmsKeyId: str
|
|
10884
10896
|
CreationTime: datetime
|
|
10885
10897
|
AsyncInferenceConfig: AsyncInferenceConfigOutputTypeDef
|
|
10886
10898
|
ExplainerConfig: ExplainerConfigOutputTypeDef
|
|
10887
|
-
ShadowProductionVariants:
|
|
10899
|
+
ShadowProductionVariants: List[ProductionVariantTypeDef]
|
|
10888
10900
|
ExecutionRoleArn: str
|
|
10889
10901
|
VpcConfig: VpcConfigOutputTypeDef
|
|
10890
10902
|
EnableNetworkIsolation: bool
|
|
@@ -10894,7 +10906,7 @@ class DescribeEndpointOutputTypeDef(TypedDict):
|
|
|
10894
10906
|
EndpointName: str
|
|
10895
10907
|
EndpointArn: str
|
|
10896
10908
|
EndpointConfigName: str
|
|
10897
|
-
ProductionVariants:
|
|
10909
|
+
ProductionVariants: List[ProductionVariantSummaryTypeDef]
|
|
10898
10910
|
DataCaptureConfig: DataCaptureConfigSummaryTypeDef
|
|
10899
10911
|
EndpointStatus: EndpointStatusType
|
|
10900
10912
|
FailureReason: str
|
|
@@ -10904,7 +10916,7 @@ class DescribeEndpointOutputTypeDef(TypedDict):
|
|
|
10904
10916
|
AsyncInferenceConfig: AsyncInferenceConfigOutputTypeDef
|
|
10905
10917
|
PendingDeploymentSummary: PendingDeploymentSummaryTypeDef
|
|
10906
10918
|
ExplainerConfig: ExplainerConfigOutputTypeDef
|
|
10907
|
-
ShadowProductionVariants:
|
|
10919
|
+
ShadowProductionVariants: List[ProductionVariantSummaryTypeDef]
|
|
10908
10920
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10909
10921
|
|
|
10910
10922
|
class ExplainerConfigTypeDef(TypedDict):
|
|
@@ -10927,7 +10939,7 @@ class DescribeHyperParameterTuningJobResponseTypeDef(TypedDict):
|
|
|
10927
10939
|
HyperParameterTuningJobArn: str
|
|
10928
10940
|
HyperParameterTuningJobConfig: HyperParameterTuningJobConfigOutputTypeDef
|
|
10929
10941
|
TrainingJobDefinition: HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
10930
|
-
TrainingJobDefinitions:
|
|
10942
|
+
TrainingJobDefinitions: List[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
10931
10943
|
HyperParameterTuningJobStatus: HyperParameterTuningJobStatusType
|
|
10932
10944
|
CreationTime: datetime
|
|
10933
10945
|
HyperParameterTuningEndTime: datetime
|
|
@@ -10948,7 +10960,7 @@ class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
|
10948
10960
|
HyperParameterTuningJobArn: NotRequired[str]
|
|
10949
10961
|
HyperParameterTuningJobConfig: NotRequired[HyperParameterTuningJobConfigOutputTypeDef]
|
|
10950
10962
|
TrainingJobDefinition: NotRequired[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
10951
|
-
TrainingJobDefinitions: NotRequired[
|
|
10963
|
+
TrainingJobDefinitions: NotRequired[List[HyperParameterTrainingJobDefinitionOutputTypeDef]]
|
|
10952
10964
|
HyperParameterTuningJobStatus: NotRequired[HyperParameterTuningJobStatusType]
|
|
10953
10965
|
CreationTime: NotRequired[datetime]
|
|
10954
10966
|
HyperParameterTuningEndTime: NotRequired[datetime]
|
|
@@ -10961,10 +10973,10 @@ class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
|
10961
10973
|
FailureReason: NotRequired[str]
|
|
10962
10974
|
TuningJobCompletionDetails: NotRequired[HyperParameterTuningJobCompletionDetailsTypeDef]
|
|
10963
10975
|
ConsumedResources: NotRequired[HyperParameterTuningJobConsumedResourcesTypeDef]
|
|
10964
|
-
Tags: NotRequired[
|
|
10976
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10965
10977
|
|
|
10966
10978
|
class ListSpacesResponseTypeDef(TypedDict):
|
|
10967
|
-
Spaces:
|
|
10979
|
+
Spaces: List[SpaceDetailsTypeDef]
|
|
10968
10980
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10969
10981
|
NextToken: NotRequired[str]
|
|
10970
10982
|
|
|
@@ -10979,7 +10991,7 @@ class DefaultSpaceSettingsTypeDef(TypedDict):
|
|
|
10979
10991
|
CustomFileSystemConfigs: NotRequired[Sequence[CustomFileSystemConfigTypeDef]]
|
|
10980
10992
|
|
|
10981
10993
|
class ListInferenceRecommendationsJobStepsResponseTypeDef(TypedDict):
|
|
10982
|
-
Steps:
|
|
10994
|
+
Steps: List[InferenceRecommendationsJobStepTypeDef]
|
|
10983
10995
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10984
10996
|
NextToken: NotRequired[str]
|
|
10985
10997
|
|
|
@@ -11008,7 +11020,7 @@ class DescribeWorkteamResponseTypeDef(TypedDict):
|
|
|
11008
11020
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11009
11021
|
|
|
11010
11022
|
class ListWorkteamsResponseTypeDef(TypedDict):
|
|
11011
|
-
Workteams:
|
|
11023
|
+
Workteams: List[WorkteamTypeDef]
|
|
11012
11024
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11013
11025
|
NextToken: NotRequired[str]
|
|
11014
11026
|
|
|
@@ -11017,7 +11029,7 @@ class UpdateWorkteamResponseTypeDef(TypedDict):
|
|
|
11017
11029
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11018
11030
|
|
|
11019
11031
|
class ListLabelingJobsResponseTypeDef(TypedDict):
|
|
11020
|
-
LabelingJobSummaryList:
|
|
11032
|
+
LabelingJobSummaryList: List[LabelingJobSummaryTypeDef]
|
|
11021
11033
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11022
11034
|
NextToken: NotRequired[str]
|
|
11023
11035
|
|
|
@@ -11026,12 +11038,12 @@ class DynamicScalingConfigurationTypeDef(TypedDict):
|
|
|
11026
11038
|
MaxCapacity: NotRequired[int]
|
|
11027
11039
|
ScaleInCooldown: NotRequired[int]
|
|
11028
11040
|
ScaleOutCooldown: NotRequired[int]
|
|
11029
|
-
ScalingPolicies: NotRequired[
|
|
11041
|
+
ScalingPolicies: NotRequired[List[ScalingPolicyTypeDef]]
|
|
11030
11042
|
|
|
11031
11043
|
class DescribeModelOutputTypeDef(TypedDict):
|
|
11032
11044
|
ModelName: str
|
|
11033
11045
|
PrimaryContainer: ContainerDefinitionOutputTypeDef
|
|
11034
|
-
Containers:
|
|
11046
|
+
Containers: List[ContainerDefinitionOutputTypeDef]
|
|
11035
11047
|
InferenceExecutionConfig: InferenceExecutionConfigTypeDef
|
|
11036
11048
|
ExecutionRoleArn: str
|
|
11037
11049
|
VpcConfig: VpcConfigOutputTypeDef
|
|
@@ -11044,14 +11056,14 @@ class DescribeModelOutputTypeDef(TypedDict):
|
|
|
11044
11056
|
class ModelTypeDef(TypedDict):
|
|
11045
11057
|
ModelName: NotRequired[str]
|
|
11046
11058
|
PrimaryContainer: NotRequired[ContainerDefinitionOutputTypeDef]
|
|
11047
|
-
Containers: NotRequired[
|
|
11059
|
+
Containers: NotRequired[List[ContainerDefinitionOutputTypeDef]]
|
|
11048
11060
|
InferenceExecutionConfig: NotRequired[InferenceExecutionConfigTypeDef]
|
|
11049
11061
|
ExecutionRoleArn: NotRequired[str]
|
|
11050
11062
|
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
11051
11063
|
CreationTime: NotRequired[datetime]
|
|
11052
11064
|
ModelArn: NotRequired[str]
|
|
11053
11065
|
EnableNetworkIsolation: NotRequired[bool]
|
|
11054
|
-
Tags: NotRequired[
|
|
11066
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11055
11067
|
DeploymentRecommendation: NotRequired[DeploymentRecommendationTypeDef]
|
|
11056
11068
|
|
|
11057
11069
|
ContainerDefinitionUnionTypeDef = Union[
|
|
@@ -11060,26 +11072,26 @@ ContainerDefinitionUnionTypeDef = Union[
|
|
|
11060
11072
|
|
|
11061
11073
|
class AdditionalInferenceSpecificationDefinitionOutputTypeDef(TypedDict):
|
|
11062
11074
|
Name: str
|
|
11063
|
-
Containers:
|
|
11075
|
+
Containers: List[ModelPackageContainerDefinitionOutputTypeDef]
|
|
11064
11076
|
Description: NotRequired[str]
|
|
11065
|
-
SupportedTransformInstanceTypes: NotRequired[
|
|
11066
|
-
SupportedRealtimeInferenceInstanceTypes: NotRequired[
|
|
11067
|
-
SupportedContentTypes: NotRequired[
|
|
11068
|
-
SupportedResponseMIMETypes: NotRequired[
|
|
11077
|
+
SupportedTransformInstanceTypes: NotRequired[List[TransformInstanceTypeType]]
|
|
11078
|
+
SupportedRealtimeInferenceInstanceTypes: NotRequired[List[ProductionVariantInstanceTypeType]]
|
|
11079
|
+
SupportedContentTypes: NotRequired[List[str]]
|
|
11080
|
+
SupportedResponseMIMETypes: NotRequired[List[str]]
|
|
11069
11081
|
|
|
11070
11082
|
class InferenceSpecificationOutputTypeDef(TypedDict):
|
|
11071
|
-
Containers:
|
|
11072
|
-
SupportedTransformInstanceTypes: NotRequired[
|
|
11073
|
-
SupportedRealtimeInferenceInstanceTypes: NotRequired[
|
|
11074
|
-
SupportedContentTypes: NotRequired[
|
|
11075
|
-
SupportedResponseMIMETypes: NotRequired[
|
|
11083
|
+
Containers: List[ModelPackageContainerDefinitionOutputTypeDef]
|
|
11084
|
+
SupportedTransformInstanceTypes: NotRequired[List[TransformInstanceTypeType]]
|
|
11085
|
+
SupportedRealtimeInferenceInstanceTypes: NotRequired[List[ProductionVariantInstanceTypeType]]
|
|
11086
|
+
SupportedContentTypes: NotRequired[List[str]]
|
|
11087
|
+
SupportedResponseMIMETypes: NotRequired[List[str]]
|
|
11076
11088
|
|
|
11077
11089
|
ModelPackageContainerDefinitionUnionTypeDef = Union[
|
|
11078
11090
|
ModelPackageContainerDefinitionTypeDef, ModelPackageContainerDefinitionOutputTypeDef
|
|
11079
11091
|
]
|
|
11080
11092
|
|
|
11081
11093
|
class SourceAlgorithmSpecificationOutputTypeDef(TypedDict):
|
|
11082
|
-
SourceAlgorithms:
|
|
11094
|
+
SourceAlgorithms: List[SourceAlgorithmTypeDef]
|
|
11083
11095
|
|
|
11084
11096
|
class SourceAlgorithmSpecificationTypeDef(TypedDict):
|
|
11085
11097
|
SourceAlgorithms: Sequence[SourceAlgorithmTypeDef]
|
|
@@ -11153,14 +11165,14 @@ class DescribeModelQualityJobDefinitionResponseTypeDef(TypedDict):
|
|
|
11153
11165
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11154
11166
|
|
|
11155
11167
|
class MonitoringJobDefinitionOutputTypeDef(TypedDict):
|
|
11156
|
-
MonitoringInputs:
|
|
11168
|
+
MonitoringInputs: List[MonitoringInputOutputTypeDef]
|
|
11157
11169
|
MonitoringOutputConfig: MonitoringOutputConfigOutputTypeDef
|
|
11158
11170
|
MonitoringResources: MonitoringResourcesTypeDef
|
|
11159
11171
|
MonitoringAppSpecification: MonitoringAppSpecificationOutputTypeDef
|
|
11160
11172
|
RoleArn: str
|
|
11161
11173
|
BaselineConfig: NotRequired[MonitoringBaselineConfigTypeDef]
|
|
11162
11174
|
StoppingCondition: NotRequired[MonitoringStoppingConditionTypeDef]
|
|
11163
|
-
Environment: NotRequired[
|
|
11175
|
+
Environment: NotRequired[Dict[str, str]]
|
|
11164
11176
|
NetworkConfig: NotRequired[NetworkConfigOutputTypeDef]
|
|
11165
11177
|
|
|
11166
11178
|
BatchTransformInputUnionTypeDef = Union[
|
|
@@ -11416,11 +11428,11 @@ class UpdateSpaceRequestRequestTypeDef(TypedDict):
|
|
|
11416
11428
|
|
|
11417
11429
|
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
11418
11430
|
ValidationRole: str
|
|
11419
|
-
ValidationProfiles:
|
|
11431
|
+
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
11420
11432
|
|
|
11421
11433
|
class ModelPackageValidationSpecificationOutputTypeDef(TypedDict):
|
|
11422
11434
|
ValidationRole: str
|
|
11423
|
-
ValidationProfiles:
|
|
11435
|
+
ValidationProfiles: List[ModelPackageValidationProfileOutputTypeDef]
|
|
11424
11436
|
|
|
11425
11437
|
class ModelPackageValidationProfileTypeDef(TypedDict):
|
|
11426
11438
|
ProfileName: str
|
|
@@ -11438,15 +11450,15 @@ class TrialComponentTypeDef(TypedDict):
|
|
|
11438
11450
|
CreatedBy: NotRequired[UserContextTypeDef]
|
|
11439
11451
|
LastModifiedTime: NotRequired[datetime]
|
|
11440
11452
|
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
11441
|
-
Parameters: NotRequired[
|
|
11442
|
-
InputArtifacts: NotRequired[
|
|
11443
|
-
OutputArtifacts: NotRequired[
|
|
11444
|
-
Metrics: NotRequired[
|
|
11453
|
+
Parameters: NotRequired[Dict[str, TrialComponentParameterValueTypeDef]]
|
|
11454
|
+
InputArtifacts: NotRequired[Dict[str, TrialComponentArtifactTypeDef]]
|
|
11455
|
+
OutputArtifacts: NotRequired[Dict[str, TrialComponentArtifactTypeDef]]
|
|
11456
|
+
Metrics: NotRequired[List[TrialComponentMetricSummaryTypeDef]]
|
|
11445
11457
|
MetadataProperties: NotRequired[MetadataPropertiesTypeDef]
|
|
11446
11458
|
SourceDetail: NotRequired[TrialComponentSourceDetailTypeDef]
|
|
11447
11459
|
LineageGroupArn: NotRequired[str]
|
|
11448
|
-
Tags: NotRequired[
|
|
11449
|
-
Parents: NotRequired[
|
|
11460
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11461
|
+
Parents: NotRequired[List[ParentTypeDef]]
|
|
11450
11462
|
RunName: NotRequired[str]
|
|
11451
11463
|
|
|
11452
11464
|
class AutoMLProblemTypeConfigTypeDef(TypedDict):
|
|
@@ -11482,8 +11494,8 @@ class RecommendationJobInputConfigTypeDef(TypedDict):
|
|
|
11482
11494
|
VpcConfig: NotRequired[RecommendationJobVpcConfigUnionTypeDef]
|
|
11483
11495
|
|
|
11484
11496
|
class BatchDescribeModelPackageOutputTypeDef(TypedDict):
|
|
11485
|
-
ModelPackageSummaries:
|
|
11486
|
-
BatchDescribeModelPackageErrorMap:
|
|
11497
|
+
ModelPackageSummaries: Dict[str, BatchDescribeModelPackageSummaryTypeDef]
|
|
11498
|
+
BatchDescribeModelPackageErrorMap: Dict[str, BatchDescribeModelPackageErrorTypeDef]
|
|
11487
11499
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11488
11500
|
|
|
11489
11501
|
AdditionalInferenceSpecificationDefinitionUnionTypeDef = Union[
|
|
@@ -11529,7 +11541,7 @@ class ModelDashboardMonitoringScheduleTypeDef(TypedDict):
|
|
|
11529
11541
|
LastModifiedTime: NotRequired[datetime]
|
|
11530
11542
|
MonitoringScheduleConfig: NotRequired[MonitoringScheduleConfigOutputTypeDef]
|
|
11531
11543
|
EndpointName: NotRequired[str]
|
|
11532
|
-
MonitoringAlertSummaries: NotRequired[
|
|
11544
|
+
MonitoringAlertSummaries: NotRequired[List[MonitoringAlertSummaryTypeDef]]
|
|
11533
11545
|
LastMonitoringExecutionSummary: NotRequired[MonitoringExecutionSummaryTypeDef]
|
|
11534
11546
|
BatchTransformInput: NotRequired[BatchTransformInputOutputTypeDef]
|
|
11535
11547
|
|
|
@@ -11544,7 +11556,7 @@ class MonitoringScheduleTypeDef(TypedDict):
|
|
|
11544
11556
|
MonitoringScheduleConfig: NotRequired[MonitoringScheduleConfigOutputTypeDef]
|
|
11545
11557
|
EndpointName: NotRequired[str]
|
|
11546
11558
|
LastMonitoringExecutionSummary: NotRequired[MonitoringExecutionSummaryTypeDef]
|
|
11547
|
-
Tags: NotRequired[
|
|
11559
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11548
11560
|
|
|
11549
11561
|
class CreateDataQualityJobDefinitionRequestRequestTypeDef(TypedDict):
|
|
11550
11562
|
JobDefinitionName: str
|
|
@@ -11688,9 +11700,9 @@ class DescribeModelPackageOutputTypeDef(TypedDict):
|
|
|
11688
11700
|
Domain: str
|
|
11689
11701
|
Task: str
|
|
11690
11702
|
SamplePayloadUrl: str
|
|
11691
|
-
CustomerMetadataProperties:
|
|
11703
|
+
CustomerMetadataProperties: Dict[str, str]
|
|
11692
11704
|
DriftCheckBaselines: DriftCheckBaselinesTypeDef
|
|
11693
|
-
AdditionalInferenceSpecifications:
|
|
11705
|
+
AdditionalInferenceSpecifications: List[AdditionalInferenceSpecificationDefinitionOutputTypeDef]
|
|
11694
11706
|
SkipModelValidation: SkipModelValidationType
|
|
11695
11707
|
SourceUri: str
|
|
11696
11708
|
SecurityConfig: ModelPackageSecurityConfigTypeDef
|
|
@@ -11722,14 +11734,14 @@ class ModelPackageTypeDef(TypedDict):
|
|
|
11722
11734
|
Task: NotRequired[str]
|
|
11723
11735
|
SamplePayloadUrl: NotRequired[str]
|
|
11724
11736
|
AdditionalInferenceSpecifications: NotRequired[
|
|
11725
|
-
|
|
11737
|
+
List[AdditionalInferenceSpecificationDefinitionOutputTypeDef]
|
|
11726
11738
|
]
|
|
11727
11739
|
SourceUri: NotRequired[str]
|
|
11728
11740
|
SecurityConfig: NotRequired[ModelPackageSecurityConfigTypeDef]
|
|
11729
11741
|
ModelCard: NotRequired[ModelPackageModelCardTypeDef]
|
|
11730
11742
|
ModelLifeCycle: NotRequired[ModelLifeCycleTypeDef]
|
|
11731
|
-
Tags: NotRequired[
|
|
11732
|
-
CustomerMetadataProperties: NotRequired[
|
|
11743
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11744
|
+
CustomerMetadataProperties: NotRequired[Dict[str, str]]
|
|
11733
11745
|
DriftCheckBaselines: NotRequired[DriftCheckBaselinesTypeDef]
|
|
11734
11746
|
SkipModelValidation: NotRequired[SkipModelValidationType]
|
|
11735
11747
|
|
|
@@ -11762,9 +11774,9 @@ class CreateInferenceRecommendationsJobRequestRequestTypeDef(TypedDict):
|
|
|
11762
11774
|
|
|
11763
11775
|
class ModelDashboardModelTypeDef(TypedDict):
|
|
11764
11776
|
Model: NotRequired[ModelTypeDef]
|
|
11765
|
-
Endpoints: NotRequired[
|
|
11777
|
+
Endpoints: NotRequired[List[ModelDashboardEndpointTypeDef]]
|
|
11766
11778
|
LastBatchTransformJob: NotRequired[TransformJobTypeDef]
|
|
11767
|
-
MonitoringSchedules: NotRequired[
|
|
11779
|
+
MonitoringSchedules: NotRequired[List[ModelDashboardMonitoringScheduleTypeDef]]
|
|
11768
11780
|
ModelCard: NotRequired[ModelDashboardModelCardTypeDef]
|
|
11769
11781
|
|
|
11770
11782
|
class EndpointTypeDef(TypedDict):
|
|
@@ -11774,12 +11786,12 @@ class EndpointTypeDef(TypedDict):
|
|
|
11774
11786
|
EndpointStatus: EndpointStatusType
|
|
11775
11787
|
CreationTime: datetime
|
|
11776
11788
|
LastModifiedTime: datetime
|
|
11777
|
-
ProductionVariants: NotRequired[
|
|
11789
|
+
ProductionVariants: NotRequired[List[ProductionVariantSummaryTypeDef]]
|
|
11778
11790
|
DataCaptureConfig: NotRequired[DataCaptureConfigSummaryTypeDef]
|
|
11779
11791
|
FailureReason: NotRequired[str]
|
|
11780
|
-
MonitoringSchedules: NotRequired[
|
|
11781
|
-
Tags: NotRequired[
|
|
11782
|
-
ShadowProductionVariants: NotRequired[
|
|
11792
|
+
MonitoringSchedules: NotRequired[List[MonitoringScheduleTypeDef]]
|
|
11793
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11794
|
+
ShadowProductionVariants: NotRequired[List[ProductionVariantSummaryTypeDef]]
|
|
11783
11795
|
|
|
11784
11796
|
class MonitoringJobDefinitionTypeDef(TypedDict):
|
|
11785
11797
|
MonitoringInputs: Sequence[MonitoringInputUnionTypeDef]
|
|
@@ -11866,7 +11878,7 @@ class CreateModelPackageInputRequestTypeDef(TypedDict):
|
|
|
11866
11878
|
ModelLifeCycle: NotRequired[ModelLifeCycleTypeDef]
|
|
11867
11879
|
|
|
11868
11880
|
class SearchResponseTypeDef(TypedDict):
|
|
11869
|
-
Results:
|
|
11881
|
+
Results: List[SearchRecordTypeDef]
|
|
11870
11882
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11871
11883
|
NextToken: NotRequired[str]
|
|
11872
11884
|
|