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
|
@@ -983,6 +983,7 @@ __all__ = (
|
|
|
983
983
|
"HiddenSageMakerImageOutputTypeDef",
|
|
984
984
|
"HiddenSageMakerImageTypeDef",
|
|
985
985
|
"HolidayConfigAttributesTypeDef",
|
|
986
|
+
"HubAccessConfigTypeDef",
|
|
986
987
|
"HubContentDependencyTypeDef",
|
|
987
988
|
"HubContentInfoTypeDef",
|
|
988
989
|
"HubInfoTypeDef",
|
|
@@ -1831,6 +1832,10 @@ __all__ = (
|
|
|
1831
1832
|
"UpdateFeatureGroupRequestTypeDef",
|
|
1832
1833
|
"UpdateFeatureGroupResponseTypeDef",
|
|
1833
1834
|
"UpdateFeatureMetadataRequestTypeDef",
|
|
1835
|
+
"UpdateHubContentReferenceRequestTypeDef",
|
|
1836
|
+
"UpdateHubContentReferenceResponseTypeDef",
|
|
1837
|
+
"UpdateHubContentRequestTypeDef",
|
|
1838
|
+
"UpdateHubContentResponseTypeDef",
|
|
1834
1839
|
"UpdateHubRequestTypeDef",
|
|
1835
1840
|
"UpdateHubResponseTypeDef",
|
|
1836
1841
|
"UpdateImageRequestTypeDef",
|
|
@@ -2898,18 +2903,6 @@ class FileSystemDataSourceTypeDef(TypedDict):
|
|
|
2898
2903
|
DirectoryPath: str
|
|
2899
2904
|
|
|
2900
2905
|
|
|
2901
|
-
S3DataSourceOutputTypeDef = TypedDict(
|
|
2902
|
-
"S3DataSourceOutputTypeDef",
|
|
2903
|
-
{
|
|
2904
|
-
"S3DataType": S3DataTypeType,
|
|
2905
|
-
"S3Uri": str,
|
|
2906
|
-
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
2907
|
-
"AttributeNames": NotRequired[List[str]],
|
|
2908
|
-
"InstanceGroupNames": NotRequired[List[str]],
|
|
2909
|
-
},
|
|
2910
|
-
)
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
2906
|
class RedshiftDatasetDefinitionTypeDef(TypedDict):
|
|
2914
2907
|
ClusterId: str
|
|
2915
2908
|
Database: str
|
|
@@ -4055,6 +4048,10 @@ class HolidayConfigAttributesTypeDef(TypedDict):
|
|
|
4055
4048
|
CountryCode: NotRequired[str]
|
|
4056
4049
|
|
|
4057
4050
|
|
|
4051
|
+
class HubAccessConfigTypeDef(TypedDict):
|
|
4052
|
+
HubContentArn: str
|
|
4053
|
+
|
|
4054
|
+
|
|
4058
4055
|
class HubContentInfoTypeDef(TypedDict):
|
|
4059
4056
|
HubContentName: str
|
|
4060
4057
|
HubContentArn: str
|
|
@@ -5071,18 +5068,6 @@ class ResourceConfigForUpdateTypeDef(TypedDict):
|
|
|
5071
5068
|
KeepAlivePeriodInSeconds: int
|
|
5072
5069
|
|
|
5073
5070
|
|
|
5074
|
-
S3DataSourceTypeDef = TypedDict(
|
|
5075
|
-
"S3DataSourceTypeDef",
|
|
5076
|
-
{
|
|
5077
|
-
"S3DataType": S3DataTypeType,
|
|
5078
|
-
"S3Uri": str,
|
|
5079
|
-
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
5080
|
-
"AttributeNames": NotRequired[Sequence[str]],
|
|
5081
|
-
"InstanceGroupNames": NotRequired[Sequence[str]],
|
|
5082
|
-
},
|
|
5083
|
-
)
|
|
5084
|
-
|
|
5085
|
-
|
|
5086
5071
|
class VisibilityConditionsTypeDef(TypedDict):
|
|
5087
5072
|
Key: NotRequired[str]
|
|
5088
5073
|
Value: NotRequired[str]
|
|
@@ -5289,6 +5274,25 @@ class UpdateExperimentRequestTypeDef(TypedDict):
|
|
|
5289
5274
|
Description: NotRequired[str]
|
|
5290
5275
|
|
|
5291
5276
|
|
|
5277
|
+
class UpdateHubContentReferenceRequestTypeDef(TypedDict):
|
|
5278
|
+
HubName: str
|
|
5279
|
+
HubContentName: str
|
|
5280
|
+
HubContentType: HubContentTypeType
|
|
5281
|
+
MinVersion: NotRequired[str]
|
|
5282
|
+
|
|
5283
|
+
|
|
5284
|
+
class UpdateHubContentRequestTypeDef(TypedDict):
|
|
5285
|
+
HubName: str
|
|
5286
|
+
HubContentName: str
|
|
5287
|
+
HubContentType: HubContentTypeType
|
|
5288
|
+
HubContentVersion: str
|
|
5289
|
+
HubContentDisplayName: NotRequired[str]
|
|
5290
|
+
HubContentDescription: NotRequired[str]
|
|
5291
|
+
HubContentMarkdown: NotRequired[str]
|
|
5292
|
+
HubContentSearchKeywords: NotRequired[Sequence[str]]
|
|
5293
|
+
SupportStatus: NotRequired[HubContentSupportStatusType]
|
|
5294
|
+
|
|
5295
|
+
|
|
5292
5296
|
class UpdateHubRequestTypeDef(TypedDict):
|
|
5293
5297
|
HubName: str
|
|
5294
5298
|
HubDescription: NotRequired[str]
|
|
@@ -5964,6 +5968,18 @@ class UpdateFeatureGroupResponseTypeDef(TypedDict):
|
|
|
5964
5968
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5965
5969
|
|
|
5966
5970
|
|
|
5971
|
+
class UpdateHubContentReferenceResponseTypeDef(TypedDict):
|
|
5972
|
+
HubArn: str
|
|
5973
|
+
HubContentArn: str
|
|
5974
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5975
|
+
|
|
5976
|
+
|
|
5977
|
+
class UpdateHubContentResponseTypeDef(TypedDict):
|
|
5978
|
+
HubArn: str
|
|
5979
|
+
HubContentArn: str
|
|
5980
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5981
|
+
|
|
5982
|
+
|
|
5967
5983
|
class UpdateHubResponseTypeDef(TypedDict):
|
|
5968
5984
|
HubArn: str
|
|
5969
5985
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -6138,6 +6154,7 @@ class ImportHubContentRequestTypeDef(TypedDict):
|
|
|
6138
6154
|
HubContentDisplayName: NotRequired[str]
|
|
6139
6155
|
HubContentDescription: NotRequired[str]
|
|
6140
6156
|
HubContentMarkdown: NotRequired[str]
|
|
6157
|
+
SupportStatus: NotRequired[HubContentSupportStatusType]
|
|
6141
6158
|
HubContentSearchKeywords: NotRequired[Sequence[str]]
|
|
6142
6159
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
6143
6160
|
|
|
@@ -7756,11 +7773,6 @@ class MonitoringBaselineConfigTypeDef(TypedDict):
|
|
|
7756
7773
|
StatisticsResource: NotRequired[MonitoringStatisticsResourceTypeDef]
|
|
7757
7774
|
|
|
7758
7775
|
|
|
7759
|
-
class DataSourceOutputTypeDef(TypedDict):
|
|
7760
|
-
S3DataSource: NotRequired[S3DataSourceOutputTypeDef]
|
|
7761
|
-
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
7762
|
-
|
|
7763
|
-
|
|
7764
7776
|
class DatasetDefinitionTypeDef(TypedDict):
|
|
7765
7777
|
AthenaDatasetDefinition: NotRequired[AthenaDatasetDefinitionTypeDef]
|
|
7766
7778
|
RedshiftDatasetDefinition: NotRequired[RedshiftDatasetDefinitionTypeDef]
|
|
@@ -7972,6 +7984,7 @@ class DescribeHubContentResponseTypeDef(TypedDict):
|
|
|
7972
7984
|
HubContentStatus: HubContentStatusType
|
|
7973
7985
|
FailureReason: str
|
|
7974
7986
|
CreationTime: datetime
|
|
7987
|
+
LastModifiedTime: datetime
|
|
7975
7988
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7976
7989
|
|
|
7977
7990
|
|
|
@@ -9446,6 +9459,32 @@ class MetricSpecificationTypeDef(TypedDict):
|
|
|
9446
9459
|
Customized: NotRequired[CustomizedMetricSpecificationTypeDef]
|
|
9447
9460
|
|
|
9448
9461
|
|
|
9462
|
+
S3DataSourceOutputTypeDef = TypedDict(
|
|
9463
|
+
"S3DataSourceOutputTypeDef",
|
|
9464
|
+
{
|
|
9465
|
+
"S3DataType": S3DataTypeType,
|
|
9466
|
+
"S3Uri": str,
|
|
9467
|
+
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
9468
|
+
"AttributeNames": NotRequired[List[str]],
|
|
9469
|
+
"InstanceGroupNames": NotRequired[List[str]],
|
|
9470
|
+
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
9471
|
+
"HubAccessConfig": NotRequired[HubAccessConfigTypeDef],
|
|
9472
|
+
},
|
|
9473
|
+
)
|
|
9474
|
+
S3DataSourceTypeDef = TypedDict(
|
|
9475
|
+
"S3DataSourceTypeDef",
|
|
9476
|
+
{
|
|
9477
|
+
"S3DataType": S3DataTypeType,
|
|
9478
|
+
"S3Uri": str,
|
|
9479
|
+
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
9480
|
+
"AttributeNames": NotRequired[Sequence[str]],
|
|
9481
|
+
"InstanceGroupNames": NotRequired[Sequence[str]],
|
|
9482
|
+
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
9483
|
+
"HubAccessConfig": NotRequired[HubAccessConfigTypeDef],
|
|
9484
|
+
},
|
|
9485
|
+
)
|
|
9486
|
+
|
|
9487
|
+
|
|
9449
9488
|
class S3ModelDataSourceTypeDef(TypedDict):
|
|
9450
9489
|
S3Uri: str
|
|
9451
9490
|
S3DataType: S3ModelDataTypeType
|
|
@@ -9765,9 +9804,6 @@ class TrainingPlanOfferingTypeDef(TypedDict):
|
|
|
9765
9804
|
ReservedCapacityOfferings: NotRequired[List[ReservedCapacityOfferingTypeDef]]
|
|
9766
9805
|
|
|
9767
9806
|
|
|
9768
|
-
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
9769
|
-
|
|
9770
|
-
|
|
9771
9807
|
class SelectiveExecutionConfigOutputTypeDef(TypedDict):
|
|
9772
9808
|
SelectedSteps: List[SelectedStepTypeDef]
|
|
9773
9809
|
SourcePipelineExecutionArn: NotRequired[str]
|
|
@@ -10235,20 +10271,6 @@ class QueryLineageRequestTypeDef(TypedDict):
|
|
|
10235
10271
|
NextToken: NotRequired[str]
|
|
10236
10272
|
|
|
10237
10273
|
|
|
10238
|
-
ChannelOutputTypeDef = TypedDict(
|
|
10239
|
-
"ChannelOutputTypeDef",
|
|
10240
|
-
{
|
|
10241
|
-
"ChannelName": str,
|
|
10242
|
-
"DataSource": DataSourceOutputTypeDef,
|
|
10243
|
-
"ContentType": NotRequired[str],
|
|
10244
|
-
"CompressionType": NotRequired[CompressionTypeType],
|
|
10245
|
-
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
10246
|
-
"InputMode": NotRequired[TrainingInputModeType],
|
|
10247
|
-
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
10248
|
-
},
|
|
10249
|
-
)
|
|
10250
|
-
|
|
10251
|
-
|
|
10252
10274
|
class ProcessingInputTypeDef(TypedDict):
|
|
10253
10275
|
InputName: str
|
|
10254
10276
|
AppManaged: NotRequired[bool]
|
|
@@ -10817,6 +10839,14 @@ class TargetTrackingScalingPolicyConfigurationTypeDef(TypedDict):
|
|
|
10817
10839
|
TargetValue: NotRequired[float]
|
|
10818
10840
|
|
|
10819
10841
|
|
|
10842
|
+
class DataSourceOutputTypeDef(TypedDict):
|
|
10843
|
+
S3DataSource: NotRequired[S3DataSourceOutputTypeDef]
|
|
10844
|
+
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
10845
|
+
|
|
10846
|
+
|
|
10847
|
+
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
10848
|
+
|
|
10849
|
+
|
|
10820
10850
|
class AdditionalModelDataSourceTypeDef(TypedDict):
|
|
10821
10851
|
ChannelName: str
|
|
10822
10852
|
S3DataSource: S3ModelDataSourceTypeDef
|
|
@@ -11141,11 +11171,6 @@ class SearchTrainingPlanOfferingsResponseTypeDef(TypedDict):
|
|
|
11141
11171
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11142
11172
|
|
|
11143
11173
|
|
|
11144
|
-
class DataSourceTypeDef(TypedDict):
|
|
11145
|
-
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
11146
|
-
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
11147
|
-
|
|
11148
|
-
|
|
11149
11174
|
class DescribePipelineExecutionResponseTypeDef(TypedDict):
|
|
11150
11175
|
PipelineArn: str
|
|
11151
11176
|
PipelineExecutionArn: str
|
|
@@ -11603,36 +11628,6 @@ class UpdateComputeQuotaRequestTypeDef(TypedDict):
|
|
|
11603
11628
|
Description: NotRequired[str]
|
|
11604
11629
|
|
|
11605
11630
|
|
|
11606
|
-
class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
11607
|
-
AlgorithmSpecification: HyperParameterAlgorithmSpecificationOutputTypeDef
|
|
11608
|
-
RoleArn: str
|
|
11609
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
11610
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
11611
|
-
DefinitionName: NotRequired[str]
|
|
11612
|
-
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
11613
|
-
HyperParameterRanges: NotRequired[ParameterRangesOutputTypeDef]
|
|
11614
|
-
StaticHyperParameters: NotRequired[Dict[str, str]]
|
|
11615
|
-
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
11616
|
-
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
11617
|
-
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
11618
|
-
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigOutputTypeDef]
|
|
11619
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
11620
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
11621
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
11622
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
11623
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
11624
|
-
Environment: NotRequired[Dict[str, str]]
|
|
11625
|
-
|
|
11626
|
-
|
|
11627
|
-
class TrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
11628
|
-
TrainingInputMode: TrainingInputModeType
|
|
11629
|
-
InputDataConfig: List[ChannelOutputTypeDef]
|
|
11630
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
11631
|
-
ResourceConfig: ResourceConfigOutputTypeDef
|
|
11632
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
11633
|
-
HyperParameters: NotRequired[Dict[str, str]]
|
|
11634
|
-
|
|
11635
|
-
|
|
11636
11631
|
class CreateEdgeDeploymentPlanRequestTypeDef(TypedDict):
|
|
11637
11632
|
EdgeDeploymentPlanName: str
|
|
11638
11633
|
ModelConfigs: Sequence[EdgeDeploymentModelConfigTypeDef]
|
|
@@ -11819,6 +11814,25 @@ class ScalingPolicyTypeDef(TypedDict):
|
|
|
11819
11814
|
TargetTracking: NotRequired[TargetTrackingScalingPolicyConfigurationTypeDef]
|
|
11820
11815
|
|
|
11821
11816
|
|
|
11817
|
+
ChannelOutputTypeDef = TypedDict(
|
|
11818
|
+
"ChannelOutputTypeDef",
|
|
11819
|
+
{
|
|
11820
|
+
"ChannelName": str,
|
|
11821
|
+
"DataSource": DataSourceOutputTypeDef,
|
|
11822
|
+
"ContentType": NotRequired[str],
|
|
11823
|
+
"CompressionType": NotRequired[CompressionTypeType],
|
|
11824
|
+
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
11825
|
+
"InputMode": NotRequired[TrainingInputModeType],
|
|
11826
|
+
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
11827
|
+
},
|
|
11828
|
+
)
|
|
11829
|
+
|
|
11830
|
+
|
|
11831
|
+
class DataSourceTypeDef(TypedDict):
|
|
11832
|
+
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
11833
|
+
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
11834
|
+
|
|
11835
|
+
|
|
11822
11836
|
class ContainerDefinitionOutputTypeDef(TypedDict):
|
|
11823
11837
|
ContainerHostname: NotRequired[str]
|
|
11824
11838
|
Image: NotRequired[str]
|
|
@@ -12125,7 +12139,6 @@ class DescribeLabelingJobResponseTypeDef(TypedDict):
|
|
|
12125
12139
|
|
|
12126
12140
|
|
|
12127
12141
|
HumanTaskConfigUnionTypeDef = Union[HumanTaskConfigTypeDef, HumanTaskConfigOutputTypeDef]
|
|
12128
|
-
DataSourceUnionTypeDef = Union[DataSourceTypeDef, DataSourceOutputTypeDef]
|
|
12129
12142
|
|
|
12130
12143
|
|
|
12131
12144
|
class StartPipelineExecutionRequestTypeDef(TypedDict):
|
|
@@ -12185,94 +12198,6 @@ class SpaceSettingsTypeDef(TypedDict):
|
|
|
12185
12198
|
CustomFileSystems: NotRequired[Sequence[CustomFileSystemTypeDef]]
|
|
12186
12199
|
|
|
12187
12200
|
|
|
12188
|
-
class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
12189
|
-
TrainingJobName: str
|
|
12190
|
-
TrainingJobArn: str
|
|
12191
|
-
TuningJobArn: str
|
|
12192
|
-
LabelingJobArn: str
|
|
12193
|
-
AutoMLJobArn: str
|
|
12194
|
-
ModelArtifacts: ModelArtifactsTypeDef
|
|
12195
|
-
TrainingJobStatus: TrainingJobStatusType
|
|
12196
|
-
SecondaryStatus: SecondaryStatusType
|
|
12197
|
-
FailureReason: str
|
|
12198
|
-
HyperParameters: Dict[str, str]
|
|
12199
|
-
AlgorithmSpecification: AlgorithmSpecificationOutputTypeDef
|
|
12200
|
-
RoleArn: str
|
|
12201
|
-
InputDataConfig: List[ChannelOutputTypeDef]
|
|
12202
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
12203
|
-
ResourceConfig: ResourceConfigOutputTypeDef
|
|
12204
|
-
WarmPoolStatus: WarmPoolStatusTypeDef
|
|
12205
|
-
VpcConfig: VpcConfigOutputTypeDef
|
|
12206
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
12207
|
-
CreationTime: datetime
|
|
12208
|
-
TrainingStartTime: datetime
|
|
12209
|
-
TrainingEndTime: datetime
|
|
12210
|
-
LastModifiedTime: datetime
|
|
12211
|
-
SecondaryStatusTransitions: List[SecondaryStatusTransitionTypeDef]
|
|
12212
|
-
FinalMetricDataList: List[MetricDataTypeDef]
|
|
12213
|
-
EnableNetworkIsolation: bool
|
|
12214
|
-
EnableInterContainerTrafficEncryption: bool
|
|
12215
|
-
EnableManagedSpotTraining: bool
|
|
12216
|
-
CheckpointConfig: CheckpointConfigTypeDef
|
|
12217
|
-
TrainingTimeInSeconds: int
|
|
12218
|
-
BillableTimeInSeconds: int
|
|
12219
|
-
DebugHookConfig: DebugHookConfigOutputTypeDef
|
|
12220
|
-
ExperimentConfig: ExperimentConfigTypeDef
|
|
12221
|
-
DebugRuleConfigurations: List[DebugRuleConfigurationOutputTypeDef]
|
|
12222
|
-
TensorBoardOutputConfig: TensorBoardOutputConfigTypeDef
|
|
12223
|
-
DebugRuleEvaluationStatuses: List[DebugRuleEvaluationStatusTypeDef]
|
|
12224
|
-
ProfilerConfig: ProfilerConfigOutputTypeDef
|
|
12225
|
-
ProfilerRuleConfigurations: List[ProfilerRuleConfigurationOutputTypeDef]
|
|
12226
|
-
ProfilerRuleEvaluationStatuses: List[ProfilerRuleEvaluationStatusTypeDef]
|
|
12227
|
-
ProfilingStatus: ProfilingStatusType
|
|
12228
|
-
Environment: Dict[str, str]
|
|
12229
|
-
RetryStrategy: RetryStrategyTypeDef
|
|
12230
|
-
RemoteDebugConfig: RemoteDebugConfigTypeDef
|
|
12231
|
-
InfraCheckConfig: InfraCheckConfigTypeDef
|
|
12232
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
12233
|
-
|
|
12234
|
-
|
|
12235
|
-
class TrainingJobTypeDef(TypedDict):
|
|
12236
|
-
TrainingJobName: NotRequired[str]
|
|
12237
|
-
TrainingJobArn: NotRequired[str]
|
|
12238
|
-
TuningJobArn: NotRequired[str]
|
|
12239
|
-
LabelingJobArn: NotRequired[str]
|
|
12240
|
-
AutoMLJobArn: NotRequired[str]
|
|
12241
|
-
ModelArtifacts: NotRequired[ModelArtifactsTypeDef]
|
|
12242
|
-
TrainingJobStatus: NotRequired[TrainingJobStatusType]
|
|
12243
|
-
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
12244
|
-
FailureReason: NotRequired[str]
|
|
12245
|
-
HyperParameters: NotRequired[Dict[str, str]]
|
|
12246
|
-
AlgorithmSpecification: NotRequired[AlgorithmSpecificationOutputTypeDef]
|
|
12247
|
-
RoleArn: NotRequired[str]
|
|
12248
|
-
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
12249
|
-
OutputDataConfig: NotRequired[OutputDataConfigTypeDef]
|
|
12250
|
-
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
12251
|
-
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
12252
|
-
StoppingCondition: NotRequired[StoppingConditionTypeDef]
|
|
12253
|
-
CreationTime: NotRequired[datetime]
|
|
12254
|
-
TrainingStartTime: NotRequired[datetime]
|
|
12255
|
-
TrainingEndTime: NotRequired[datetime]
|
|
12256
|
-
LastModifiedTime: NotRequired[datetime]
|
|
12257
|
-
SecondaryStatusTransitions: NotRequired[List[SecondaryStatusTransitionTypeDef]]
|
|
12258
|
-
FinalMetricDataList: NotRequired[List[MetricDataTypeDef]]
|
|
12259
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
12260
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
12261
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
12262
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
12263
|
-
TrainingTimeInSeconds: NotRequired[int]
|
|
12264
|
-
BillableTimeInSeconds: NotRequired[int]
|
|
12265
|
-
DebugHookConfig: NotRequired[DebugHookConfigOutputTypeDef]
|
|
12266
|
-
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
12267
|
-
DebugRuleConfigurations: NotRequired[List[DebugRuleConfigurationOutputTypeDef]]
|
|
12268
|
-
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
12269
|
-
DebugRuleEvaluationStatuses: NotRequired[List[DebugRuleEvaluationStatusTypeDef]]
|
|
12270
|
-
ProfilerConfig: NotRequired[ProfilerConfigOutputTypeDef]
|
|
12271
|
-
Environment: NotRequired[Dict[str, str]]
|
|
12272
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
12273
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
12274
|
-
|
|
12275
|
-
|
|
12276
12201
|
AlgorithmSpecificationUnionTypeDef = Union[
|
|
12277
12202
|
AlgorithmSpecificationTypeDef, AlgorithmSpecificationOutputTypeDef
|
|
12278
12203
|
]
|
|
@@ -12530,49 +12455,6 @@ class DescribeEndpointOutputTypeDef(TypedDict):
|
|
|
12530
12455
|
ExplainerConfigUnionTypeDef = Union[ExplainerConfigTypeDef, ExplainerConfigOutputTypeDef]
|
|
12531
12456
|
|
|
12532
12457
|
|
|
12533
|
-
class DescribeHyperParameterTuningJobResponseTypeDef(TypedDict):
|
|
12534
|
-
HyperParameterTuningJobName: str
|
|
12535
|
-
HyperParameterTuningJobArn: str
|
|
12536
|
-
HyperParameterTuningJobConfig: HyperParameterTuningJobConfigOutputTypeDef
|
|
12537
|
-
TrainingJobDefinition: HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
12538
|
-
TrainingJobDefinitions: List[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
12539
|
-
HyperParameterTuningJobStatus: HyperParameterTuningJobStatusType
|
|
12540
|
-
CreationTime: datetime
|
|
12541
|
-
HyperParameterTuningEndTime: datetime
|
|
12542
|
-
LastModifiedTime: datetime
|
|
12543
|
-
TrainingJobStatusCounters: TrainingJobStatusCountersTypeDef
|
|
12544
|
-
ObjectiveStatusCounters: ObjectiveStatusCountersTypeDef
|
|
12545
|
-
BestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
12546
|
-
OverallBestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
12547
|
-
WarmStartConfig: HyperParameterTuningJobWarmStartConfigOutputTypeDef
|
|
12548
|
-
Autotune: AutotuneTypeDef
|
|
12549
|
-
FailureReason: str
|
|
12550
|
-
TuningJobCompletionDetails: HyperParameterTuningJobCompletionDetailsTypeDef
|
|
12551
|
-
ConsumedResources: HyperParameterTuningJobConsumedResourcesTypeDef
|
|
12552
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
12553
|
-
|
|
12554
|
-
|
|
12555
|
-
class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
12556
|
-
HyperParameterTuningJobName: NotRequired[str]
|
|
12557
|
-
HyperParameterTuningJobArn: NotRequired[str]
|
|
12558
|
-
HyperParameterTuningJobConfig: NotRequired[HyperParameterTuningJobConfigOutputTypeDef]
|
|
12559
|
-
TrainingJobDefinition: NotRequired[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
12560
|
-
TrainingJobDefinitions: NotRequired[List[HyperParameterTrainingJobDefinitionOutputTypeDef]]
|
|
12561
|
-
HyperParameterTuningJobStatus: NotRequired[HyperParameterTuningJobStatusType]
|
|
12562
|
-
CreationTime: NotRequired[datetime]
|
|
12563
|
-
HyperParameterTuningEndTime: NotRequired[datetime]
|
|
12564
|
-
LastModifiedTime: NotRequired[datetime]
|
|
12565
|
-
TrainingJobStatusCounters: NotRequired[TrainingJobStatusCountersTypeDef]
|
|
12566
|
-
ObjectiveStatusCounters: NotRequired[ObjectiveStatusCountersTypeDef]
|
|
12567
|
-
BestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
12568
|
-
OverallBestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
12569
|
-
WarmStartConfig: NotRequired[HyperParameterTuningJobWarmStartConfigOutputTypeDef]
|
|
12570
|
-
FailureReason: NotRequired[str]
|
|
12571
|
-
TuningJobCompletionDetails: NotRequired[HyperParameterTuningJobCompletionDetailsTypeDef]
|
|
12572
|
-
ConsumedResources: NotRequired[HyperParameterTuningJobConsumedResourcesTypeDef]
|
|
12573
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
12574
|
-
|
|
12575
|
-
|
|
12576
12458
|
class ListSpacesResponseTypeDef(TypedDict):
|
|
12577
12459
|
Spaces: List[SpaceDetailsTypeDef]
|
|
12578
12460
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -12627,6 +12509,127 @@ class DynamicScalingConfigurationTypeDef(TypedDict):
|
|
|
12627
12509
|
ScalingPolicies: NotRequired[List[ScalingPolicyTypeDef]]
|
|
12628
12510
|
|
|
12629
12511
|
|
|
12512
|
+
class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
12513
|
+
TrainingJobName: str
|
|
12514
|
+
TrainingJobArn: str
|
|
12515
|
+
TuningJobArn: str
|
|
12516
|
+
LabelingJobArn: str
|
|
12517
|
+
AutoMLJobArn: str
|
|
12518
|
+
ModelArtifacts: ModelArtifactsTypeDef
|
|
12519
|
+
TrainingJobStatus: TrainingJobStatusType
|
|
12520
|
+
SecondaryStatus: SecondaryStatusType
|
|
12521
|
+
FailureReason: str
|
|
12522
|
+
HyperParameters: Dict[str, str]
|
|
12523
|
+
AlgorithmSpecification: AlgorithmSpecificationOutputTypeDef
|
|
12524
|
+
RoleArn: str
|
|
12525
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
12526
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
12527
|
+
ResourceConfig: ResourceConfigOutputTypeDef
|
|
12528
|
+
WarmPoolStatus: WarmPoolStatusTypeDef
|
|
12529
|
+
VpcConfig: VpcConfigOutputTypeDef
|
|
12530
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
12531
|
+
CreationTime: datetime
|
|
12532
|
+
TrainingStartTime: datetime
|
|
12533
|
+
TrainingEndTime: datetime
|
|
12534
|
+
LastModifiedTime: datetime
|
|
12535
|
+
SecondaryStatusTransitions: List[SecondaryStatusTransitionTypeDef]
|
|
12536
|
+
FinalMetricDataList: List[MetricDataTypeDef]
|
|
12537
|
+
EnableNetworkIsolation: bool
|
|
12538
|
+
EnableInterContainerTrafficEncryption: bool
|
|
12539
|
+
EnableManagedSpotTraining: bool
|
|
12540
|
+
CheckpointConfig: CheckpointConfigTypeDef
|
|
12541
|
+
TrainingTimeInSeconds: int
|
|
12542
|
+
BillableTimeInSeconds: int
|
|
12543
|
+
DebugHookConfig: DebugHookConfigOutputTypeDef
|
|
12544
|
+
ExperimentConfig: ExperimentConfigTypeDef
|
|
12545
|
+
DebugRuleConfigurations: List[DebugRuleConfigurationOutputTypeDef]
|
|
12546
|
+
TensorBoardOutputConfig: TensorBoardOutputConfigTypeDef
|
|
12547
|
+
DebugRuleEvaluationStatuses: List[DebugRuleEvaluationStatusTypeDef]
|
|
12548
|
+
ProfilerConfig: ProfilerConfigOutputTypeDef
|
|
12549
|
+
ProfilerRuleConfigurations: List[ProfilerRuleConfigurationOutputTypeDef]
|
|
12550
|
+
ProfilerRuleEvaluationStatuses: List[ProfilerRuleEvaluationStatusTypeDef]
|
|
12551
|
+
ProfilingStatus: ProfilingStatusType
|
|
12552
|
+
Environment: Dict[str, str]
|
|
12553
|
+
RetryStrategy: RetryStrategyTypeDef
|
|
12554
|
+
RemoteDebugConfig: RemoteDebugConfigTypeDef
|
|
12555
|
+
InfraCheckConfig: InfraCheckConfigTypeDef
|
|
12556
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
12557
|
+
|
|
12558
|
+
|
|
12559
|
+
class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
12560
|
+
AlgorithmSpecification: HyperParameterAlgorithmSpecificationOutputTypeDef
|
|
12561
|
+
RoleArn: str
|
|
12562
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
12563
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
12564
|
+
DefinitionName: NotRequired[str]
|
|
12565
|
+
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
12566
|
+
HyperParameterRanges: NotRequired[ParameterRangesOutputTypeDef]
|
|
12567
|
+
StaticHyperParameters: NotRequired[Dict[str, str]]
|
|
12568
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
12569
|
+
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
12570
|
+
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
12571
|
+
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigOutputTypeDef]
|
|
12572
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
12573
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
12574
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
12575
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
12576
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
12577
|
+
Environment: NotRequired[Dict[str, str]]
|
|
12578
|
+
|
|
12579
|
+
|
|
12580
|
+
class TrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
12581
|
+
TrainingInputMode: TrainingInputModeType
|
|
12582
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
12583
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
12584
|
+
ResourceConfig: ResourceConfigOutputTypeDef
|
|
12585
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
12586
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
12587
|
+
|
|
12588
|
+
|
|
12589
|
+
class TrainingJobTypeDef(TypedDict):
|
|
12590
|
+
TrainingJobName: NotRequired[str]
|
|
12591
|
+
TrainingJobArn: NotRequired[str]
|
|
12592
|
+
TuningJobArn: NotRequired[str]
|
|
12593
|
+
LabelingJobArn: NotRequired[str]
|
|
12594
|
+
AutoMLJobArn: NotRequired[str]
|
|
12595
|
+
ModelArtifacts: NotRequired[ModelArtifactsTypeDef]
|
|
12596
|
+
TrainingJobStatus: NotRequired[TrainingJobStatusType]
|
|
12597
|
+
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
12598
|
+
FailureReason: NotRequired[str]
|
|
12599
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
12600
|
+
AlgorithmSpecification: NotRequired[AlgorithmSpecificationOutputTypeDef]
|
|
12601
|
+
RoleArn: NotRequired[str]
|
|
12602
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
12603
|
+
OutputDataConfig: NotRequired[OutputDataConfigTypeDef]
|
|
12604
|
+
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
12605
|
+
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
12606
|
+
StoppingCondition: NotRequired[StoppingConditionTypeDef]
|
|
12607
|
+
CreationTime: NotRequired[datetime]
|
|
12608
|
+
TrainingStartTime: NotRequired[datetime]
|
|
12609
|
+
TrainingEndTime: NotRequired[datetime]
|
|
12610
|
+
LastModifiedTime: NotRequired[datetime]
|
|
12611
|
+
SecondaryStatusTransitions: NotRequired[List[SecondaryStatusTransitionTypeDef]]
|
|
12612
|
+
FinalMetricDataList: NotRequired[List[MetricDataTypeDef]]
|
|
12613
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
12614
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
12615
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
12616
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
12617
|
+
TrainingTimeInSeconds: NotRequired[int]
|
|
12618
|
+
BillableTimeInSeconds: NotRequired[int]
|
|
12619
|
+
DebugHookConfig: NotRequired[DebugHookConfigOutputTypeDef]
|
|
12620
|
+
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
12621
|
+
DebugRuleConfigurations: NotRequired[List[DebugRuleConfigurationOutputTypeDef]]
|
|
12622
|
+
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
12623
|
+
DebugRuleEvaluationStatuses: NotRequired[List[DebugRuleEvaluationStatusTypeDef]]
|
|
12624
|
+
ProfilerConfig: NotRequired[ProfilerConfigOutputTypeDef]
|
|
12625
|
+
Environment: NotRequired[Dict[str, str]]
|
|
12626
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
12627
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
12628
|
+
|
|
12629
|
+
|
|
12630
|
+
DataSourceUnionTypeDef = Union[DataSourceTypeDef, DataSourceOutputTypeDef]
|
|
12631
|
+
|
|
12632
|
+
|
|
12630
12633
|
class DescribeModelOutputTypeDef(TypedDict):
|
|
12631
12634
|
ModelName: str
|
|
12632
12635
|
PrimaryContainer: ContainerDefinitionOutputTypeDef
|
|
@@ -12865,20 +12868,6 @@ class CreateLabelingJobRequestTypeDef(TypedDict):
|
|
|
12865
12868
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
12866
12869
|
|
|
12867
12870
|
|
|
12868
|
-
ChannelTypeDef = TypedDict(
|
|
12869
|
-
"ChannelTypeDef",
|
|
12870
|
-
{
|
|
12871
|
-
"ChannelName": str,
|
|
12872
|
-
"DataSource": DataSourceUnionTypeDef,
|
|
12873
|
-
"ContentType": NotRequired[str],
|
|
12874
|
-
"CompressionType": NotRequired[CompressionTypeType],
|
|
12875
|
-
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
12876
|
-
"InputMode": NotRequired[TrainingInputModeType],
|
|
12877
|
-
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
12878
|
-
},
|
|
12879
|
-
)
|
|
12880
|
-
|
|
12881
|
-
|
|
12882
12871
|
class DescribeSpaceResponseTypeDef(TypedDict):
|
|
12883
12872
|
DomainId: str
|
|
12884
12873
|
SpaceArn: str
|
|
@@ -12899,12 +12888,6 @@ class DescribeSpaceResponseTypeDef(TypedDict):
|
|
|
12899
12888
|
SpaceSettingsUnionTypeDef = Union[SpaceSettingsTypeDef, SpaceSettingsOutputTypeDef]
|
|
12900
12889
|
|
|
12901
12890
|
|
|
12902
|
-
class AlgorithmValidationProfileOutputTypeDef(TypedDict):
|
|
12903
|
-
ProfileName: str
|
|
12904
|
-
TrainingJobDefinition: TrainingJobDefinitionOutputTypeDef
|
|
12905
|
-
TransformJobDefinition: NotRequired[TransformJobDefinitionOutputTypeDef]
|
|
12906
|
-
|
|
12907
|
-
|
|
12908
12891
|
class ModelPackageValidationProfileOutputTypeDef(TypedDict):
|
|
12909
12892
|
ProfileName: str
|
|
12910
12893
|
TransformJobDefinition: TransformJobDefinitionOutputTypeDef
|
|
@@ -12915,13 +12898,6 @@ class ModelPackageValidationProfileTypeDef(TypedDict):
|
|
|
12915
12898
|
TransformJobDefinition: TransformJobDefinitionTypeDef
|
|
12916
12899
|
|
|
12917
12900
|
|
|
12918
|
-
class TrialComponentSourceDetailTypeDef(TypedDict):
|
|
12919
|
-
SourceArn: NotRequired[str]
|
|
12920
|
-
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
12921
|
-
ProcessingJob: NotRequired[ProcessingJobTypeDef]
|
|
12922
|
-
TransformJob: NotRequired[TransformJobTypeDef]
|
|
12923
|
-
|
|
12924
|
-
|
|
12925
12901
|
class CreateDomainRequestTypeDef(TypedDict):
|
|
12926
12902
|
DomainName: str
|
|
12927
12903
|
AuthMode: AuthModeType
|
|
@@ -13030,6 +13006,76 @@ class GetScalingConfigurationRecommendationResponseTypeDef(TypedDict):
|
|
|
13030
13006
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
13031
13007
|
|
|
13032
13008
|
|
|
13009
|
+
class DescribeHyperParameterTuningJobResponseTypeDef(TypedDict):
|
|
13010
|
+
HyperParameterTuningJobName: str
|
|
13011
|
+
HyperParameterTuningJobArn: str
|
|
13012
|
+
HyperParameterTuningJobConfig: HyperParameterTuningJobConfigOutputTypeDef
|
|
13013
|
+
TrainingJobDefinition: HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
13014
|
+
TrainingJobDefinitions: List[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
13015
|
+
HyperParameterTuningJobStatus: HyperParameterTuningJobStatusType
|
|
13016
|
+
CreationTime: datetime
|
|
13017
|
+
HyperParameterTuningEndTime: datetime
|
|
13018
|
+
LastModifiedTime: datetime
|
|
13019
|
+
TrainingJobStatusCounters: TrainingJobStatusCountersTypeDef
|
|
13020
|
+
ObjectiveStatusCounters: ObjectiveStatusCountersTypeDef
|
|
13021
|
+
BestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
13022
|
+
OverallBestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
13023
|
+
WarmStartConfig: HyperParameterTuningJobWarmStartConfigOutputTypeDef
|
|
13024
|
+
Autotune: AutotuneTypeDef
|
|
13025
|
+
FailureReason: str
|
|
13026
|
+
TuningJobCompletionDetails: HyperParameterTuningJobCompletionDetailsTypeDef
|
|
13027
|
+
ConsumedResources: HyperParameterTuningJobConsumedResourcesTypeDef
|
|
13028
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
13029
|
+
|
|
13030
|
+
|
|
13031
|
+
class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
13032
|
+
HyperParameterTuningJobName: NotRequired[str]
|
|
13033
|
+
HyperParameterTuningJobArn: NotRequired[str]
|
|
13034
|
+
HyperParameterTuningJobConfig: NotRequired[HyperParameterTuningJobConfigOutputTypeDef]
|
|
13035
|
+
TrainingJobDefinition: NotRequired[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
13036
|
+
TrainingJobDefinitions: NotRequired[List[HyperParameterTrainingJobDefinitionOutputTypeDef]]
|
|
13037
|
+
HyperParameterTuningJobStatus: NotRequired[HyperParameterTuningJobStatusType]
|
|
13038
|
+
CreationTime: NotRequired[datetime]
|
|
13039
|
+
HyperParameterTuningEndTime: NotRequired[datetime]
|
|
13040
|
+
LastModifiedTime: NotRequired[datetime]
|
|
13041
|
+
TrainingJobStatusCounters: NotRequired[TrainingJobStatusCountersTypeDef]
|
|
13042
|
+
ObjectiveStatusCounters: NotRequired[ObjectiveStatusCountersTypeDef]
|
|
13043
|
+
BestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
13044
|
+
OverallBestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
13045
|
+
WarmStartConfig: NotRequired[HyperParameterTuningJobWarmStartConfigOutputTypeDef]
|
|
13046
|
+
FailureReason: NotRequired[str]
|
|
13047
|
+
TuningJobCompletionDetails: NotRequired[HyperParameterTuningJobCompletionDetailsTypeDef]
|
|
13048
|
+
ConsumedResources: NotRequired[HyperParameterTuningJobConsumedResourcesTypeDef]
|
|
13049
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
13050
|
+
|
|
13051
|
+
|
|
13052
|
+
class AlgorithmValidationProfileOutputTypeDef(TypedDict):
|
|
13053
|
+
ProfileName: str
|
|
13054
|
+
TrainingJobDefinition: TrainingJobDefinitionOutputTypeDef
|
|
13055
|
+
TransformJobDefinition: NotRequired[TransformJobDefinitionOutputTypeDef]
|
|
13056
|
+
|
|
13057
|
+
|
|
13058
|
+
class TrialComponentSourceDetailTypeDef(TypedDict):
|
|
13059
|
+
SourceArn: NotRequired[str]
|
|
13060
|
+
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
13061
|
+
ProcessingJob: NotRequired[ProcessingJobTypeDef]
|
|
13062
|
+
TransformJob: NotRequired[TransformJobTypeDef]
|
|
13063
|
+
|
|
13064
|
+
|
|
13065
|
+
ChannelTypeDef = TypedDict(
|
|
13066
|
+
"ChannelTypeDef",
|
|
13067
|
+
{
|
|
13068
|
+
"ChannelName": str,
|
|
13069
|
+
"DataSource": DataSourceUnionTypeDef,
|
|
13070
|
+
"ContentType": NotRequired[str],
|
|
13071
|
+
"CompressionType": NotRequired[CompressionTypeType],
|
|
13072
|
+
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
13073
|
+
"InputMode": NotRequired[TrainingInputModeType],
|
|
13074
|
+
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
13075
|
+
},
|
|
13076
|
+
)
|
|
13077
|
+
|
|
13078
|
+
|
|
13033
13079
|
class CreateModelInputTypeDef(TypedDict):
|
|
13034
13080
|
ModelName: str
|
|
13035
13081
|
PrimaryContainer: NotRequired[ContainerDefinitionUnionTypeDef]
|
|
@@ -13140,18 +13186,6 @@ class MonitoringScheduleConfigTypeDef(TypedDict):
|
|
|
13140
13186
|
MonitoringType: NotRequired[MonitoringTypeType]
|
|
13141
13187
|
|
|
13142
13188
|
|
|
13143
|
-
ChannelUnionTypeDef = Union[ChannelTypeDef, ChannelOutputTypeDef]
|
|
13144
|
-
|
|
13145
|
-
|
|
13146
|
-
class TrainingJobDefinitionTypeDef(TypedDict):
|
|
13147
|
-
TrainingInputMode: TrainingInputModeType
|
|
13148
|
-
InputDataConfig: Sequence[ChannelTypeDef]
|
|
13149
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
13150
|
-
ResourceConfig: ResourceConfigTypeDef
|
|
13151
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
13152
|
-
HyperParameters: NotRequired[Mapping[str, str]]
|
|
13153
|
-
|
|
13154
|
-
|
|
13155
13189
|
class CreateSpaceRequestTypeDef(TypedDict):
|
|
13156
13190
|
DomainId: str
|
|
13157
13191
|
SpaceName: str
|
|
@@ -13169,11 +13203,6 @@ class UpdateSpaceRequestTypeDef(TypedDict):
|
|
|
13169
13203
|
SpaceDisplayName: NotRequired[str]
|
|
13170
13204
|
|
|
13171
13205
|
|
|
13172
|
-
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
13173
|
-
ValidationRole: str
|
|
13174
|
-
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
13175
|
-
|
|
13176
|
-
|
|
13177
13206
|
class ModelPackageValidationSpecificationOutputTypeDef(TypedDict):
|
|
13178
13207
|
ValidationRole: str
|
|
13179
13208
|
ValidationProfiles: List[ModelPackageValidationProfileOutputTypeDef]
|
|
@@ -13184,6 +13213,11 @@ class ModelPackageValidationSpecificationTypeDef(TypedDict):
|
|
|
13184
13213
|
ValidationProfiles: Sequence[ModelPackageValidationProfileTypeDef]
|
|
13185
13214
|
|
|
13186
13215
|
|
|
13216
|
+
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
13217
|
+
ValidationRole: str
|
|
13218
|
+
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
13219
|
+
|
|
13220
|
+
|
|
13187
13221
|
class TrialComponentTypeDef(TypedDict):
|
|
13188
13222
|
TrialComponentName: NotRequired[str]
|
|
13189
13223
|
DisplayName: NotRequired[str]
|
|
@@ -13208,6 +13242,18 @@ class TrialComponentTypeDef(TypedDict):
|
|
|
13208
13242
|
RunName: NotRequired[str]
|
|
13209
13243
|
|
|
13210
13244
|
|
|
13245
|
+
ChannelUnionTypeDef = Union[ChannelTypeDef, ChannelOutputTypeDef]
|
|
13246
|
+
|
|
13247
|
+
|
|
13248
|
+
class TrainingJobDefinitionTypeDef(TypedDict):
|
|
13249
|
+
TrainingInputMode: TrainingInputModeType
|
|
13250
|
+
InputDataConfig: Sequence[ChannelTypeDef]
|
|
13251
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
13252
|
+
ResourceConfig: ResourceConfigTypeDef
|
|
13253
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
13254
|
+
HyperParameters: NotRequired[Mapping[str, str]]
|
|
13255
|
+
|
|
13256
|
+
|
|
13211
13257
|
class BatchDescribeModelPackageOutputTypeDef(TypedDict):
|
|
13212
13258
|
ModelPackageSummaries: Dict[str, BatchDescribeModelPackageSummaryTypeDef]
|
|
13213
13259
|
BatchDescribeModelPackageErrorMap: Dict[str, BatchDescribeModelPackageErrorTypeDef]
|
|
@@ -13268,76 +13314,6 @@ MonitoringScheduleConfigUnionTypeDef = Union[
|
|
|
13268
13314
|
]
|
|
13269
13315
|
|
|
13270
13316
|
|
|
13271
|
-
class CreateTrainingJobRequestTypeDef(TypedDict):
|
|
13272
|
-
TrainingJobName: str
|
|
13273
|
-
AlgorithmSpecification: AlgorithmSpecificationUnionTypeDef
|
|
13274
|
-
RoleArn: str
|
|
13275
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
13276
|
-
ResourceConfig: ResourceConfigUnionTypeDef
|
|
13277
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
13278
|
-
HyperParameters: NotRequired[Mapping[str, str]]
|
|
13279
|
-
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
13280
|
-
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
13281
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
13282
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
13283
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
13284
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
13285
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
13286
|
-
DebugHookConfig: NotRequired[DebugHookConfigUnionTypeDef]
|
|
13287
|
-
DebugRuleConfigurations: NotRequired[Sequence[DebugRuleConfigurationUnionTypeDef]]
|
|
13288
|
-
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
13289
|
-
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
13290
|
-
ProfilerConfig: NotRequired[ProfilerConfigUnionTypeDef]
|
|
13291
|
-
ProfilerRuleConfigurations: NotRequired[Sequence[ProfilerRuleConfigurationUnionTypeDef]]
|
|
13292
|
-
Environment: NotRequired[Mapping[str, str]]
|
|
13293
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
13294
|
-
RemoteDebugConfig: NotRequired[RemoteDebugConfigTypeDef]
|
|
13295
|
-
InfraCheckConfig: NotRequired[InfraCheckConfigTypeDef]
|
|
13296
|
-
SessionChainingConfig: NotRequired[SessionChainingConfigTypeDef]
|
|
13297
|
-
|
|
13298
|
-
|
|
13299
|
-
class HyperParameterTrainingJobDefinitionTypeDef(TypedDict):
|
|
13300
|
-
AlgorithmSpecification: HyperParameterAlgorithmSpecificationUnionTypeDef
|
|
13301
|
-
RoleArn: str
|
|
13302
|
-
OutputDataConfig: OutputDataConfigTypeDef
|
|
13303
|
-
StoppingCondition: StoppingConditionTypeDef
|
|
13304
|
-
DefinitionName: NotRequired[str]
|
|
13305
|
-
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
13306
|
-
HyperParameterRanges: NotRequired[ParameterRangesUnionTypeDef]
|
|
13307
|
-
StaticHyperParameters: NotRequired[Mapping[str, str]]
|
|
13308
|
-
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
13309
|
-
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
13310
|
-
ResourceConfig: NotRequired[ResourceConfigUnionTypeDef]
|
|
13311
|
-
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigUnionTypeDef]
|
|
13312
|
-
EnableNetworkIsolation: NotRequired[bool]
|
|
13313
|
-
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
13314
|
-
EnableManagedSpotTraining: NotRequired[bool]
|
|
13315
|
-
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
13316
|
-
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
13317
|
-
Environment: NotRequired[Mapping[str, str]]
|
|
13318
|
-
|
|
13319
|
-
|
|
13320
|
-
class AlgorithmValidationProfileTypeDef(TypedDict):
|
|
13321
|
-
ProfileName: str
|
|
13322
|
-
TrainingJobDefinition: TrainingJobDefinitionTypeDef
|
|
13323
|
-
TransformJobDefinition: NotRequired[TransformJobDefinitionTypeDef]
|
|
13324
|
-
|
|
13325
|
-
|
|
13326
|
-
class DescribeAlgorithmOutputTypeDef(TypedDict):
|
|
13327
|
-
AlgorithmName: str
|
|
13328
|
-
AlgorithmArn: str
|
|
13329
|
-
AlgorithmDescription: str
|
|
13330
|
-
CreationTime: datetime
|
|
13331
|
-
TrainingSpecification: TrainingSpecificationOutputTypeDef
|
|
13332
|
-
InferenceSpecification: InferenceSpecificationOutputTypeDef
|
|
13333
|
-
ValidationSpecification: AlgorithmValidationSpecificationOutputTypeDef
|
|
13334
|
-
AlgorithmStatus: AlgorithmStatusType
|
|
13335
|
-
AlgorithmStatusDetails: AlgorithmStatusDetailsTypeDef
|
|
13336
|
-
ProductId: str
|
|
13337
|
-
CertifyForMarketplace: bool
|
|
13338
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
13339
|
-
|
|
13340
|
-
|
|
13341
13317
|
class DescribeModelPackageOutputTypeDef(TypedDict):
|
|
13342
13318
|
ModelPackageName: str
|
|
13343
13319
|
ModelPackageGroupName: str
|
|
@@ -13413,6 +13389,76 @@ ModelPackageValidationSpecificationUnionTypeDef = Union[
|
|
|
13413
13389
|
]
|
|
13414
13390
|
|
|
13415
13391
|
|
|
13392
|
+
class DescribeAlgorithmOutputTypeDef(TypedDict):
|
|
13393
|
+
AlgorithmName: str
|
|
13394
|
+
AlgorithmArn: str
|
|
13395
|
+
AlgorithmDescription: str
|
|
13396
|
+
CreationTime: datetime
|
|
13397
|
+
TrainingSpecification: TrainingSpecificationOutputTypeDef
|
|
13398
|
+
InferenceSpecification: InferenceSpecificationOutputTypeDef
|
|
13399
|
+
ValidationSpecification: AlgorithmValidationSpecificationOutputTypeDef
|
|
13400
|
+
AlgorithmStatus: AlgorithmStatusType
|
|
13401
|
+
AlgorithmStatusDetails: AlgorithmStatusDetailsTypeDef
|
|
13402
|
+
ProductId: str
|
|
13403
|
+
CertifyForMarketplace: bool
|
|
13404
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
13405
|
+
|
|
13406
|
+
|
|
13407
|
+
class CreateTrainingJobRequestTypeDef(TypedDict):
|
|
13408
|
+
TrainingJobName: str
|
|
13409
|
+
AlgorithmSpecification: AlgorithmSpecificationUnionTypeDef
|
|
13410
|
+
RoleArn: str
|
|
13411
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
13412
|
+
ResourceConfig: ResourceConfigUnionTypeDef
|
|
13413
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
13414
|
+
HyperParameters: NotRequired[Mapping[str, str]]
|
|
13415
|
+
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
13416
|
+
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
13417
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
13418
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
13419
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
13420
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
13421
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
13422
|
+
DebugHookConfig: NotRequired[DebugHookConfigUnionTypeDef]
|
|
13423
|
+
DebugRuleConfigurations: NotRequired[Sequence[DebugRuleConfigurationUnionTypeDef]]
|
|
13424
|
+
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
13425
|
+
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
13426
|
+
ProfilerConfig: NotRequired[ProfilerConfigUnionTypeDef]
|
|
13427
|
+
ProfilerRuleConfigurations: NotRequired[Sequence[ProfilerRuleConfigurationUnionTypeDef]]
|
|
13428
|
+
Environment: NotRequired[Mapping[str, str]]
|
|
13429
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
13430
|
+
RemoteDebugConfig: NotRequired[RemoteDebugConfigTypeDef]
|
|
13431
|
+
InfraCheckConfig: NotRequired[InfraCheckConfigTypeDef]
|
|
13432
|
+
SessionChainingConfig: NotRequired[SessionChainingConfigTypeDef]
|
|
13433
|
+
|
|
13434
|
+
|
|
13435
|
+
class HyperParameterTrainingJobDefinitionTypeDef(TypedDict):
|
|
13436
|
+
AlgorithmSpecification: HyperParameterAlgorithmSpecificationUnionTypeDef
|
|
13437
|
+
RoleArn: str
|
|
13438
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
13439
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
13440
|
+
DefinitionName: NotRequired[str]
|
|
13441
|
+
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
13442
|
+
HyperParameterRanges: NotRequired[ParameterRangesUnionTypeDef]
|
|
13443
|
+
StaticHyperParameters: NotRequired[Mapping[str, str]]
|
|
13444
|
+
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
13445
|
+
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
13446
|
+
ResourceConfig: NotRequired[ResourceConfigUnionTypeDef]
|
|
13447
|
+
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigUnionTypeDef]
|
|
13448
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
13449
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
13450
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
13451
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
13452
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
13453
|
+
Environment: NotRequired[Mapping[str, str]]
|
|
13454
|
+
|
|
13455
|
+
|
|
13456
|
+
class AlgorithmValidationProfileTypeDef(TypedDict):
|
|
13457
|
+
ProfileName: str
|
|
13458
|
+
TrainingJobDefinition: TrainingJobDefinitionTypeDef
|
|
13459
|
+
TransformJobDefinition: NotRequired[TransformJobDefinitionTypeDef]
|
|
13460
|
+
|
|
13461
|
+
|
|
13416
13462
|
class UpdateModelPackageInputTypeDef(TypedDict):
|
|
13417
13463
|
ModelPackageArn: str
|
|
13418
13464
|
ModelApprovalStatus: NotRequired[ModelApprovalStatusType]
|
|
@@ -13463,16 +13509,6 @@ class UpdateMonitoringScheduleRequestTypeDef(TypedDict):
|
|
|
13463
13509
|
MonitoringScheduleConfig: MonitoringScheduleConfigUnionTypeDef
|
|
13464
13510
|
|
|
13465
13511
|
|
|
13466
|
-
HyperParameterTrainingJobDefinitionUnionTypeDef = Union[
|
|
13467
|
-
HyperParameterTrainingJobDefinitionTypeDef, HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
13468
|
-
]
|
|
13469
|
-
|
|
13470
|
-
|
|
13471
|
-
class AlgorithmValidationSpecificationTypeDef(TypedDict):
|
|
13472
|
-
ValidationRole: str
|
|
13473
|
-
ValidationProfiles: Sequence[AlgorithmValidationProfileTypeDef]
|
|
13474
|
-
|
|
13475
|
-
|
|
13476
13512
|
class CreateModelPackageInputTypeDef(TypedDict):
|
|
13477
13513
|
ModelPackageName: NotRequired[str]
|
|
13478
13514
|
ModelPackageGroupName: NotRequired[str]
|
|
@@ -13501,6 +13537,16 @@ class CreateModelPackageInputTypeDef(TypedDict):
|
|
|
13501
13537
|
ModelLifeCycle: NotRequired[ModelLifeCycleTypeDef]
|
|
13502
13538
|
|
|
13503
13539
|
|
|
13540
|
+
HyperParameterTrainingJobDefinitionUnionTypeDef = Union[
|
|
13541
|
+
HyperParameterTrainingJobDefinitionTypeDef, HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
13542
|
+
]
|
|
13543
|
+
|
|
13544
|
+
|
|
13545
|
+
class AlgorithmValidationSpecificationTypeDef(TypedDict):
|
|
13546
|
+
ValidationRole: str
|
|
13547
|
+
ValidationProfiles: Sequence[AlgorithmValidationProfileTypeDef]
|
|
13548
|
+
|
|
13549
|
+
|
|
13504
13550
|
class SearchRecordTypeDef(TypedDict):
|
|
13505
13551
|
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
13506
13552
|
Experiment: NotRequired[ExperimentTypeDef]
|