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