mypy-boto3-sagemaker 1.37.2__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 +1 -1
- mypy_boto3_sagemaker/literals.pyi +1 -1
- mypy_boto3_sagemaker/type_defs.py +383 -337
- mypy_boto3_sagemaker/type_defs.pyi +357 -316
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.37.2.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.2.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.37.2.dist-info → mypy_boto3_sagemaker-1.37.3.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.37.2.dist-info → mypy_boto3_sagemaker-1.37.3.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.37.2.dist-info → mypy_boto3_sagemaker-1.37.3.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]
|
|
@@ -5248,6 +5251,16 @@ class UpdateFeatureGroupResponseTypeDef(TypedDict):
|
|
|
5248
5251
|
FeatureGroupArn: str
|
|
5249
5252
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5250
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
|
+
|
|
5251
5264
|
class UpdateHubResponseTypeDef(TypedDict):
|
|
5252
5265
|
HubArn: str
|
|
5253
5266
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5393,6 +5406,7 @@ class ImportHubContentRequestTypeDef(TypedDict):
|
|
|
5393
5406
|
HubContentDisplayName: NotRequired[str]
|
|
5394
5407
|
HubContentDescription: NotRequired[str]
|
|
5395
5408
|
HubContentMarkdown: NotRequired[str]
|
|
5409
|
+
SupportStatus: NotRequired[HubContentSupportStatusType]
|
|
5396
5410
|
HubContentSearchKeywords: NotRequired[Sequence[str]]
|
|
5397
5411
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
5398
5412
|
|
|
@@ -6824,10 +6838,6 @@ class MonitoringBaselineConfigTypeDef(TypedDict):
|
|
|
6824
6838
|
ConstraintsResource: NotRequired[MonitoringConstraintsResourceTypeDef]
|
|
6825
6839
|
StatisticsResource: NotRequired[MonitoringStatisticsResourceTypeDef]
|
|
6826
6840
|
|
|
6827
|
-
class DataSourceOutputTypeDef(TypedDict):
|
|
6828
|
-
S3DataSource: NotRequired[S3DataSourceOutputTypeDef]
|
|
6829
|
-
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
6830
|
-
|
|
6831
6841
|
class DatasetDefinitionTypeDef(TypedDict):
|
|
6832
6842
|
AthenaDatasetDefinition: NotRequired[AthenaDatasetDefinitionTypeDef]
|
|
6833
6843
|
RedshiftDatasetDefinition: NotRequired[RedshiftDatasetDefinitionTypeDef]
|
|
@@ -7012,6 +7022,7 @@ class DescribeHubContentResponseTypeDef(TypedDict):
|
|
|
7012
7022
|
HubContentStatus: HubContentStatusType
|
|
7013
7023
|
FailureReason: str
|
|
7014
7024
|
CreationTime: datetime
|
|
7025
|
+
LastModifiedTime: datetime
|
|
7015
7026
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7016
7027
|
|
|
7017
7028
|
class DescribeHumanTaskUiResponseTypeDef(TypedDict):
|
|
@@ -8310,6 +8321,31 @@ class MetricSpecificationTypeDef(TypedDict):
|
|
|
8310
8321
|
Predefined: NotRequired[PredefinedMetricSpecificationTypeDef]
|
|
8311
8322
|
Customized: NotRequired[CustomizedMetricSpecificationTypeDef]
|
|
8312
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
|
+
|
|
8313
8349
|
class S3ModelDataSourceTypeDef(TypedDict):
|
|
8314
8350
|
S3Uri: str
|
|
8315
8351
|
S3DataType: S3ModelDataTypeType
|
|
@@ -8582,8 +8618,6 @@ class TrainingPlanOfferingTypeDef(TypedDict):
|
|
|
8582
8618
|
CurrencyCode: NotRequired[str]
|
|
8583
8619
|
ReservedCapacityOfferings: NotRequired[List[ReservedCapacityOfferingTypeDef]]
|
|
8584
8620
|
|
|
8585
|
-
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
8586
|
-
|
|
8587
8621
|
class SelectiveExecutionConfigOutputTypeDef(TypedDict):
|
|
8588
8622
|
SelectedSteps: List[SelectedStepTypeDef]
|
|
8589
8623
|
SourcePipelineExecutionArn: NotRequired[str]
|
|
@@ -8990,19 +9024,6 @@ class QueryLineageRequestTypeDef(TypedDict):
|
|
|
8990
9024
|
MaxResults: NotRequired[int]
|
|
8991
9025
|
NextToken: NotRequired[str]
|
|
8992
9026
|
|
|
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
9027
|
class ProcessingInputTypeDef(TypedDict):
|
|
9007
9028
|
InputName: str
|
|
9008
9029
|
AppManaged: NotRequired[bool]
|
|
@@ -9515,6 +9536,12 @@ class TargetTrackingScalingPolicyConfigurationTypeDef(TypedDict):
|
|
|
9515
9536
|
MetricSpecification: NotRequired[MetricSpecificationTypeDef]
|
|
9516
9537
|
TargetValue: NotRequired[float]
|
|
9517
9538
|
|
|
9539
|
+
class DataSourceOutputTypeDef(TypedDict):
|
|
9540
|
+
S3DataSource: NotRequired[S3DataSourceOutputTypeDef]
|
|
9541
|
+
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
9542
|
+
|
|
9543
|
+
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
9544
|
+
|
|
9518
9545
|
class AdditionalModelDataSourceTypeDef(TypedDict):
|
|
9519
9546
|
ChannelName: str
|
|
9520
9547
|
S3DataSource: S3ModelDataSourceTypeDef
|
|
@@ -9805,10 +9832,6 @@ class SearchTrainingPlanOfferingsResponseTypeDef(TypedDict):
|
|
|
9805
9832
|
TrainingPlanOfferings: List[TrainingPlanOfferingTypeDef]
|
|
9806
9833
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9807
9834
|
|
|
9808
|
-
class DataSourceTypeDef(TypedDict):
|
|
9809
|
-
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
9810
|
-
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
9811
|
-
|
|
9812
9835
|
class DescribePipelineExecutionResponseTypeDef(TypedDict):
|
|
9813
9836
|
PipelineArn: str
|
|
9814
9837
|
PipelineExecutionArn: str
|
|
@@ -10218,34 +10241,6 @@ class UpdateComputeQuotaRequestTypeDef(TypedDict):
|
|
|
10218
10241
|
ActivationState: NotRequired[ActivationStateType]
|
|
10219
10242
|
Description: NotRequired[str]
|
|
10220
10243
|
|
|
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
10244
|
class CreateEdgeDeploymentPlanRequestTypeDef(TypedDict):
|
|
10250
10245
|
EdgeDeploymentPlanName: str
|
|
10251
10246
|
ModelConfigs: Sequence[EdgeDeploymentModelConfigTypeDef]
|
|
@@ -10412,6 +10407,23 @@ LabelingJobInputConfigUnionTypeDef = Union[
|
|
|
10412
10407
|
class ScalingPolicyTypeDef(TypedDict):
|
|
10413
10408
|
TargetTracking: NotRequired[TargetTrackingScalingPolicyConfigurationTypeDef]
|
|
10414
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
|
+
|
|
10415
10427
|
class ContainerDefinitionOutputTypeDef(TypedDict):
|
|
10416
10428
|
ContainerHostname: NotRequired[str]
|
|
10417
10429
|
Image: NotRequired[str]
|
|
@@ -10688,7 +10700,6 @@ class DescribeLabelingJobResponseTypeDef(TypedDict):
|
|
|
10688
10700
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
10689
10701
|
|
|
10690
10702
|
HumanTaskConfigUnionTypeDef = Union[HumanTaskConfigTypeDef, HumanTaskConfigOutputTypeDef]
|
|
10691
|
-
DataSourceUnionTypeDef = Union[DataSourceTypeDef, DataSourceOutputTypeDef]
|
|
10692
10703
|
|
|
10693
10704
|
class StartPipelineExecutionRequestTypeDef(TypedDict):
|
|
10694
10705
|
PipelineName: str
|
|
@@ -10742,92 +10753,6 @@ class SpaceSettingsTypeDef(TypedDict):
|
|
|
10742
10753
|
SpaceStorageSettings: NotRequired[SpaceStorageSettingsTypeDef]
|
|
10743
10754
|
CustomFileSystems: NotRequired[Sequence[CustomFileSystemTypeDef]]
|
|
10744
10755
|
|
|
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
10756
|
AlgorithmSpecificationUnionTypeDef = Union[
|
|
10832
10757
|
AlgorithmSpecificationTypeDef, AlgorithmSpecificationOutputTypeDef
|
|
10833
10758
|
]
|
|
@@ -11066,51 +10991,10 @@ class DescribeEndpointOutputTypeDef(TypedDict):
|
|
|
11066
10991
|
|
|
11067
10992
|
ExplainerConfigUnionTypeDef = Union[ExplainerConfigTypeDef, ExplainerConfigOutputTypeDef]
|
|
11068
10993
|
|
|
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
|
|
10994
|
+
class ListSpacesResponseTypeDef(TypedDict):
|
|
10995
|
+
Spaces: List[SpaceDetailsTypeDef]
|
|
11088
10996
|
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]
|
|
10997
|
+
NextToken: NotRequired[str]
|
|
11114
10998
|
|
|
11115
10999
|
class ListInferenceRecommendationsJobStepsResponseTypeDef(TypedDict):
|
|
11116
11000
|
Steps: List[InferenceRecommendationsJobStepTypeDef]
|
|
@@ -11152,6 +11036,122 @@ class DynamicScalingConfigurationTypeDef(TypedDict):
|
|
|
11152
11036
|
ScaleOutCooldown: NotRequired[int]
|
|
11153
11037
|
ScalingPolicies: NotRequired[List[ScalingPolicyTypeDef]]
|
|
11154
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
|
+
|
|
11155
11155
|
class DescribeModelOutputTypeDef(TypedDict):
|
|
11156
11156
|
ModelName: str
|
|
11157
11157
|
PrimaryContainer: ContainerDefinitionOutputTypeDef
|
|
@@ -11368,19 +11368,6 @@ class CreateLabelingJobRequestTypeDef(TypedDict):
|
|
|
11368
11368
|
LabelingJobAlgorithmsConfig: NotRequired[LabelingJobAlgorithmsConfigUnionTypeDef]
|
|
11369
11369
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
11370
11370
|
|
|
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
11371
|
class DescribeSpaceResponseTypeDef(TypedDict):
|
|
11385
11372
|
DomainId: str
|
|
11386
11373
|
SpaceArn: str
|
|
@@ -11399,11 +11386,6 @@ class DescribeSpaceResponseTypeDef(TypedDict):
|
|
|
11399
11386
|
|
|
11400
11387
|
SpaceSettingsUnionTypeDef = Union[SpaceSettingsTypeDef, SpaceSettingsOutputTypeDef]
|
|
11401
11388
|
|
|
11402
|
-
class AlgorithmValidationProfileOutputTypeDef(TypedDict):
|
|
11403
|
-
ProfileName: str
|
|
11404
|
-
TrainingJobDefinition: TrainingJobDefinitionOutputTypeDef
|
|
11405
|
-
TransformJobDefinition: NotRequired[TransformJobDefinitionOutputTypeDef]
|
|
11406
|
-
|
|
11407
11389
|
class ModelPackageValidationProfileOutputTypeDef(TypedDict):
|
|
11408
11390
|
ProfileName: str
|
|
11409
11391
|
TransformJobDefinition: TransformJobDefinitionOutputTypeDef
|
|
@@ -11412,12 +11394,6 @@ class ModelPackageValidationProfileTypeDef(TypedDict):
|
|
|
11412
11394
|
ProfileName: str
|
|
11413
11395
|
TransformJobDefinition: TransformJobDefinitionTypeDef
|
|
11414
11396
|
|
|
11415
|
-
class TrialComponentSourceDetailTypeDef(TypedDict):
|
|
11416
|
-
SourceArn: NotRequired[str]
|
|
11417
|
-
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
11418
|
-
ProcessingJob: NotRequired[ProcessingJobTypeDef]
|
|
11419
|
-
TransformJob: NotRequired[TransformJobTypeDef]
|
|
11420
|
-
|
|
11421
11397
|
class CreateDomainRequestTypeDef(TypedDict):
|
|
11422
11398
|
DomainName: str
|
|
11423
11399
|
AuthMode: AuthModeType
|
|
@@ -11516,6 +11492,71 @@ class GetScalingConfigurationRecommendationResponseTypeDef(TypedDict):
|
|
|
11516
11492
|
DynamicScalingConfiguration: DynamicScalingConfigurationTypeDef
|
|
11517
11493
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11518
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
|
+
|
|
11519
11560
|
class CreateModelInputTypeDef(TypedDict):
|
|
11520
11561
|
ModelName: str
|
|
11521
11562
|
PrimaryContainer: NotRequired[ContainerDefinitionUnionTypeDef]
|
|
@@ -11615,16 +11656,6 @@ class MonitoringScheduleConfigTypeDef(TypedDict):
|
|
|
11615
11656
|
MonitoringJobDefinitionName: NotRequired[str]
|
|
11616
11657
|
MonitoringType: NotRequired[MonitoringTypeType]
|
|
11617
11658
|
|
|
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
11659
|
class CreateSpaceRequestTypeDef(TypedDict):
|
|
11629
11660
|
DomainId: str
|
|
11630
11661
|
SpaceName: str
|
|
@@ -11640,10 +11671,6 @@ class UpdateSpaceRequestTypeDef(TypedDict):
|
|
|
11640
11671
|
SpaceSettings: NotRequired[SpaceSettingsUnionTypeDef]
|
|
11641
11672
|
SpaceDisplayName: NotRequired[str]
|
|
11642
11673
|
|
|
11643
|
-
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
11644
|
-
ValidationRole: str
|
|
11645
|
-
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
11646
|
-
|
|
11647
11674
|
class ModelPackageValidationSpecificationOutputTypeDef(TypedDict):
|
|
11648
11675
|
ValidationRole: str
|
|
11649
11676
|
ValidationProfiles: List[ModelPackageValidationProfileOutputTypeDef]
|
|
@@ -11652,6 +11679,10 @@ class ModelPackageValidationSpecificationTypeDef(TypedDict):
|
|
|
11652
11679
|
ValidationRole: str
|
|
11653
11680
|
ValidationProfiles: Sequence[ModelPackageValidationProfileTypeDef]
|
|
11654
11681
|
|
|
11682
|
+
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
11683
|
+
ValidationRole: str
|
|
11684
|
+
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
11685
|
+
|
|
11655
11686
|
class TrialComponentTypeDef(TypedDict):
|
|
11656
11687
|
TrialComponentName: NotRequired[str]
|
|
11657
11688
|
DisplayName: NotRequired[str]
|
|
@@ -11675,6 +11706,16 @@ class TrialComponentTypeDef(TypedDict):
|
|
|
11675
11706
|
Parents: NotRequired[List[ParentTypeDef]]
|
|
11676
11707
|
RunName: NotRequired[str]
|
|
11677
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
|
+
|
|
11678
11719
|
class BatchDescribeModelPackageOutputTypeDef(TypedDict):
|
|
11679
11720
|
ModelPackageSummaries: Dict[str, BatchDescribeModelPackageSummaryTypeDef]
|
|
11680
11721
|
BatchDescribeModelPackageErrorMap: Dict[str, BatchDescribeModelPackageErrorTypeDef]
|
|
@@ -11729,72 +11770,6 @@ MonitoringScheduleConfigUnionTypeDef = Union[
|
|
|
11729
11770
|
MonitoringScheduleConfigTypeDef, MonitoringScheduleConfigOutputTypeDef
|
|
11730
11771
|
]
|
|
11731
11772
|
|
|
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
11773
|
class DescribeModelPackageOutputTypeDef(TypedDict):
|
|
11799
11774
|
ModelPackageName: str
|
|
11800
11775
|
ModelPackageGroupName: str
|
|
@@ -11867,6 +11842,72 @@ ModelPackageValidationSpecificationUnionTypeDef = Union[
|
|
|
11867
11842
|
ModelPackageValidationSpecificationTypeDef, ModelPackageValidationSpecificationOutputTypeDef
|
|
11868
11843
|
]
|
|
11869
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
|
+
|
|
11870
11911
|
class UpdateModelPackageInputTypeDef(TypedDict):
|
|
11871
11912
|
ModelPackageArn: str
|
|
11872
11913
|
ModelApprovalStatus: NotRequired[ModelApprovalStatusType]
|
|
@@ -11912,14 +11953,6 @@ class UpdateMonitoringScheduleRequestTypeDef(TypedDict):
|
|
|
11912
11953
|
MonitoringScheduleName: str
|
|
11913
11954
|
MonitoringScheduleConfig: MonitoringScheduleConfigUnionTypeDef
|
|
11914
11955
|
|
|
11915
|
-
HyperParameterTrainingJobDefinitionUnionTypeDef = Union[
|
|
11916
|
-
HyperParameterTrainingJobDefinitionTypeDef, HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
11917
|
-
]
|
|
11918
|
-
|
|
11919
|
-
class AlgorithmValidationSpecificationTypeDef(TypedDict):
|
|
11920
|
-
ValidationRole: str
|
|
11921
|
-
ValidationProfiles: Sequence[AlgorithmValidationProfileTypeDef]
|
|
11922
|
-
|
|
11923
11956
|
class CreateModelPackageInputTypeDef(TypedDict):
|
|
11924
11957
|
ModelPackageName: NotRequired[str]
|
|
11925
11958
|
ModelPackageGroupName: NotRequired[str]
|
|
@@ -11947,6 +11980,14 @@ class CreateModelPackageInputTypeDef(TypedDict):
|
|
|
11947
11980
|
ModelCard: NotRequired[ModelPackageModelCardTypeDef]
|
|
11948
11981
|
ModelLifeCycle: NotRequired[ModelLifeCycleTypeDef]
|
|
11949
11982
|
|
|
11983
|
+
HyperParameterTrainingJobDefinitionUnionTypeDef = Union[
|
|
11984
|
+
HyperParameterTrainingJobDefinitionTypeDef, HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
11985
|
+
]
|
|
11986
|
+
|
|
11987
|
+
class AlgorithmValidationSpecificationTypeDef(TypedDict):
|
|
11988
|
+
ValidationRole: str
|
|
11989
|
+
ValidationProfiles: Sequence[AlgorithmValidationProfileTypeDef]
|
|
11990
|
+
|
|
11950
11991
|
class SearchRecordTypeDef(TypedDict):
|
|
11951
11992
|
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
11952
11993
|
Experiment: NotRequired[ExperimentTypeDef]
|