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,
|
|
@@ -981,6 +982,7 @@ __all__ = (
|
|
|
981
982
|
"HiddenSageMakerImageOutputTypeDef",
|
|
982
983
|
"HiddenSageMakerImageTypeDef",
|
|
983
984
|
"HolidayConfigAttributesTypeDef",
|
|
985
|
+
"HubAccessConfigTypeDef",
|
|
984
986
|
"HubContentDependencyTypeDef",
|
|
985
987
|
"HubContentInfoTypeDef",
|
|
986
988
|
"HubInfoTypeDef",
|
|
@@ -1031,9 +1033,14 @@ __all__ = (
|
|
|
1031
1033
|
"ImageVersionTypeDef",
|
|
1032
1034
|
"ImportHubContentRequestTypeDef",
|
|
1033
1035
|
"ImportHubContentResponseTypeDef",
|
|
1036
|
+
"InferenceComponentCapacitySizeTypeDef",
|
|
1034
1037
|
"InferenceComponentComputeResourceRequirementsTypeDef",
|
|
1035
1038
|
"InferenceComponentContainerSpecificationSummaryTypeDef",
|
|
1036
1039
|
"InferenceComponentContainerSpecificationTypeDef",
|
|
1040
|
+
"InferenceComponentDeploymentConfigOutputTypeDef",
|
|
1041
|
+
"InferenceComponentDeploymentConfigTypeDef",
|
|
1042
|
+
"InferenceComponentDeploymentConfigUnionTypeDef",
|
|
1043
|
+
"InferenceComponentRollingUpdatePolicyTypeDef",
|
|
1037
1044
|
"InferenceComponentRuntimeConfigSummaryTypeDef",
|
|
1038
1045
|
"InferenceComponentRuntimeConfigTypeDef",
|
|
1039
1046
|
"InferenceComponentSpecificationSummaryTypeDef",
|
|
@@ -1824,6 +1831,10 @@ __all__ = (
|
|
|
1824
1831
|
"UpdateFeatureGroupRequestTypeDef",
|
|
1825
1832
|
"UpdateFeatureGroupResponseTypeDef",
|
|
1826
1833
|
"UpdateFeatureMetadataRequestTypeDef",
|
|
1834
|
+
"UpdateHubContentReferenceRequestTypeDef",
|
|
1835
|
+
"UpdateHubContentReferenceResponseTypeDef",
|
|
1836
|
+
"UpdateHubContentRequestTypeDef",
|
|
1837
|
+
"UpdateHubContentResponseTypeDef",
|
|
1827
1838
|
"UpdateHubRequestTypeDef",
|
|
1828
1839
|
"UpdateHubResponseTypeDef",
|
|
1829
1840
|
"UpdateImageRequestTypeDef",
|
|
@@ -2715,17 +2726,6 @@ class FileSystemDataSourceTypeDef(TypedDict):
|
|
|
2715
2726
|
FileSystemType: FileSystemTypeType
|
|
2716
2727
|
DirectoryPath: str
|
|
2717
2728
|
|
|
2718
|
-
S3DataSourceOutputTypeDef = TypedDict(
|
|
2719
|
-
"S3DataSourceOutputTypeDef",
|
|
2720
|
-
{
|
|
2721
|
-
"S3DataType": S3DataTypeType,
|
|
2722
|
-
"S3Uri": str,
|
|
2723
|
-
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
2724
|
-
"AttributeNames": NotRequired[List[str]],
|
|
2725
|
-
"InstanceGroupNames": NotRequired[List[str]],
|
|
2726
|
-
},
|
|
2727
|
-
)
|
|
2728
|
-
|
|
2729
2729
|
class RedshiftDatasetDefinitionTypeDef(TypedDict):
|
|
2730
2730
|
ClusterId: str
|
|
2731
2731
|
Database: str
|
|
@@ -3651,6 +3651,9 @@ class HiddenSageMakerImageTypeDef(TypedDict):
|
|
|
3651
3651
|
class HolidayConfigAttributesTypeDef(TypedDict):
|
|
3652
3652
|
CountryCode: NotRequired[str]
|
|
3653
3653
|
|
|
3654
|
+
class HubAccessConfigTypeDef(TypedDict):
|
|
3655
|
+
HubContentArn: str
|
|
3656
|
+
|
|
3654
3657
|
class HubContentInfoTypeDef(TypedDict):
|
|
3655
3658
|
HubContentName: str
|
|
3656
3659
|
HubContentArn: str
|
|
@@ -3744,6 +3747,14 @@ class ImageVersionTypeDef(TypedDict):
|
|
|
3744
3747
|
Version: int
|
|
3745
3748
|
FailureReason: NotRequired[str]
|
|
3746
3749
|
|
|
3750
|
+
InferenceComponentCapacitySizeTypeDef = TypedDict(
|
|
3751
|
+
"InferenceComponentCapacitySizeTypeDef",
|
|
3752
|
+
{
|
|
3753
|
+
"Type": InferenceComponentCapacitySizeTypeType,
|
|
3754
|
+
"Value": int,
|
|
3755
|
+
},
|
|
3756
|
+
)
|
|
3757
|
+
|
|
3747
3758
|
class InferenceComponentComputeResourceRequirementsTypeDef(TypedDict):
|
|
3748
3759
|
MinMemoryRequiredInMb: int
|
|
3749
3760
|
NumberOfCpuCoresRequired: NotRequired[float]
|
|
@@ -4506,17 +4517,6 @@ class ReservedCapacityOfferingTypeDef(TypedDict):
|
|
|
4506
4517
|
class ResourceConfigForUpdateTypeDef(TypedDict):
|
|
4507
4518
|
KeepAlivePeriodInSeconds: int
|
|
4508
4519
|
|
|
4509
|
-
S3DataSourceTypeDef = TypedDict(
|
|
4510
|
-
"S3DataSourceTypeDef",
|
|
4511
|
-
{
|
|
4512
|
-
"S3DataType": S3DataTypeType,
|
|
4513
|
-
"S3Uri": str,
|
|
4514
|
-
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
4515
|
-
"AttributeNames": NotRequired[Sequence[str]],
|
|
4516
|
-
"InstanceGroupNames": NotRequired[Sequence[str]],
|
|
4517
|
-
},
|
|
4518
|
-
)
|
|
4519
|
-
|
|
4520
4520
|
class VisibilityConditionsTypeDef(TypedDict):
|
|
4521
4521
|
Key: NotRequired[str]
|
|
4522
4522
|
Value: NotRequired[str]
|
|
@@ -4680,6 +4680,23 @@ class UpdateExperimentRequestTypeDef(TypedDict):
|
|
|
4680
4680
|
DisplayName: NotRequired[str]
|
|
4681
4681
|
Description: NotRequired[str]
|
|
4682
4682
|
|
|
4683
|
+
class UpdateHubContentReferenceRequestTypeDef(TypedDict):
|
|
4684
|
+
HubName: str
|
|
4685
|
+
HubContentName: str
|
|
4686
|
+
HubContentType: HubContentTypeType
|
|
4687
|
+
MinVersion: NotRequired[str]
|
|
4688
|
+
|
|
4689
|
+
class UpdateHubContentRequestTypeDef(TypedDict):
|
|
4690
|
+
HubName: str
|
|
4691
|
+
HubContentName: str
|
|
4692
|
+
HubContentType: HubContentTypeType
|
|
4693
|
+
HubContentVersion: str
|
|
4694
|
+
HubContentDisplayName: NotRequired[str]
|
|
4695
|
+
HubContentDescription: NotRequired[str]
|
|
4696
|
+
HubContentMarkdown: NotRequired[str]
|
|
4697
|
+
HubContentSearchKeywords: NotRequired[Sequence[str]]
|
|
4698
|
+
SupportStatus: NotRequired[HubContentSupportStatusType]
|
|
4699
|
+
|
|
4683
4700
|
class UpdateHubRequestTypeDef(TypedDict):
|
|
4684
4701
|
HubName: str
|
|
4685
4702
|
HubDescription: NotRequired[str]
|
|
@@ -5234,6 +5251,16 @@ class UpdateFeatureGroupResponseTypeDef(TypedDict):
|
|
|
5234
5251
|
FeatureGroupArn: str
|
|
5235
5252
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5236
5253
|
|
|
5254
|
+
class UpdateHubContentReferenceResponseTypeDef(TypedDict):
|
|
5255
|
+
HubArn: str
|
|
5256
|
+
HubContentArn: str
|
|
5257
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5258
|
+
|
|
5259
|
+
class UpdateHubContentResponseTypeDef(TypedDict):
|
|
5260
|
+
HubArn: str
|
|
5261
|
+
HubContentArn: str
|
|
5262
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5263
|
+
|
|
5237
5264
|
class UpdateHubResponseTypeDef(TypedDict):
|
|
5238
5265
|
HubArn: str
|
|
5239
5266
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5379,6 +5406,7 @@ class ImportHubContentRequestTypeDef(TypedDict):
|
|
|
5379
5406
|
HubContentDisplayName: NotRequired[str]
|
|
5380
5407
|
HubContentDescription: NotRequired[str]
|
|
5381
5408
|
HubContentMarkdown: NotRequired[str]
|
|
5409
|
+
SupportStatus: NotRequired[HubContentSupportStatusType]
|
|
5382
5410
|
HubContentSearchKeywords: NotRequired[Sequence[str]]
|
|
5383
5411
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
5384
5412
|
|
|
@@ -6810,10 +6838,6 @@ class MonitoringBaselineConfigTypeDef(TypedDict):
|
|
|
6810
6838
|
ConstraintsResource: NotRequired[MonitoringConstraintsResourceTypeDef]
|
|
6811
6839
|
StatisticsResource: NotRequired[MonitoringStatisticsResourceTypeDef]
|
|
6812
6840
|
|
|
6813
|
-
class DataSourceOutputTypeDef(TypedDict):
|
|
6814
|
-
S3DataSource: NotRequired[S3DataSourceOutputTypeDef]
|
|
6815
|
-
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
6816
|
-
|
|
6817
6841
|
class DatasetDefinitionTypeDef(TypedDict):
|
|
6818
6842
|
AthenaDatasetDefinition: NotRequired[AthenaDatasetDefinitionTypeDef]
|
|
6819
6843
|
RedshiftDatasetDefinition: NotRequired[RedshiftDatasetDefinitionTypeDef]
|
|
@@ -6998,6 +7022,7 @@ class DescribeHubContentResponseTypeDef(TypedDict):
|
|
|
6998
7022
|
HubContentStatus: HubContentStatusType
|
|
6999
7023
|
FailureReason: str
|
|
7000
7024
|
CreationTime: datetime
|
|
7025
|
+
LastModifiedTime: datetime
|
|
7001
7026
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7002
7027
|
|
|
7003
7028
|
class DescribeHumanTaskUiResponseTypeDef(TypedDict):
|
|
@@ -7369,6 +7394,12 @@ class ListImageVersionsResponseTypeDef(TypedDict):
|
|
|
7369
7394
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7370
7395
|
NextToken: NotRequired[str]
|
|
7371
7396
|
|
|
7397
|
+
class InferenceComponentRollingUpdatePolicyTypeDef(TypedDict):
|
|
7398
|
+
MaximumBatchSize: InferenceComponentCapacitySizeTypeDef
|
|
7399
|
+
WaitIntervalInSeconds: int
|
|
7400
|
+
MaximumExecutionTimeoutInSeconds: NotRequired[int]
|
|
7401
|
+
RollbackMaximumBatchSize: NotRequired[InferenceComponentCapacitySizeTypeDef]
|
|
7402
|
+
|
|
7372
7403
|
InferenceComponentSpecificationTypeDef = TypedDict(
|
|
7373
7404
|
"InferenceComponentSpecificationTypeDef",
|
|
7374
7405
|
{
|
|
@@ -8290,6 +8321,31 @@ class MetricSpecificationTypeDef(TypedDict):
|
|
|
8290
8321
|
Predefined: NotRequired[PredefinedMetricSpecificationTypeDef]
|
|
8291
8322
|
Customized: NotRequired[CustomizedMetricSpecificationTypeDef]
|
|
8292
8323
|
|
|
8324
|
+
S3DataSourceOutputTypeDef = TypedDict(
|
|
8325
|
+
"S3DataSourceOutputTypeDef",
|
|
8326
|
+
{
|
|
8327
|
+
"S3DataType": S3DataTypeType,
|
|
8328
|
+
"S3Uri": str,
|
|
8329
|
+
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
8330
|
+
"AttributeNames": NotRequired[List[str]],
|
|
8331
|
+
"InstanceGroupNames": NotRequired[List[str]],
|
|
8332
|
+
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
8333
|
+
"HubAccessConfig": NotRequired[HubAccessConfigTypeDef],
|
|
8334
|
+
},
|
|
8335
|
+
)
|
|
8336
|
+
S3DataSourceTypeDef = TypedDict(
|
|
8337
|
+
"S3DataSourceTypeDef",
|
|
8338
|
+
{
|
|
8339
|
+
"S3DataType": S3DataTypeType,
|
|
8340
|
+
"S3Uri": str,
|
|
8341
|
+
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
8342
|
+
"AttributeNames": NotRequired[Sequence[str]],
|
|
8343
|
+
"InstanceGroupNames": NotRequired[Sequence[str]],
|
|
8344
|
+
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
8345
|
+
"HubAccessConfig": NotRequired[HubAccessConfigTypeDef],
|
|
8346
|
+
},
|
|
8347
|
+
)
|
|
8348
|
+
|
|
8293
8349
|
class S3ModelDataSourceTypeDef(TypedDict):
|
|
8294
8350
|
S3Uri: str
|
|
8295
8351
|
S3DataType: S3ModelDataTypeType
|
|
@@ -8562,8 +8618,6 @@ class TrainingPlanOfferingTypeDef(TypedDict):
|
|
|
8562
8618
|
CurrencyCode: NotRequired[str]
|
|
8563
8619
|
ReservedCapacityOfferings: NotRequired[List[ReservedCapacityOfferingTypeDef]]
|
|
8564
8620
|
|
|
8565
|
-
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
8566
|
-
|
|
8567
8621
|
class SelectiveExecutionConfigOutputTypeDef(TypedDict):
|
|
8568
8622
|
SelectedSteps: List[SelectedStepTypeDef]
|
|
8569
8623
|
SourcePipelineExecutionArn: NotRequired[str]
|
|
@@ -8970,19 +9024,6 @@ class QueryLineageRequestTypeDef(TypedDict):
|
|
|
8970
9024
|
MaxResults: NotRequired[int]
|
|
8971
9025
|
NextToken: NotRequired[str]
|
|
8972
9026
|
|
|
8973
|
-
ChannelOutputTypeDef = TypedDict(
|
|
8974
|
-
"ChannelOutputTypeDef",
|
|
8975
|
-
{
|
|
8976
|
-
"ChannelName": str,
|
|
8977
|
-
"DataSource": DataSourceOutputTypeDef,
|
|
8978
|
-
"ContentType": NotRequired[str],
|
|
8979
|
-
"CompressionType": NotRequired[CompressionTypeType],
|
|
8980
|
-
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
8981
|
-
"InputMode": NotRequired[TrainingInputModeType],
|
|
8982
|
-
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
8983
|
-
},
|
|
8984
|
-
)
|
|
8985
|
-
|
|
8986
9027
|
class ProcessingInputTypeDef(TypedDict):
|
|
8987
9028
|
InputName: str
|
|
8988
9029
|
AppManaged: NotRequired[bool]
|
|
@@ -9403,6 +9444,14 @@ class TrialComponentSummaryTypeDef(TypedDict):
|
|
|
9403
9444
|
class WorkerAccessConfigurationTypeDef(TypedDict):
|
|
9404
9445
|
S3Presign: NotRequired[S3PresignTypeDef]
|
|
9405
9446
|
|
|
9447
|
+
class InferenceComponentDeploymentConfigOutputTypeDef(TypedDict):
|
|
9448
|
+
RollingUpdatePolicy: InferenceComponentRollingUpdatePolicyTypeDef
|
|
9449
|
+
AutoRollbackConfiguration: NotRequired[AutoRollbackConfigOutputTypeDef]
|
|
9450
|
+
|
|
9451
|
+
class InferenceComponentDeploymentConfigTypeDef(TypedDict):
|
|
9452
|
+
RollingUpdatePolicy: InferenceComponentRollingUpdatePolicyTypeDef
|
|
9453
|
+
AutoRollbackConfiguration: NotRequired[AutoRollbackConfigTypeDef]
|
|
9454
|
+
|
|
9406
9455
|
class CreateInferenceComponentInputTypeDef(TypedDict):
|
|
9407
9456
|
InferenceComponentName: str
|
|
9408
9457
|
EndpointName: str
|
|
@@ -9411,11 +9460,6 @@ class CreateInferenceComponentInputTypeDef(TypedDict):
|
|
|
9411
9460
|
RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
|
|
9412
9461
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
9413
9462
|
|
|
9414
|
-
class UpdateInferenceComponentInputTypeDef(TypedDict):
|
|
9415
|
-
InferenceComponentName: str
|
|
9416
|
-
Specification: NotRequired[InferenceComponentSpecificationTypeDef]
|
|
9417
|
-
RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
|
|
9418
|
-
|
|
9419
9463
|
ResourceConfigUnionTypeDef = Union[ResourceConfigTypeDef, ResourceConfigOutputTypeDef]
|
|
9420
9464
|
HyperParameterSpecificationOutputTypeDef = TypedDict(
|
|
9421
9465
|
"HyperParameterSpecificationOutputTypeDef",
|
|
@@ -9492,6 +9536,12 @@ class TargetTrackingScalingPolicyConfigurationTypeDef(TypedDict):
|
|
|
9492
9536
|
MetricSpecification: NotRequired[MetricSpecificationTypeDef]
|
|
9493
9537
|
TargetValue: NotRequired[float]
|
|
9494
9538
|
|
|
9539
|
+
class DataSourceOutputTypeDef(TypedDict):
|
|
9540
|
+
S3DataSource: NotRequired[S3DataSourceOutputTypeDef]
|
|
9541
|
+
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
9542
|
+
|
|
9543
|
+
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
9544
|
+
|
|
9495
9545
|
class AdditionalModelDataSourceTypeDef(TypedDict):
|
|
9496
9546
|
ChannelName: str
|
|
9497
9547
|
S3DataSource: S3ModelDataSourceTypeDef
|
|
@@ -9782,10 +9832,6 @@ class SearchTrainingPlanOfferingsResponseTypeDef(TypedDict):
|
|
|
9782
9832
|
TrainingPlanOfferings: List[TrainingPlanOfferingTypeDef]
|
|
9783
9833
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9784
9834
|
|
|
9785
|
-
class DataSourceTypeDef(TypedDict):
|
|
9786
|
-
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
9787
|
-
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
9788
|
-
|
|
9789
9835
|
class DescribePipelineExecutionResponseTypeDef(TypedDict):
|
|
9790
9836
|
PipelineArn: str
|
|
9791
9837
|
PipelineExecutionArn: str
|
|
@@ -10195,48 +10241,6 @@ class UpdateComputeQuotaRequestTypeDef(TypedDict):
|
|
|
10195
10241
|
ActivationState: NotRequired[ActivationStateType]
|
|
10196
10242
|
Description: NotRequired[str]
|
|
10197
10243
|
|
|
10198
|
-
class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
10199
|
-
AlgorithmSpecification: HyperParameterAlgorithmSpecificationOutputTypeDef
|
|
10200
|
-
RoleArn: str
|
|
10201
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
10202
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
10203
|
-
DefinitionName: NotRequired[str]
|
|
10204
|
-
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
10205
|
-
HyperParameterRanges: NotRequired[ParameterRangesOutputTypeDef]
|
|
10206
|
-
StaticHyperParameters: NotRequired[Dict[str, str]]
|
|
10207
|
-
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
10208
|
-
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
10209
|
-
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
10210
|
-
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigOutputTypeDef]
|
|
10211
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
10212
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
10213
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
10214
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
10215
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
10216
|
-
Environment: NotRequired[Dict[str, str]]
|
|
10217
|
-
|
|
10218
|
-
class TrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
10219
|
-
TrainingInputMode: TrainingInputModeType
|
|
10220
|
-
InputDataConfig: List[ChannelOutputTypeDef]
|
|
10221
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
10222
|
-
ResourceConfig: ResourceConfigOutputTypeDef
|
|
10223
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
10224
|
-
HyperParameters: NotRequired[Dict[str, str]]
|
|
10225
|
-
|
|
10226
|
-
class DescribeInferenceComponentOutputTypeDef(TypedDict):
|
|
10227
|
-
InferenceComponentName: str
|
|
10228
|
-
InferenceComponentArn: str
|
|
10229
|
-
EndpointName: str
|
|
10230
|
-
EndpointArn: str
|
|
10231
|
-
VariantName: str
|
|
10232
|
-
FailureReason: str
|
|
10233
|
-
Specification: InferenceComponentSpecificationSummaryTypeDef
|
|
10234
|
-
RuntimeConfig: InferenceComponentRuntimeConfigSummaryTypeDef
|
|
10235
|
-
CreationTime: datetime
|
|
10236
|
-
LastModifiedTime: datetime
|
|
10237
|
-
InferenceComponentStatus: InferenceComponentStatusType
|
|
10238
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
10239
|
-
|
|
10240
10244
|
class CreateEdgeDeploymentPlanRequestTypeDef(TypedDict):
|
|
10241
10245
|
EdgeDeploymentPlanName: str
|
|
10242
10246
|
ModelConfigs: Sequence[EdgeDeploymentModelConfigTypeDef]
|
|
@@ -10321,6 +10325,25 @@ class WorkteamTypeDef(TypedDict):
|
|
|
10321
10325
|
NotificationConfiguration: NotRequired[NotificationConfigurationTypeDef]
|
|
10322
10326
|
WorkerAccessConfiguration: NotRequired[WorkerAccessConfigurationTypeDef]
|
|
10323
10327
|
|
|
10328
|
+
class DescribeInferenceComponentOutputTypeDef(TypedDict):
|
|
10329
|
+
InferenceComponentName: str
|
|
10330
|
+
InferenceComponentArn: str
|
|
10331
|
+
EndpointName: str
|
|
10332
|
+
EndpointArn: str
|
|
10333
|
+
VariantName: str
|
|
10334
|
+
FailureReason: str
|
|
10335
|
+
Specification: InferenceComponentSpecificationSummaryTypeDef
|
|
10336
|
+
RuntimeConfig: InferenceComponentRuntimeConfigSummaryTypeDef
|
|
10337
|
+
CreationTime: datetime
|
|
10338
|
+
LastModifiedTime: datetime
|
|
10339
|
+
InferenceComponentStatus: InferenceComponentStatusType
|
|
10340
|
+
LastDeploymentConfig: InferenceComponentDeploymentConfigOutputTypeDef
|
|
10341
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
10342
|
+
|
|
10343
|
+
InferenceComponentDeploymentConfigUnionTypeDef = Union[
|
|
10344
|
+
InferenceComponentDeploymentConfigTypeDef, InferenceComponentDeploymentConfigOutputTypeDef
|
|
10345
|
+
]
|
|
10346
|
+
|
|
10324
10347
|
class TrainingSpecificationOutputTypeDef(TypedDict):
|
|
10325
10348
|
TrainingImage: str
|
|
10326
10349
|
SupportedTrainingInstanceTypes: List[TrainingInstanceTypeType]
|
|
@@ -10384,6 +10407,23 @@ LabelingJobInputConfigUnionTypeDef = Union[
|
|
|
10384
10407
|
class ScalingPolicyTypeDef(TypedDict):
|
|
10385
10408
|
TargetTracking: NotRequired[TargetTrackingScalingPolicyConfigurationTypeDef]
|
|
10386
10409
|
|
|
10410
|
+
ChannelOutputTypeDef = TypedDict(
|
|
10411
|
+
"ChannelOutputTypeDef",
|
|
10412
|
+
{
|
|
10413
|
+
"ChannelName": str,
|
|
10414
|
+
"DataSource": DataSourceOutputTypeDef,
|
|
10415
|
+
"ContentType": NotRequired[str],
|
|
10416
|
+
"CompressionType": NotRequired[CompressionTypeType],
|
|
10417
|
+
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
10418
|
+
"InputMode": NotRequired[TrainingInputModeType],
|
|
10419
|
+
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
10420
|
+
},
|
|
10421
|
+
)
|
|
10422
|
+
|
|
10423
|
+
class DataSourceTypeDef(TypedDict):
|
|
10424
|
+
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
10425
|
+
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
10426
|
+
|
|
10387
10427
|
class ContainerDefinitionOutputTypeDef(TypedDict):
|
|
10388
10428
|
ContainerHostname: NotRequired[str]
|
|
10389
10429
|
Image: NotRequired[str]
|
|
@@ -10660,7 +10700,6 @@ class DescribeLabelingJobResponseTypeDef(TypedDict):
|
|
|
10660
10700
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10661
10701
|
|
|
10662
10702
|
HumanTaskConfigUnionTypeDef = Union[HumanTaskConfigTypeDef, HumanTaskConfigOutputTypeDef]
|
|
10663
|
-
DataSourceUnionTypeDef = Union[DataSourceTypeDef, DataSourceOutputTypeDef]
|
|
10664
10703
|
|
|
10665
10704
|
class StartPipelineExecutionRequestTypeDef(TypedDict):
|
|
10666
10705
|
PipelineName: str
|
|
@@ -10714,127 +10753,41 @@ class SpaceSettingsTypeDef(TypedDict):
|
|
|
10714
10753
|
SpaceStorageSettings: NotRequired[SpaceStorageSettingsTypeDef]
|
|
10715
10754
|
CustomFileSystems: NotRequired[Sequence[CustomFileSystemTypeDef]]
|
|
10716
10755
|
|
|
10717
|
-
|
|
10718
|
-
|
|
10719
|
-
|
|
10720
|
-
|
|
10721
|
-
|
|
10722
|
-
|
|
10723
|
-
|
|
10724
|
-
|
|
10725
|
-
|
|
10756
|
+
AlgorithmSpecificationUnionTypeDef = Union[
|
|
10757
|
+
AlgorithmSpecificationTypeDef, AlgorithmSpecificationOutputTypeDef
|
|
10758
|
+
]
|
|
10759
|
+
|
|
10760
|
+
class CreateTransformJobRequestTypeDef(TypedDict):
|
|
10761
|
+
TransformJobName: str
|
|
10762
|
+
ModelName: str
|
|
10763
|
+
TransformInput: TransformInputTypeDef
|
|
10764
|
+
TransformOutput: TransformOutputTypeDef
|
|
10765
|
+
TransformResources: TransformResourcesTypeDef
|
|
10766
|
+
MaxConcurrentTransforms: NotRequired[int]
|
|
10767
|
+
ModelClientConfig: NotRequired[ModelClientConfigTypeDef]
|
|
10768
|
+
MaxPayloadInMB: NotRequired[int]
|
|
10769
|
+
BatchStrategy: NotRequired[BatchStrategyType]
|
|
10770
|
+
Environment: NotRequired[Mapping[str, str]]
|
|
10771
|
+
DataCaptureConfig: NotRequired[BatchDataCaptureConfigTypeDef]
|
|
10772
|
+
DataProcessing: NotRequired[DataProcessingTypeDef]
|
|
10773
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
10774
|
+
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
10775
|
+
|
|
10776
|
+
class DescribeTransformJobResponseTypeDef(TypedDict):
|
|
10777
|
+
TransformJobName: str
|
|
10778
|
+
TransformJobArn: str
|
|
10779
|
+
TransformJobStatus: TransformJobStatusType
|
|
10726
10780
|
FailureReason: str
|
|
10727
|
-
|
|
10728
|
-
|
|
10729
|
-
|
|
10730
|
-
|
|
10731
|
-
|
|
10732
|
-
|
|
10733
|
-
|
|
10734
|
-
|
|
10735
|
-
|
|
10736
|
-
|
|
10737
|
-
TrainingStartTime: datetime
|
|
10738
|
-
TrainingEndTime: datetime
|
|
10739
|
-
LastModifiedTime: datetime
|
|
10740
|
-
SecondaryStatusTransitions: List[SecondaryStatusTransitionTypeDef]
|
|
10741
|
-
FinalMetricDataList: List[MetricDataTypeDef]
|
|
10742
|
-
EnableNetworkIsolation: bool
|
|
10743
|
-
EnableInterContainerTrafficEncryption: bool
|
|
10744
|
-
EnableManagedSpotTraining: bool
|
|
10745
|
-
CheckpointConfig: CheckpointConfigTypeDef
|
|
10746
|
-
TrainingTimeInSeconds: int
|
|
10747
|
-
BillableTimeInSeconds: int
|
|
10748
|
-
DebugHookConfig: DebugHookConfigOutputTypeDef
|
|
10749
|
-
ExperimentConfig: ExperimentConfigTypeDef
|
|
10750
|
-
DebugRuleConfigurations: List[DebugRuleConfigurationOutputTypeDef]
|
|
10751
|
-
TensorBoardOutputConfig: TensorBoardOutputConfigTypeDef
|
|
10752
|
-
DebugRuleEvaluationStatuses: List[DebugRuleEvaluationStatusTypeDef]
|
|
10753
|
-
ProfilerConfig: ProfilerConfigOutputTypeDef
|
|
10754
|
-
ProfilerRuleConfigurations: List[ProfilerRuleConfigurationOutputTypeDef]
|
|
10755
|
-
ProfilerRuleEvaluationStatuses: List[ProfilerRuleEvaluationStatusTypeDef]
|
|
10756
|
-
ProfilingStatus: ProfilingStatusType
|
|
10757
|
-
Environment: Dict[str, str]
|
|
10758
|
-
RetryStrategy: RetryStrategyTypeDef
|
|
10759
|
-
RemoteDebugConfig: RemoteDebugConfigTypeDef
|
|
10760
|
-
InfraCheckConfig: InfraCheckConfigTypeDef
|
|
10761
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
10762
|
-
|
|
10763
|
-
class TrainingJobTypeDef(TypedDict):
|
|
10764
|
-
TrainingJobName: NotRequired[str]
|
|
10765
|
-
TrainingJobArn: NotRequired[str]
|
|
10766
|
-
TuningJobArn: NotRequired[str]
|
|
10767
|
-
LabelingJobArn: NotRequired[str]
|
|
10768
|
-
AutoMLJobArn: NotRequired[str]
|
|
10769
|
-
ModelArtifacts: NotRequired[ModelArtifactsTypeDef]
|
|
10770
|
-
TrainingJobStatus: NotRequired[TrainingJobStatusType]
|
|
10771
|
-
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
10772
|
-
FailureReason: NotRequired[str]
|
|
10773
|
-
HyperParameters: NotRequired[Dict[str, str]]
|
|
10774
|
-
AlgorithmSpecification: NotRequired[AlgorithmSpecificationOutputTypeDef]
|
|
10775
|
-
RoleArn: NotRequired[str]
|
|
10776
|
-
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
10777
|
-
OutputDataConfig: NotRequired[OutputDataConfigTypeDef]
|
|
10778
|
-
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
10779
|
-
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
10780
|
-
StoppingCondition: NotRequired[StoppingConditionTypeDef]
|
|
10781
|
-
CreationTime: NotRequired[datetime]
|
|
10782
|
-
TrainingStartTime: NotRequired[datetime]
|
|
10783
|
-
TrainingEndTime: NotRequired[datetime]
|
|
10784
|
-
LastModifiedTime: NotRequired[datetime]
|
|
10785
|
-
SecondaryStatusTransitions: NotRequired[List[SecondaryStatusTransitionTypeDef]]
|
|
10786
|
-
FinalMetricDataList: NotRequired[List[MetricDataTypeDef]]
|
|
10787
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
10788
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
10789
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
10790
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
10791
|
-
TrainingTimeInSeconds: NotRequired[int]
|
|
10792
|
-
BillableTimeInSeconds: NotRequired[int]
|
|
10793
|
-
DebugHookConfig: NotRequired[DebugHookConfigOutputTypeDef]
|
|
10794
|
-
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
10795
|
-
DebugRuleConfigurations: NotRequired[List[DebugRuleConfigurationOutputTypeDef]]
|
|
10796
|
-
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
10797
|
-
DebugRuleEvaluationStatuses: NotRequired[List[DebugRuleEvaluationStatusTypeDef]]
|
|
10798
|
-
ProfilerConfig: NotRequired[ProfilerConfigOutputTypeDef]
|
|
10799
|
-
Environment: NotRequired[Dict[str, str]]
|
|
10800
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
10801
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
10802
|
-
|
|
10803
|
-
AlgorithmSpecificationUnionTypeDef = Union[
|
|
10804
|
-
AlgorithmSpecificationTypeDef, AlgorithmSpecificationOutputTypeDef
|
|
10805
|
-
]
|
|
10806
|
-
|
|
10807
|
-
class CreateTransformJobRequestTypeDef(TypedDict):
|
|
10808
|
-
TransformJobName: str
|
|
10809
|
-
ModelName: str
|
|
10810
|
-
TransformInput: TransformInputTypeDef
|
|
10811
|
-
TransformOutput: TransformOutputTypeDef
|
|
10812
|
-
TransformResources: TransformResourcesTypeDef
|
|
10813
|
-
MaxConcurrentTransforms: NotRequired[int]
|
|
10814
|
-
ModelClientConfig: NotRequired[ModelClientConfigTypeDef]
|
|
10815
|
-
MaxPayloadInMB: NotRequired[int]
|
|
10816
|
-
BatchStrategy: NotRequired[BatchStrategyType]
|
|
10817
|
-
Environment: NotRequired[Mapping[str, str]]
|
|
10818
|
-
DataCaptureConfig: NotRequired[BatchDataCaptureConfigTypeDef]
|
|
10819
|
-
DataProcessing: NotRequired[DataProcessingTypeDef]
|
|
10820
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
10821
|
-
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
10822
|
-
|
|
10823
|
-
class DescribeTransformJobResponseTypeDef(TypedDict):
|
|
10824
|
-
TransformJobName: str
|
|
10825
|
-
TransformJobArn: str
|
|
10826
|
-
TransformJobStatus: TransformJobStatusType
|
|
10827
|
-
FailureReason: str
|
|
10828
|
-
ModelName: str
|
|
10829
|
-
MaxConcurrentTransforms: int
|
|
10830
|
-
ModelClientConfig: ModelClientConfigTypeDef
|
|
10831
|
-
MaxPayloadInMB: int
|
|
10832
|
-
BatchStrategy: BatchStrategyType
|
|
10833
|
-
Environment: Dict[str, str]
|
|
10834
|
-
TransformInput: TransformInputTypeDef
|
|
10835
|
-
TransformOutput: TransformOutputTypeDef
|
|
10836
|
-
DataCaptureConfig: BatchDataCaptureConfigTypeDef
|
|
10837
|
-
TransformResources: TransformResourcesTypeDef
|
|
10781
|
+
ModelName: str
|
|
10782
|
+
MaxConcurrentTransforms: int
|
|
10783
|
+
ModelClientConfig: ModelClientConfigTypeDef
|
|
10784
|
+
MaxPayloadInMB: int
|
|
10785
|
+
BatchStrategy: BatchStrategyType
|
|
10786
|
+
Environment: Dict[str, str]
|
|
10787
|
+
TransformInput: TransformInputTypeDef
|
|
10788
|
+
TransformOutput: TransformOutputTypeDef
|
|
10789
|
+
DataCaptureConfig: BatchDataCaptureConfigTypeDef
|
|
10790
|
+
TransformResources: TransformResourcesTypeDef
|
|
10838
10791
|
CreationTime: datetime
|
|
10839
10792
|
TransformStartTime: datetime
|
|
10840
10793
|
TransformEndTime: datetime
|
|
@@ -11038,47 +10991,6 @@ class DescribeEndpointOutputTypeDef(TypedDict):
|
|
|
11038
10991
|
|
|
11039
10992
|
ExplainerConfigUnionTypeDef = Union[ExplainerConfigTypeDef, ExplainerConfigOutputTypeDef]
|
|
11040
10993
|
|
|
11041
|
-
class DescribeHyperParameterTuningJobResponseTypeDef(TypedDict):
|
|
11042
|
-
HyperParameterTuningJobName: str
|
|
11043
|
-
HyperParameterTuningJobArn: str
|
|
11044
|
-
HyperParameterTuningJobConfig: HyperParameterTuningJobConfigOutputTypeDef
|
|
11045
|
-
TrainingJobDefinition: HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
11046
|
-
TrainingJobDefinitions: List[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
11047
|
-
HyperParameterTuningJobStatus: HyperParameterTuningJobStatusType
|
|
11048
|
-
CreationTime: datetime
|
|
11049
|
-
HyperParameterTuningEndTime: datetime
|
|
11050
|
-
LastModifiedTime: datetime
|
|
11051
|
-
TrainingJobStatusCounters: TrainingJobStatusCountersTypeDef
|
|
11052
|
-
ObjectiveStatusCounters: ObjectiveStatusCountersTypeDef
|
|
11053
|
-
BestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
11054
|
-
OverallBestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
11055
|
-
WarmStartConfig: HyperParameterTuningJobWarmStartConfigOutputTypeDef
|
|
11056
|
-
Autotune: AutotuneTypeDef
|
|
11057
|
-
FailureReason: str
|
|
11058
|
-
TuningJobCompletionDetails: HyperParameterTuningJobCompletionDetailsTypeDef
|
|
11059
|
-
ConsumedResources: HyperParameterTuningJobConsumedResourcesTypeDef
|
|
11060
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
11061
|
-
|
|
11062
|
-
class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
11063
|
-
HyperParameterTuningJobName: NotRequired[str]
|
|
11064
|
-
HyperParameterTuningJobArn: NotRequired[str]
|
|
11065
|
-
HyperParameterTuningJobConfig: NotRequired[HyperParameterTuningJobConfigOutputTypeDef]
|
|
11066
|
-
TrainingJobDefinition: NotRequired[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
11067
|
-
TrainingJobDefinitions: NotRequired[List[HyperParameterTrainingJobDefinitionOutputTypeDef]]
|
|
11068
|
-
HyperParameterTuningJobStatus: NotRequired[HyperParameterTuningJobStatusType]
|
|
11069
|
-
CreationTime: NotRequired[datetime]
|
|
11070
|
-
HyperParameterTuningEndTime: NotRequired[datetime]
|
|
11071
|
-
LastModifiedTime: NotRequired[datetime]
|
|
11072
|
-
TrainingJobStatusCounters: NotRequired[TrainingJobStatusCountersTypeDef]
|
|
11073
|
-
ObjectiveStatusCounters: NotRequired[ObjectiveStatusCountersTypeDef]
|
|
11074
|
-
BestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
11075
|
-
OverallBestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
11076
|
-
WarmStartConfig: NotRequired[HyperParameterTuningJobWarmStartConfigOutputTypeDef]
|
|
11077
|
-
FailureReason: NotRequired[str]
|
|
11078
|
-
TuningJobCompletionDetails: NotRequired[HyperParameterTuningJobCompletionDetailsTypeDef]
|
|
11079
|
-
ConsumedResources: NotRequired[HyperParameterTuningJobConsumedResourcesTypeDef]
|
|
11080
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
11081
|
-
|
|
11082
10994
|
class ListSpacesResponseTypeDef(TypedDict):
|
|
11083
10995
|
Spaces: List[SpaceDetailsTypeDef]
|
|
11084
10996
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -11102,6 +11014,12 @@ class UpdateWorkteamResponseTypeDef(TypedDict):
|
|
|
11102
11014
|
Workteam: WorkteamTypeDef
|
|
11103
11015
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11104
11016
|
|
|
11017
|
+
class UpdateInferenceComponentInputTypeDef(TypedDict):
|
|
11018
|
+
InferenceComponentName: str
|
|
11019
|
+
Specification: NotRequired[InferenceComponentSpecificationTypeDef]
|
|
11020
|
+
RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
|
|
11021
|
+
DeploymentConfig: NotRequired[InferenceComponentDeploymentConfigUnionTypeDef]
|
|
11022
|
+
|
|
11105
11023
|
TrainingSpecificationUnionTypeDef = Union[
|
|
11106
11024
|
TrainingSpecificationTypeDef, TrainingSpecificationOutputTypeDef
|
|
11107
11025
|
]
|
|
@@ -11118,6 +11036,122 @@ class DynamicScalingConfigurationTypeDef(TypedDict):
|
|
|
11118
11036
|
ScaleOutCooldown: NotRequired[int]
|
|
11119
11037
|
ScalingPolicies: NotRequired[List[ScalingPolicyTypeDef]]
|
|
11120
11038
|
|
|
11039
|
+
class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
11040
|
+
TrainingJobName: str
|
|
11041
|
+
TrainingJobArn: str
|
|
11042
|
+
TuningJobArn: str
|
|
11043
|
+
LabelingJobArn: str
|
|
11044
|
+
AutoMLJobArn: str
|
|
11045
|
+
ModelArtifacts: ModelArtifactsTypeDef
|
|
11046
|
+
TrainingJobStatus: TrainingJobStatusType
|
|
11047
|
+
SecondaryStatus: SecondaryStatusType
|
|
11048
|
+
FailureReason: str
|
|
11049
|
+
HyperParameters: Dict[str, str]
|
|
11050
|
+
AlgorithmSpecification: AlgorithmSpecificationOutputTypeDef
|
|
11051
|
+
RoleArn: str
|
|
11052
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
11053
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
11054
|
+
ResourceConfig: ResourceConfigOutputTypeDef
|
|
11055
|
+
WarmPoolStatus: WarmPoolStatusTypeDef
|
|
11056
|
+
VpcConfig: VpcConfigOutputTypeDef
|
|
11057
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
11058
|
+
CreationTime: datetime
|
|
11059
|
+
TrainingStartTime: datetime
|
|
11060
|
+
TrainingEndTime: datetime
|
|
11061
|
+
LastModifiedTime: datetime
|
|
11062
|
+
SecondaryStatusTransitions: List[SecondaryStatusTransitionTypeDef]
|
|
11063
|
+
FinalMetricDataList: List[MetricDataTypeDef]
|
|
11064
|
+
EnableNetworkIsolation: bool
|
|
11065
|
+
EnableInterContainerTrafficEncryption: bool
|
|
11066
|
+
EnableManagedSpotTraining: bool
|
|
11067
|
+
CheckpointConfig: CheckpointConfigTypeDef
|
|
11068
|
+
TrainingTimeInSeconds: int
|
|
11069
|
+
BillableTimeInSeconds: int
|
|
11070
|
+
DebugHookConfig: DebugHookConfigOutputTypeDef
|
|
11071
|
+
ExperimentConfig: ExperimentConfigTypeDef
|
|
11072
|
+
DebugRuleConfigurations: List[DebugRuleConfigurationOutputTypeDef]
|
|
11073
|
+
TensorBoardOutputConfig: TensorBoardOutputConfigTypeDef
|
|
11074
|
+
DebugRuleEvaluationStatuses: List[DebugRuleEvaluationStatusTypeDef]
|
|
11075
|
+
ProfilerConfig: ProfilerConfigOutputTypeDef
|
|
11076
|
+
ProfilerRuleConfigurations: List[ProfilerRuleConfigurationOutputTypeDef]
|
|
11077
|
+
ProfilerRuleEvaluationStatuses: List[ProfilerRuleEvaluationStatusTypeDef]
|
|
11078
|
+
ProfilingStatus: ProfilingStatusType
|
|
11079
|
+
Environment: Dict[str, str]
|
|
11080
|
+
RetryStrategy: RetryStrategyTypeDef
|
|
11081
|
+
RemoteDebugConfig: RemoteDebugConfigTypeDef
|
|
11082
|
+
InfraCheckConfig: InfraCheckConfigTypeDef
|
|
11083
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
11084
|
+
|
|
11085
|
+
class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
11086
|
+
AlgorithmSpecification: HyperParameterAlgorithmSpecificationOutputTypeDef
|
|
11087
|
+
RoleArn: str
|
|
11088
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
11089
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
11090
|
+
DefinitionName: NotRequired[str]
|
|
11091
|
+
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
11092
|
+
HyperParameterRanges: NotRequired[ParameterRangesOutputTypeDef]
|
|
11093
|
+
StaticHyperParameters: NotRequired[Dict[str, str]]
|
|
11094
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
11095
|
+
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
11096
|
+
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
11097
|
+
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigOutputTypeDef]
|
|
11098
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
11099
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11100
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
11101
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11102
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11103
|
+
Environment: NotRequired[Dict[str, str]]
|
|
11104
|
+
|
|
11105
|
+
class TrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
11106
|
+
TrainingInputMode: TrainingInputModeType
|
|
11107
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
11108
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
11109
|
+
ResourceConfig: ResourceConfigOutputTypeDef
|
|
11110
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
11111
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
11112
|
+
|
|
11113
|
+
class TrainingJobTypeDef(TypedDict):
|
|
11114
|
+
TrainingJobName: NotRequired[str]
|
|
11115
|
+
TrainingJobArn: NotRequired[str]
|
|
11116
|
+
TuningJobArn: NotRequired[str]
|
|
11117
|
+
LabelingJobArn: NotRequired[str]
|
|
11118
|
+
AutoMLJobArn: NotRequired[str]
|
|
11119
|
+
ModelArtifacts: NotRequired[ModelArtifactsTypeDef]
|
|
11120
|
+
TrainingJobStatus: NotRequired[TrainingJobStatusType]
|
|
11121
|
+
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
11122
|
+
FailureReason: NotRequired[str]
|
|
11123
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
11124
|
+
AlgorithmSpecification: NotRequired[AlgorithmSpecificationOutputTypeDef]
|
|
11125
|
+
RoleArn: NotRequired[str]
|
|
11126
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
11127
|
+
OutputDataConfig: NotRequired[OutputDataConfigTypeDef]
|
|
11128
|
+
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
11129
|
+
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
11130
|
+
StoppingCondition: NotRequired[StoppingConditionTypeDef]
|
|
11131
|
+
CreationTime: NotRequired[datetime]
|
|
11132
|
+
TrainingStartTime: NotRequired[datetime]
|
|
11133
|
+
TrainingEndTime: NotRequired[datetime]
|
|
11134
|
+
LastModifiedTime: NotRequired[datetime]
|
|
11135
|
+
SecondaryStatusTransitions: NotRequired[List[SecondaryStatusTransitionTypeDef]]
|
|
11136
|
+
FinalMetricDataList: NotRequired[List[MetricDataTypeDef]]
|
|
11137
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
11138
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11139
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
11140
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11141
|
+
TrainingTimeInSeconds: NotRequired[int]
|
|
11142
|
+
BillableTimeInSeconds: NotRequired[int]
|
|
11143
|
+
DebugHookConfig: NotRequired[DebugHookConfigOutputTypeDef]
|
|
11144
|
+
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
11145
|
+
DebugRuleConfigurations: NotRequired[List[DebugRuleConfigurationOutputTypeDef]]
|
|
11146
|
+
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
11147
|
+
DebugRuleEvaluationStatuses: NotRequired[List[DebugRuleEvaluationStatusTypeDef]]
|
|
11148
|
+
ProfilerConfig: NotRequired[ProfilerConfigOutputTypeDef]
|
|
11149
|
+
Environment: NotRequired[Dict[str, str]]
|
|
11150
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11151
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11152
|
+
|
|
11153
|
+
DataSourceUnionTypeDef = Union[DataSourceTypeDef, DataSourceOutputTypeDef]
|
|
11154
|
+
|
|
11121
11155
|
class DescribeModelOutputTypeDef(TypedDict):
|
|
11122
11156
|
ModelName: str
|
|
11123
11157
|
PrimaryContainer: ContainerDefinitionOutputTypeDef
|
|
@@ -11329,23 +11363,10 @@ class CreateLabelingJobRequestTypeDef(TypedDict):
|
|
|
11329
11363
|
OutputConfig: LabelingJobOutputConfigTypeDef
|
|
11330
11364
|
RoleArn: str
|
|
11331
11365
|
HumanTaskConfig: HumanTaskConfigUnionTypeDef
|
|
11332
|
-
LabelCategoryConfigS3Uri: NotRequired[str]
|
|
11333
|
-
StoppingConditions: NotRequired[LabelingJobStoppingConditionsTypeDef]
|
|
11334
|
-
LabelingJobAlgorithmsConfig: NotRequired[LabelingJobAlgorithmsConfigUnionTypeDef]
|
|
11335
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
11336
|
-
|
|
11337
|
-
ChannelTypeDef = TypedDict(
|
|
11338
|
-
"ChannelTypeDef",
|
|
11339
|
-
{
|
|
11340
|
-
"ChannelName": str,
|
|
11341
|
-
"DataSource": DataSourceUnionTypeDef,
|
|
11342
|
-
"ContentType": NotRequired[str],
|
|
11343
|
-
"CompressionType": NotRequired[CompressionTypeType],
|
|
11344
|
-
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
11345
|
-
"InputMode": NotRequired[TrainingInputModeType],
|
|
11346
|
-
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
11347
|
-
},
|
|
11348
|
-
)
|
|
11366
|
+
LabelCategoryConfigS3Uri: NotRequired[str]
|
|
11367
|
+
StoppingConditions: NotRequired[LabelingJobStoppingConditionsTypeDef]
|
|
11368
|
+
LabelingJobAlgorithmsConfig: NotRequired[LabelingJobAlgorithmsConfigUnionTypeDef]
|
|
11369
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
11349
11370
|
|
|
11350
11371
|
class DescribeSpaceResponseTypeDef(TypedDict):
|
|
11351
11372
|
DomainId: str
|
|
@@ -11365,11 +11386,6 @@ class DescribeSpaceResponseTypeDef(TypedDict):
|
|
|
11365
11386
|
|
|
11366
11387
|
SpaceSettingsUnionTypeDef = Union[SpaceSettingsTypeDef, SpaceSettingsOutputTypeDef]
|
|
11367
11388
|
|
|
11368
|
-
class AlgorithmValidationProfileOutputTypeDef(TypedDict):
|
|
11369
|
-
ProfileName: str
|
|
11370
|
-
TrainingJobDefinition: TrainingJobDefinitionOutputTypeDef
|
|
11371
|
-
TransformJobDefinition: NotRequired[TransformJobDefinitionOutputTypeDef]
|
|
11372
|
-
|
|
11373
11389
|
class ModelPackageValidationProfileOutputTypeDef(TypedDict):
|
|
11374
11390
|
ProfileName: str
|
|
11375
11391
|
TransformJobDefinition: TransformJobDefinitionOutputTypeDef
|
|
@@ -11378,12 +11394,6 @@ class ModelPackageValidationProfileTypeDef(TypedDict):
|
|
|
11378
11394
|
ProfileName: str
|
|
11379
11395
|
TransformJobDefinition: TransformJobDefinitionTypeDef
|
|
11380
11396
|
|
|
11381
|
-
class TrialComponentSourceDetailTypeDef(TypedDict):
|
|
11382
|
-
SourceArn: NotRequired[str]
|
|
11383
|
-
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
11384
|
-
ProcessingJob: NotRequired[ProcessingJobTypeDef]
|
|
11385
|
-
TransformJob: NotRequired[TransformJobTypeDef]
|
|
11386
|
-
|
|
11387
11397
|
class CreateDomainRequestTypeDef(TypedDict):
|
|
11388
11398
|
DomainName: str
|
|
11389
11399
|
AuthMode: AuthModeType
|
|
@@ -11482,6 +11492,71 @@ class GetScalingConfigurationRecommendationResponseTypeDef(TypedDict):
|
|
|
11482
11492
|
DynamicScalingConfiguration: DynamicScalingConfigurationTypeDef
|
|
11483
11493
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11484
11494
|
|
|
11495
|
+
class DescribeHyperParameterTuningJobResponseTypeDef(TypedDict):
|
|
11496
|
+
HyperParameterTuningJobName: str
|
|
11497
|
+
HyperParameterTuningJobArn: str
|
|
11498
|
+
HyperParameterTuningJobConfig: HyperParameterTuningJobConfigOutputTypeDef
|
|
11499
|
+
TrainingJobDefinition: HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
11500
|
+
TrainingJobDefinitions: List[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
11501
|
+
HyperParameterTuningJobStatus: HyperParameterTuningJobStatusType
|
|
11502
|
+
CreationTime: datetime
|
|
11503
|
+
HyperParameterTuningEndTime: datetime
|
|
11504
|
+
LastModifiedTime: datetime
|
|
11505
|
+
TrainingJobStatusCounters: TrainingJobStatusCountersTypeDef
|
|
11506
|
+
ObjectiveStatusCounters: ObjectiveStatusCountersTypeDef
|
|
11507
|
+
BestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
11508
|
+
OverallBestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
11509
|
+
WarmStartConfig: HyperParameterTuningJobWarmStartConfigOutputTypeDef
|
|
11510
|
+
Autotune: AutotuneTypeDef
|
|
11511
|
+
FailureReason: str
|
|
11512
|
+
TuningJobCompletionDetails: HyperParameterTuningJobCompletionDetailsTypeDef
|
|
11513
|
+
ConsumedResources: HyperParameterTuningJobConsumedResourcesTypeDef
|
|
11514
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
11515
|
+
|
|
11516
|
+
class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
11517
|
+
HyperParameterTuningJobName: NotRequired[str]
|
|
11518
|
+
HyperParameterTuningJobArn: NotRequired[str]
|
|
11519
|
+
HyperParameterTuningJobConfig: NotRequired[HyperParameterTuningJobConfigOutputTypeDef]
|
|
11520
|
+
TrainingJobDefinition: NotRequired[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
11521
|
+
TrainingJobDefinitions: NotRequired[List[HyperParameterTrainingJobDefinitionOutputTypeDef]]
|
|
11522
|
+
HyperParameterTuningJobStatus: NotRequired[HyperParameterTuningJobStatusType]
|
|
11523
|
+
CreationTime: NotRequired[datetime]
|
|
11524
|
+
HyperParameterTuningEndTime: NotRequired[datetime]
|
|
11525
|
+
LastModifiedTime: NotRequired[datetime]
|
|
11526
|
+
TrainingJobStatusCounters: NotRequired[TrainingJobStatusCountersTypeDef]
|
|
11527
|
+
ObjectiveStatusCounters: NotRequired[ObjectiveStatusCountersTypeDef]
|
|
11528
|
+
BestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
11529
|
+
OverallBestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
11530
|
+
WarmStartConfig: NotRequired[HyperParameterTuningJobWarmStartConfigOutputTypeDef]
|
|
11531
|
+
FailureReason: NotRequired[str]
|
|
11532
|
+
TuningJobCompletionDetails: NotRequired[HyperParameterTuningJobCompletionDetailsTypeDef]
|
|
11533
|
+
ConsumedResources: NotRequired[HyperParameterTuningJobConsumedResourcesTypeDef]
|
|
11534
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11535
|
+
|
|
11536
|
+
class AlgorithmValidationProfileOutputTypeDef(TypedDict):
|
|
11537
|
+
ProfileName: str
|
|
11538
|
+
TrainingJobDefinition: TrainingJobDefinitionOutputTypeDef
|
|
11539
|
+
TransformJobDefinition: NotRequired[TransformJobDefinitionOutputTypeDef]
|
|
11540
|
+
|
|
11541
|
+
class TrialComponentSourceDetailTypeDef(TypedDict):
|
|
11542
|
+
SourceArn: NotRequired[str]
|
|
11543
|
+
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
11544
|
+
ProcessingJob: NotRequired[ProcessingJobTypeDef]
|
|
11545
|
+
TransformJob: NotRequired[TransformJobTypeDef]
|
|
11546
|
+
|
|
11547
|
+
ChannelTypeDef = TypedDict(
|
|
11548
|
+
"ChannelTypeDef",
|
|
11549
|
+
{
|
|
11550
|
+
"ChannelName": str,
|
|
11551
|
+
"DataSource": DataSourceUnionTypeDef,
|
|
11552
|
+
"ContentType": NotRequired[str],
|
|
11553
|
+
"CompressionType": NotRequired[CompressionTypeType],
|
|
11554
|
+
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
11555
|
+
"InputMode": NotRequired[TrainingInputModeType],
|
|
11556
|
+
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
11557
|
+
},
|
|
11558
|
+
)
|
|
11559
|
+
|
|
11485
11560
|
class CreateModelInputTypeDef(TypedDict):
|
|
11486
11561
|
ModelName: str
|
|
11487
11562
|
PrimaryContainer: NotRequired[ContainerDefinitionUnionTypeDef]
|
|
@@ -11581,16 +11656,6 @@ class MonitoringScheduleConfigTypeDef(TypedDict):
|
|
|
11581
11656
|
MonitoringJobDefinitionName: NotRequired[str]
|
|
11582
11657
|
MonitoringType: NotRequired[MonitoringTypeType]
|
|
11583
11658
|
|
|
11584
|
-
ChannelUnionTypeDef = Union[ChannelTypeDef, ChannelOutputTypeDef]
|
|
11585
|
-
|
|
11586
|
-
class TrainingJobDefinitionTypeDef(TypedDict):
|
|
11587
|
-
TrainingInputMode: TrainingInputModeType
|
|
11588
|
-
InputDataConfig: Sequence[ChannelTypeDef]
|
|
11589
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
11590
|
-
ResourceConfig: ResourceConfigTypeDef
|
|
11591
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
11592
|
-
HyperParameters: NotRequired[Mapping[str, str]]
|
|
11593
|
-
|
|
11594
11659
|
class CreateSpaceRequestTypeDef(TypedDict):
|
|
11595
11660
|
DomainId: str
|
|
11596
11661
|
SpaceName: str
|
|
@@ -11606,10 +11671,6 @@ class UpdateSpaceRequestTypeDef(TypedDict):
|
|
|
11606
11671
|
SpaceSettings: NotRequired[SpaceSettingsUnionTypeDef]
|
|
11607
11672
|
SpaceDisplayName: NotRequired[str]
|
|
11608
11673
|
|
|
11609
|
-
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
11610
|
-
ValidationRole: str
|
|
11611
|
-
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
11612
|
-
|
|
11613
11674
|
class ModelPackageValidationSpecificationOutputTypeDef(TypedDict):
|
|
11614
11675
|
ValidationRole: str
|
|
11615
11676
|
ValidationProfiles: List[ModelPackageValidationProfileOutputTypeDef]
|
|
@@ -11618,6 +11679,10 @@ class ModelPackageValidationSpecificationTypeDef(TypedDict):
|
|
|
11618
11679
|
ValidationRole: str
|
|
11619
11680
|
ValidationProfiles: Sequence[ModelPackageValidationProfileTypeDef]
|
|
11620
11681
|
|
|
11682
|
+
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
11683
|
+
ValidationRole: str
|
|
11684
|
+
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
11685
|
+
|
|
11621
11686
|
class TrialComponentTypeDef(TypedDict):
|
|
11622
11687
|
TrialComponentName: NotRequired[str]
|
|
11623
11688
|
DisplayName: NotRequired[str]
|
|
@@ -11641,6 +11706,16 @@ class TrialComponentTypeDef(TypedDict):
|
|
|
11641
11706
|
Parents: NotRequired[List[ParentTypeDef]]
|
|
11642
11707
|
RunName: NotRequired[str]
|
|
11643
11708
|
|
|
11709
|
+
ChannelUnionTypeDef = Union[ChannelTypeDef, ChannelOutputTypeDef]
|
|
11710
|
+
|
|
11711
|
+
class TrainingJobDefinitionTypeDef(TypedDict):
|
|
11712
|
+
TrainingInputMode: TrainingInputModeType
|
|
11713
|
+
InputDataConfig: Sequence[ChannelTypeDef]
|
|
11714
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
11715
|
+
ResourceConfig: ResourceConfigTypeDef
|
|
11716
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
11717
|
+
HyperParameters: NotRequired[Mapping[str, str]]
|
|
11718
|
+
|
|
11644
11719
|
class BatchDescribeModelPackageOutputTypeDef(TypedDict):
|
|
11645
11720
|
ModelPackageSummaries: Dict[str, BatchDescribeModelPackageSummaryTypeDef]
|
|
11646
11721
|
BatchDescribeModelPackageErrorMap: Dict[str, BatchDescribeModelPackageErrorTypeDef]
|
|
@@ -11695,72 +11770,6 @@ MonitoringScheduleConfigUnionTypeDef = Union[
|
|
|
11695
11770
|
MonitoringScheduleConfigTypeDef, MonitoringScheduleConfigOutputTypeDef
|
|
11696
11771
|
]
|
|
11697
11772
|
|
|
11698
|
-
class CreateTrainingJobRequestTypeDef(TypedDict):
|
|
11699
|
-
TrainingJobName: str
|
|
11700
|
-
AlgorithmSpecification: AlgorithmSpecificationUnionTypeDef
|
|
11701
|
-
RoleArn: str
|
|
11702
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
11703
|
-
ResourceConfig: ResourceConfigUnionTypeDef
|
|
11704
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
11705
|
-
HyperParameters: NotRequired[Mapping[str, str]]
|
|
11706
|
-
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
11707
|
-
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
11708
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
11709
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
11710
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11711
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
11712
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11713
|
-
DebugHookConfig: NotRequired[DebugHookConfigUnionTypeDef]
|
|
11714
|
-
DebugRuleConfigurations: NotRequired[Sequence[DebugRuleConfigurationUnionTypeDef]]
|
|
11715
|
-
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
11716
|
-
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
11717
|
-
ProfilerConfig: NotRequired[ProfilerConfigUnionTypeDef]
|
|
11718
|
-
ProfilerRuleConfigurations: NotRequired[Sequence[ProfilerRuleConfigurationUnionTypeDef]]
|
|
11719
|
-
Environment: NotRequired[Mapping[str, str]]
|
|
11720
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11721
|
-
RemoteDebugConfig: NotRequired[RemoteDebugConfigTypeDef]
|
|
11722
|
-
InfraCheckConfig: NotRequired[InfraCheckConfigTypeDef]
|
|
11723
|
-
SessionChainingConfig: NotRequired[SessionChainingConfigTypeDef]
|
|
11724
|
-
|
|
11725
|
-
class HyperParameterTrainingJobDefinitionTypeDef(TypedDict):
|
|
11726
|
-
AlgorithmSpecification: HyperParameterAlgorithmSpecificationUnionTypeDef
|
|
11727
|
-
RoleArn: str
|
|
11728
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
11729
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
11730
|
-
DefinitionName: NotRequired[str]
|
|
11731
|
-
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
11732
|
-
HyperParameterRanges: NotRequired[ParameterRangesUnionTypeDef]
|
|
11733
|
-
StaticHyperParameters: NotRequired[Mapping[str, str]]
|
|
11734
|
-
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
11735
|
-
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
11736
|
-
ResourceConfig: NotRequired[ResourceConfigUnionTypeDef]
|
|
11737
|
-
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigUnionTypeDef]
|
|
11738
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
11739
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11740
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
11741
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11742
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11743
|
-
Environment: NotRequired[Mapping[str, str]]
|
|
11744
|
-
|
|
11745
|
-
class AlgorithmValidationProfileTypeDef(TypedDict):
|
|
11746
|
-
ProfileName: str
|
|
11747
|
-
TrainingJobDefinition: TrainingJobDefinitionTypeDef
|
|
11748
|
-
TransformJobDefinition: NotRequired[TransformJobDefinitionTypeDef]
|
|
11749
|
-
|
|
11750
|
-
class DescribeAlgorithmOutputTypeDef(TypedDict):
|
|
11751
|
-
AlgorithmName: str
|
|
11752
|
-
AlgorithmArn: str
|
|
11753
|
-
AlgorithmDescription: str
|
|
11754
|
-
CreationTime: datetime
|
|
11755
|
-
TrainingSpecification: TrainingSpecificationOutputTypeDef
|
|
11756
|
-
InferenceSpecification: InferenceSpecificationOutputTypeDef
|
|
11757
|
-
ValidationSpecification: AlgorithmValidationSpecificationOutputTypeDef
|
|
11758
|
-
AlgorithmStatus: AlgorithmStatusType
|
|
11759
|
-
AlgorithmStatusDetails: AlgorithmStatusDetailsTypeDef
|
|
11760
|
-
ProductId: str
|
|
11761
|
-
CertifyForMarketplace: bool
|
|
11762
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
11763
|
-
|
|
11764
11773
|
class DescribeModelPackageOutputTypeDef(TypedDict):
|
|
11765
11774
|
ModelPackageName: str
|
|
11766
11775
|
ModelPackageGroupName: str
|
|
@@ -11833,6 +11842,72 @@ ModelPackageValidationSpecificationUnionTypeDef = Union[
|
|
|
11833
11842
|
ModelPackageValidationSpecificationTypeDef, ModelPackageValidationSpecificationOutputTypeDef
|
|
11834
11843
|
]
|
|
11835
11844
|
|
|
11845
|
+
class DescribeAlgorithmOutputTypeDef(TypedDict):
|
|
11846
|
+
AlgorithmName: str
|
|
11847
|
+
AlgorithmArn: str
|
|
11848
|
+
AlgorithmDescription: str
|
|
11849
|
+
CreationTime: datetime
|
|
11850
|
+
TrainingSpecification: TrainingSpecificationOutputTypeDef
|
|
11851
|
+
InferenceSpecification: InferenceSpecificationOutputTypeDef
|
|
11852
|
+
ValidationSpecification: AlgorithmValidationSpecificationOutputTypeDef
|
|
11853
|
+
AlgorithmStatus: AlgorithmStatusType
|
|
11854
|
+
AlgorithmStatusDetails: AlgorithmStatusDetailsTypeDef
|
|
11855
|
+
ProductId: str
|
|
11856
|
+
CertifyForMarketplace: bool
|
|
11857
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
11858
|
+
|
|
11859
|
+
class CreateTrainingJobRequestTypeDef(TypedDict):
|
|
11860
|
+
TrainingJobName: str
|
|
11861
|
+
AlgorithmSpecification: AlgorithmSpecificationUnionTypeDef
|
|
11862
|
+
RoleArn: str
|
|
11863
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
11864
|
+
ResourceConfig: ResourceConfigUnionTypeDef
|
|
11865
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
11866
|
+
HyperParameters: NotRequired[Mapping[str, str]]
|
|
11867
|
+
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
11868
|
+
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
11869
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
11870
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
11871
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11872
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
11873
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11874
|
+
DebugHookConfig: NotRequired[DebugHookConfigUnionTypeDef]
|
|
11875
|
+
DebugRuleConfigurations: NotRequired[Sequence[DebugRuleConfigurationUnionTypeDef]]
|
|
11876
|
+
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
11877
|
+
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
11878
|
+
ProfilerConfig: NotRequired[ProfilerConfigUnionTypeDef]
|
|
11879
|
+
ProfilerRuleConfigurations: NotRequired[Sequence[ProfilerRuleConfigurationUnionTypeDef]]
|
|
11880
|
+
Environment: NotRequired[Mapping[str, str]]
|
|
11881
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11882
|
+
RemoteDebugConfig: NotRequired[RemoteDebugConfigTypeDef]
|
|
11883
|
+
InfraCheckConfig: NotRequired[InfraCheckConfigTypeDef]
|
|
11884
|
+
SessionChainingConfig: NotRequired[SessionChainingConfigTypeDef]
|
|
11885
|
+
|
|
11886
|
+
class HyperParameterTrainingJobDefinitionTypeDef(TypedDict):
|
|
11887
|
+
AlgorithmSpecification: HyperParameterAlgorithmSpecificationUnionTypeDef
|
|
11888
|
+
RoleArn: str
|
|
11889
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
11890
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
11891
|
+
DefinitionName: NotRequired[str]
|
|
11892
|
+
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
11893
|
+
HyperParameterRanges: NotRequired[ParameterRangesUnionTypeDef]
|
|
11894
|
+
StaticHyperParameters: NotRequired[Mapping[str, str]]
|
|
11895
|
+
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
11896
|
+
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
11897
|
+
ResourceConfig: NotRequired[ResourceConfigUnionTypeDef]
|
|
11898
|
+
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigUnionTypeDef]
|
|
11899
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
11900
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11901
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
11902
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11903
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11904
|
+
Environment: NotRequired[Mapping[str, str]]
|
|
11905
|
+
|
|
11906
|
+
class AlgorithmValidationProfileTypeDef(TypedDict):
|
|
11907
|
+
ProfileName: str
|
|
11908
|
+
TrainingJobDefinition: TrainingJobDefinitionTypeDef
|
|
11909
|
+
TransformJobDefinition: NotRequired[TransformJobDefinitionTypeDef]
|
|
11910
|
+
|
|
11836
11911
|
class UpdateModelPackageInputTypeDef(TypedDict):
|
|
11837
11912
|
ModelPackageArn: str
|
|
11838
11913
|
ModelApprovalStatus: NotRequired[ModelApprovalStatusType]
|
|
@@ -11878,14 +11953,6 @@ class UpdateMonitoringScheduleRequestTypeDef(TypedDict):
|
|
|
11878
11953
|
MonitoringScheduleName: str
|
|
11879
11954
|
MonitoringScheduleConfig: MonitoringScheduleConfigUnionTypeDef
|
|
11880
11955
|
|
|
11881
|
-
HyperParameterTrainingJobDefinitionUnionTypeDef = Union[
|
|
11882
|
-
HyperParameterTrainingJobDefinitionTypeDef, HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
11883
|
-
]
|
|
11884
|
-
|
|
11885
|
-
class AlgorithmValidationSpecificationTypeDef(TypedDict):
|
|
11886
|
-
ValidationRole: str
|
|
11887
|
-
ValidationProfiles: Sequence[AlgorithmValidationProfileTypeDef]
|
|
11888
|
-
|
|
11889
11956
|
class CreateModelPackageInputTypeDef(TypedDict):
|
|
11890
11957
|
ModelPackageName: NotRequired[str]
|
|
11891
11958
|
ModelPackageGroupName: NotRequired[str]
|
|
@@ -11913,6 +11980,14 @@ class CreateModelPackageInputTypeDef(TypedDict):
|
|
|
11913
11980
|
ModelCard: NotRequired[ModelPackageModelCardTypeDef]
|
|
11914
11981
|
ModelLifeCycle: NotRequired[ModelLifeCycleTypeDef]
|
|
11915
11982
|
|
|
11983
|
+
HyperParameterTrainingJobDefinitionUnionTypeDef = Union[
|
|
11984
|
+
HyperParameterTrainingJobDefinitionTypeDef, HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
11985
|
+
]
|
|
11986
|
+
|
|
11987
|
+
class AlgorithmValidationSpecificationTypeDef(TypedDict):
|
|
11988
|
+
ValidationRole: str
|
|
11989
|
+
ValidationProfiles: Sequence[AlgorithmValidationProfileTypeDef]
|
|
11990
|
+
|
|
11916
11991
|
class SearchRecordTypeDef(TypedDict):
|
|
11917
11992
|
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
11918
11993
|
Experiment: NotRequired[ExperimentTypeDef]
|