mypy-boto3-sagemaker 1.37.0__py3-none-any.whl → 1.37.3__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 +3 -3
- mypy_boto3_sagemaker/client.py +26 -0
- mypy_boto3_sagemaker/client.pyi +26 -0
- mypy_boto3_sagemaker/literals.py +3 -1
- mypy_boto3_sagemaker/literals.pyi +3 -1
- mypy_boto3_sagemaker/type_defs.py +499 -414
- mypy_boto3_sagemaker/type_defs.pyi +445 -370
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.37.0.dist-info → mypy_boto3_sagemaker-1.37.3.dist-info}/METADATA +4 -4
- mypy_boto3_sagemaker-1.37.3.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.37.0.dist-info → mypy_boto3_sagemaker-1.37.3.dist-info}/WHEEL +1 -1
- mypy_boto3_sagemaker-1.37.0.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.37.0.dist-info → mypy_boto3_sagemaker-1.37.3.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.37.0.dist-info → mypy_boto3_sagemaker-1.37.3.dist-info}/top_level.txt +0 -0
|
@@ -132,6 +132,7 @@ from .literals import (
|
|
|
132
132
|
ImageVersionSortByType,
|
|
133
133
|
ImageVersionSortOrderType,
|
|
134
134
|
ImageVersionStatusType,
|
|
135
|
+
InferenceComponentCapacitySizeTypeType,
|
|
135
136
|
InferenceComponentSortKeyType,
|
|
136
137
|
InferenceComponentStatusType,
|
|
137
138
|
InferenceExecutionModeType,
|
|
@@ -982,6 +983,7 @@ __all__ = (
|
|
|
982
983
|
"HiddenSageMakerImageOutputTypeDef",
|
|
983
984
|
"HiddenSageMakerImageTypeDef",
|
|
984
985
|
"HolidayConfigAttributesTypeDef",
|
|
986
|
+
"HubAccessConfigTypeDef",
|
|
985
987
|
"HubContentDependencyTypeDef",
|
|
986
988
|
"HubContentInfoTypeDef",
|
|
987
989
|
"HubInfoTypeDef",
|
|
@@ -1032,9 +1034,14 @@ __all__ = (
|
|
|
1032
1034
|
"ImageVersionTypeDef",
|
|
1033
1035
|
"ImportHubContentRequestTypeDef",
|
|
1034
1036
|
"ImportHubContentResponseTypeDef",
|
|
1037
|
+
"InferenceComponentCapacitySizeTypeDef",
|
|
1035
1038
|
"InferenceComponentComputeResourceRequirementsTypeDef",
|
|
1036
1039
|
"InferenceComponentContainerSpecificationSummaryTypeDef",
|
|
1037
1040
|
"InferenceComponentContainerSpecificationTypeDef",
|
|
1041
|
+
"InferenceComponentDeploymentConfigOutputTypeDef",
|
|
1042
|
+
"InferenceComponentDeploymentConfigTypeDef",
|
|
1043
|
+
"InferenceComponentDeploymentConfigUnionTypeDef",
|
|
1044
|
+
"InferenceComponentRollingUpdatePolicyTypeDef",
|
|
1038
1045
|
"InferenceComponentRuntimeConfigSummaryTypeDef",
|
|
1039
1046
|
"InferenceComponentRuntimeConfigTypeDef",
|
|
1040
1047
|
"InferenceComponentSpecificationSummaryTypeDef",
|
|
@@ -1825,6 +1832,10 @@ __all__ = (
|
|
|
1825
1832
|
"UpdateFeatureGroupRequestTypeDef",
|
|
1826
1833
|
"UpdateFeatureGroupResponseTypeDef",
|
|
1827
1834
|
"UpdateFeatureMetadataRequestTypeDef",
|
|
1835
|
+
"UpdateHubContentReferenceRequestTypeDef",
|
|
1836
|
+
"UpdateHubContentReferenceResponseTypeDef",
|
|
1837
|
+
"UpdateHubContentRequestTypeDef",
|
|
1838
|
+
"UpdateHubContentResponseTypeDef",
|
|
1828
1839
|
"UpdateHubRequestTypeDef",
|
|
1829
1840
|
"UpdateHubResponseTypeDef",
|
|
1830
1841
|
"UpdateImageRequestTypeDef",
|
|
@@ -2892,18 +2903,6 @@ class FileSystemDataSourceTypeDef(TypedDict):
|
|
|
2892
2903
|
DirectoryPath: str
|
|
2893
2904
|
|
|
2894
2905
|
|
|
2895
|
-
S3DataSourceOutputTypeDef = TypedDict(
|
|
2896
|
-
"S3DataSourceOutputTypeDef",
|
|
2897
|
-
{
|
|
2898
|
-
"S3DataType": S3DataTypeType,
|
|
2899
|
-
"S3Uri": str,
|
|
2900
|
-
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
2901
|
-
"AttributeNames": NotRequired[List[str]],
|
|
2902
|
-
"InstanceGroupNames": NotRequired[List[str]],
|
|
2903
|
-
},
|
|
2904
|
-
)
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
2906
|
class RedshiftDatasetDefinitionTypeDef(TypedDict):
|
|
2908
2907
|
ClusterId: str
|
|
2909
2908
|
Database: str
|
|
@@ -4049,6 +4048,10 @@ class HolidayConfigAttributesTypeDef(TypedDict):
|
|
|
4049
4048
|
CountryCode: NotRequired[str]
|
|
4050
4049
|
|
|
4051
4050
|
|
|
4051
|
+
class HubAccessConfigTypeDef(TypedDict):
|
|
4052
|
+
HubContentArn: str
|
|
4053
|
+
|
|
4054
|
+
|
|
4052
4055
|
class HubContentInfoTypeDef(TypedDict):
|
|
4053
4056
|
HubContentName: str
|
|
4054
4057
|
HubContentArn: str
|
|
@@ -4157,6 +4160,15 @@ class ImageVersionTypeDef(TypedDict):
|
|
|
4157
4160
|
FailureReason: NotRequired[str]
|
|
4158
4161
|
|
|
4159
4162
|
|
|
4163
|
+
InferenceComponentCapacitySizeTypeDef = TypedDict(
|
|
4164
|
+
"InferenceComponentCapacitySizeTypeDef",
|
|
4165
|
+
{
|
|
4166
|
+
"Type": InferenceComponentCapacitySizeTypeType,
|
|
4167
|
+
"Value": int,
|
|
4168
|
+
},
|
|
4169
|
+
)
|
|
4170
|
+
|
|
4171
|
+
|
|
4160
4172
|
class InferenceComponentComputeResourceRequirementsTypeDef(TypedDict):
|
|
4161
4173
|
MinMemoryRequiredInMb: int
|
|
4162
4174
|
NumberOfCpuCoresRequired: NotRequired[float]
|
|
@@ -5056,18 +5068,6 @@ class ResourceConfigForUpdateTypeDef(TypedDict):
|
|
|
5056
5068
|
KeepAlivePeriodInSeconds: int
|
|
5057
5069
|
|
|
5058
5070
|
|
|
5059
|
-
S3DataSourceTypeDef = TypedDict(
|
|
5060
|
-
"S3DataSourceTypeDef",
|
|
5061
|
-
{
|
|
5062
|
-
"S3DataType": S3DataTypeType,
|
|
5063
|
-
"S3Uri": str,
|
|
5064
|
-
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
5065
|
-
"AttributeNames": NotRequired[Sequence[str]],
|
|
5066
|
-
"InstanceGroupNames": NotRequired[Sequence[str]],
|
|
5067
|
-
},
|
|
5068
|
-
)
|
|
5069
|
-
|
|
5070
|
-
|
|
5071
5071
|
class VisibilityConditionsTypeDef(TypedDict):
|
|
5072
5072
|
Key: NotRequired[str]
|
|
5073
5073
|
Value: NotRequired[str]
|
|
@@ -5274,6 +5274,25 @@ class UpdateExperimentRequestTypeDef(TypedDict):
|
|
|
5274
5274
|
Description: NotRequired[str]
|
|
5275
5275
|
|
|
5276
5276
|
|
|
5277
|
+
class UpdateHubContentReferenceRequestTypeDef(TypedDict):
|
|
5278
|
+
HubName: str
|
|
5279
|
+
HubContentName: str
|
|
5280
|
+
HubContentType: HubContentTypeType
|
|
5281
|
+
MinVersion: NotRequired[str]
|
|
5282
|
+
|
|
5283
|
+
|
|
5284
|
+
class UpdateHubContentRequestTypeDef(TypedDict):
|
|
5285
|
+
HubName: str
|
|
5286
|
+
HubContentName: str
|
|
5287
|
+
HubContentType: HubContentTypeType
|
|
5288
|
+
HubContentVersion: str
|
|
5289
|
+
HubContentDisplayName: NotRequired[str]
|
|
5290
|
+
HubContentDescription: NotRequired[str]
|
|
5291
|
+
HubContentMarkdown: NotRequired[str]
|
|
5292
|
+
HubContentSearchKeywords: NotRequired[Sequence[str]]
|
|
5293
|
+
SupportStatus: NotRequired[HubContentSupportStatusType]
|
|
5294
|
+
|
|
5295
|
+
|
|
5277
5296
|
class UpdateHubRequestTypeDef(TypedDict):
|
|
5278
5297
|
HubName: str
|
|
5279
5298
|
HubDescription: NotRequired[str]
|
|
@@ -5949,6 +5968,18 @@ class UpdateFeatureGroupResponseTypeDef(TypedDict):
|
|
|
5949
5968
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5950
5969
|
|
|
5951
5970
|
|
|
5971
|
+
class UpdateHubContentReferenceResponseTypeDef(TypedDict):
|
|
5972
|
+
HubArn: str
|
|
5973
|
+
HubContentArn: str
|
|
5974
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5975
|
+
|
|
5976
|
+
|
|
5977
|
+
class UpdateHubContentResponseTypeDef(TypedDict):
|
|
5978
|
+
HubArn: str
|
|
5979
|
+
HubContentArn: str
|
|
5980
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5981
|
+
|
|
5982
|
+
|
|
5952
5983
|
class UpdateHubResponseTypeDef(TypedDict):
|
|
5953
5984
|
HubArn: str
|
|
5954
5985
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -6123,6 +6154,7 @@ class ImportHubContentRequestTypeDef(TypedDict):
|
|
|
6123
6154
|
HubContentDisplayName: NotRequired[str]
|
|
6124
6155
|
HubContentDescription: NotRequired[str]
|
|
6125
6156
|
HubContentMarkdown: NotRequired[str]
|
|
6157
|
+
SupportStatus: NotRequired[HubContentSupportStatusType]
|
|
6126
6158
|
HubContentSearchKeywords: NotRequired[Sequence[str]]
|
|
6127
6159
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
6128
6160
|
|
|
@@ -7741,11 +7773,6 @@ class MonitoringBaselineConfigTypeDef(TypedDict):
|
|
|
7741
7773
|
StatisticsResource: NotRequired[MonitoringStatisticsResourceTypeDef]
|
|
7742
7774
|
|
|
7743
7775
|
|
|
7744
|
-
class DataSourceOutputTypeDef(TypedDict):
|
|
7745
|
-
S3DataSource: NotRequired[S3DataSourceOutputTypeDef]
|
|
7746
|
-
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
7747
|
-
|
|
7748
|
-
|
|
7749
7776
|
class DatasetDefinitionTypeDef(TypedDict):
|
|
7750
7777
|
AthenaDatasetDefinition: NotRequired[AthenaDatasetDefinitionTypeDef]
|
|
7751
7778
|
RedshiftDatasetDefinition: NotRequired[RedshiftDatasetDefinitionTypeDef]
|
|
@@ -7957,6 +7984,7 @@ class DescribeHubContentResponseTypeDef(TypedDict):
|
|
|
7957
7984
|
HubContentStatus: HubContentStatusType
|
|
7958
7985
|
FailureReason: str
|
|
7959
7986
|
CreationTime: datetime
|
|
7987
|
+
LastModifiedTime: datetime
|
|
7960
7988
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7961
7989
|
|
|
7962
7990
|
|
|
@@ -8384,6 +8412,13 @@ class ListImageVersionsResponseTypeDef(TypedDict):
|
|
|
8384
8412
|
NextToken: NotRequired[str]
|
|
8385
8413
|
|
|
8386
8414
|
|
|
8415
|
+
class InferenceComponentRollingUpdatePolicyTypeDef(TypedDict):
|
|
8416
|
+
MaximumBatchSize: InferenceComponentCapacitySizeTypeDef
|
|
8417
|
+
WaitIntervalInSeconds: int
|
|
8418
|
+
MaximumExecutionTimeoutInSeconds: NotRequired[int]
|
|
8419
|
+
RollbackMaximumBatchSize: NotRequired[InferenceComponentCapacitySizeTypeDef]
|
|
8420
|
+
|
|
8421
|
+
|
|
8387
8422
|
InferenceComponentSpecificationTypeDef = TypedDict(
|
|
8388
8423
|
"InferenceComponentSpecificationTypeDef",
|
|
8389
8424
|
{
|
|
@@ -9424,6 +9459,32 @@ class MetricSpecificationTypeDef(TypedDict):
|
|
|
9424
9459
|
Customized: NotRequired[CustomizedMetricSpecificationTypeDef]
|
|
9425
9460
|
|
|
9426
9461
|
|
|
9462
|
+
S3DataSourceOutputTypeDef = TypedDict(
|
|
9463
|
+
"S3DataSourceOutputTypeDef",
|
|
9464
|
+
{
|
|
9465
|
+
"S3DataType": S3DataTypeType,
|
|
9466
|
+
"S3Uri": str,
|
|
9467
|
+
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
9468
|
+
"AttributeNames": NotRequired[List[str]],
|
|
9469
|
+
"InstanceGroupNames": NotRequired[List[str]],
|
|
9470
|
+
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
9471
|
+
"HubAccessConfig": NotRequired[HubAccessConfigTypeDef],
|
|
9472
|
+
},
|
|
9473
|
+
)
|
|
9474
|
+
S3DataSourceTypeDef = TypedDict(
|
|
9475
|
+
"S3DataSourceTypeDef",
|
|
9476
|
+
{
|
|
9477
|
+
"S3DataType": S3DataTypeType,
|
|
9478
|
+
"S3Uri": str,
|
|
9479
|
+
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
9480
|
+
"AttributeNames": NotRequired[Sequence[str]],
|
|
9481
|
+
"InstanceGroupNames": NotRequired[Sequence[str]],
|
|
9482
|
+
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
9483
|
+
"HubAccessConfig": NotRequired[HubAccessConfigTypeDef],
|
|
9484
|
+
},
|
|
9485
|
+
)
|
|
9486
|
+
|
|
9487
|
+
|
|
9427
9488
|
class S3ModelDataSourceTypeDef(TypedDict):
|
|
9428
9489
|
S3Uri: str
|
|
9429
9490
|
S3DataType: S3ModelDataTypeType
|
|
@@ -9743,9 +9804,6 @@ class TrainingPlanOfferingTypeDef(TypedDict):
|
|
|
9743
9804
|
ReservedCapacityOfferings: NotRequired[List[ReservedCapacityOfferingTypeDef]]
|
|
9744
9805
|
|
|
9745
9806
|
|
|
9746
|
-
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
9747
|
-
|
|
9748
|
-
|
|
9749
9807
|
class SelectiveExecutionConfigOutputTypeDef(TypedDict):
|
|
9750
9808
|
SelectedSteps: List[SelectedStepTypeDef]
|
|
9751
9809
|
SourcePipelineExecutionArn: NotRequired[str]
|
|
@@ -10213,20 +10271,6 @@ class QueryLineageRequestTypeDef(TypedDict):
|
|
|
10213
10271
|
NextToken: NotRequired[str]
|
|
10214
10272
|
|
|
10215
10273
|
|
|
10216
|
-
ChannelOutputTypeDef = TypedDict(
|
|
10217
|
-
"ChannelOutputTypeDef",
|
|
10218
|
-
{
|
|
10219
|
-
"ChannelName": str,
|
|
10220
|
-
"DataSource": DataSourceOutputTypeDef,
|
|
10221
|
-
"ContentType": NotRequired[str],
|
|
10222
|
-
"CompressionType": NotRequired[CompressionTypeType],
|
|
10223
|
-
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
10224
|
-
"InputMode": NotRequired[TrainingInputModeType],
|
|
10225
|
-
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
10226
|
-
},
|
|
10227
|
-
)
|
|
10228
|
-
|
|
10229
|
-
|
|
10230
10274
|
class ProcessingInputTypeDef(TypedDict):
|
|
10231
10275
|
InputName: str
|
|
10232
10276
|
AppManaged: NotRequired[bool]
|
|
@@ -10691,6 +10735,16 @@ class WorkerAccessConfigurationTypeDef(TypedDict):
|
|
|
10691
10735
|
S3Presign: NotRequired[S3PresignTypeDef]
|
|
10692
10736
|
|
|
10693
10737
|
|
|
10738
|
+
class InferenceComponentDeploymentConfigOutputTypeDef(TypedDict):
|
|
10739
|
+
RollingUpdatePolicy: InferenceComponentRollingUpdatePolicyTypeDef
|
|
10740
|
+
AutoRollbackConfiguration: NotRequired[AutoRollbackConfigOutputTypeDef]
|
|
10741
|
+
|
|
10742
|
+
|
|
10743
|
+
class InferenceComponentDeploymentConfigTypeDef(TypedDict):
|
|
10744
|
+
RollingUpdatePolicy: InferenceComponentRollingUpdatePolicyTypeDef
|
|
10745
|
+
AutoRollbackConfiguration: NotRequired[AutoRollbackConfigTypeDef]
|
|
10746
|
+
|
|
10747
|
+
|
|
10694
10748
|
class CreateInferenceComponentInputTypeDef(TypedDict):
|
|
10695
10749
|
InferenceComponentName: str
|
|
10696
10750
|
EndpointName: str
|
|
@@ -10700,12 +10754,6 @@ class CreateInferenceComponentInputTypeDef(TypedDict):
|
|
|
10700
10754
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
10701
10755
|
|
|
10702
10756
|
|
|
10703
|
-
class UpdateInferenceComponentInputTypeDef(TypedDict):
|
|
10704
|
-
InferenceComponentName: str
|
|
10705
|
-
Specification: NotRequired[InferenceComponentSpecificationTypeDef]
|
|
10706
|
-
RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
|
|
10707
|
-
|
|
10708
|
-
|
|
10709
10757
|
ResourceConfigUnionTypeDef = Union[ResourceConfigTypeDef, ResourceConfigOutputTypeDef]
|
|
10710
10758
|
HyperParameterSpecificationOutputTypeDef = TypedDict(
|
|
10711
10759
|
"HyperParameterSpecificationOutputTypeDef",
|
|
@@ -10791,6 +10839,14 @@ class TargetTrackingScalingPolicyConfigurationTypeDef(TypedDict):
|
|
|
10791
10839
|
TargetValue: NotRequired[float]
|
|
10792
10840
|
|
|
10793
10841
|
|
|
10842
|
+
class DataSourceOutputTypeDef(TypedDict):
|
|
10843
|
+
S3DataSource: NotRequired[S3DataSourceOutputTypeDef]
|
|
10844
|
+
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
10845
|
+
|
|
10846
|
+
|
|
10847
|
+
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
10848
|
+
|
|
10849
|
+
|
|
10794
10850
|
class AdditionalModelDataSourceTypeDef(TypedDict):
|
|
10795
10851
|
ChannelName: str
|
|
10796
10852
|
S3DataSource: S3ModelDataSourceTypeDef
|
|
@@ -11115,11 +11171,6 @@ class SearchTrainingPlanOfferingsResponseTypeDef(TypedDict):
|
|
|
11115
11171
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11116
11172
|
|
|
11117
11173
|
|
|
11118
|
-
class DataSourceTypeDef(TypedDict):
|
|
11119
|
-
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
11120
|
-
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
11121
|
-
|
|
11122
|
-
|
|
11123
11174
|
class DescribePipelineExecutionResponseTypeDef(TypedDict):
|
|
11124
11175
|
PipelineArn: str
|
|
11125
11176
|
PipelineExecutionArn: str
|
|
@@ -11577,51 +11628,6 @@ class UpdateComputeQuotaRequestTypeDef(TypedDict):
|
|
|
11577
11628
|
Description: NotRequired[str]
|
|
11578
11629
|
|
|
11579
11630
|
|
|
11580
|
-
class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
11581
|
-
AlgorithmSpecification: HyperParameterAlgorithmSpecificationOutputTypeDef
|
|
11582
|
-
RoleArn: str
|
|
11583
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
11584
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
11585
|
-
DefinitionName: NotRequired[str]
|
|
11586
|
-
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
11587
|
-
HyperParameterRanges: NotRequired[ParameterRangesOutputTypeDef]
|
|
11588
|
-
StaticHyperParameters: NotRequired[Dict[str, str]]
|
|
11589
|
-
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
11590
|
-
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
11591
|
-
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
11592
|
-
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigOutputTypeDef]
|
|
11593
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
11594
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11595
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
11596
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11597
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11598
|
-
Environment: NotRequired[Dict[str, str]]
|
|
11599
|
-
|
|
11600
|
-
|
|
11601
|
-
class TrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
11602
|
-
TrainingInputMode: TrainingInputModeType
|
|
11603
|
-
InputDataConfig: List[ChannelOutputTypeDef]
|
|
11604
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
11605
|
-
ResourceConfig: ResourceConfigOutputTypeDef
|
|
11606
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
11607
|
-
HyperParameters: NotRequired[Dict[str, str]]
|
|
11608
|
-
|
|
11609
|
-
|
|
11610
|
-
class DescribeInferenceComponentOutputTypeDef(TypedDict):
|
|
11611
|
-
InferenceComponentName: str
|
|
11612
|
-
InferenceComponentArn: str
|
|
11613
|
-
EndpointName: str
|
|
11614
|
-
EndpointArn: str
|
|
11615
|
-
VariantName: str
|
|
11616
|
-
FailureReason: str
|
|
11617
|
-
Specification: InferenceComponentSpecificationSummaryTypeDef
|
|
11618
|
-
RuntimeConfig: InferenceComponentRuntimeConfigSummaryTypeDef
|
|
11619
|
-
CreationTime: datetime
|
|
11620
|
-
LastModifiedTime: datetime
|
|
11621
|
-
InferenceComponentStatus: InferenceComponentStatusType
|
|
11622
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
11623
|
-
|
|
11624
|
-
|
|
11625
11631
|
class CreateEdgeDeploymentPlanRequestTypeDef(TypedDict):
|
|
11626
11632
|
EdgeDeploymentPlanName: str
|
|
11627
11633
|
ModelConfigs: Sequence[EdgeDeploymentModelConfigTypeDef]
|
|
@@ -11716,6 +11722,27 @@ class WorkteamTypeDef(TypedDict):
|
|
|
11716
11722
|
WorkerAccessConfiguration: NotRequired[WorkerAccessConfigurationTypeDef]
|
|
11717
11723
|
|
|
11718
11724
|
|
|
11725
|
+
class DescribeInferenceComponentOutputTypeDef(TypedDict):
|
|
11726
|
+
InferenceComponentName: str
|
|
11727
|
+
InferenceComponentArn: str
|
|
11728
|
+
EndpointName: str
|
|
11729
|
+
EndpointArn: str
|
|
11730
|
+
VariantName: str
|
|
11731
|
+
FailureReason: str
|
|
11732
|
+
Specification: InferenceComponentSpecificationSummaryTypeDef
|
|
11733
|
+
RuntimeConfig: InferenceComponentRuntimeConfigSummaryTypeDef
|
|
11734
|
+
CreationTime: datetime
|
|
11735
|
+
LastModifiedTime: datetime
|
|
11736
|
+
InferenceComponentStatus: InferenceComponentStatusType
|
|
11737
|
+
LastDeploymentConfig: InferenceComponentDeploymentConfigOutputTypeDef
|
|
11738
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
11739
|
+
|
|
11740
|
+
|
|
11741
|
+
InferenceComponentDeploymentConfigUnionTypeDef = Union[
|
|
11742
|
+
InferenceComponentDeploymentConfigTypeDef, InferenceComponentDeploymentConfigOutputTypeDef
|
|
11743
|
+
]
|
|
11744
|
+
|
|
11745
|
+
|
|
11719
11746
|
class TrainingSpecificationOutputTypeDef(TypedDict):
|
|
11720
11747
|
TrainingImage: str
|
|
11721
11748
|
SupportedTrainingInstanceTypes: List[TrainingInstanceTypeType]
|
|
@@ -11787,6 +11814,25 @@ class ScalingPolicyTypeDef(TypedDict):
|
|
|
11787
11814
|
TargetTracking: NotRequired[TargetTrackingScalingPolicyConfigurationTypeDef]
|
|
11788
11815
|
|
|
11789
11816
|
|
|
11817
|
+
ChannelOutputTypeDef = TypedDict(
|
|
11818
|
+
"ChannelOutputTypeDef",
|
|
11819
|
+
{
|
|
11820
|
+
"ChannelName": str,
|
|
11821
|
+
"DataSource": DataSourceOutputTypeDef,
|
|
11822
|
+
"ContentType": NotRequired[str],
|
|
11823
|
+
"CompressionType": NotRequired[CompressionTypeType],
|
|
11824
|
+
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
11825
|
+
"InputMode": NotRequired[TrainingInputModeType],
|
|
11826
|
+
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
11827
|
+
},
|
|
11828
|
+
)
|
|
11829
|
+
|
|
11830
|
+
|
|
11831
|
+
class DataSourceTypeDef(TypedDict):
|
|
11832
|
+
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
11833
|
+
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
11834
|
+
|
|
11835
|
+
|
|
11790
11836
|
class ContainerDefinitionOutputTypeDef(TypedDict):
|
|
11791
11837
|
ContainerHostname: NotRequired[str]
|
|
11792
11838
|
Image: NotRequired[str]
|
|
@@ -12093,7 +12139,6 @@ class DescribeLabelingJobResponseTypeDef(TypedDict):
|
|
|
12093
12139
|
|
|
12094
12140
|
|
|
12095
12141
|
HumanTaskConfigUnionTypeDef = Union[HumanTaskConfigTypeDef, HumanTaskConfigOutputTypeDef]
|
|
12096
|
-
DataSourceUnionTypeDef = Union[DataSourceTypeDef, DataSourceOutputTypeDef]
|
|
12097
12142
|
|
|
12098
12143
|
|
|
12099
12144
|
class StartPipelineExecutionRequestTypeDef(TypedDict):
|
|
@@ -12153,120 +12198,32 @@ class SpaceSettingsTypeDef(TypedDict):
|
|
|
12153
12198
|
CustomFileSystems: NotRequired[Sequence[CustomFileSystemTypeDef]]
|
|
12154
12199
|
|
|
12155
12200
|
|
|
12156
|
-
|
|
12157
|
-
|
|
12158
|
-
|
|
12159
|
-
|
|
12160
|
-
|
|
12161
|
-
|
|
12162
|
-
|
|
12163
|
-
|
|
12164
|
-
|
|
12165
|
-
|
|
12166
|
-
|
|
12167
|
-
|
|
12168
|
-
|
|
12169
|
-
|
|
12170
|
-
|
|
12171
|
-
|
|
12172
|
-
|
|
12173
|
-
|
|
12174
|
-
|
|
12175
|
-
|
|
12176
|
-
|
|
12177
|
-
|
|
12178
|
-
|
|
12179
|
-
|
|
12180
|
-
|
|
12181
|
-
|
|
12182
|
-
EnableInterContainerTrafficEncryption: bool
|
|
12183
|
-
EnableManagedSpotTraining: bool
|
|
12184
|
-
CheckpointConfig: CheckpointConfigTypeDef
|
|
12185
|
-
TrainingTimeInSeconds: int
|
|
12186
|
-
BillableTimeInSeconds: int
|
|
12187
|
-
DebugHookConfig: DebugHookConfigOutputTypeDef
|
|
12188
|
-
ExperimentConfig: ExperimentConfigTypeDef
|
|
12189
|
-
DebugRuleConfigurations: List[DebugRuleConfigurationOutputTypeDef]
|
|
12190
|
-
TensorBoardOutputConfig: TensorBoardOutputConfigTypeDef
|
|
12191
|
-
DebugRuleEvaluationStatuses: List[DebugRuleEvaluationStatusTypeDef]
|
|
12192
|
-
ProfilerConfig: ProfilerConfigOutputTypeDef
|
|
12193
|
-
ProfilerRuleConfigurations: List[ProfilerRuleConfigurationOutputTypeDef]
|
|
12194
|
-
ProfilerRuleEvaluationStatuses: List[ProfilerRuleEvaluationStatusTypeDef]
|
|
12195
|
-
ProfilingStatus: ProfilingStatusType
|
|
12196
|
-
Environment: Dict[str, str]
|
|
12197
|
-
RetryStrategy: RetryStrategyTypeDef
|
|
12198
|
-
RemoteDebugConfig: RemoteDebugConfigTypeDef
|
|
12199
|
-
InfraCheckConfig: InfraCheckConfigTypeDef
|
|
12200
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
12201
|
-
|
|
12202
|
-
|
|
12203
|
-
class TrainingJobTypeDef(TypedDict):
|
|
12204
|
-
TrainingJobName: NotRequired[str]
|
|
12205
|
-
TrainingJobArn: NotRequired[str]
|
|
12206
|
-
TuningJobArn: NotRequired[str]
|
|
12207
|
-
LabelingJobArn: NotRequired[str]
|
|
12208
|
-
AutoMLJobArn: NotRequired[str]
|
|
12209
|
-
ModelArtifacts: NotRequired[ModelArtifactsTypeDef]
|
|
12210
|
-
TrainingJobStatus: NotRequired[TrainingJobStatusType]
|
|
12211
|
-
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
12212
|
-
FailureReason: NotRequired[str]
|
|
12213
|
-
HyperParameters: NotRequired[Dict[str, str]]
|
|
12214
|
-
AlgorithmSpecification: NotRequired[AlgorithmSpecificationOutputTypeDef]
|
|
12215
|
-
RoleArn: NotRequired[str]
|
|
12216
|
-
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
12217
|
-
OutputDataConfig: NotRequired[OutputDataConfigTypeDef]
|
|
12218
|
-
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
12219
|
-
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
12220
|
-
StoppingCondition: NotRequired[StoppingConditionTypeDef]
|
|
12221
|
-
CreationTime: NotRequired[datetime]
|
|
12222
|
-
TrainingStartTime: NotRequired[datetime]
|
|
12223
|
-
TrainingEndTime: NotRequired[datetime]
|
|
12224
|
-
LastModifiedTime: NotRequired[datetime]
|
|
12225
|
-
SecondaryStatusTransitions: NotRequired[List[SecondaryStatusTransitionTypeDef]]
|
|
12226
|
-
FinalMetricDataList: NotRequired[List[MetricDataTypeDef]]
|
|
12227
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
12228
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
12229
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
12230
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
12231
|
-
TrainingTimeInSeconds: NotRequired[int]
|
|
12232
|
-
BillableTimeInSeconds: NotRequired[int]
|
|
12233
|
-
DebugHookConfig: NotRequired[DebugHookConfigOutputTypeDef]
|
|
12234
|
-
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
12235
|
-
DebugRuleConfigurations: NotRequired[List[DebugRuleConfigurationOutputTypeDef]]
|
|
12236
|
-
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
12237
|
-
DebugRuleEvaluationStatuses: NotRequired[List[DebugRuleEvaluationStatusTypeDef]]
|
|
12238
|
-
ProfilerConfig: NotRequired[ProfilerConfigOutputTypeDef]
|
|
12239
|
-
Environment: NotRequired[Dict[str, str]]
|
|
12240
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
12241
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
12242
|
-
|
|
12243
|
-
|
|
12244
|
-
AlgorithmSpecificationUnionTypeDef = Union[
|
|
12245
|
-
AlgorithmSpecificationTypeDef, AlgorithmSpecificationOutputTypeDef
|
|
12246
|
-
]
|
|
12247
|
-
|
|
12248
|
-
|
|
12249
|
-
class CreateTransformJobRequestTypeDef(TypedDict):
|
|
12250
|
-
TransformJobName: str
|
|
12251
|
-
ModelName: str
|
|
12252
|
-
TransformInput: TransformInputTypeDef
|
|
12253
|
-
TransformOutput: TransformOutputTypeDef
|
|
12254
|
-
TransformResources: TransformResourcesTypeDef
|
|
12255
|
-
MaxConcurrentTransforms: NotRequired[int]
|
|
12256
|
-
ModelClientConfig: NotRequired[ModelClientConfigTypeDef]
|
|
12257
|
-
MaxPayloadInMB: NotRequired[int]
|
|
12258
|
-
BatchStrategy: NotRequired[BatchStrategyType]
|
|
12259
|
-
Environment: NotRequired[Mapping[str, str]]
|
|
12260
|
-
DataCaptureConfig: NotRequired[BatchDataCaptureConfigTypeDef]
|
|
12261
|
-
DataProcessing: NotRequired[DataProcessingTypeDef]
|
|
12262
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
12263
|
-
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
12264
|
-
|
|
12265
|
-
|
|
12266
|
-
class DescribeTransformJobResponseTypeDef(TypedDict):
|
|
12267
|
-
TransformJobName: str
|
|
12268
|
-
TransformJobArn: str
|
|
12269
|
-
TransformJobStatus: TransformJobStatusType
|
|
12201
|
+
AlgorithmSpecificationUnionTypeDef = Union[
|
|
12202
|
+
AlgorithmSpecificationTypeDef, AlgorithmSpecificationOutputTypeDef
|
|
12203
|
+
]
|
|
12204
|
+
|
|
12205
|
+
|
|
12206
|
+
class CreateTransformJobRequestTypeDef(TypedDict):
|
|
12207
|
+
TransformJobName: str
|
|
12208
|
+
ModelName: str
|
|
12209
|
+
TransformInput: TransformInputTypeDef
|
|
12210
|
+
TransformOutput: TransformOutputTypeDef
|
|
12211
|
+
TransformResources: TransformResourcesTypeDef
|
|
12212
|
+
MaxConcurrentTransforms: NotRequired[int]
|
|
12213
|
+
ModelClientConfig: NotRequired[ModelClientConfigTypeDef]
|
|
12214
|
+
MaxPayloadInMB: NotRequired[int]
|
|
12215
|
+
BatchStrategy: NotRequired[BatchStrategyType]
|
|
12216
|
+
Environment: NotRequired[Mapping[str, str]]
|
|
12217
|
+
DataCaptureConfig: NotRequired[BatchDataCaptureConfigTypeDef]
|
|
12218
|
+
DataProcessing: NotRequired[DataProcessingTypeDef]
|
|
12219
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
12220
|
+
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
12221
|
+
|
|
12222
|
+
|
|
12223
|
+
class DescribeTransformJobResponseTypeDef(TypedDict):
|
|
12224
|
+
TransformJobName: str
|
|
12225
|
+
TransformJobArn: str
|
|
12226
|
+
TransformJobStatus: TransformJobStatusType
|
|
12270
12227
|
FailureReason: str
|
|
12271
12228
|
ModelName: str
|
|
12272
12229
|
MaxConcurrentTransforms: int
|
|
@@ -12498,49 +12455,6 @@ class DescribeEndpointOutputTypeDef(TypedDict):
|
|
|
12498
12455
|
ExplainerConfigUnionTypeDef = Union[ExplainerConfigTypeDef, ExplainerConfigOutputTypeDef]
|
|
12499
12456
|
|
|
12500
12457
|
|
|
12501
|
-
class DescribeHyperParameterTuningJobResponseTypeDef(TypedDict):
|
|
12502
|
-
HyperParameterTuningJobName: str
|
|
12503
|
-
HyperParameterTuningJobArn: str
|
|
12504
|
-
HyperParameterTuningJobConfig: HyperParameterTuningJobConfigOutputTypeDef
|
|
12505
|
-
TrainingJobDefinition: HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
12506
|
-
TrainingJobDefinitions: List[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
12507
|
-
HyperParameterTuningJobStatus: HyperParameterTuningJobStatusType
|
|
12508
|
-
CreationTime: datetime
|
|
12509
|
-
HyperParameterTuningEndTime: datetime
|
|
12510
|
-
LastModifiedTime: datetime
|
|
12511
|
-
TrainingJobStatusCounters: TrainingJobStatusCountersTypeDef
|
|
12512
|
-
ObjectiveStatusCounters: ObjectiveStatusCountersTypeDef
|
|
12513
|
-
BestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
12514
|
-
OverallBestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
12515
|
-
WarmStartConfig: HyperParameterTuningJobWarmStartConfigOutputTypeDef
|
|
12516
|
-
Autotune: AutotuneTypeDef
|
|
12517
|
-
FailureReason: str
|
|
12518
|
-
TuningJobCompletionDetails: HyperParameterTuningJobCompletionDetailsTypeDef
|
|
12519
|
-
ConsumedResources: HyperParameterTuningJobConsumedResourcesTypeDef
|
|
12520
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
12521
|
-
|
|
12522
|
-
|
|
12523
|
-
class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
12524
|
-
HyperParameterTuningJobName: NotRequired[str]
|
|
12525
|
-
HyperParameterTuningJobArn: NotRequired[str]
|
|
12526
|
-
HyperParameterTuningJobConfig: NotRequired[HyperParameterTuningJobConfigOutputTypeDef]
|
|
12527
|
-
TrainingJobDefinition: NotRequired[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
12528
|
-
TrainingJobDefinitions: NotRequired[List[HyperParameterTrainingJobDefinitionOutputTypeDef]]
|
|
12529
|
-
HyperParameterTuningJobStatus: NotRequired[HyperParameterTuningJobStatusType]
|
|
12530
|
-
CreationTime: NotRequired[datetime]
|
|
12531
|
-
HyperParameterTuningEndTime: NotRequired[datetime]
|
|
12532
|
-
LastModifiedTime: NotRequired[datetime]
|
|
12533
|
-
TrainingJobStatusCounters: NotRequired[TrainingJobStatusCountersTypeDef]
|
|
12534
|
-
ObjectiveStatusCounters: NotRequired[ObjectiveStatusCountersTypeDef]
|
|
12535
|
-
BestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
12536
|
-
OverallBestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
12537
|
-
WarmStartConfig: NotRequired[HyperParameterTuningJobWarmStartConfigOutputTypeDef]
|
|
12538
|
-
FailureReason: NotRequired[str]
|
|
12539
|
-
TuningJobCompletionDetails: NotRequired[HyperParameterTuningJobCompletionDetailsTypeDef]
|
|
12540
|
-
ConsumedResources: NotRequired[HyperParameterTuningJobConsumedResourcesTypeDef]
|
|
12541
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
12542
|
-
|
|
12543
|
-
|
|
12544
12458
|
class ListSpacesResponseTypeDef(TypedDict):
|
|
12545
12459
|
Spaces: List[SpaceDetailsTypeDef]
|
|
12546
12460
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -12569,6 +12483,13 @@ class UpdateWorkteamResponseTypeDef(TypedDict):
|
|
|
12569
12483
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
12570
12484
|
|
|
12571
12485
|
|
|
12486
|
+
class UpdateInferenceComponentInputTypeDef(TypedDict):
|
|
12487
|
+
InferenceComponentName: str
|
|
12488
|
+
Specification: NotRequired[InferenceComponentSpecificationTypeDef]
|
|
12489
|
+
RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
|
|
12490
|
+
DeploymentConfig: NotRequired[InferenceComponentDeploymentConfigUnionTypeDef]
|
|
12491
|
+
|
|
12492
|
+
|
|
12572
12493
|
TrainingSpecificationUnionTypeDef = Union[
|
|
12573
12494
|
TrainingSpecificationTypeDef, TrainingSpecificationOutputTypeDef
|
|
12574
12495
|
]
|
|
@@ -12588,6 +12509,127 @@ class DynamicScalingConfigurationTypeDef(TypedDict):
|
|
|
12588
12509
|
ScalingPolicies: NotRequired[List[ScalingPolicyTypeDef]]
|
|
12589
12510
|
|
|
12590
12511
|
|
|
12512
|
+
class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
12513
|
+
TrainingJobName: str
|
|
12514
|
+
TrainingJobArn: str
|
|
12515
|
+
TuningJobArn: str
|
|
12516
|
+
LabelingJobArn: str
|
|
12517
|
+
AutoMLJobArn: str
|
|
12518
|
+
ModelArtifacts: ModelArtifactsTypeDef
|
|
12519
|
+
TrainingJobStatus: TrainingJobStatusType
|
|
12520
|
+
SecondaryStatus: SecondaryStatusType
|
|
12521
|
+
FailureReason: str
|
|
12522
|
+
HyperParameters: Dict[str, str]
|
|
12523
|
+
AlgorithmSpecification: AlgorithmSpecificationOutputTypeDef
|
|
12524
|
+
RoleArn: str
|
|
12525
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
12526
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
12527
|
+
ResourceConfig: ResourceConfigOutputTypeDef
|
|
12528
|
+
WarmPoolStatus: WarmPoolStatusTypeDef
|
|
12529
|
+
VpcConfig: VpcConfigOutputTypeDef
|
|
12530
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
12531
|
+
CreationTime: datetime
|
|
12532
|
+
TrainingStartTime: datetime
|
|
12533
|
+
TrainingEndTime: datetime
|
|
12534
|
+
LastModifiedTime: datetime
|
|
12535
|
+
SecondaryStatusTransitions: List[SecondaryStatusTransitionTypeDef]
|
|
12536
|
+
FinalMetricDataList: List[MetricDataTypeDef]
|
|
12537
|
+
EnableNetworkIsolation: bool
|
|
12538
|
+
EnableInterContainerTrafficEncryption: bool
|
|
12539
|
+
EnableManagedSpotTraining: bool
|
|
12540
|
+
CheckpointConfig: CheckpointConfigTypeDef
|
|
12541
|
+
TrainingTimeInSeconds: int
|
|
12542
|
+
BillableTimeInSeconds: int
|
|
12543
|
+
DebugHookConfig: DebugHookConfigOutputTypeDef
|
|
12544
|
+
ExperimentConfig: ExperimentConfigTypeDef
|
|
12545
|
+
DebugRuleConfigurations: List[DebugRuleConfigurationOutputTypeDef]
|
|
12546
|
+
TensorBoardOutputConfig: TensorBoardOutputConfigTypeDef
|
|
12547
|
+
DebugRuleEvaluationStatuses: List[DebugRuleEvaluationStatusTypeDef]
|
|
12548
|
+
ProfilerConfig: ProfilerConfigOutputTypeDef
|
|
12549
|
+
ProfilerRuleConfigurations: List[ProfilerRuleConfigurationOutputTypeDef]
|
|
12550
|
+
ProfilerRuleEvaluationStatuses: List[ProfilerRuleEvaluationStatusTypeDef]
|
|
12551
|
+
ProfilingStatus: ProfilingStatusType
|
|
12552
|
+
Environment: Dict[str, str]
|
|
12553
|
+
RetryStrategy: RetryStrategyTypeDef
|
|
12554
|
+
RemoteDebugConfig: RemoteDebugConfigTypeDef
|
|
12555
|
+
InfraCheckConfig: InfraCheckConfigTypeDef
|
|
12556
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
12557
|
+
|
|
12558
|
+
|
|
12559
|
+
class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
12560
|
+
AlgorithmSpecification: HyperParameterAlgorithmSpecificationOutputTypeDef
|
|
12561
|
+
RoleArn: str
|
|
12562
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
12563
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
12564
|
+
DefinitionName: NotRequired[str]
|
|
12565
|
+
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
12566
|
+
HyperParameterRanges: NotRequired[ParameterRangesOutputTypeDef]
|
|
12567
|
+
StaticHyperParameters: NotRequired[Dict[str, str]]
|
|
12568
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
12569
|
+
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
12570
|
+
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
12571
|
+
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigOutputTypeDef]
|
|
12572
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
12573
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
12574
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
12575
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
12576
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
12577
|
+
Environment: NotRequired[Dict[str, str]]
|
|
12578
|
+
|
|
12579
|
+
|
|
12580
|
+
class TrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
12581
|
+
TrainingInputMode: TrainingInputModeType
|
|
12582
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
12583
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
12584
|
+
ResourceConfig: ResourceConfigOutputTypeDef
|
|
12585
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
12586
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
12587
|
+
|
|
12588
|
+
|
|
12589
|
+
class TrainingJobTypeDef(TypedDict):
|
|
12590
|
+
TrainingJobName: NotRequired[str]
|
|
12591
|
+
TrainingJobArn: NotRequired[str]
|
|
12592
|
+
TuningJobArn: NotRequired[str]
|
|
12593
|
+
LabelingJobArn: NotRequired[str]
|
|
12594
|
+
AutoMLJobArn: NotRequired[str]
|
|
12595
|
+
ModelArtifacts: NotRequired[ModelArtifactsTypeDef]
|
|
12596
|
+
TrainingJobStatus: NotRequired[TrainingJobStatusType]
|
|
12597
|
+
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
12598
|
+
FailureReason: NotRequired[str]
|
|
12599
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
12600
|
+
AlgorithmSpecification: NotRequired[AlgorithmSpecificationOutputTypeDef]
|
|
12601
|
+
RoleArn: NotRequired[str]
|
|
12602
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
12603
|
+
OutputDataConfig: NotRequired[OutputDataConfigTypeDef]
|
|
12604
|
+
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
12605
|
+
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
12606
|
+
StoppingCondition: NotRequired[StoppingConditionTypeDef]
|
|
12607
|
+
CreationTime: NotRequired[datetime]
|
|
12608
|
+
TrainingStartTime: NotRequired[datetime]
|
|
12609
|
+
TrainingEndTime: NotRequired[datetime]
|
|
12610
|
+
LastModifiedTime: NotRequired[datetime]
|
|
12611
|
+
SecondaryStatusTransitions: NotRequired[List[SecondaryStatusTransitionTypeDef]]
|
|
12612
|
+
FinalMetricDataList: NotRequired[List[MetricDataTypeDef]]
|
|
12613
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
12614
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
12615
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
12616
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
12617
|
+
TrainingTimeInSeconds: NotRequired[int]
|
|
12618
|
+
BillableTimeInSeconds: NotRequired[int]
|
|
12619
|
+
DebugHookConfig: NotRequired[DebugHookConfigOutputTypeDef]
|
|
12620
|
+
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
12621
|
+
DebugRuleConfigurations: NotRequired[List[DebugRuleConfigurationOutputTypeDef]]
|
|
12622
|
+
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
12623
|
+
DebugRuleEvaluationStatuses: NotRequired[List[DebugRuleEvaluationStatusTypeDef]]
|
|
12624
|
+
ProfilerConfig: NotRequired[ProfilerConfigOutputTypeDef]
|
|
12625
|
+
Environment: NotRequired[Dict[str, str]]
|
|
12626
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
12627
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
12628
|
+
|
|
12629
|
+
|
|
12630
|
+
DataSourceUnionTypeDef = Union[DataSourceTypeDef, DataSourceOutputTypeDef]
|
|
12631
|
+
|
|
12632
|
+
|
|
12591
12633
|
class DescribeModelOutputTypeDef(TypedDict):
|
|
12592
12634
|
ModelName: str
|
|
12593
12635
|
PrimaryContainer: ContainerDefinitionOutputTypeDef
|
|
@@ -12826,20 +12868,6 @@ class CreateLabelingJobRequestTypeDef(TypedDict):
|
|
|
12826
12868
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
12827
12869
|
|
|
12828
12870
|
|
|
12829
|
-
ChannelTypeDef = TypedDict(
|
|
12830
|
-
"ChannelTypeDef",
|
|
12831
|
-
{
|
|
12832
|
-
"ChannelName": str,
|
|
12833
|
-
"DataSource": DataSourceUnionTypeDef,
|
|
12834
|
-
"ContentType": NotRequired[str],
|
|
12835
|
-
"CompressionType": NotRequired[CompressionTypeType],
|
|
12836
|
-
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
12837
|
-
"InputMode": NotRequired[TrainingInputModeType],
|
|
12838
|
-
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
12839
|
-
},
|
|
12840
|
-
)
|
|
12841
|
-
|
|
12842
|
-
|
|
12843
12871
|
class DescribeSpaceResponseTypeDef(TypedDict):
|
|
12844
12872
|
DomainId: str
|
|
12845
12873
|
SpaceArn: str
|
|
@@ -12860,12 +12888,6 @@ class DescribeSpaceResponseTypeDef(TypedDict):
|
|
|
12860
12888
|
SpaceSettingsUnionTypeDef = Union[SpaceSettingsTypeDef, SpaceSettingsOutputTypeDef]
|
|
12861
12889
|
|
|
12862
12890
|
|
|
12863
|
-
class AlgorithmValidationProfileOutputTypeDef(TypedDict):
|
|
12864
|
-
ProfileName: str
|
|
12865
|
-
TrainingJobDefinition: TrainingJobDefinitionOutputTypeDef
|
|
12866
|
-
TransformJobDefinition: NotRequired[TransformJobDefinitionOutputTypeDef]
|
|
12867
|
-
|
|
12868
|
-
|
|
12869
12891
|
class ModelPackageValidationProfileOutputTypeDef(TypedDict):
|
|
12870
12892
|
ProfileName: str
|
|
12871
12893
|
TransformJobDefinition: TransformJobDefinitionOutputTypeDef
|
|
@@ -12876,13 +12898,6 @@ class ModelPackageValidationProfileTypeDef(TypedDict):
|
|
|
12876
12898
|
TransformJobDefinition: TransformJobDefinitionTypeDef
|
|
12877
12899
|
|
|
12878
12900
|
|
|
12879
|
-
class TrialComponentSourceDetailTypeDef(TypedDict):
|
|
12880
|
-
SourceArn: NotRequired[str]
|
|
12881
|
-
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
12882
|
-
ProcessingJob: NotRequired[ProcessingJobTypeDef]
|
|
12883
|
-
TransformJob: NotRequired[TransformJobTypeDef]
|
|
12884
|
-
|
|
12885
|
-
|
|
12886
12901
|
class CreateDomainRequestTypeDef(TypedDict):
|
|
12887
12902
|
DomainName: str
|
|
12888
12903
|
AuthMode: AuthModeType
|
|
@@ -12955,40 +12970,110 @@ class UpdateEndpointInputTypeDef(TypedDict):
|
|
|
12955
12970
|
RetainDeploymentConfig: NotRequired[bool]
|
|
12956
12971
|
|
|
12957
12972
|
|
|
12958
|
-
class CreateInferenceRecommendationsJobRequestTypeDef(TypedDict):
|
|
12959
|
-
JobName: str
|
|
12960
|
-
JobType: RecommendationJobTypeType
|
|
12961
|
-
RoleArn: str
|
|
12962
|
-
InputConfig: RecommendationJobInputConfigUnionTypeDef
|
|
12963
|
-
JobDescription: NotRequired[str]
|
|
12964
|
-
StoppingConditions: NotRequired[RecommendationJobStoppingConditionsUnionTypeDef]
|
|
12965
|
-
OutputConfig: NotRequired[RecommendationJobOutputConfigTypeDef]
|
|
12966
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
12973
|
+
class CreateInferenceRecommendationsJobRequestTypeDef(TypedDict):
|
|
12974
|
+
JobName: str
|
|
12975
|
+
JobType: RecommendationJobTypeType
|
|
12976
|
+
RoleArn: str
|
|
12977
|
+
InputConfig: RecommendationJobInputConfigUnionTypeDef
|
|
12978
|
+
JobDescription: NotRequired[str]
|
|
12979
|
+
StoppingConditions: NotRequired[RecommendationJobStoppingConditionsUnionTypeDef]
|
|
12980
|
+
OutputConfig: NotRequired[RecommendationJobOutputConfigTypeDef]
|
|
12981
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
12982
|
+
|
|
12983
|
+
|
|
12984
|
+
class CreateEndpointConfigInputTypeDef(TypedDict):
|
|
12985
|
+
EndpointConfigName: str
|
|
12986
|
+
ProductionVariants: Sequence[ProductionVariantTypeDef]
|
|
12987
|
+
DataCaptureConfig: NotRequired[DataCaptureConfigUnionTypeDef]
|
|
12988
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
12989
|
+
KmsKeyId: NotRequired[str]
|
|
12990
|
+
AsyncInferenceConfig: NotRequired[AsyncInferenceConfigUnionTypeDef]
|
|
12991
|
+
ExplainerConfig: NotRequired[ExplainerConfigUnionTypeDef]
|
|
12992
|
+
ShadowProductionVariants: NotRequired[Sequence[ProductionVariantTypeDef]]
|
|
12993
|
+
ExecutionRoleArn: NotRequired[str]
|
|
12994
|
+
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
12995
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
12996
|
+
|
|
12997
|
+
|
|
12998
|
+
class GetScalingConfigurationRecommendationResponseTypeDef(TypedDict):
|
|
12999
|
+
InferenceRecommendationsJobName: str
|
|
13000
|
+
RecommendationId: str
|
|
13001
|
+
EndpointName: str
|
|
13002
|
+
TargetCpuUtilizationPerCore: int
|
|
13003
|
+
ScalingPolicyObjective: ScalingPolicyObjectiveTypeDef
|
|
13004
|
+
Metric: ScalingPolicyMetricTypeDef
|
|
13005
|
+
DynamicScalingConfiguration: DynamicScalingConfigurationTypeDef
|
|
13006
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
13007
|
+
|
|
13008
|
+
|
|
13009
|
+
class DescribeHyperParameterTuningJobResponseTypeDef(TypedDict):
|
|
13010
|
+
HyperParameterTuningJobName: str
|
|
13011
|
+
HyperParameterTuningJobArn: str
|
|
13012
|
+
HyperParameterTuningJobConfig: HyperParameterTuningJobConfigOutputTypeDef
|
|
13013
|
+
TrainingJobDefinition: HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
13014
|
+
TrainingJobDefinitions: List[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
13015
|
+
HyperParameterTuningJobStatus: HyperParameterTuningJobStatusType
|
|
13016
|
+
CreationTime: datetime
|
|
13017
|
+
HyperParameterTuningEndTime: datetime
|
|
13018
|
+
LastModifiedTime: datetime
|
|
13019
|
+
TrainingJobStatusCounters: TrainingJobStatusCountersTypeDef
|
|
13020
|
+
ObjectiveStatusCounters: ObjectiveStatusCountersTypeDef
|
|
13021
|
+
BestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
13022
|
+
OverallBestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
13023
|
+
WarmStartConfig: HyperParameterTuningJobWarmStartConfigOutputTypeDef
|
|
13024
|
+
Autotune: AutotuneTypeDef
|
|
13025
|
+
FailureReason: str
|
|
13026
|
+
TuningJobCompletionDetails: HyperParameterTuningJobCompletionDetailsTypeDef
|
|
13027
|
+
ConsumedResources: HyperParameterTuningJobConsumedResourcesTypeDef
|
|
13028
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
13029
|
+
|
|
13030
|
+
|
|
13031
|
+
class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
13032
|
+
HyperParameterTuningJobName: NotRequired[str]
|
|
13033
|
+
HyperParameterTuningJobArn: NotRequired[str]
|
|
13034
|
+
HyperParameterTuningJobConfig: NotRequired[HyperParameterTuningJobConfigOutputTypeDef]
|
|
13035
|
+
TrainingJobDefinition: NotRequired[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
13036
|
+
TrainingJobDefinitions: NotRequired[List[HyperParameterTrainingJobDefinitionOutputTypeDef]]
|
|
13037
|
+
HyperParameterTuningJobStatus: NotRequired[HyperParameterTuningJobStatusType]
|
|
13038
|
+
CreationTime: NotRequired[datetime]
|
|
13039
|
+
HyperParameterTuningEndTime: NotRequired[datetime]
|
|
13040
|
+
LastModifiedTime: NotRequired[datetime]
|
|
13041
|
+
TrainingJobStatusCounters: NotRequired[TrainingJobStatusCountersTypeDef]
|
|
13042
|
+
ObjectiveStatusCounters: NotRequired[ObjectiveStatusCountersTypeDef]
|
|
13043
|
+
BestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
13044
|
+
OverallBestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
13045
|
+
WarmStartConfig: NotRequired[HyperParameterTuningJobWarmStartConfigOutputTypeDef]
|
|
13046
|
+
FailureReason: NotRequired[str]
|
|
13047
|
+
TuningJobCompletionDetails: NotRequired[HyperParameterTuningJobCompletionDetailsTypeDef]
|
|
13048
|
+
ConsumedResources: NotRequired[HyperParameterTuningJobConsumedResourcesTypeDef]
|
|
13049
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
13050
|
+
|
|
13051
|
+
|
|
13052
|
+
class AlgorithmValidationProfileOutputTypeDef(TypedDict):
|
|
13053
|
+
ProfileName: str
|
|
13054
|
+
TrainingJobDefinition: TrainingJobDefinitionOutputTypeDef
|
|
13055
|
+
TransformJobDefinition: NotRequired[TransformJobDefinitionOutputTypeDef]
|
|
12967
13056
|
|
|
12968
13057
|
|
|
12969
|
-
class
|
|
12970
|
-
|
|
12971
|
-
|
|
12972
|
-
|
|
12973
|
-
|
|
12974
|
-
KmsKeyId: NotRequired[str]
|
|
12975
|
-
AsyncInferenceConfig: NotRequired[AsyncInferenceConfigUnionTypeDef]
|
|
12976
|
-
ExplainerConfig: NotRequired[ExplainerConfigUnionTypeDef]
|
|
12977
|
-
ShadowProductionVariants: NotRequired[Sequence[ProductionVariantTypeDef]]
|
|
12978
|
-
ExecutionRoleArn: NotRequired[str]
|
|
12979
|
-
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
12980
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
13058
|
+
class TrialComponentSourceDetailTypeDef(TypedDict):
|
|
13059
|
+
SourceArn: NotRequired[str]
|
|
13060
|
+
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
13061
|
+
ProcessingJob: NotRequired[ProcessingJobTypeDef]
|
|
13062
|
+
TransformJob: NotRequired[TransformJobTypeDef]
|
|
12981
13063
|
|
|
12982
13064
|
|
|
12983
|
-
|
|
12984
|
-
|
|
12985
|
-
|
|
12986
|
-
|
|
12987
|
-
|
|
12988
|
-
|
|
12989
|
-
|
|
12990
|
-
|
|
12991
|
-
|
|
13065
|
+
ChannelTypeDef = TypedDict(
|
|
13066
|
+
"ChannelTypeDef",
|
|
13067
|
+
{
|
|
13068
|
+
"ChannelName": str,
|
|
13069
|
+
"DataSource": DataSourceUnionTypeDef,
|
|
13070
|
+
"ContentType": NotRequired[str],
|
|
13071
|
+
"CompressionType": NotRequired[CompressionTypeType],
|
|
13072
|
+
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
13073
|
+
"InputMode": NotRequired[TrainingInputModeType],
|
|
13074
|
+
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
13075
|
+
},
|
|
13076
|
+
)
|
|
12992
13077
|
|
|
12993
13078
|
|
|
12994
13079
|
class CreateModelInputTypeDef(TypedDict):
|
|
@@ -13101,18 +13186,6 @@ class MonitoringScheduleConfigTypeDef(TypedDict):
|
|
|
13101
13186
|
MonitoringType: NotRequired[MonitoringTypeType]
|
|
13102
13187
|
|
|
13103
13188
|
|
|
13104
|
-
ChannelUnionTypeDef = Union[ChannelTypeDef, ChannelOutputTypeDef]
|
|
13105
|
-
|
|
13106
|
-
|
|
13107
|
-
class TrainingJobDefinitionTypeDef(TypedDict):
|
|
13108
|
-
TrainingInputMode: TrainingInputModeType
|
|
13109
|
-
InputDataConfig: Sequence[ChannelTypeDef]
|
|
13110
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
13111
|
-
ResourceConfig: ResourceConfigTypeDef
|
|
13112
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
13113
|
-
HyperParameters: NotRequired[Mapping[str, str]]
|
|
13114
|
-
|
|
13115
|
-
|
|
13116
13189
|
class CreateSpaceRequestTypeDef(TypedDict):
|
|
13117
13190
|
DomainId: str
|
|
13118
13191
|
SpaceName: str
|
|
@@ -13130,11 +13203,6 @@ class UpdateSpaceRequestTypeDef(TypedDict):
|
|
|
13130
13203
|
SpaceDisplayName: NotRequired[str]
|
|
13131
13204
|
|
|
13132
13205
|
|
|
13133
|
-
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
13134
|
-
ValidationRole: str
|
|
13135
|
-
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
13136
|
-
|
|
13137
|
-
|
|
13138
13206
|
class ModelPackageValidationSpecificationOutputTypeDef(TypedDict):
|
|
13139
13207
|
ValidationRole: str
|
|
13140
13208
|
ValidationProfiles: List[ModelPackageValidationProfileOutputTypeDef]
|
|
@@ -13145,6 +13213,11 @@ class ModelPackageValidationSpecificationTypeDef(TypedDict):
|
|
|
13145
13213
|
ValidationProfiles: Sequence[ModelPackageValidationProfileTypeDef]
|
|
13146
13214
|
|
|
13147
13215
|
|
|
13216
|
+
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
13217
|
+
ValidationRole: str
|
|
13218
|
+
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
13219
|
+
|
|
13220
|
+
|
|
13148
13221
|
class TrialComponentTypeDef(TypedDict):
|
|
13149
13222
|
TrialComponentName: NotRequired[str]
|
|
13150
13223
|
DisplayName: NotRequired[str]
|
|
@@ -13169,6 +13242,18 @@ class TrialComponentTypeDef(TypedDict):
|
|
|
13169
13242
|
RunName: NotRequired[str]
|
|
13170
13243
|
|
|
13171
13244
|
|
|
13245
|
+
ChannelUnionTypeDef = Union[ChannelTypeDef, ChannelOutputTypeDef]
|
|
13246
|
+
|
|
13247
|
+
|
|
13248
|
+
class TrainingJobDefinitionTypeDef(TypedDict):
|
|
13249
|
+
TrainingInputMode: TrainingInputModeType
|
|
13250
|
+
InputDataConfig: Sequence[ChannelTypeDef]
|
|
13251
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
13252
|
+
ResourceConfig: ResourceConfigTypeDef
|
|
13253
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
13254
|
+
HyperParameters: NotRequired[Mapping[str, str]]
|
|
13255
|
+
|
|
13256
|
+
|
|
13172
13257
|
class BatchDescribeModelPackageOutputTypeDef(TypedDict):
|
|
13173
13258
|
ModelPackageSummaries: Dict[str, BatchDescribeModelPackageSummaryTypeDef]
|
|
13174
13259
|
BatchDescribeModelPackageErrorMap: Dict[str, BatchDescribeModelPackageErrorTypeDef]
|
|
@@ -13229,76 +13314,6 @@ MonitoringScheduleConfigUnionTypeDef = Union[
|
|
|
13229
13314
|
]
|
|
13230
13315
|
|
|
13231
13316
|
|
|
13232
|
-
class CreateTrainingJobRequestTypeDef(TypedDict):
|
|
13233
|
-
TrainingJobName: str
|
|
13234
|
-
AlgorithmSpecification: AlgorithmSpecificationUnionTypeDef
|
|
13235
|
-
RoleArn: str
|
|
13236
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
13237
|
-
ResourceConfig: ResourceConfigUnionTypeDef
|
|
13238
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
13239
|
-
HyperParameters: NotRequired[Mapping[str, str]]
|
|
13240
|
-
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
13241
|
-
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
13242
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
13243
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
13244
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
13245
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
13246
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
13247
|
-
DebugHookConfig: NotRequired[DebugHookConfigUnionTypeDef]
|
|
13248
|
-
DebugRuleConfigurations: NotRequired[Sequence[DebugRuleConfigurationUnionTypeDef]]
|
|
13249
|
-
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
13250
|
-
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
13251
|
-
ProfilerConfig: NotRequired[ProfilerConfigUnionTypeDef]
|
|
13252
|
-
ProfilerRuleConfigurations: NotRequired[Sequence[ProfilerRuleConfigurationUnionTypeDef]]
|
|
13253
|
-
Environment: NotRequired[Mapping[str, str]]
|
|
13254
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
13255
|
-
RemoteDebugConfig: NotRequired[RemoteDebugConfigTypeDef]
|
|
13256
|
-
InfraCheckConfig: NotRequired[InfraCheckConfigTypeDef]
|
|
13257
|
-
SessionChainingConfig: NotRequired[SessionChainingConfigTypeDef]
|
|
13258
|
-
|
|
13259
|
-
|
|
13260
|
-
class HyperParameterTrainingJobDefinitionTypeDef(TypedDict):
|
|
13261
|
-
AlgorithmSpecification: HyperParameterAlgorithmSpecificationUnionTypeDef
|
|
13262
|
-
RoleArn: str
|
|
13263
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
13264
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
13265
|
-
DefinitionName: NotRequired[str]
|
|
13266
|
-
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
13267
|
-
HyperParameterRanges: NotRequired[ParameterRangesUnionTypeDef]
|
|
13268
|
-
StaticHyperParameters: NotRequired[Mapping[str, str]]
|
|
13269
|
-
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
13270
|
-
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
13271
|
-
ResourceConfig: NotRequired[ResourceConfigUnionTypeDef]
|
|
13272
|
-
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigUnionTypeDef]
|
|
13273
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
13274
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
13275
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
13276
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
13277
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
13278
|
-
Environment: NotRequired[Mapping[str, str]]
|
|
13279
|
-
|
|
13280
|
-
|
|
13281
|
-
class AlgorithmValidationProfileTypeDef(TypedDict):
|
|
13282
|
-
ProfileName: str
|
|
13283
|
-
TrainingJobDefinition: TrainingJobDefinitionTypeDef
|
|
13284
|
-
TransformJobDefinition: NotRequired[TransformJobDefinitionTypeDef]
|
|
13285
|
-
|
|
13286
|
-
|
|
13287
|
-
class DescribeAlgorithmOutputTypeDef(TypedDict):
|
|
13288
|
-
AlgorithmName: str
|
|
13289
|
-
AlgorithmArn: str
|
|
13290
|
-
AlgorithmDescription: str
|
|
13291
|
-
CreationTime: datetime
|
|
13292
|
-
TrainingSpecification: TrainingSpecificationOutputTypeDef
|
|
13293
|
-
InferenceSpecification: InferenceSpecificationOutputTypeDef
|
|
13294
|
-
ValidationSpecification: AlgorithmValidationSpecificationOutputTypeDef
|
|
13295
|
-
AlgorithmStatus: AlgorithmStatusType
|
|
13296
|
-
AlgorithmStatusDetails: AlgorithmStatusDetailsTypeDef
|
|
13297
|
-
ProductId: str
|
|
13298
|
-
CertifyForMarketplace: bool
|
|
13299
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
13300
|
-
|
|
13301
|
-
|
|
13302
13317
|
class DescribeModelPackageOutputTypeDef(TypedDict):
|
|
13303
13318
|
ModelPackageName: str
|
|
13304
13319
|
ModelPackageGroupName: str
|
|
@@ -13374,6 +13389,76 @@ ModelPackageValidationSpecificationUnionTypeDef = Union[
|
|
|
13374
13389
|
]
|
|
13375
13390
|
|
|
13376
13391
|
|
|
13392
|
+
class DescribeAlgorithmOutputTypeDef(TypedDict):
|
|
13393
|
+
AlgorithmName: str
|
|
13394
|
+
AlgorithmArn: str
|
|
13395
|
+
AlgorithmDescription: str
|
|
13396
|
+
CreationTime: datetime
|
|
13397
|
+
TrainingSpecification: TrainingSpecificationOutputTypeDef
|
|
13398
|
+
InferenceSpecification: InferenceSpecificationOutputTypeDef
|
|
13399
|
+
ValidationSpecification: AlgorithmValidationSpecificationOutputTypeDef
|
|
13400
|
+
AlgorithmStatus: AlgorithmStatusType
|
|
13401
|
+
AlgorithmStatusDetails: AlgorithmStatusDetailsTypeDef
|
|
13402
|
+
ProductId: str
|
|
13403
|
+
CertifyForMarketplace: bool
|
|
13404
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
13405
|
+
|
|
13406
|
+
|
|
13407
|
+
class CreateTrainingJobRequestTypeDef(TypedDict):
|
|
13408
|
+
TrainingJobName: str
|
|
13409
|
+
AlgorithmSpecification: AlgorithmSpecificationUnionTypeDef
|
|
13410
|
+
RoleArn: str
|
|
13411
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
13412
|
+
ResourceConfig: ResourceConfigUnionTypeDef
|
|
13413
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
13414
|
+
HyperParameters: NotRequired[Mapping[str, str]]
|
|
13415
|
+
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
13416
|
+
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
13417
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
13418
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
13419
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
13420
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
13421
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
13422
|
+
DebugHookConfig: NotRequired[DebugHookConfigUnionTypeDef]
|
|
13423
|
+
DebugRuleConfigurations: NotRequired[Sequence[DebugRuleConfigurationUnionTypeDef]]
|
|
13424
|
+
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
13425
|
+
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
13426
|
+
ProfilerConfig: NotRequired[ProfilerConfigUnionTypeDef]
|
|
13427
|
+
ProfilerRuleConfigurations: NotRequired[Sequence[ProfilerRuleConfigurationUnionTypeDef]]
|
|
13428
|
+
Environment: NotRequired[Mapping[str, str]]
|
|
13429
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
13430
|
+
RemoteDebugConfig: NotRequired[RemoteDebugConfigTypeDef]
|
|
13431
|
+
InfraCheckConfig: NotRequired[InfraCheckConfigTypeDef]
|
|
13432
|
+
SessionChainingConfig: NotRequired[SessionChainingConfigTypeDef]
|
|
13433
|
+
|
|
13434
|
+
|
|
13435
|
+
class HyperParameterTrainingJobDefinitionTypeDef(TypedDict):
|
|
13436
|
+
AlgorithmSpecification: HyperParameterAlgorithmSpecificationUnionTypeDef
|
|
13437
|
+
RoleArn: str
|
|
13438
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
13439
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
13440
|
+
DefinitionName: NotRequired[str]
|
|
13441
|
+
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
13442
|
+
HyperParameterRanges: NotRequired[ParameterRangesUnionTypeDef]
|
|
13443
|
+
StaticHyperParameters: NotRequired[Mapping[str, str]]
|
|
13444
|
+
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
13445
|
+
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
13446
|
+
ResourceConfig: NotRequired[ResourceConfigUnionTypeDef]
|
|
13447
|
+
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigUnionTypeDef]
|
|
13448
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
13449
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
13450
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
13451
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
13452
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
13453
|
+
Environment: NotRequired[Mapping[str, str]]
|
|
13454
|
+
|
|
13455
|
+
|
|
13456
|
+
class AlgorithmValidationProfileTypeDef(TypedDict):
|
|
13457
|
+
ProfileName: str
|
|
13458
|
+
TrainingJobDefinition: TrainingJobDefinitionTypeDef
|
|
13459
|
+
TransformJobDefinition: NotRequired[TransformJobDefinitionTypeDef]
|
|
13460
|
+
|
|
13461
|
+
|
|
13377
13462
|
class UpdateModelPackageInputTypeDef(TypedDict):
|
|
13378
13463
|
ModelPackageArn: str
|
|
13379
13464
|
ModelApprovalStatus: NotRequired[ModelApprovalStatusType]
|
|
@@ -13424,16 +13509,6 @@ class UpdateMonitoringScheduleRequestTypeDef(TypedDict):
|
|
|
13424
13509
|
MonitoringScheduleConfig: MonitoringScheduleConfigUnionTypeDef
|
|
13425
13510
|
|
|
13426
13511
|
|
|
13427
|
-
HyperParameterTrainingJobDefinitionUnionTypeDef = Union[
|
|
13428
|
-
HyperParameterTrainingJobDefinitionTypeDef, HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
13429
|
-
]
|
|
13430
|
-
|
|
13431
|
-
|
|
13432
|
-
class AlgorithmValidationSpecificationTypeDef(TypedDict):
|
|
13433
|
-
ValidationRole: str
|
|
13434
|
-
ValidationProfiles: Sequence[AlgorithmValidationProfileTypeDef]
|
|
13435
|
-
|
|
13436
|
-
|
|
13437
13512
|
class CreateModelPackageInputTypeDef(TypedDict):
|
|
13438
13513
|
ModelPackageName: NotRequired[str]
|
|
13439
13514
|
ModelPackageGroupName: NotRequired[str]
|
|
@@ -13462,6 +13537,16 @@ class CreateModelPackageInputTypeDef(TypedDict):
|
|
|
13462
13537
|
ModelLifeCycle: NotRequired[ModelLifeCycleTypeDef]
|
|
13463
13538
|
|
|
13464
13539
|
|
|
13540
|
+
HyperParameterTrainingJobDefinitionUnionTypeDef = Union[
|
|
13541
|
+
HyperParameterTrainingJobDefinitionTypeDef, HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
13542
|
+
]
|
|
13543
|
+
|
|
13544
|
+
|
|
13545
|
+
class AlgorithmValidationSpecificationTypeDef(TypedDict):
|
|
13546
|
+
ValidationRole: str
|
|
13547
|
+
ValidationProfiles: Sequence[AlgorithmValidationProfileTypeDef]
|
|
13548
|
+
|
|
13549
|
+
|
|
13465
13550
|
class SearchRecordTypeDef(TypedDict):
|
|
13466
13551
|
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
13467
13552
|
Experiment: NotRequired[ExperimentTypeDef]
|