mypy-boto3-sagemaker 1.37.2__py3-none-any.whl → 1.37.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mypy-boto3-sagemaker might be problematic. Click here for more details.
- mypy_boto3_sagemaker/__main__.py +4 -4
- mypy_boto3_sagemaker/client.py +26 -0
- mypy_boto3_sagemaker/client.pyi +26 -0
- mypy_boto3_sagemaker/literals.py +1 -1
- mypy_boto3_sagemaker/literals.pyi +1 -1
- mypy_boto3_sagemaker/type_defs.py +384 -337
- mypy_boto3_sagemaker/type_defs.pyi +358 -316
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.37.2.dist-info → mypy_boto3_sagemaker-1.37.5.dist-info}/METADATA +5 -5
- mypy_boto3_sagemaker-1.37.5.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.37.2.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.37.2.dist-info → mypy_boto3_sagemaker-1.37.5.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.37.2.dist-info → mypy_boto3_sagemaker-1.37.5.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.37.2.dist-info → mypy_boto3_sagemaker-1.37.5.dist-info}/top_level.txt +0 -0
|
@@ -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]
|
|
@@ -5448,6 +5452,7 @@ class CreateDataQualityJobDefinitionResponseTypeDef(TypedDict):
|
|
|
5448
5452
|
|
|
5449
5453
|
class CreateDomainResponseTypeDef(TypedDict):
|
|
5450
5454
|
DomainArn: str
|
|
5455
|
+
DomainId: str
|
|
5451
5456
|
Url: str
|
|
5452
5457
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5453
5458
|
|
|
@@ -5964,6 +5969,18 @@ class UpdateFeatureGroupResponseTypeDef(TypedDict):
|
|
|
5964
5969
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5965
5970
|
|
|
5966
5971
|
|
|
5972
|
+
class UpdateHubContentReferenceResponseTypeDef(TypedDict):
|
|
5973
|
+
HubArn: str
|
|
5974
|
+
HubContentArn: str
|
|
5975
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5976
|
+
|
|
5977
|
+
|
|
5978
|
+
class UpdateHubContentResponseTypeDef(TypedDict):
|
|
5979
|
+
HubArn: str
|
|
5980
|
+
HubContentArn: str
|
|
5981
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5982
|
+
|
|
5983
|
+
|
|
5967
5984
|
class UpdateHubResponseTypeDef(TypedDict):
|
|
5968
5985
|
HubArn: str
|
|
5969
5986
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -6138,6 +6155,7 @@ class ImportHubContentRequestTypeDef(TypedDict):
|
|
|
6138
6155
|
HubContentDisplayName: NotRequired[str]
|
|
6139
6156
|
HubContentDescription: NotRequired[str]
|
|
6140
6157
|
HubContentMarkdown: NotRequired[str]
|
|
6158
|
+
SupportStatus: NotRequired[HubContentSupportStatusType]
|
|
6141
6159
|
HubContentSearchKeywords: NotRequired[Sequence[str]]
|
|
6142
6160
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
6143
6161
|
|
|
@@ -7756,11 +7774,6 @@ class MonitoringBaselineConfigTypeDef(TypedDict):
|
|
|
7756
7774
|
StatisticsResource: NotRequired[MonitoringStatisticsResourceTypeDef]
|
|
7757
7775
|
|
|
7758
7776
|
|
|
7759
|
-
class DataSourceOutputTypeDef(TypedDict):
|
|
7760
|
-
S3DataSource: NotRequired[S3DataSourceOutputTypeDef]
|
|
7761
|
-
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
7762
|
-
|
|
7763
|
-
|
|
7764
7777
|
class DatasetDefinitionTypeDef(TypedDict):
|
|
7765
7778
|
AthenaDatasetDefinition: NotRequired[AthenaDatasetDefinitionTypeDef]
|
|
7766
7779
|
RedshiftDatasetDefinition: NotRequired[RedshiftDatasetDefinitionTypeDef]
|
|
@@ -7972,6 +7985,7 @@ class DescribeHubContentResponseTypeDef(TypedDict):
|
|
|
7972
7985
|
HubContentStatus: HubContentStatusType
|
|
7973
7986
|
FailureReason: str
|
|
7974
7987
|
CreationTime: datetime
|
|
7988
|
+
LastModifiedTime: datetime
|
|
7975
7989
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7976
7990
|
|
|
7977
7991
|
|
|
@@ -9446,6 +9460,32 @@ class MetricSpecificationTypeDef(TypedDict):
|
|
|
9446
9460
|
Customized: NotRequired[CustomizedMetricSpecificationTypeDef]
|
|
9447
9461
|
|
|
9448
9462
|
|
|
9463
|
+
S3DataSourceOutputTypeDef = TypedDict(
|
|
9464
|
+
"S3DataSourceOutputTypeDef",
|
|
9465
|
+
{
|
|
9466
|
+
"S3DataType": S3DataTypeType,
|
|
9467
|
+
"S3Uri": str,
|
|
9468
|
+
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
9469
|
+
"AttributeNames": NotRequired[List[str]],
|
|
9470
|
+
"InstanceGroupNames": NotRequired[List[str]],
|
|
9471
|
+
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
9472
|
+
"HubAccessConfig": NotRequired[HubAccessConfigTypeDef],
|
|
9473
|
+
},
|
|
9474
|
+
)
|
|
9475
|
+
S3DataSourceTypeDef = TypedDict(
|
|
9476
|
+
"S3DataSourceTypeDef",
|
|
9477
|
+
{
|
|
9478
|
+
"S3DataType": S3DataTypeType,
|
|
9479
|
+
"S3Uri": str,
|
|
9480
|
+
"S3DataDistributionType": NotRequired[S3DataDistributionType],
|
|
9481
|
+
"AttributeNames": NotRequired[Sequence[str]],
|
|
9482
|
+
"InstanceGroupNames": NotRequired[Sequence[str]],
|
|
9483
|
+
"ModelAccessConfig": NotRequired[ModelAccessConfigTypeDef],
|
|
9484
|
+
"HubAccessConfig": NotRequired[HubAccessConfigTypeDef],
|
|
9485
|
+
},
|
|
9486
|
+
)
|
|
9487
|
+
|
|
9488
|
+
|
|
9449
9489
|
class S3ModelDataSourceTypeDef(TypedDict):
|
|
9450
9490
|
S3Uri: str
|
|
9451
9491
|
S3DataType: S3ModelDataTypeType
|
|
@@ -9765,9 +9805,6 @@ class TrainingPlanOfferingTypeDef(TypedDict):
|
|
|
9765
9805
|
ReservedCapacityOfferings: NotRequired[List[ReservedCapacityOfferingTypeDef]]
|
|
9766
9806
|
|
|
9767
9807
|
|
|
9768
|
-
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
9769
|
-
|
|
9770
|
-
|
|
9771
9808
|
class SelectiveExecutionConfigOutputTypeDef(TypedDict):
|
|
9772
9809
|
SelectedSteps: List[SelectedStepTypeDef]
|
|
9773
9810
|
SourcePipelineExecutionArn: NotRequired[str]
|
|
@@ -10235,20 +10272,6 @@ class QueryLineageRequestTypeDef(TypedDict):
|
|
|
10235
10272
|
NextToken: NotRequired[str]
|
|
10236
10273
|
|
|
10237
10274
|
|
|
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
10275
|
class ProcessingInputTypeDef(TypedDict):
|
|
10253
10276
|
InputName: str
|
|
10254
10277
|
AppManaged: NotRequired[bool]
|
|
@@ -10817,6 +10840,14 @@ class TargetTrackingScalingPolicyConfigurationTypeDef(TypedDict):
|
|
|
10817
10840
|
TargetValue: NotRequired[float]
|
|
10818
10841
|
|
|
10819
10842
|
|
|
10843
|
+
class DataSourceOutputTypeDef(TypedDict):
|
|
10844
|
+
S3DataSource: NotRequired[S3DataSourceOutputTypeDef]
|
|
10845
|
+
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
10846
|
+
|
|
10847
|
+
|
|
10848
|
+
S3DataSourceUnionTypeDef = Union[S3DataSourceTypeDef, S3DataSourceOutputTypeDef]
|
|
10849
|
+
|
|
10850
|
+
|
|
10820
10851
|
class AdditionalModelDataSourceTypeDef(TypedDict):
|
|
10821
10852
|
ChannelName: str
|
|
10822
10853
|
S3DataSource: S3ModelDataSourceTypeDef
|
|
@@ -11141,11 +11172,6 @@ class SearchTrainingPlanOfferingsResponseTypeDef(TypedDict):
|
|
|
11141
11172
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
11142
11173
|
|
|
11143
11174
|
|
|
11144
|
-
class DataSourceTypeDef(TypedDict):
|
|
11145
|
-
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
11146
|
-
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
11147
|
-
|
|
11148
|
-
|
|
11149
11175
|
class DescribePipelineExecutionResponseTypeDef(TypedDict):
|
|
11150
11176
|
PipelineArn: str
|
|
11151
11177
|
PipelineExecutionArn: str
|
|
@@ -11603,36 +11629,6 @@ class UpdateComputeQuotaRequestTypeDef(TypedDict):
|
|
|
11603
11629
|
Description: NotRequired[str]
|
|
11604
11630
|
|
|
11605
11631
|
|
|
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
11632
|
class CreateEdgeDeploymentPlanRequestTypeDef(TypedDict):
|
|
11637
11633
|
EdgeDeploymentPlanName: str
|
|
11638
11634
|
ModelConfigs: Sequence[EdgeDeploymentModelConfigTypeDef]
|
|
@@ -11819,6 +11815,25 @@ class ScalingPolicyTypeDef(TypedDict):
|
|
|
11819
11815
|
TargetTracking: NotRequired[TargetTrackingScalingPolicyConfigurationTypeDef]
|
|
11820
11816
|
|
|
11821
11817
|
|
|
11818
|
+
ChannelOutputTypeDef = TypedDict(
|
|
11819
|
+
"ChannelOutputTypeDef",
|
|
11820
|
+
{
|
|
11821
|
+
"ChannelName": str,
|
|
11822
|
+
"DataSource": DataSourceOutputTypeDef,
|
|
11823
|
+
"ContentType": NotRequired[str],
|
|
11824
|
+
"CompressionType": NotRequired[CompressionTypeType],
|
|
11825
|
+
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
11826
|
+
"InputMode": NotRequired[TrainingInputModeType],
|
|
11827
|
+
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
11828
|
+
},
|
|
11829
|
+
)
|
|
11830
|
+
|
|
11831
|
+
|
|
11832
|
+
class DataSourceTypeDef(TypedDict):
|
|
11833
|
+
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
11834
|
+
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
11835
|
+
|
|
11836
|
+
|
|
11822
11837
|
class ContainerDefinitionOutputTypeDef(TypedDict):
|
|
11823
11838
|
ContainerHostname: NotRequired[str]
|
|
11824
11839
|
Image: NotRequired[str]
|
|
@@ -12125,7 +12140,6 @@ class DescribeLabelingJobResponseTypeDef(TypedDict):
|
|
|
12125
12140
|
|
|
12126
12141
|
|
|
12127
12142
|
HumanTaskConfigUnionTypeDef = Union[HumanTaskConfigTypeDef, HumanTaskConfigOutputTypeDef]
|
|
12128
|
-
DataSourceUnionTypeDef = Union[DataSourceTypeDef, DataSourceOutputTypeDef]
|
|
12129
12143
|
|
|
12130
12144
|
|
|
12131
12145
|
class StartPipelineExecutionRequestTypeDef(TypedDict):
|
|
@@ -12185,94 +12199,6 @@ class SpaceSettingsTypeDef(TypedDict):
|
|
|
12185
12199
|
CustomFileSystems: NotRequired[Sequence[CustomFileSystemTypeDef]]
|
|
12186
12200
|
|
|
12187
12201
|
|
|
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
12202
|
AlgorithmSpecificationUnionTypeDef = Union[
|
|
12277
12203
|
AlgorithmSpecificationTypeDef, AlgorithmSpecificationOutputTypeDef
|
|
12278
12204
|
]
|
|
@@ -12530,49 +12456,6 @@ class DescribeEndpointOutputTypeDef(TypedDict):
|
|
|
12530
12456
|
ExplainerConfigUnionTypeDef = Union[ExplainerConfigTypeDef, ExplainerConfigOutputTypeDef]
|
|
12531
12457
|
|
|
12532
12458
|
|
|
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
12459
|
class ListSpacesResponseTypeDef(TypedDict):
|
|
12577
12460
|
Spaces: List[SpaceDetailsTypeDef]
|
|
12578
12461
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -12627,6 +12510,127 @@ class DynamicScalingConfigurationTypeDef(TypedDict):
|
|
|
12627
12510
|
ScalingPolicies: NotRequired[List[ScalingPolicyTypeDef]]
|
|
12628
12511
|
|
|
12629
12512
|
|
|
12513
|
+
class DescribeTrainingJobResponseTypeDef(TypedDict):
|
|
12514
|
+
TrainingJobName: str
|
|
12515
|
+
TrainingJobArn: str
|
|
12516
|
+
TuningJobArn: str
|
|
12517
|
+
LabelingJobArn: str
|
|
12518
|
+
AutoMLJobArn: str
|
|
12519
|
+
ModelArtifacts: ModelArtifactsTypeDef
|
|
12520
|
+
TrainingJobStatus: TrainingJobStatusType
|
|
12521
|
+
SecondaryStatus: SecondaryStatusType
|
|
12522
|
+
FailureReason: str
|
|
12523
|
+
HyperParameters: Dict[str, str]
|
|
12524
|
+
AlgorithmSpecification: AlgorithmSpecificationOutputTypeDef
|
|
12525
|
+
RoleArn: str
|
|
12526
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
12527
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
12528
|
+
ResourceConfig: ResourceConfigOutputTypeDef
|
|
12529
|
+
WarmPoolStatus: WarmPoolStatusTypeDef
|
|
12530
|
+
VpcConfig: VpcConfigOutputTypeDef
|
|
12531
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
12532
|
+
CreationTime: datetime
|
|
12533
|
+
TrainingStartTime: datetime
|
|
12534
|
+
TrainingEndTime: datetime
|
|
12535
|
+
LastModifiedTime: datetime
|
|
12536
|
+
SecondaryStatusTransitions: List[SecondaryStatusTransitionTypeDef]
|
|
12537
|
+
FinalMetricDataList: List[MetricDataTypeDef]
|
|
12538
|
+
EnableNetworkIsolation: bool
|
|
12539
|
+
EnableInterContainerTrafficEncryption: bool
|
|
12540
|
+
EnableManagedSpotTraining: bool
|
|
12541
|
+
CheckpointConfig: CheckpointConfigTypeDef
|
|
12542
|
+
TrainingTimeInSeconds: int
|
|
12543
|
+
BillableTimeInSeconds: int
|
|
12544
|
+
DebugHookConfig: DebugHookConfigOutputTypeDef
|
|
12545
|
+
ExperimentConfig: ExperimentConfigTypeDef
|
|
12546
|
+
DebugRuleConfigurations: List[DebugRuleConfigurationOutputTypeDef]
|
|
12547
|
+
TensorBoardOutputConfig: TensorBoardOutputConfigTypeDef
|
|
12548
|
+
DebugRuleEvaluationStatuses: List[DebugRuleEvaluationStatusTypeDef]
|
|
12549
|
+
ProfilerConfig: ProfilerConfigOutputTypeDef
|
|
12550
|
+
ProfilerRuleConfigurations: List[ProfilerRuleConfigurationOutputTypeDef]
|
|
12551
|
+
ProfilerRuleEvaluationStatuses: List[ProfilerRuleEvaluationStatusTypeDef]
|
|
12552
|
+
ProfilingStatus: ProfilingStatusType
|
|
12553
|
+
Environment: Dict[str, str]
|
|
12554
|
+
RetryStrategy: RetryStrategyTypeDef
|
|
12555
|
+
RemoteDebugConfig: RemoteDebugConfigTypeDef
|
|
12556
|
+
InfraCheckConfig: InfraCheckConfigTypeDef
|
|
12557
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
12558
|
+
|
|
12559
|
+
|
|
12560
|
+
class HyperParameterTrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
12561
|
+
AlgorithmSpecification: HyperParameterAlgorithmSpecificationOutputTypeDef
|
|
12562
|
+
RoleArn: str
|
|
12563
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
12564
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
12565
|
+
DefinitionName: NotRequired[str]
|
|
12566
|
+
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
12567
|
+
HyperParameterRanges: NotRequired[ParameterRangesOutputTypeDef]
|
|
12568
|
+
StaticHyperParameters: NotRequired[Dict[str, str]]
|
|
12569
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
12570
|
+
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
12571
|
+
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
12572
|
+
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigOutputTypeDef]
|
|
12573
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
12574
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
12575
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
12576
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
12577
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
12578
|
+
Environment: NotRequired[Dict[str, str]]
|
|
12579
|
+
|
|
12580
|
+
|
|
12581
|
+
class TrainingJobDefinitionOutputTypeDef(TypedDict):
|
|
12582
|
+
TrainingInputMode: TrainingInputModeType
|
|
12583
|
+
InputDataConfig: List[ChannelOutputTypeDef]
|
|
12584
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
12585
|
+
ResourceConfig: ResourceConfigOutputTypeDef
|
|
12586
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
12587
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
12588
|
+
|
|
12589
|
+
|
|
12590
|
+
class TrainingJobTypeDef(TypedDict):
|
|
12591
|
+
TrainingJobName: NotRequired[str]
|
|
12592
|
+
TrainingJobArn: NotRequired[str]
|
|
12593
|
+
TuningJobArn: NotRequired[str]
|
|
12594
|
+
LabelingJobArn: NotRequired[str]
|
|
12595
|
+
AutoMLJobArn: NotRequired[str]
|
|
12596
|
+
ModelArtifacts: NotRequired[ModelArtifactsTypeDef]
|
|
12597
|
+
TrainingJobStatus: NotRequired[TrainingJobStatusType]
|
|
12598
|
+
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
12599
|
+
FailureReason: NotRequired[str]
|
|
12600
|
+
HyperParameters: NotRequired[Dict[str, str]]
|
|
12601
|
+
AlgorithmSpecification: NotRequired[AlgorithmSpecificationOutputTypeDef]
|
|
12602
|
+
RoleArn: NotRequired[str]
|
|
12603
|
+
InputDataConfig: NotRequired[List[ChannelOutputTypeDef]]
|
|
12604
|
+
OutputDataConfig: NotRequired[OutputDataConfigTypeDef]
|
|
12605
|
+
ResourceConfig: NotRequired[ResourceConfigOutputTypeDef]
|
|
12606
|
+
VpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
12607
|
+
StoppingCondition: NotRequired[StoppingConditionTypeDef]
|
|
12608
|
+
CreationTime: NotRequired[datetime]
|
|
12609
|
+
TrainingStartTime: NotRequired[datetime]
|
|
12610
|
+
TrainingEndTime: NotRequired[datetime]
|
|
12611
|
+
LastModifiedTime: NotRequired[datetime]
|
|
12612
|
+
SecondaryStatusTransitions: NotRequired[List[SecondaryStatusTransitionTypeDef]]
|
|
12613
|
+
FinalMetricDataList: NotRequired[List[MetricDataTypeDef]]
|
|
12614
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
12615
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
12616
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
12617
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
12618
|
+
TrainingTimeInSeconds: NotRequired[int]
|
|
12619
|
+
BillableTimeInSeconds: NotRequired[int]
|
|
12620
|
+
DebugHookConfig: NotRequired[DebugHookConfigOutputTypeDef]
|
|
12621
|
+
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
12622
|
+
DebugRuleConfigurations: NotRequired[List[DebugRuleConfigurationOutputTypeDef]]
|
|
12623
|
+
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
12624
|
+
DebugRuleEvaluationStatuses: NotRequired[List[DebugRuleEvaluationStatusTypeDef]]
|
|
12625
|
+
ProfilerConfig: NotRequired[ProfilerConfigOutputTypeDef]
|
|
12626
|
+
Environment: NotRequired[Dict[str, str]]
|
|
12627
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
12628
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
12629
|
+
|
|
12630
|
+
|
|
12631
|
+
DataSourceUnionTypeDef = Union[DataSourceTypeDef, DataSourceOutputTypeDef]
|
|
12632
|
+
|
|
12633
|
+
|
|
12630
12634
|
class DescribeModelOutputTypeDef(TypedDict):
|
|
12631
12635
|
ModelName: str
|
|
12632
12636
|
PrimaryContainer: ContainerDefinitionOutputTypeDef
|
|
@@ -12865,20 +12869,6 @@ class CreateLabelingJobRequestTypeDef(TypedDict):
|
|
|
12865
12869
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
12866
12870
|
|
|
12867
12871
|
|
|
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
12872
|
class DescribeSpaceResponseTypeDef(TypedDict):
|
|
12883
12873
|
DomainId: str
|
|
12884
12874
|
SpaceArn: str
|
|
@@ -12899,12 +12889,6 @@ class DescribeSpaceResponseTypeDef(TypedDict):
|
|
|
12899
12889
|
SpaceSettingsUnionTypeDef = Union[SpaceSettingsTypeDef, SpaceSettingsOutputTypeDef]
|
|
12900
12890
|
|
|
12901
12891
|
|
|
12902
|
-
class AlgorithmValidationProfileOutputTypeDef(TypedDict):
|
|
12903
|
-
ProfileName: str
|
|
12904
|
-
TrainingJobDefinition: TrainingJobDefinitionOutputTypeDef
|
|
12905
|
-
TransformJobDefinition: NotRequired[TransformJobDefinitionOutputTypeDef]
|
|
12906
|
-
|
|
12907
|
-
|
|
12908
12892
|
class ModelPackageValidationProfileOutputTypeDef(TypedDict):
|
|
12909
12893
|
ProfileName: str
|
|
12910
12894
|
TransformJobDefinition: TransformJobDefinitionOutputTypeDef
|
|
@@ -12915,13 +12899,6 @@ class ModelPackageValidationProfileTypeDef(TypedDict):
|
|
|
12915
12899
|
TransformJobDefinition: TransformJobDefinitionTypeDef
|
|
12916
12900
|
|
|
12917
12901
|
|
|
12918
|
-
class TrialComponentSourceDetailTypeDef(TypedDict):
|
|
12919
|
-
SourceArn: NotRequired[str]
|
|
12920
|
-
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
12921
|
-
ProcessingJob: NotRequired[ProcessingJobTypeDef]
|
|
12922
|
-
TransformJob: NotRequired[TransformJobTypeDef]
|
|
12923
|
-
|
|
12924
|
-
|
|
12925
12902
|
class CreateDomainRequestTypeDef(TypedDict):
|
|
12926
12903
|
DomainName: str
|
|
12927
12904
|
AuthMode: AuthModeType
|
|
@@ -13030,6 +13007,76 @@ class GetScalingConfigurationRecommendationResponseTypeDef(TypedDict):
|
|
|
13030
13007
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
13031
13008
|
|
|
13032
13009
|
|
|
13010
|
+
class DescribeHyperParameterTuningJobResponseTypeDef(TypedDict):
|
|
13011
|
+
HyperParameterTuningJobName: str
|
|
13012
|
+
HyperParameterTuningJobArn: str
|
|
13013
|
+
HyperParameterTuningJobConfig: HyperParameterTuningJobConfigOutputTypeDef
|
|
13014
|
+
TrainingJobDefinition: HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
13015
|
+
TrainingJobDefinitions: List[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
13016
|
+
HyperParameterTuningJobStatus: HyperParameterTuningJobStatusType
|
|
13017
|
+
CreationTime: datetime
|
|
13018
|
+
HyperParameterTuningEndTime: datetime
|
|
13019
|
+
LastModifiedTime: datetime
|
|
13020
|
+
TrainingJobStatusCounters: TrainingJobStatusCountersTypeDef
|
|
13021
|
+
ObjectiveStatusCounters: ObjectiveStatusCountersTypeDef
|
|
13022
|
+
BestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
13023
|
+
OverallBestTrainingJob: HyperParameterTrainingJobSummaryTypeDef
|
|
13024
|
+
WarmStartConfig: HyperParameterTuningJobWarmStartConfigOutputTypeDef
|
|
13025
|
+
Autotune: AutotuneTypeDef
|
|
13026
|
+
FailureReason: str
|
|
13027
|
+
TuningJobCompletionDetails: HyperParameterTuningJobCompletionDetailsTypeDef
|
|
13028
|
+
ConsumedResources: HyperParameterTuningJobConsumedResourcesTypeDef
|
|
13029
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
13030
|
+
|
|
13031
|
+
|
|
13032
|
+
class HyperParameterTuningJobSearchEntityTypeDef(TypedDict):
|
|
13033
|
+
HyperParameterTuningJobName: NotRequired[str]
|
|
13034
|
+
HyperParameterTuningJobArn: NotRequired[str]
|
|
13035
|
+
HyperParameterTuningJobConfig: NotRequired[HyperParameterTuningJobConfigOutputTypeDef]
|
|
13036
|
+
TrainingJobDefinition: NotRequired[HyperParameterTrainingJobDefinitionOutputTypeDef]
|
|
13037
|
+
TrainingJobDefinitions: NotRequired[List[HyperParameterTrainingJobDefinitionOutputTypeDef]]
|
|
13038
|
+
HyperParameterTuningJobStatus: NotRequired[HyperParameterTuningJobStatusType]
|
|
13039
|
+
CreationTime: NotRequired[datetime]
|
|
13040
|
+
HyperParameterTuningEndTime: NotRequired[datetime]
|
|
13041
|
+
LastModifiedTime: NotRequired[datetime]
|
|
13042
|
+
TrainingJobStatusCounters: NotRequired[TrainingJobStatusCountersTypeDef]
|
|
13043
|
+
ObjectiveStatusCounters: NotRequired[ObjectiveStatusCountersTypeDef]
|
|
13044
|
+
BestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
13045
|
+
OverallBestTrainingJob: NotRequired[HyperParameterTrainingJobSummaryTypeDef]
|
|
13046
|
+
WarmStartConfig: NotRequired[HyperParameterTuningJobWarmStartConfigOutputTypeDef]
|
|
13047
|
+
FailureReason: NotRequired[str]
|
|
13048
|
+
TuningJobCompletionDetails: NotRequired[HyperParameterTuningJobCompletionDetailsTypeDef]
|
|
13049
|
+
ConsumedResources: NotRequired[HyperParameterTuningJobConsumedResourcesTypeDef]
|
|
13050
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
13051
|
+
|
|
13052
|
+
|
|
13053
|
+
class AlgorithmValidationProfileOutputTypeDef(TypedDict):
|
|
13054
|
+
ProfileName: str
|
|
13055
|
+
TrainingJobDefinition: TrainingJobDefinitionOutputTypeDef
|
|
13056
|
+
TransformJobDefinition: NotRequired[TransformJobDefinitionOutputTypeDef]
|
|
13057
|
+
|
|
13058
|
+
|
|
13059
|
+
class TrialComponentSourceDetailTypeDef(TypedDict):
|
|
13060
|
+
SourceArn: NotRequired[str]
|
|
13061
|
+
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
13062
|
+
ProcessingJob: NotRequired[ProcessingJobTypeDef]
|
|
13063
|
+
TransformJob: NotRequired[TransformJobTypeDef]
|
|
13064
|
+
|
|
13065
|
+
|
|
13066
|
+
ChannelTypeDef = TypedDict(
|
|
13067
|
+
"ChannelTypeDef",
|
|
13068
|
+
{
|
|
13069
|
+
"ChannelName": str,
|
|
13070
|
+
"DataSource": DataSourceUnionTypeDef,
|
|
13071
|
+
"ContentType": NotRequired[str],
|
|
13072
|
+
"CompressionType": NotRequired[CompressionTypeType],
|
|
13073
|
+
"RecordWrapperType": NotRequired[RecordWrapperType],
|
|
13074
|
+
"InputMode": NotRequired[TrainingInputModeType],
|
|
13075
|
+
"ShuffleConfig": NotRequired[ShuffleConfigTypeDef],
|
|
13076
|
+
},
|
|
13077
|
+
)
|
|
13078
|
+
|
|
13079
|
+
|
|
13033
13080
|
class CreateModelInputTypeDef(TypedDict):
|
|
13034
13081
|
ModelName: str
|
|
13035
13082
|
PrimaryContainer: NotRequired[ContainerDefinitionUnionTypeDef]
|
|
@@ -13140,18 +13187,6 @@ class MonitoringScheduleConfigTypeDef(TypedDict):
|
|
|
13140
13187
|
MonitoringType: NotRequired[MonitoringTypeType]
|
|
13141
13188
|
|
|
13142
13189
|
|
|
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
13190
|
class CreateSpaceRequestTypeDef(TypedDict):
|
|
13156
13191
|
DomainId: str
|
|
13157
13192
|
SpaceName: str
|
|
@@ -13169,11 +13204,6 @@ class UpdateSpaceRequestTypeDef(TypedDict):
|
|
|
13169
13204
|
SpaceDisplayName: NotRequired[str]
|
|
13170
13205
|
|
|
13171
13206
|
|
|
13172
|
-
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
13173
|
-
ValidationRole: str
|
|
13174
|
-
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
13175
|
-
|
|
13176
|
-
|
|
13177
13207
|
class ModelPackageValidationSpecificationOutputTypeDef(TypedDict):
|
|
13178
13208
|
ValidationRole: str
|
|
13179
13209
|
ValidationProfiles: List[ModelPackageValidationProfileOutputTypeDef]
|
|
@@ -13184,6 +13214,11 @@ class ModelPackageValidationSpecificationTypeDef(TypedDict):
|
|
|
13184
13214
|
ValidationProfiles: Sequence[ModelPackageValidationProfileTypeDef]
|
|
13185
13215
|
|
|
13186
13216
|
|
|
13217
|
+
class AlgorithmValidationSpecificationOutputTypeDef(TypedDict):
|
|
13218
|
+
ValidationRole: str
|
|
13219
|
+
ValidationProfiles: List[AlgorithmValidationProfileOutputTypeDef]
|
|
13220
|
+
|
|
13221
|
+
|
|
13187
13222
|
class TrialComponentTypeDef(TypedDict):
|
|
13188
13223
|
TrialComponentName: NotRequired[str]
|
|
13189
13224
|
DisplayName: NotRequired[str]
|
|
@@ -13208,6 +13243,18 @@ class TrialComponentTypeDef(TypedDict):
|
|
|
13208
13243
|
RunName: NotRequired[str]
|
|
13209
13244
|
|
|
13210
13245
|
|
|
13246
|
+
ChannelUnionTypeDef = Union[ChannelTypeDef, ChannelOutputTypeDef]
|
|
13247
|
+
|
|
13248
|
+
|
|
13249
|
+
class TrainingJobDefinitionTypeDef(TypedDict):
|
|
13250
|
+
TrainingInputMode: TrainingInputModeType
|
|
13251
|
+
InputDataConfig: Sequence[ChannelTypeDef]
|
|
13252
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
13253
|
+
ResourceConfig: ResourceConfigTypeDef
|
|
13254
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
13255
|
+
HyperParameters: NotRequired[Mapping[str, str]]
|
|
13256
|
+
|
|
13257
|
+
|
|
13211
13258
|
class BatchDescribeModelPackageOutputTypeDef(TypedDict):
|
|
13212
13259
|
ModelPackageSummaries: Dict[str, BatchDescribeModelPackageSummaryTypeDef]
|
|
13213
13260
|
BatchDescribeModelPackageErrorMap: Dict[str, BatchDescribeModelPackageErrorTypeDef]
|
|
@@ -13268,76 +13315,6 @@ MonitoringScheduleConfigUnionTypeDef = Union[
|
|
|
13268
13315
|
]
|
|
13269
13316
|
|
|
13270
13317
|
|
|
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
13318
|
class DescribeModelPackageOutputTypeDef(TypedDict):
|
|
13342
13319
|
ModelPackageName: str
|
|
13343
13320
|
ModelPackageGroupName: str
|
|
@@ -13413,6 +13390,76 @@ ModelPackageValidationSpecificationUnionTypeDef = Union[
|
|
|
13413
13390
|
]
|
|
13414
13391
|
|
|
13415
13392
|
|
|
13393
|
+
class DescribeAlgorithmOutputTypeDef(TypedDict):
|
|
13394
|
+
AlgorithmName: str
|
|
13395
|
+
AlgorithmArn: str
|
|
13396
|
+
AlgorithmDescription: str
|
|
13397
|
+
CreationTime: datetime
|
|
13398
|
+
TrainingSpecification: TrainingSpecificationOutputTypeDef
|
|
13399
|
+
InferenceSpecification: InferenceSpecificationOutputTypeDef
|
|
13400
|
+
ValidationSpecification: AlgorithmValidationSpecificationOutputTypeDef
|
|
13401
|
+
AlgorithmStatus: AlgorithmStatusType
|
|
13402
|
+
AlgorithmStatusDetails: AlgorithmStatusDetailsTypeDef
|
|
13403
|
+
ProductId: str
|
|
13404
|
+
CertifyForMarketplace: bool
|
|
13405
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
13406
|
+
|
|
13407
|
+
|
|
13408
|
+
class CreateTrainingJobRequestTypeDef(TypedDict):
|
|
13409
|
+
TrainingJobName: str
|
|
13410
|
+
AlgorithmSpecification: AlgorithmSpecificationUnionTypeDef
|
|
13411
|
+
RoleArn: str
|
|
13412
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
13413
|
+
ResourceConfig: ResourceConfigUnionTypeDef
|
|
13414
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
13415
|
+
HyperParameters: NotRequired[Mapping[str, str]]
|
|
13416
|
+
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
13417
|
+
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
13418
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
13419
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
13420
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
13421
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
13422
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
13423
|
+
DebugHookConfig: NotRequired[DebugHookConfigUnionTypeDef]
|
|
13424
|
+
DebugRuleConfigurations: NotRequired[Sequence[DebugRuleConfigurationUnionTypeDef]]
|
|
13425
|
+
TensorBoardOutputConfig: NotRequired[TensorBoardOutputConfigTypeDef]
|
|
13426
|
+
ExperimentConfig: NotRequired[ExperimentConfigTypeDef]
|
|
13427
|
+
ProfilerConfig: NotRequired[ProfilerConfigUnionTypeDef]
|
|
13428
|
+
ProfilerRuleConfigurations: NotRequired[Sequence[ProfilerRuleConfigurationUnionTypeDef]]
|
|
13429
|
+
Environment: NotRequired[Mapping[str, str]]
|
|
13430
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
13431
|
+
RemoteDebugConfig: NotRequired[RemoteDebugConfigTypeDef]
|
|
13432
|
+
InfraCheckConfig: NotRequired[InfraCheckConfigTypeDef]
|
|
13433
|
+
SessionChainingConfig: NotRequired[SessionChainingConfigTypeDef]
|
|
13434
|
+
|
|
13435
|
+
|
|
13436
|
+
class HyperParameterTrainingJobDefinitionTypeDef(TypedDict):
|
|
13437
|
+
AlgorithmSpecification: HyperParameterAlgorithmSpecificationUnionTypeDef
|
|
13438
|
+
RoleArn: str
|
|
13439
|
+
OutputDataConfig: OutputDataConfigTypeDef
|
|
13440
|
+
StoppingCondition: StoppingConditionTypeDef
|
|
13441
|
+
DefinitionName: NotRequired[str]
|
|
13442
|
+
TuningObjective: NotRequired[HyperParameterTuningJobObjectiveTypeDef]
|
|
13443
|
+
HyperParameterRanges: NotRequired[ParameterRangesUnionTypeDef]
|
|
13444
|
+
StaticHyperParameters: NotRequired[Mapping[str, str]]
|
|
13445
|
+
InputDataConfig: NotRequired[Sequence[ChannelUnionTypeDef]]
|
|
13446
|
+
VpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
13447
|
+
ResourceConfig: NotRequired[ResourceConfigUnionTypeDef]
|
|
13448
|
+
HyperParameterTuningResourceConfig: NotRequired[HyperParameterTuningResourceConfigUnionTypeDef]
|
|
13449
|
+
EnableNetworkIsolation: NotRequired[bool]
|
|
13450
|
+
EnableInterContainerTrafficEncryption: NotRequired[bool]
|
|
13451
|
+
EnableManagedSpotTraining: NotRequired[bool]
|
|
13452
|
+
CheckpointConfig: NotRequired[CheckpointConfigTypeDef]
|
|
13453
|
+
RetryStrategy: NotRequired[RetryStrategyTypeDef]
|
|
13454
|
+
Environment: NotRequired[Mapping[str, str]]
|
|
13455
|
+
|
|
13456
|
+
|
|
13457
|
+
class AlgorithmValidationProfileTypeDef(TypedDict):
|
|
13458
|
+
ProfileName: str
|
|
13459
|
+
TrainingJobDefinition: TrainingJobDefinitionTypeDef
|
|
13460
|
+
TransformJobDefinition: NotRequired[TransformJobDefinitionTypeDef]
|
|
13461
|
+
|
|
13462
|
+
|
|
13416
13463
|
class UpdateModelPackageInputTypeDef(TypedDict):
|
|
13417
13464
|
ModelPackageArn: str
|
|
13418
13465
|
ModelApprovalStatus: NotRequired[ModelApprovalStatusType]
|
|
@@ -13463,16 +13510,6 @@ class UpdateMonitoringScheduleRequestTypeDef(TypedDict):
|
|
|
13463
13510
|
MonitoringScheduleConfig: MonitoringScheduleConfigUnionTypeDef
|
|
13464
13511
|
|
|
13465
13512
|
|
|
13466
|
-
HyperParameterTrainingJobDefinitionUnionTypeDef = Union[
|
|
13467
|
-
HyperParameterTrainingJobDefinitionTypeDef, HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
13468
|
-
]
|
|
13469
|
-
|
|
13470
|
-
|
|
13471
|
-
class AlgorithmValidationSpecificationTypeDef(TypedDict):
|
|
13472
|
-
ValidationRole: str
|
|
13473
|
-
ValidationProfiles: Sequence[AlgorithmValidationProfileTypeDef]
|
|
13474
|
-
|
|
13475
|
-
|
|
13476
13513
|
class CreateModelPackageInputTypeDef(TypedDict):
|
|
13477
13514
|
ModelPackageName: NotRequired[str]
|
|
13478
13515
|
ModelPackageGroupName: NotRequired[str]
|
|
@@ -13501,6 +13538,16 @@ class CreateModelPackageInputTypeDef(TypedDict):
|
|
|
13501
13538
|
ModelLifeCycle: NotRequired[ModelLifeCycleTypeDef]
|
|
13502
13539
|
|
|
13503
13540
|
|
|
13541
|
+
HyperParameterTrainingJobDefinitionUnionTypeDef = Union[
|
|
13542
|
+
HyperParameterTrainingJobDefinitionTypeDef, HyperParameterTrainingJobDefinitionOutputTypeDef
|
|
13543
|
+
]
|
|
13544
|
+
|
|
13545
|
+
|
|
13546
|
+
class AlgorithmValidationSpecificationTypeDef(TypedDict):
|
|
13547
|
+
ValidationRole: str
|
|
13548
|
+
ValidationProfiles: Sequence[AlgorithmValidationProfileTypeDef]
|
|
13549
|
+
|
|
13550
|
+
|
|
13504
13551
|
class SearchRecordTypeDef(TypedDict):
|
|
13505
13552
|
TrainingJob: NotRequired[TrainingJobTypeDef]
|
|
13506
13553
|
Experiment: NotRequired[ExperimentTypeDef]
|