mypy-boto3-sagemaker 1.37.2__py3-none-any.whl → 1.37.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mypy-boto3-sagemaker might be problematic. Click here for more details.
- mypy_boto3_sagemaker/__main__.py +4 -4
- mypy_boto3_sagemaker/client.py +26 -0
- mypy_boto3_sagemaker/client.pyi +26 -0
- mypy_boto3_sagemaker/literals.py +1 -1
- mypy_boto3_sagemaker/literals.pyi +1 -1
- mypy_boto3_sagemaker/type_defs.py +384 -337
- mypy_boto3_sagemaker/type_defs.pyi +358 -316
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.37.2.dist-info → mypy_boto3_sagemaker-1.37.5.dist-info}/METADATA +5 -5
- mypy_boto3_sagemaker-1.37.5.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.37.2.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.37.2.dist-info → mypy_boto3_sagemaker-1.37.5.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.37.2.dist-info → mypy_boto3_sagemaker-1.37.5.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.37.2.dist-info → mypy_boto3_sagemaker-1.37.5.dist-info}/top_level.txt +0 -0
|
@@ -982,6 +982,7 @@ __all__ = (
|
|
|
982
982
|
"HiddenSageMakerImageOutputTypeDef",
|
|
983
983
|
"HiddenSageMakerImageTypeDef",
|
|
984
984
|
"HolidayConfigAttributesTypeDef",
|
|
985
|
+
"HubAccessConfigTypeDef",
|
|
985
986
|
"HubContentDependencyTypeDef",
|
|
986
987
|
"HubContentInfoTypeDef",
|
|
987
988
|
"HubInfoTypeDef",
|
|
@@ -1830,6 +1831,10 @@ __all__ = (
|
|
|
1830
1831
|
"UpdateFeatureGroupRequestTypeDef",
|
|
1831
1832
|
"UpdateFeatureGroupResponseTypeDef",
|
|
1832
1833
|
"UpdateFeatureMetadataRequestTypeDef",
|
|
1834
|
+
"UpdateHubContentReferenceRequestTypeDef",
|
|
1835
|
+
"UpdateHubContentReferenceResponseTypeDef",
|
|
1836
|
+
"UpdateHubContentRequestTypeDef",
|
|
1837
|
+
"UpdateHubContentResponseTypeDef",
|
|
1833
1838
|
"UpdateHubRequestTypeDef",
|
|
1834
1839
|
"UpdateHubResponseTypeDef",
|
|
1835
1840
|
"UpdateImageRequestTypeDef",
|
|
@@ -2721,17 +2726,6 @@ class FileSystemDataSourceTypeDef(TypedDict):
|
|
|
2721
2726
|
FileSystemType: FileSystemTypeType
|
|
2722
2727
|
DirectoryPath: str
|
|
2723
2728
|
|
|
2724
|
-
S3DataSourceOutputTypeDef = TypedDict(
|
|
2725
|
-
"S3DataSourceOutputTypeDef",
|
|
2726
|
-
{
|
|
2727
|
-
"S3DataType": S3DataTypeType,
|
|
2728
|
-
"S3Uri": str,
|
|
2729
|
-
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
2730
|
-
"AttributeNames": NotRequired[List[str]],
|
|
2731
|
-
"InstanceGroupNames": NotRequired[List[str]],
|
|
2732
|
-
},
|
|
2733
|
-
)
|
|
2734
|
-
|
|
2735
2729
|
class RedshiftDatasetDefinitionTypeDef(TypedDict):
|
|
2736
2730
|
ClusterId: str
|
|
2737
2731
|
Database: str
|
|
@@ -3657,6 +3651,9 @@ class HiddenSageMakerImageTypeDef(TypedDict):
|
|
|
3657
3651
|
class HolidayConfigAttributesTypeDef(TypedDict):
|
|
3658
3652
|
CountryCode: NotRequired[str]
|
|
3659
3653
|
|
|
3654
|
+
class HubAccessConfigTypeDef(TypedDict):
|
|
3655
|
+
HubContentArn: str
|
|
3656
|
+
|
|
3660
3657
|
class HubContentInfoTypeDef(TypedDict):
|
|
3661
3658
|
HubContentName: str
|
|
3662
3659
|
HubContentArn: str
|
|
@@ -4520,17 +4517,6 @@ class ReservedCapacityOfferingTypeDef(TypedDict):
|
|
|
4520
4517
|
class ResourceConfigForUpdateTypeDef(TypedDict):
|
|
4521
4518
|
KeepAlivePeriodInSeconds: int
|
|
4522
4519
|
|
|
4523
|
-
S3DataSourceTypeDef = TypedDict(
|
|
4524
|
-
"S3DataSourceTypeDef",
|
|
4525
|
-
{
|
|
4526
|
-
"S3DataType": S3DataTypeType,
|
|
4527
|
-
"S3Uri": str,
|
|
4528
|
-
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
4529
|
-
"AttributeNames": NotRequired[Sequence[str]],
|
|
4530
|
-
"InstanceGroupNames": NotRequired[Sequence[str]],
|
|
4531
|
-
},
|
|
4532
|
-
)
|
|
4533
|
-
|
|
4534
4520
|
class VisibilityConditionsTypeDef(TypedDict):
|
|
4535
4521
|
Key: NotRequired[str]
|
|
4536
4522
|
Value: NotRequired[str]
|
|
@@ -4694,6 +4680,23 @@ class UpdateExperimentRequestTypeDef(TypedDict):
|
|
|
4694
4680
|
DisplayName: NotRequired[str]
|
|
4695
4681
|
Description: NotRequired[str]
|
|
4696
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
|
+
|
|
4697
4700
|
class UpdateHubRequestTypeDef(TypedDict):
|
|
4698
4701
|
HubName: str
|
|
4699
4702
|
HubDescription: NotRequired[str]
|
|
@@ -4828,6 +4831,7 @@ class CreateDataQualityJobDefinitionResponseTypeDef(TypedDict):
|
|
|
4828
4831
|
|
|
4829
4832
|
class CreateDomainResponseTypeDef(TypedDict):
|
|
4830
4833
|
DomainArn: str
|
|
4834
|
+
DomainId: str
|
|
4831
4835
|
Url: str
|
|
4832
4836
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4833
4837
|
|
|
@@ -5248,6 +5252,16 @@ class UpdateFeatureGroupResponseTypeDef(TypedDict):
|
|
|
5248
5252
|
FeatureGroupArn: str
|
|
5249
5253
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5250
5254
|
|
|
5255
|
+
class UpdateHubContentReferenceResponseTypeDef(TypedDict):
|
|
5256
|
+
HubArn: str
|
|
5257
|
+
HubContentArn: str
|
|
5258
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5259
|
+
|
|
5260
|
+
class UpdateHubContentResponseTypeDef(TypedDict):
|
|
5261
|
+
HubArn: str
|
|
5262
|
+
HubContentArn: str
|
|
5263
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5264
|
+
|
|
5251
5265
|
class UpdateHubResponseTypeDef(TypedDict):
|
|
5252
5266
|
HubArn: str
|
|
5253
5267
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5393,6 +5407,7 @@ class ImportHubContentRequestTypeDef(TypedDict):
|
|
|
5393
5407
|
HubContentDisplayName: NotRequired[str]
|
|
5394
5408
|
HubContentDescription: NotRequired[str]
|
|
5395
5409
|
HubContentMarkdown: NotRequired[str]
|
|
5410
|
+
SupportStatus: NotRequired[HubContentSupportStatusType]
|
|
5396
5411
|
HubContentSearchKeywords: NotRequired[Sequence[str]]
|
|
5397
5412
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
5398
5413
|
|
|
@@ -6824,10 +6839,6 @@ class MonitoringBaselineConfigTypeDef(TypedDict):
|
|
|
6824
6839
|
ConstraintsResource: NotRequired[MonitoringConstraintsResourceTypeDef]
|
|
6825
6840
|
StatisticsResource: NotRequired[MonitoringStatisticsResourceTypeDef]
|
|
6826
6841
|
|
|
6827
|
-
class DataSourceOutputTypeDef(TypedDict):
|
|
6828
|
-
S3DataSource: NotRequired[S3DataSourceOutputTypeDef]
|
|
6829
|
-
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
6830
|
-
|
|
6831
6842
|
class DatasetDefinitionTypeDef(TypedDict):
|
|
6832
6843
|
AthenaDatasetDefinition: NotRequired[AthenaDatasetDefinitionTypeDef]
|
|
6833
6844
|
RedshiftDatasetDefinition: NotRequired[RedshiftDatasetDefinitionTypeDef]
|
|
@@ -7012,6 +7023,7 @@ class DescribeHubContentResponseTypeDef(TypedDict):
|
|
|
7012
7023
|
HubContentStatus: HubContentStatusType
|
|
7013
7024
|
FailureReason: str
|
|
7014
7025
|
CreationTime: datetime
|
|
7026
|
+
LastModifiedTime: datetime
|
|
7015
7027
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7016
7028
|
|
|
7017
7029
|
class DescribeHumanTaskUiResponseTypeDef(TypedDict):
|
|
@@ -8310,6 +8322,31 @@ class MetricSpecificationTypeDef(TypedDict):
|
|
|
8310
8322
|
Predefined: NotRequired[PredefinedMetricSpecificationTypeDef]
|
|
8311
8323
|
Customized: NotRequired[CustomizedMetricSpecificationTypeDef]
|
|
8312
8324
|
|
|
8325
|
+
S3DataSourceOutputTypeDef = TypedDict(
|
|
8326
|
+
"S3DataSourceOutputTypeDef",
|
|
8327
|
+
{
|
|
8328
|
+
"S3DataType": S3DataTypeType,
|
|
8329
|
+
"S3Uri": str,
|
|
8330
|
+
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
8331
|
+
"AttributeNames": NotRequired[List[str]],
|
|
8332
|
+
"InstanceGroupNames": NotRequired[List[str]],
|
|
8333
|
+
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
8334
|
+
"HubAccessConfig": NotRequired[HubAccessConfigTypeDef],
|
|
8335
|
+
},
|
|
8336
|
+
)
|
|
8337
|
+
S3DataSourceTypeDef = TypedDict(
|
|
8338
|
+
"S3DataSourceTypeDef",
|
|
8339
|
+
{
|
|
8340
|
+
"S3DataType": S3DataTypeType,
|
|
8341
|
+
"S3Uri": str,
|
|
8342
|
+
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
8343
|
+
"AttributeNames": NotRequired[Sequence[str]],
|
|
8344
|
+
"InstanceGroupNames": NotRequired[Sequence[str]],
|
|
8345
|
+
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
8346
|
+
"HubAccessConfig": NotRequired[HubAccessConfigTypeDef],
|
|
8347
|
+
},
|
|
8348
|
+
)
|
|
8349
|
+
|
|
8313
8350
|
class S3ModelDataSourceTypeDef(TypedDict):
|
|
8314
8351
|
S3Uri: str
|
|
8315
8352
|
S3DataType: S3ModelDataTypeType
|
|
@@ -8582,8 +8619,6 @@ class TrainingPlanOfferingTypeDef(TypedDict):
|
|
|
8582
8619
|
CurrencyCode: NotRequired[str]
|
|
8583
8620
|
ReservedCapacityOfferings: NotRequired[List[ReservedCapacityOfferingTypeDef]]
|
|
8584
8621
|
|
|
8585
|
-
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
8586
|
-
|
|
8587
8622
|
class SelectiveExecutionConfigOutputTypeDef(TypedDict):
|
|
8588
8623
|
SelectedSteps: List[SelectedStepTypeDef]
|
|
8589
8624
|
SourcePipelineExecutionArn: NotRequired[str]
|
|
@@ -8990,19 +9025,6 @@ class QueryLineageRequestTypeDef(TypedDict):
|
|
|
8990
9025
|
MaxResults: NotRequired[int]
|
|
8991
9026
|
NextToken: NotRequired[str]
|
|
8992
9027
|
|
|
8993
|
-
ChannelOutputTypeDef = TypedDict(
|
|
8994
|
-
"ChannelOutputTypeDef",
|
|
8995
|
-
{
|
|
8996
|
-
"ChannelName": str,
|
|
8997
|
-
"DataSource": DataSourceOutputTypeDef,
|
|
8998
|
-
"ContentType": NotRequired[str],
|
|
8999
|
-
"CompressionType": NotRequired[CompressionTypeType],
|
|
9000
|
-
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
9001
|
-
"InputMode": NotRequired[TrainingInputModeType],
|
|
9002
|
-
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
9003
|
-
},
|
|
9004
|
-
)
|
|
9005
|
-
|
|
9006
9028
|
class ProcessingInputTypeDef(TypedDict):
|
|
9007
9029
|
InputName: str
|
|
9008
9030
|
AppManaged: NotRequired[bool]
|
|
@@ -9515,6 +9537,12 @@ class TargetTrackingScalingPolicyConfigurationTypeDef(TypedDict):
|
|
|
9515
9537
|
MetricSpecification: NotRequired[MetricSpecificationTypeDef]
|
|
9516
9538
|
TargetValue: NotRequired[float]
|
|
9517
9539
|
|
|
9540
|
+
class DataSourceOutputTypeDef(TypedDict):
|
|
9541
|
+
S3DataSource: NotRequired[S3DataSourceOutputTypeDef]
|
|
9542
|
+
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
9543
|
+
|
|
9544
|
+
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
9545
|
+
|
|
9518
9546
|
class AdditionalModelDataSourceTypeDef(TypedDict):
|
|
9519
9547
|
ChannelName: str
|
|
9520
9548
|
S3DataSource: S3ModelDataSourceTypeDef
|
|
@@ -9805,10 +9833,6 @@ class SearchTrainingPlanOfferingsResponseTypeDef(TypedDict):
|
|
|
9805
9833
|
TrainingPlanOfferings: List[TrainingPlanOfferingTypeDef]
|
|
9806
9834
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9807
9835
|
|
|
9808
|
-
class DataSourceTypeDef(TypedDict):
|
|
9809
|
-
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
9810
|
-
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
9811
|
-
|
|
9812
9836
|
class DescribePipelineExecutionResponseTypeDef(TypedDict):
|
|
9813
9837
|
PipelineArn: str
|
|
9814
9838
|
PipelineExecutionArn: str
|
|
@@ -10218,34 +10242,6 @@ class UpdateComputeQuotaRequestTypeDef(TypedDict):
|
|
|
10218
10242
|
ActivationState: NotRequired[ActivationStateType]
|
|
10219
10243
|
Description: NotRequired[str]
|
|
10220
10244
|
|
|
10221
|
-
class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
10222
|
-
AlgorithmSpecification: HyperParameterAlgorithmSpecificationOutputTypeDef
|
|
10223
|
-
RoleArn: str
|
|
10224
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
10225
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
10226
|
-
DefinitionName: NotRequired[str]
|
|
10227
|
-
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
10228
|
-
HyperParameterRanges: NotRequired[ParameterRangesOutputTypeDef]
|
|
10229
|
-
StaticHyperParameters: NotRequired[Dict[str, str]]
|
|
10230
|
-
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
10231
|
-
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
10232
|
-
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
10233
|
-
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigOutputTypeDef]
|
|
10234
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
10235
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
10236
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
10237
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
10238
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
10239
|
-
Environment: NotRequired[Dict[str, str]]
|
|
10240
|
-
|
|
10241
|
-
class TrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
10242
|
-
TrainingInputMode: TrainingInputModeType
|
|
10243
|
-
InputDataConfig: List[ChannelOutputTypeDef]
|
|
10244
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
10245
|
-
ResourceConfig: ResourceConfigOutputTypeDef
|
|
10246
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
10247
|
-
HyperParameters: NotRequired[Dict[str, str]]
|
|
10248
|
-
|
|
10249
10245
|
class CreateEdgeDeploymentPlanRequestTypeDef(TypedDict):
|
|
10250
10246
|
EdgeDeploymentPlanName: str
|
|
10251
10247
|
ModelConfigs: Sequence[EdgeDeploymentModelConfigTypeDef]
|
|
@@ -10412,6 +10408,23 @@ LabelingJobInputConfigUnionTypeDef = Union[
|
|
|
10412
10408
|
class ScalingPolicyTypeDef(TypedDict):
|
|
10413
10409
|
TargetTracking: NotRequired[TargetTrackingScalingPolicyConfigurationTypeDef]
|
|
10414
10410
|
|
|
10411
|
+
ChannelOutputTypeDef = TypedDict(
|
|
10412
|
+
"ChannelOutputTypeDef",
|
|
10413
|
+
{
|
|
10414
|
+
"ChannelName": str,
|
|
10415
|
+
"DataSource": DataSourceOutputTypeDef,
|
|
10416
|
+
"ContentType": NotRequired[str],
|
|
10417
|
+
"CompressionType": NotRequired[CompressionTypeType],
|
|
10418
|
+
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
10419
|
+
"InputMode": NotRequired[TrainingInputModeType],
|
|
10420
|
+
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
10421
|
+
},
|
|
10422
|
+
)
|
|
10423
|
+
|
|
10424
|
+
class DataSourceTypeDef(TypedDict):
|
|
10425
|
+
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
10426
|
+
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
10427
|
+
|
|
10415
10428
|
class ContainerDefinitionOutputTypeDef(TypedDict):
|
|
10416
10429
|
ContainerHostname: NotRequired[str]
|
|
10417
10430
|
Image: NotRequired[str]
|
|
@@ -10688,7 +10701,6 @@ class DescribeLabelingJobResponseTypeDef(TypedDict):
|
|
|
10688
10701
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10689
10702
|
|
|
10690
10703
|
HumanTaskConfigUnionTypeDef = Union[HumanTaskConfigTypeDef, HumanTaskConfigOutputTypeDef]
|
|
10691
|
-
DataSourceUnionTypeDef = Union[DataSourceTypeDef, DataSourceOutputTypeDef]
|
|
10692
10704
|
|
|
10693
10705
|
class StartPipelineExecutionRequestTypeDef(TypedDict):
|
|
10694
10706
|
PipelineName: str
|
|
@@ -10742,92 +10754,6 @@ class SpaceSettingsTypeDef(TypedDict):
|
|
|
10742
10754
|
SpaceStorageSettings: NotRequired[SpaceStorageSettingsTypeDef]
|
|
10743
10755
|
CustomFileSystems: NotRequired[Sequence[CustomFileSystemTypeDef]]
|
|
10744
10756
|
|
|
10745
|
-
class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
10746
|
-
TrainingJobName: str
|
|
10747
|
-
TrainingJobArn: str
|
|
10748
|
-
TuningJobArn: str
|
|
10749
|
-
LabelingJobArn: str
|
|
10750
|
-
AutoMLJobArn: str
|
|
10751
|
-
ModelArtifacts: ModelArtifactsTypeDef
|
|
10752
|
-
TrainingJobStatus: TrainingJobStatusType
|
|
10753
|
-
SecondaryStatus: SecondaryStatusType
|
|
10754
|
-
FailureReason: str
|
|
10755
|
-
HyperParameters: Dict[str, str]
|
|
10756
|
-
AlgorithmSpecification: AlgorithmSpecificationOutputTypeDef
|
|
10757
|
-
RoleArn: str
|
|
10758
|
-
InputDataConfig: List[ChannelOutputTypeDef]
|
|
10759
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
10760
|
-
ResourceConfig: ResourceConfigOutputTypeDef
|
|
10761
|
-
WarmPoolStatus: WarmPoolStatusTypeDef
|
|
10762
|
-
VpcConfig: VpcConfigOutputTypeDef
|
|
10763
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
10764
|
-
CreationTime: datetime
|
|
10765
|
-
TrainingStartTime: datetime
|
|
10766
|
-
TrainingEndTime: datetime
|
|
10767
|
-
LastModifiedTime: datetime
|
|
10768
|
-
SecondaryStatusTransitions: List[SecondaryStatusTransitionTypeDef]
|
|
10769
|
-
FinalMetricDataList: List[MetricDataTypeDef]
|
|
10770
|
-
EnableNetworkIsolation: bool
|
|
10771
|
-
EnableInterContainerTrafficEncryption: bool
|
|
10772
|
-
EnableManagedSpotTraining: bool
|
|
10773
|
-
CheckpointConfig: CheckpointConfigTypeDef
|
|
10774
|
-
TrainingTimeInSeconds: int
|
|
10775
|
-
BillableTimeInSeconds: int
|
|
10776
|
-
DebugHookConfig: DebugHookConfigOutputTypeDef
|
|
10777
|
-
ExperimentConfig: ExperimentConfigTypeDef
|
|
10778
|
-
DebugRuleConfigurations: List[DebugRuleConfigurationOutputTypeDef]
|
|
10779
|
-
TensorBoardOutputConfig: TensorBoardOutputConfigTypeDef
|
|
10780
|
-
DebugRuleEvaluationStatuses: List[DebugRuleEvaluationStatusTypeDef]
|
|
10781
|
-
ProfilerConfig: ProfilerConfigOutputTypeDef
|
|
10782
|
-
ProfilerRuleConfigurations: List[ProfilerRuleConfigurationOutputTypeDef]
|
|
10783
|
-
ProfilerRuleEvaluationStatuses: List[ProfilerRuleEvaluationStatusTypeDef]
|
|
10784
|
-
ProfilingStatus: ProfilingStatusType
|
|
10785
|
-
Environment: Dict[str, str]
|
|
10786
|
-
RetryStrategy: RetryStrategyTypeDef
|
|
10787
|
-
RemoteDebugConfig: RemoteDebugConfigTypeDef
|
|
10788
|
-
InfraCheckConfig: InfraCheckConfigTypeDef
|
|
10789
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
10790
|
-
|
|
10791
|
-
class TrainingJobTypeDef(TypedDict):
|
|
10792
|
-
TrainingJobName: NotRequired[str]
|
|
10793
|
-
TrainingJobArn: NotRequired[str]
|
|
10794
|
-
TuningJobArn: NotRequired[str]
|
|
10795
|
-
LabelingJobArn: NotRequired[str]
|
|
10796
|
-
AutoMLJobArn: NotRequired[str]
|
|
10797
|
-
ModelArtifacts: NotRequired[ModelArtifactsTypeDef]
|
|
10798
|
-
TrainingJobStatus: NotRequired[TrainingJobStatusType]
|
|
10799
|
-
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
10800
|
-
FailureReason: NotRequired[str]
|
|
10801
|
-
HyperParameters: NotRequired[Dict[str, str]]
|
|
10802
|
-
AlgorithmSpecification: NotRequired[AlgorithmSpecificationOutputTypeDef]
|
|
10803
|
-
RoleArn: NotRequired[str]
|
|
10804
|
-
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
10805
|
-
OutputDataConfig: NotRequired[OutputDataConfigTypeDef]
|
|
10806
|
-
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
10807
|
-
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
10808
|
-
StoppingCondition: NotRequired[StoppingConditionTypeDef]
|
|
10809
|
-
CreationTime: NotRequired[datetime]
|
|
10810
|
-
TrainingStartTime: NotRequired[datetime]
|
|
10811
|
-
TrainingEndTime: NotRequired[datetime]
|
|
10812
|
-
LastModifiedTime: NotRequired[datetime]
|
|
10813
|
-
SecondaryStatusTransitions: NotRequired[List[SecondaryStatusTransitionTypeDef]]
|
|
10814
|
-
FinalMetricDataList: NotRequired[List[MetricDataTypeDef]]
|
|
10815
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
10816
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
10817
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
10818
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
10819
|
-
TrainingTimeInSeconds: NotRequired[int]
|
|
10820
|
-
BillableTimeInSeconds: NotRequired[int]
|
|
10821
|
-
DebugHookConfig: NotRequired[DebugHookConfigOutputTypeDef]
|
|
10822
|
-
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
10823
|
-
DebugRuleConfigurations: NotRequired[List[DebugRuleConfigurationOutputTypeDef]]
|
|
10824
|
-
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
10825
|
-
DebugRuleEvaluationStatuses: NotRequired[List[DebugRuleEvaluationStatusTypeDef]]
|
|
10826
|
-
ProfilerConfig: NotRequired[ProfilerConfigOutputTypeDef]
|
|
10827
|
-
Environment: NotRequired[Dict[str, str]]
|
|
10828
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
10829
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
10830
|
-
|
|
10831
10757
|
AlgorithmSpecificationUnionTypeDef = Union[
|
|
10832
10758
|
AlgorithmSpecificationTypeDef, AlgorithmSpecificationOutputTypeDef
|
|
10833
10759
|
]
|
|
@@ -11066,51 +10992,10 @@ class DescribeEndpointOutputTypeDef(TypedDict):
|
|
|
11066
10992
|
|
|
11067
10993
|
ExplainerConfigUnionTypeDef = Union[ExplainerConfigTypeDef, ExplainerConfigOutputTypeDef]
|
|
11068
10994
|
|
|
11069
|
-
class
|
|
11070
|
-
|
|
11071
|
-
HyperParameterTuningJobArn: str
|
|
11072
|
-
HyperParameterTuningJobConfig: HyperParameterTuningJobConfigOutputTypeDef
|
|
11073
|
-
TrainingJobDefinition: HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
11074
|
-
TrainingJobDefinitions: List[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
11075
|
-
HyperParameterTuningJobStatus: HyperParameterTuningJobStatusType
|
|
11076
|
-
CreationTime: datetime
|
|
11077
|
-
HyperParameterTuningEndTime: datetime
|
|
11078
|
-
LastModifiedTime: datetime
|
|
11079
|
-
TrainingJobStatusCounters: TrainingJobStatusCountersTypeDef
|
|
11080
|
-
ObjectiveStatusCounters: ObjectiveStatusCountersTypeDef
|
|
11081
|
-
BestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
11082
|
-
OverallBestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
11083
|
-
WarmStartConfig: HyperParameterTuningJobWarmStartConfigOutputTypeDef
|
|
11084
|
-
Autotune: AutotuneTypeDef
|
|
11085
|
-
FailureReason: str
|
|
11086
|
-
TuningJobCompletionDetails: HyperParameterTuningJobCompletionDetailsTypeDef
|
|
11087
|
-
ConsumedResources: HyperParameterTuningJobConsumedResourcesTypeDef
|
|
10995
|
+
class ListSpacesResponseTypeDef(TypedDict):
|
|
10996
|
+
Spaces: List[SpaceDetailsTypeDef]
|
|
11088
10997
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11089
|
-
|
|
11090
|
-
class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
11091
|
-
HyperParameterTuningJobName: NotRequired[str]
|
|
11092
|
-
HyperParameterTuningJobArn: NotRequired[str]
|
|
11093
|
-
HyperParameterTuningJobConfig: NotRequired[HyperParameterTuningJobConfigOutputTypeDef]
|
|
11094
|
-
TrainingJobDefinition: NotRequired[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
11095
|
-
TrainingJobDefinitions: NotRequired[List[HyperParameterTrainingJobDefinitionOutputTypeDef]]
|
|
11096
|
-
HyperParameterTuningJobStatus: NotRequired[HyperParameterTuningJobStatusType]
|
|
11097
|
-
CreationTime: NotRequired[datetime]
|
|
11098
|
-
HyperParameterTuningEndTime: NotRequired[datetime]
|
|
11099
|
-
LastModifiedTime: NotRequired[datetime]
|
|
11100
|
-
TrainingJobStatusCounters: NotRequired[TrainingJobStatusCountersTypeDef]
|
|
11101
|
-
ObjectiveStatusCounters: NotRequired[ObjectiveStatusCountersTypeDef]
|
|
11102
|
-
BestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
11103
|
-
OverallBestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
11104
|
-
WarmStartConfig: NotRequired[HyperParameterTuningJobWarmStartConfigOutputTypeDef]
|
|
11105
|
-
FailureReason: NotRequired[str]
|
|
11106
|
-
TuningJobCompletionDetails: NotRequired[HyperParameterTuningJobCompletionDetailsTypeDef]
|
|
11107
|
-
ConsumedResources: NotRequired[HyperParameterTuningJobConsumedResourcesTypeDef]
|
|
11108
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
11109
|
-
|
|
11110
|
-
class ListSpacesResponseTypeDef(TypedDict):
|
|
11111
|
-
Spaces: List[SpaceDetailsTypeDef]
|
|
11112
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
11113
|
-
NextToken: NotRequired[str]
|
|
10998
|
+
NextToken: NotRequired[str]
|
|
11114
10999
|
|
|
11115
11000
|
class ListInferenceRecommendationsJobStepsResponseTypeDef(TypedDict):
|
|
11116
11001
|
Steps: List[InferenceRecommendationsJobStepTypeDef]
|
|
@@ -11152,6 +11037,122 @@ class DynamicScalingConfigurationTypeDef(TypedDict):
|
|
|
11152
11037
|
ScaleOutCooldown: NotRequired[int]
|
|
11153
11038
|
ScalingPolicies: NotRequired[List[ScalingPolicyTypeDef]]
|
|
11154
11039
|
|
|
11040
|
+
class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
11041
|
+
TrainingJobName: str
|
|
11042
|
+
TrainingJobArn: str
|
|
11043
|
+
TuningJobArn: str
|
|
11044
|
+
LabelingJobArn: str
|
|
11045
|
+
AutoMLJobArn: str
|
|
11046
|
+
ModelArtifacts: ModelArtifactsTypeDef
|
|
11047
|
+
TrainingJobStatus: TrainingJobStatusType
|
|
11048
|
+
SecondaryStatus: SecondaryStatusType
|
|
11049
|
+
FailureReason: str
|
|
11050
|
+
HyperParameters: Dict[str, str]
|
|
11051
|
+
AlgorithmSpecification: AlgorithmSpecificationOutputTypeDef
|
|
11052
|
+
RoleArn: str
|
|
11053
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
11054
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
11055
|
+
ResourceConfig: ResourceConfigOutputTypeDef
|
|
11056
|
+
WarmPoolStatus: WarmPoolStatusTypeDef
|
|
11057
|
+
VpcConfig: VpcConfigOutputTypeDef
|
|
11058
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
11059
|
+
CreationTime: datetime
|
|
11060
|
+
TrainingStartTime: datetime
|
|
11061
|
+
TrainingEndTime: datetime
|
|
11062
|
+
LastModifiedTime: datetime
|
|
11063
|
+
SecondaryStatusTransitions: List[SecondaryStatusTransitionTypeDef]
|
|
11064
|
+
FinalMetricDataList: List[MetricDataTypeDef]
|
|
11065
|
+
EnableNetworkIsolation: bool
|
|
11066
|
+
EnableInterContainerTrafficEncryption: bool
|
|
11067
|
+
EnableManagedSpotTraining: bool
|
|
11068
|
+
CheckpointConfig: CheckpointConfigTypeDef
|
|
11069
|
+
TrainingTimeInSeconds: int
|
|
11070
|
+
BillableTimeInSeconds: int
|
|
11071
|
+
DebugHookConfig: DebugHookConfigOutputTypeDef
|
|
11072
|
+
ExperimentConfig: ExperimentConfigTypeDef
|
|
11073
|
+
DebugRuleConfigurations: List[DebugRuleConfigurationOutputTypeDef]
|
|
11074
|
+
TensorBoardOutputConfig: TensorBoardOutputConfigTypeDef
|
|
11075
|
+
DebugRuleEvaluationStatuses: List[DebugRuleEvaluationStatusTypeDef]
|
|
11076
|
+
ProfilerConfig: ProfilerConfigOutputTypeDef
|
|
11077
|
+
ProfilerRuleConfigurations: List[ProfilerRuleConfigurationOutputTypeDef]
|
|
11078
|
+
ProfilerRuleEvaluationStatuses: List[ProfilerRuleEvaluationStatusTypeDef]
|
|
11079
|
+
ProfilingStatus: ProfilingStatusType
|
|
11080
|
+
Environment: Dict[str, str]
|
|
11081
|
+
RetryStrategy: RetryStrategyTypeDef
|
|
11082
|
+
RemoteDebugConfig: RemoteDebugConfigTypeDef
|
|
11083
|
+
InfraCheckConfig: InfraCheckConfigTypeDef
|
|
11084
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
11085
|
+
|
|
11086
|
+
class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
11087
|
+
AlgorithmSpecification: HyperParameterAlgorithmSpecificationOutputTypeDef
|
|
11088
|
+
RoleArn: str
|
|
11089
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
11090
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
11091
|
+
DefinitionName: NotRequired[str]
|
|
11092
|
+
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
11093
|
+
HyperParameterRanges: NotRequired[ParameterRangesOutputTypeDef]
|
|
11094
|
+
StaticHyperParameters: NotRequired[Dict[str, str]]
|
|
11095
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
11096
|
+
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
11097
|
+
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
11098
|
+
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigOutputTypeDef]
|
|
11099
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
11100
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11101
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
11102
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11103
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11104
|
+
Environment: NotRequired[Dict[str, str]]
|
|
11105
|
+
|
|
11106
|
+
class TrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
11107
|
+
TrainingInputMode: TrainingInputModeType
|
|
11108
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
11109
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
11110
|
+
ResourceConfig: ResourceConfigOutputTypeDef
|
|
11111
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
11112
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
11113
|
+
|
|
11114
|
+
class TrainingJobTypeDef(TypedDict):
|
|
11115
|
+
TrainingJobName: NotRequired[str]
|
|
11116
|
+
TrainingJobArn: NotRequired[str]
|
|
11117
|
+
TuningJobArn: NotRequired[str]
|
|
11118
|
+
LabelingJobArn: NotRequired[str]
|
|
11119
|
+
AutoMLJobArn: NotRequired[str]
|
|
11120
|
+
ModelArtifacts: NotRequired[ModelArtifactsTypeDef]
|
|
11121
|
+
TrainingJobStatus: NotRequired[TrainingJobStatusType]
|
|
11122
|
+
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
11123
|
+
FailureReason: NotRequired[str]
|
|
11124
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
11125
|
+
AlgorithmSpecification: NotRequired[AlgorithmSpecificationOutputTypeDef]
|
|
11126
|
+
RoleArn: NotRequired[str]
|
|
11127
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
11128
|
+
OutputDataConfig: NotRequired[OutputDataConfigTypeDef]
|
|
11129
|
+
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
11130
|
+
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
11131
|
+
StoppingCondition: NotRequired[StoppingConditionTypeDef]
|
|
11132
|
+
CreationTime: NotRequired[datetime]
|
|
11133
|
+
TrainingStartTime: NotRequired[datetime]
|
|
11134
|
+
TrainingEndTime: NotRequired[datetime]
|
|
11135
|
+
LastModifiedTime: NotRequired[datetime]
|
|
11136
|
+
SecondaryStatusTransitions: NotRequired[List[SecondaryStatusTransitionTypeDef]]
|
|
11137
|
+
FinalMetricDataList: NotRequired[List[MetricDataTypeDef]]
|
|
11138
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
11139
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11140
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
11141
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11142
|
+
TrainingTimeInSeconds: NotRequired[int]
|
|
11143
|
+
BillableTimeInSeconds: NotRequired[int]
|
|
11144
|
+
DebugHookConfig: NotRequired[DebugHookConfigOutputTypeDef]
|
|
11145
|
+
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
11146
|
+
DebugRuleConfigurations: NotRequired[List[DebugRuleConfigurationOutputTypeDef]]
|
|
11147
|
+
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
11148
|
+
DebugRuleEvaluationStatuses: NotRequired[List[DebugRuleEvaluationStatusTypeDef]]
|
|
11149
|
+
ProfilerConfig: NotRequired[ProfilerConfigOutputTypeDef]
|
|
11150
|
+
Environment: NotRequired[Dict[str, str]]
|
|
11151
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11152
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11153
|
+
|
|
11154
|
+
DataSourceUnionTypeDef = Union[DataSourceTypeDef, DataSourceOutputTypeDef]
|
|
11155
|
+
|
|
11155
11156
|
class DescribeModelOutputTypeDef(TypedDict):
|
|
11156
11157
|
ModelName: str
|
|
11157
11158
|
PrimaryContainer: ContainerDefinitionOutputTypeDef
|
|
@@ -11368,19 +11369,6 @@ class CreateLabelingJobRequestTypeDef(TypedDict):
|
|
|
11368
11369
|
LabelingJobAlgorithmsConfig: NotRequired[LabelingJobAlgorithmsConfigUnionTypeDef]
|
|
11369
11370
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
11370
11371
|
|
|
11371
|
-
ChannelTypeDef = TypedDict(
|
|
11372
|
-
"ChannelTypeDef",
|
|
11373
|
-
{
|
|
11374
|
-
"ChannelName": str,
|
|
11375
|
-
"DataSource": DataSourceUnionTypeDef,
|
|
11376
|
-
"ContentType": NotRequired[str],
|
|
11377
|
-
"CompressionType": NotRequired[CompressionTypeType],
|
|
11378
|
-
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
11379
|
-
"InputMode": NotRequired[TrainingInputModeType],
|
|
11380
|
-
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
11381
|
-
},
|
|
11382
|
-
)
|
|
11383
|
-
|
|
11384
11372
|
class DescribeSpaceResponseTypeDef(TypedDict):
|
|
11385
11373
|
DomainId: str
|
|
11386
11374
|
SpaceArn: str
|
|
@@ -11399,11 +11387,6 @@ class DescribeSpaceResponseTypeDef(TypedDict):
|
|
|
11399
11387
|
|
|
11400
11388
|
SpaceSettingsUnionTypeDef = Union[SpaceSettingsTypeDef, SpaceSettingsOutputTypeDef]
|
|
11401
11389
|
|
|
11402
|
-
class AlgorithmValidationProfileOutputTypeDef(TypedDict):
|
|
11403
|
-
ProfileName: str
|
|
11404
|
-
TrainingJobDefinition: TrainingJobDefinitionOutputTypeDef
|
|
11405
|
-
TransformJobDefinition: NotRequired[TransformJobDefinitionOutputTypeDef]
|
|
11406
|
-
|
|
11407
11390
|
class ModelPackageValidationProfileOutputTypeDef(TypedDict):
|
|
11408
11391
|
ProfileName: str
|
|
11409
11392
|
TransformJobDefinition: TransformJobDefinitionOutputTypeDef
|
|
@@ -11412,12 +11395,6 @@ class ModelPackageValidationProfileTypeDef(TypedDict):
|
|
|
11412
11395
|
ProfileName: str
|
|
11413
11396
|
TransformJobDefinition: TransformJobDefinitionTypeDef
|
|
11414
11397
|
|
|
11415
|
-
class TrialComponentSourceDetailTypeDef(TypedDict):
|
|
11416
|
-
SourceArn: NotRequired[str]
|
|
11417
|
-
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
11418
|
-
ProcessingJob: NotRequired[ProcessingJobTypeDef]
|
|
11419
|
-
TransformJob: NotRequired[TransformJobTypeDef]
|
|
11420
|
-
|
|
11421
11398
|
class CreateDomainRequestTypeDef(TypedDict):
|
|
11422
11399
|
DomainName: str
|
|
11423
11400
|
AuthMode: AuthModeType
|
|
@@ -11516,6 +11493,71 @@ class GetScalingConfigurationRecommendationResponseTypeDef(TypedDict):
|
|
|
11516
11493
|
DynamicScalingConfiguration: DynamicScalingConfigurationTypeDef
|
|
11517
11494
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11518
11495
|
|
|
11496
|
+
class DescribeHyperParameterTuningJobResponseTypeDef(TypedDict):
|
|
11497
|
+
HyperParameterTuningJobName: str
|
|
11498
|
+
HyperParameterTuningJobArn: str
|
|
11499
|
+
HyperParameterTuningJobConfig: HyperParameterTuningJobConfigOutputTypeDef
|
|
11500
|
+
TrainingJobDefinition: HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
11501
|
+
TrainingJobDefinitions: List[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
11502
|
+
HyperParameterTuningJobStatus: HyperParameterTuningJobStatusType
|
|
11503
|
+
CreationTime: datetime
|
|
11504
|
+
HyperParameterTuningEndTime: datetime
|
|
11505
|
+
LastModifiedTime: datetime
|
|
11506
|
+
TrainingJobStatusCounters: TrainingJobStatusCountersTypeDef
|
|
11507
|
+
ObjectiveStatusCounters: ObjectiveStatusCountersTypeDef
|
|
11508
|
+
BestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
11509
|
+
OverallBestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
11510
|
+
WarmStartConfig: HyperParameterTuningJobWarmStartConfigOutputTypeDef
|
|
11511
|
+
Autotune: AutotuneTypeDef
|
|
11512
|
+
FailureReason: str
|
|
11513
|
+
TuningJobCompletionDetails: HyperParameterTuningJobCompletionDetailsTypeDef
|
|
11514
|
+
ConsumedResources: HyperParameterTuningJobConsumedResourcesTypeDef
|
|
11515
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
11516
|
+
|
|
11517
|
+
class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
11518
|
+
HyperParameterTuningJobName: NotRequired[str]
|
|
11519
|
+
HyperParameterTuningJobArn: NotRequired[str]
|
|
11520
|
+
HyperParameterTuningJobConfig: NotRequired[HyperParameterTuningJobConfigOutputTypeDef]
|
|
11521
|
+
TrainingJobDefinition: NotRequired[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
11522
|
+
TrainingJobDefinitions: NotRequired[List[HyperParameterTrainingJobDefinitionOutputTypeDef]]
|
|
11523
|
+
HyperParameterTuningJobStatus: NotRequired[HyperParameterTuningJobStatusType]
|
|
11524
|
+
CreationTime: NotRequired[datetime]
|
|
11525
|
+
HyperParameterTuningEndTime: NotRequired[datetime]
|
|
11526
|
+
LastModifiedTime: NotRequired[datetime]
|
|
11527
|
+
TrainingJobStatusCounters: NotRequired[TrainingJobStatusCountersTypeDef]
|
|
11528
|
+
ObjectiveStatusCounters: NotRequired[ObjectiveStatusCountersTypeDef]
|
|
11529
|
+
BestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
11530
|
+
OverallBestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
11531
|
+
WarmStartConfig: NotRequired[HyperParameterTuningJobWarmStartConfigOutputTypeDef]
|
|
11532
|
+
FailureReason: NotRequired[str]
|
|
11533
|
+
TuningJobCompletionDetails: NotRequired[HyperParameterTuningJobCompletionDetailsTypeDef]
|
|
11534
|
+
ConsumedResources: NotRequired[HyperParameterTuningJobConsumedResourcesTypeDef]
|
|
11535
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11536
|
+
|
|
11537
|
+
class AlgorithmValidationProfileOutputTypeDef(TypedDict):
|
|
11538
|
+
ProfileName: str
|
|
11539
|
+
TrainingJobDefinition: TrainingJobDefinitionOutputTypeDef
|
|
11540
|
+
TransformJobDefinition: NotRequired[TransformJobDefinitionOutputTypeDef]
|
|
11541
|
+
|
|
11542
|
+
class TrialComponentSourceDetailTypeDef(TypedDict):
|
|
11543
|
+
SourceArn: NotRequired[str]
|
|
11544
|
+
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
11545
|
+
ProcessingJob: NotRequired[ProcessingJobTypeDef]
|
|
11546
|
+
TransformJob: NotRequired[TransformJobTypeDef]
|
|
11547
|
+
|
|
11548
|
+
ChannelTypeDef = TypedDict(
|
|
11549
|
+
"ChannelTypeDef",
|
|
11550
|
+
{
|
|
11551
|
+
"ChannelName": str,
|
|
11552
|
+
"DataSource": DataSourceUnionTypeDef,
|
|
11553
|
+
"ContentType": NotRequired[str],
|
|
11554
|
+
"CompressionType": NotRequired[CompressionTypeType],
|
|
11555
|
+
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
11556
|
+
"InputMode": NotRequired[TrainingInputModeType],
|
|
11557
|
+
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
11558
|
+
},
|
|
11559
|
+
)
|
|
11560
|
+
|
|
11519
11561
|
class CreateModelInputTypeDef(TypedDict):
|
|
11520
11562
|
ModelName: str
|
|
11521
11563
|
PrimaryContainer: NotRequired[ContainerDefinitionUnionTypeDef]
|
|
@@ -11615,16 +11657,6 @@ class MonitoringScheduleConfigTypeDef(TypedDict):
|
|
|
11615
11657
|
MonitoringJobDefinitionName: NotRequired[str]
|
|
11616
11658
|
MonitoringType: NotRequired[MonitoringTypeType]
|
|
11617
11659
|
|
|
11618
|
-
ChannelUnionTypeDef = Union[ChannelTypeDef, ChannelOutputTypeDef]
|
|
11619
|
-
|
|
11620
|
-
class TrainingJobDefinitionTypeDef(TypedDict):
|
|
11621
|
-
TrainingInputMode: TrainingInputModeType
|
|
11622
|
-
InputDataConfig: Sequence[ChannelTypeDef]
|
|
11623
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
11624
|
-
ResourceConfig: ResourceConfigTypeDef
|
|
11625
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
11626
|
-
HyperParameters: NotRequired[Mapping[str, str]]
|
|
11627
|
-
|
|
11628
11660
|
class CreateSpaceRequestTypeDef(TypedDict):
|
|
11629
11661
|
DomainId: str
|
|
11630
11662
|
SpaceName: str
|
|
@@ -11640,10 +11672,6 @@ class UpdateSpaceRequestTypeDef(TypedDict):
|
|
|
11640
11672
|
SpaceSettings: NotRequired[SpaceSettingsUnionTypeDef]
|
|
11641
11673
|
SpaceDisplayName: NotRequired[str]
|
|
11642
11674
|
|
|
11643
|
-
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
11644
|
-
ValidationRole: str
|
|
11645
|
-
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
11646
|
-
|
|
11647
11675
|
class ModelPackageValidationSpecificationOutputTypeDef(TypedDict):
|
|
11648
11676
|
ValidationRole: str
|
|
11649
11677
|
ValidationProfiles: List[ModelPackageValidationProfileOutputTypeDef]
|
|
@@ -11652,6 +11680,10 @@ class ModelPackageValidationSpecificationTypeDef(TypedDict):
|
|
|
11652
11680
|
ValidationRole: str
|
|
11653
11681
|
ValidationProfiles: Sequence[ModelPackageValidationProfileTypeDef]
|
|
11654
11682
|
|
|
11683
|
+
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
11684
|
+
ValidationRole: str
|
|
11685
|
+
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
11686
|
+
|
|
11655
11687
|
class TrialComponentTypeDef(TypedDict):
|
|
11656
11688
|
TrialComponentName: NotRequired[str]
|
|
11657
11689
|
DisplayName: NotRequired[str]
|
|
@@ -11675,6 +11707,16 @@ class TrialComponentTypeDef(TypedDict):
|
|
|
11675
11707
|
Parents: NotRequired[List[ParentTypeDef]]
|
|
11676
11708
|
RunName: NotRequired[str]
|
|
11677
11709
|
|
|
11710
|
+
ChannelUnionTypeDef = Union[ChannelTypeDef, ChannelOutputTypeDef]
|
|
11711
|
+
|
|
11712
|
+
class TrainingJobDefinitionTypeDef(TypedDict):
|
|
11713
|
+
TrainingInputMode: TrainingInputModeType
|
|
11714
|
+
InputDataConfig: Sequence[ChannelTypeDef]
|
|
11715
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
11716
|
+
ResourceConfig: ResourceConfigTypeDef
|
|
11717
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
11718
|
+
HyperParameters: NotRequired[Mapping[str, str]]
|
|
11719
|
+
|
|
11678
11720
|
class BatchDescribeModelPackageOutputTypeDef(TypedDict):
|
|
11679
11721
|
ModelPackageSummaries: Dict[str, BatchDescribeModelPackageSummaryTypeDef]
|
|
11680
11722
|
BatchDescribeModelPackageErrorMap: Dict[str, BatchDescribeModelPackageErrorTypeDef]
|
|
@@ -11729,72 +11771,6 @@ MonitoringScheduleConfigUnionTypeDef = Union[
|
|
|
11729
11771
|
MonitoringScheduleConfigTypeDef, MonitoringScheduleConfigOutputTypeDef
|
|
11730
11772
|
]
|
|
11731
11773
|
|
|
11732
|
-
class CreateTrainingJobRequestTypeDef(TypedDict):
|
|
11733
|
-
TrainingJobName: str
|
|
11734
|
-
AlgorithmSpecification: AlgorithmSpecificationUnionTypeDef
|
|
11735
|
-
RoleArn: str
|
|
11736
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
11737
|
-
ResourceConfig: ResourceConfigUnionTypeDef
|
|
11738
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
11739
|
-
HyperParameters: NotRequired[Mapping[str, str]]
|
|
11740
|
-
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
11741
|
-
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
11742
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
11743
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
11744
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11745
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
11746
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11747
|
-
DebugHookConfig: NotRequired[DebugHookConfigUnionTypeDef]
|
|
11748
|
-
DebugRuleConfigurations: NotRequired[Sequence[DebugRuleConfigurationUnionTypeDef]]
|
|
11749
|
-
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
11750
|
-
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
11751
|
-
ProfilerConfig: NotRequired[ProfilerConfigUnionTypeDef]
|
|
11752
|
-
ProfilerRuleConfigurations: NotRequired[Sequence[ProfilerRuleConfigurationUnionTypeDef]]
|
|
11753
|
-
Environment: NotRequired[Mapping[str, str]]
|
|
11754
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11755
|
-
RemoteDebugConfig: NotRequired[RemoteDebugConfigTypeDef]
|
|
11756
|
-
InfraCheckConfig: NotRequired[InfraCheckConfigTypeDef]
|
|
11757
|
-
SessionChainingConfig: NotRequired[SessionChainingConfigTypeDef]
|
|
11758
|
-
|
|
11759
|
-
class HyperParameterTrainingJobDefinitionTypeDef(TypedDict):
|
|
11760
|
-
AlgorithmSpecification: HyperParameterAlgorithmSpecificationUnionTypeDef
|
|
11761
|
-
RoleArn: str
|
|
11762
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
11763
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
11764
|
-
DefinitionName: NotRequired[str]
|
|
11765
|
-
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
11766
|
-
HyperParameterRanges: NotRequired[ParameterRangesUnionTypeDef]
|
|
11767
|
-
StaticHyperParameters: NotRequired[Mapping[str, str]]
|
|
11768
|
-
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
11769
|
-
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
11770
|
-
ResourceConfig: NotRequired[ResourceConfigUnionTypeDef]
|
|
11771
|
-
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigUnionTypeDef]
|
|
11772
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
11773
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11774
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
11775
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11776
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11777
|
-
Environment: NotRequired[Mapping[str, str]]
|
|
11778
|
-
|
|
11779
|
-
class AlgorithmValidationProfileTypeDef(TypedDict):
|
|
11780
|
-
ProfileName: str
|
|
11781
|
-
TrainingJobDefinition: TrainingJobDefinitionTypeDef
|
|
11782
|
-
TransformJobDefinition: NotRequired[TransformJobDefinitionTypeDef]
|
|
11783
|
-
|
|
11784
|
-
class DescribeAlgorithmOutputTypeDef(TypedDict):
|
|
11785
|
-
AlgorithmName: str
|
|
11786
|
-
AlgorithmArn: str
|
|
11787
|
-
AlgorithmDescription: str
|
|
11788
|
-
CreationTime: datetime
|
|
11789
|
-
TrainingSpecification: TrainingSpecificationOutputTypeDef
|
|
11790
|
-
InferenceSpecification: InferenceSpecificationOutputTypeDef
|
|
11791
|
-
ValidationSpecification: AlgorithmValidationSpecificationOutputTypeDef
|
|
11792
|
-
AlgorithmStatus: AlgorithmStatusType
|
|
11793
|
-
AlgorithmStatusDetails: AlgorithmStatusDetailsTypeDef
|
|
11794
|
-
ProductId: str
|
|
11795
|
-
CertifyForMarketplace: bool
|
|
11796
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
11797
|
-
|
|
11798
11774
|
class DescribeModelPackageOutputTypeDef(TypedDict):
|
|
11799
11775
|
ModelPackageName: str
|
|
11800
11776
|
ModelPackageGroupName: str
|
|
@@ -11867,6 +11843,72 @@ ModelPackageValidationSpecificationUnionTypeDef = Union[
|
|
|
11867
11843
|
ModelPackageValidationSpecificationTypeDef, ModelPackageValidationSpecificationOutputTypeDef
|
|
11868
11844
|
]
|
|
11869
11845
|
|
|
11846
|
+
class DescribeAlgorithmOutputTypeDef(TypedDict):
|
|
11847
|
+
AlgorithmName: str
|
|
11848
|
+
AlgorithmArn: str
|
|
11849
|
+
AlgorithmDescription: str
|
|
11850
|
+
CreationTime: datetime
|
|
11851
|
+
TrainingSpecification: TrainingSpecificationOutputTypeDef
|
|
11852
|
+
InferenceSpecification: InferenceSpecificationOutputTypeDef
|
|
11853
|
+
ValidationSpecification: AlgorithmValidationSpecificationOutputTypeDef
|
|
11854
|
+
AlgorithmStatus: AlgorithmStatusType
|
|
11855
|
+
AlgorithmStatusDetails: AlgorithmStatusDetailsTypeDef
|
|
11856
|
+
ProductId: str
|
|
11857
|
+
CertifyForMarketplace: bool
|
|
11858
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
11859
|
+
|
|
11860
|
+
class CreateTrainingJobRequestTypeDef(TypedDict):
|
|
11861
|
+
TrainingJobName: str
|
|
11862
|
+
AlgorithmSpecification: AlgorithmSpecificationUnionTypeDef
|
|
11863
|
+
RoleArn: str
|
|
11864
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
11865
|
+
ResourceConfig: ResourceConfigUnionTypeDef
|
|
11866
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
11867
|
+
HyperParameters: NotRequired[Mapping[str, str]]
|
|
11868
|
+
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
11869
|
+
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
11870
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
11871
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
11872
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11873
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
11874
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11875
|
+
DebugHookConfig: NotRequired[DebugHookConfigUnionTypeDef]
|
|
11876
|
+
DebugRuleConfigurations: NotRequired[Sequence[DebugRuleConfigurationUnionTypeDef]]
|
|
11877
|
+
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
11878
|
+
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
11879
|
+
ProfilerConfig: NotRequired[ProfilerConfigUnionTypeDef]
|
|
11880
|
+
ProfilerRuleConfigurations: NotRequired[Sequence[ProfilerRuleConfigurationUnionTypeDef]]
|
|
11881
|
+
Environment: NotRequired[Mapping[str, str]]
|
|
11882
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11883
|
+
RemoteDebugConfig: NotRequired[RemoteDebugConfigTypeDef]
|
|
11884
|
+
InfraCheckConfig: NotRequired[InfraCheckConfigTypeDef]
|
|
11885
|
+
SessionChainingConfig: NotRequired[SessionChainingConfigTypeDef]
|
|
11886
|
+
|
|
11887
|
+
class HyperParameterTrainingJobDefinitionTypeDef(TypedDict):
|
|
11888
|
+
AlgorithmSpecification: HyperParameterAlgorithmSpecificationUnionTypeDef
|
|
11889
|
+
RoleArn: str
|
|
11890
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
11891
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
11892
|
+
DefinitionName: NotRequired[str]
|
|
11893
|
+
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
11894
|
+
HyperParameterRanges: NotRequired[ParameterRangesUnionTypeDef]
|
|
11895
|
+
StaticHyperParameters: NotRequired[Mapping[str, str]]
|
|
11896
|
+
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
11897
|
+
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
11898
|
+
ResourceConfig: NotRequired[ResourceConfigUnionTypeDef]
|
|
11899
|
+
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigUnionTypeDef]
|
|
11900
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
11901
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11902
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
11903
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11904
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11905
|
+
Environment: NotRequired[Mapping[str, str]]
|
|
11906
|
+
|
|
11907
|
+
class AlgorithmValidationProfileTypeDef(TypedDict):
|
|
11908
|
+
ProfileName: str
|
|
11909
|
+
TrainingJobDefinition: TrainingJobDefinitionTypeDef
|
|
11910
|
+
TransformJobDefinition: NotRequired[TransformJobDefinitionTypeDef]
|
|
11911
|
+
|
|
11870
11912
|
class UpdateModelPackageInputTypeDef(TypedDict):
|
|
11871
11913
|
ModelPackageArn: str
|
|
11872
11914
|
ModelApprovalStatus: NotRequired[ModelApprovalStatusType]
|
|
@@ -11912,14 +11954,6 @@ class UpdateMonitoringScheduleRequestTypeDef(TypedDict):
|
|
|
11912
11954
|
MonitoringScheduleName: str
|
|
11913
11955
|
MonitoringScheduleConfig: MonitoringScheduleConfigUnionTypeDef
|
|
11914
11956
|
|
|
11915
|
-
HyperParameterTrainingJobDefinitionUnionTypeDef = Union[
|
|
11916
|
-
HyperParameterTrainingJobDefinitionTypeDef, HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
11917
|
-
]
|
|
11918
|
-
|
|
11919
|
-
class AlgorithmValidationSpecificationTypeDef(TypedDict):
|
|
11920
|
-
ValidationRole: str
|
|
11921
|
-
ValidationProfiles: Sequence[AlgorithmValidationProfileTypeDef]
|
|
11922
|
-
|
|
11923
11957
|
class CreateModelPackageInputTypeDef(TypedDict):
|
|
11924
11958
|
ModelPackageName: NotRequired[str]
|
|
11925
11959
|
ModelPackageGroupName: NotRequired[str]
|
|
@@ -11947,6 +11981,14 @@ class CreateModelPackageInputTypeDef(TypedDict):
|
|
|
11947
11981
|
ModelCard: NotRequired[ModelPackageModelCardTypeDef]
|
|
11948
11982
|
ModelLifeCycle: NotRequired[ModelLifeCycleTypeDef]
|
|
11949
11983
|
|
|
11984
|
+
HyperParameterTrainingJobDefinitionUnionTypeDef = Union[
|
|
11985
|
+
HyperParameterTrainingJobDefinitionTypeDef, HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
11986
|
+
]
|
|
11987
|
+
|
|
11988
|
+
class AlgorithmValidationSpecificationTypeDef(TypedDict):
|
|
11989
|
+
ValidationRole: str
|
|
11990
|
+
ValidationProfiles: Sequence[AlgorithmValidationProfileTypeDef]
|
|
11991
|
+
|
|
11950
11992
|
class SearchRecordTypeDef(TypedDict):
|
|
11951
11993
|
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
11952
11994
|
Experiment: NotRequired[ExperimentTypeDef]
|