mypy-boto3-sagemaker 1.34.107__py3-none-any.whl → 1.34.119__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.

@@ -10,8 +10,8 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.SageMaker 1.34.107\n"
14
- "Version: 1.34.107\n"
13
+ "Type annotations for boto3.SageMaker 1.34.119\n"
14
+ "Version: 1.34.119\n"
15
15
  "Builder version: 7.24.0\n"
16
16
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker//\n"
17
17
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker\n"
@@ -24,7 +24,7 @@ def print_version() -> None:
24
24
  """
25
25
  Print package version to stdout.
26
26
  """
27
- print("1.34.107")
27
+ print("1.34.119")
28
28
 
29
29
 
30
30
  def main() -> None:
@@ -506,6 +506,8 @@ from .type_defs import (
506
506
  ModelExplainabilityJobInputUnionTypeDef,
507
507
  ModelMetadataSearchExpressionTypeDef,
508
508
  ModelMetricsTypeDef,
509
+ ModelPackageModelCardTypeDef,
510
+ ModelPackageSecurityConfigTypeDef,
509
511
  ModelPackageValidationSpecificationUnionTypeDef,
510
512
  ModelQualityAppSpecificationUnionTypeDef,
511
513
  ModelQualityBaselineConfigTypeDef,
@@ -1423,6 +1425,8 @@ class SageMakerClient(BaseClient):
1423
1425
  ] = ...,
1424
1426
  SkipModelValidation: SkipModelValidationType = ...,
1425
1427
  SourceUri: str = ...,
1428
+ SecurityConfig: ModelPackageSecurityConfigTypeDef = ...,
1429
+ ModelCard: ModelPackageModelCardTypeDef = ...,
1426
1430
  ) -> CreateModelPackageOutputTypeDef:
1427
1431
  """
1428
1432
  Creates a model package that you can use to create SageMaker models or list on
@@ -2342,8 +2346,8 @@ class SageMakerClient(BaseClient):
2342
2346
  self, *, ClusterName: str, NodeId: str
2343
2347
  ) -> DescribeClusterNodeResponseTypeDef:
2344
2348
  """
2345
- Retrieves information of an instance (also called a *node* interchangeably) of
2346
- a SageMaker HyperPod
2349
+ Retrieves information of a node (also called a *instance* interchangeably) of a
2350
+ SageMaker HyperPod
2347
2351
  cluster.
2348
2352
 
2349
2353
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.describe_cluster_node)
@@ -5038,6 +5042,7 @@ class SageMakerClient(BaseClient):
5038
5042
  ] = ...,
5039
5043
  InferenceSpecification: InferenceSpecificationUnionTypeDef = ...,
5040
5044
  SourceUri: str = ...,
5045
+ ModelCard: ModelPackageModelCardTypeDef = ...,
5041
5046
  ) -> UpdateModelPackageOutputTypeDef:
5042
5047
  """
5043
5048
  Updates a versioned model.
@@ -506,6 +506,8 @@ from .type_defs import (
506
506
  ModelExplainabilityJobInputUnionTypeDef,
507
507
  ModelMetadataSearchExpressionTypeDef,
508
508
  ModelMetricsTypeDef,
509
+ ModelPackageModelCardTypeDef,
510
+ ModelPackageSecurityConfigTypeDef,
509
511
  ModelPackageValidationSpecificationUnionTypeDef,
510
512
  ModelQualityAppSpecificationUnionTypeDef,
511
513
  ModelQualityBaselineConfigTypeDef,
@@ -1420,6 +1422,8 @@ class SageMakerClient(BaseClient):
1420
1422
  ] = ...,
1421
1423
  SkipModelValidation: SkipModelValidationType = ...,
1422
1424
  SourceUri: str = ...,
1425
+ SecurityConfig: ModelPackageSecurityConfigTypeDef = ...,
1426
+ ModelCard: ModelPackageModelCardTypeDef = ...,
1423
1427
  ) -> CreateModelPackageOutputTypeDef:
1424
1428
  """
1425
1429
  Creates a model package that you can use to create SageMaker models or list on
@@ -2339,8 +2343,8 @@ class SageMakerClient(BaseClient):
2339
2343
  self, *, ClusterName: str, NodeId: str
2340
2344
  ) -> DescribeClusterNodeResponseTypeDef:
2341
2345
  """
2342
- Retrieves information of an instance (also called a *node* interchangeably) of
2343
- a SageMaker HyperPod
2346
+ Retrieves information of a node (also called a *instance* interchangeably) of a
2347
+ SageMaker HyperPod
2344
2348
  cluster.
2345
2349
 
2346
2350
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.describe_cluster_node)
@@ -5035,6 +5039,7 @@ class SageMakerClient(BaseClient):
5035
5039
  ] = ...,
5036
5040
  InferenceSpecification: InferenceSpecificationUnionTypeDef = ...,
5037
5041
  SourceUri: str = ...,
5042
+ ModelCard: ModelPackageModelCardTypeDef = ...,
5038
5043
  ) -> UpdateModelPackageOutputTypeDef:
5039
5044
  """
5040
5045
  Updates a versioned model.
@@ -563,13 +563,19 @@ AthenaResultCompressionTypeType = Literal["GZIP", "SNAPPY", "ZLIB"]
563
563
  AthenaResultFormatType = Literal["AVRO", "JSON", "ORC", "PARQUET", "TEXTFILE"]
564
564
  AuthModeType = Literal["IAM", "SSO"]
565
565
  AutoMLAlgorithmType = Literal[
566
+ "arima",
566
567
  "catboost",
568
+ "cnn-qr",
569
+ "deepar",
570
+ "ets",
567
571
  "extra-trees",
568
572
  "fastai",
569
573
  "lightgbm",
570
574
  "linear-learner",
571
575
  "mlp",
572
576
  "nn-torch",
577
+ "npts",
578
+ "prophet",
573
579
  "randomforest",
574
580
  "xgboost",
575
581
  ]
@@ -2068,6 +2074,7 @@ ServiceName = Literal[
2068
2074
  "m2",
2069
2075
  "machinelearning",
2070
2076
  "macie2",
2077
+ "mailmanager",
2071
2078
  "managedblockchain",
2072
2079
  "managedblockchain-query",
2073
2080
  "marketplace-agreement",
@@ -2206,6 +2213,7 @@ ServiceName = Literal[
2206
2213
  "support-app",
2207
2214
  "swf",
2208
2215
  "synthetics",
2216
+ "taxsettings",
2209
2217
  "textract",
2210
2218
  "timestream-influxdb",
2211
2219
  "timestream-query",
@@ -563,13 +563,19 @@ AthenaResultCompressionTypeType = Literal["GZIP", "SNAPPY", "ZLIB"]
563
563
  AthenaResultFormatType = Literal["AVRO", "JSON", "ORC", "PARQUET", "TEXTFILE"]
564
564
  AuthModeType = Literal["IAM", "SSO"]
565
565
  AutoMLAlgorithmType = Literal[
566
+ "arima",
566
567
  "catboost",
568
+ "cnn-qr",
569
+ "deepar",
570
+ "ets",
567
571
  "extra-trees",
568
572
  "fastai",
569
573
  "lightgbm",
570
574
  "linear-learner",
571
575
  "mlp",
572
576
  "nn-torch",
577
+ "npts",
578
+ "prophet",
573
579
  "randomforest",
574
580
  "xgboost",
575
581
  ]
@@ -2068,6 +2074,7 @@ ServiceName = Literal[
2068
2074
  "m2",
2069
2075
  "machinelearning",
2070
2076
  "macie2",
2077
+ "mailmanager",
2071
2078
  "managedblockchain",
2072
2079
  "managedblockchain-query",
2073
2080
  "marketplace-agreement",
@@ -2206,6 +2213,7 @@ ServiceName = Literal[
2206
2213
  "support-app",
2207
2214
  "swf",
2208
2215
  "synthetics",
2216
+ "taxsettings",
2209
2217
  "textract",
2210
2218
  "timestream-influxdb",
2211
2219
  "timestream-query",
@@ -363,6 +363,7 @@ __all__ = (
363
363
  "ClarifyShapBaselineConfigTypeDef",
364
364
  "ClarifyTextConfigTypeDef",
365
365
  "ClusterLifeCycleConfigTypeDef",
366
+ "ClusterInstancePlacementTypeDef",
366
367
  "ClusterInstanceStatusDetailsTypeDef",
367
368
  "ClusterSummaryTypeDef",
368
369
  "ContainerConfigExtraOutputTypeDef",
@@ -408,6 +409,8 @@ __all__ = (
408
409
  "ModelCardSecurityConfigTypeDef",
409
410
  "ModelExplainabilityAppSpecificationTypeDef",
410
411
  "InferenceExecutionConfigTypeDef",
412
+ "ModelPackageModelCardTypeDef",
413
+ "ModelPackageSecurityConfigTypeDef",
411
414
  "ModelQualityAppSpecificationTypeDef",
412
415
  "InstanceMetadataServiceConfigurationTypeDef",
413
416
  "NotebookInstanceLifecycleHookTypeDef",
@@ -1392,8 +1395,6 @@ __all__ = (
1392
1395
  "SourceIpConfigUnionTypeDef",
1393
1396
  "TrafficPatternOutputTypeDef",
1394
1397
  "TrafficPatternTypeDef",
1395
- "TimeSeriesForecastingJobConfigOutputTypeDef",
1396
- "TimeSeriesForecastingJobConfigTypeDef",
1397
1398
  "TrainingImageConfigTypeDef",
1398
1399
  "TransformDataSourceTypeDef",
1399
1400
  "WorkforceTypeDef",
@@ -1409,7 +1410,9 @@ __all__ = (
1409
1410
  "AsyncInferenceConfigOutputTypeDef",
1410
1411
  "AsyncInferenceConfigTypeDef",
1411
1412
  "TabularJobConfigOutputTypeDef",
1413
+ "TimeSeriesForecastingJobConfigOutputTypeDef",
1412
1414
  "TabularJobConfigTypeDef",
1415
+ "TimeSeriesForecastingJobConfigTypeDef",
1413
1416
  "AutoMLChannelTypeDef",
1414
1417
  "AutoMLJobChannelTypeDef",
1415
1418
  "ListAutoMLJobsResponseTypeDef",
@@ -2333,6 +2336,13 @@ ClusterLifeCycleConfigTypeDef = TypedDict(
2333
2336
  "OnCreate": str,
2334
2337
  },
2335
2338
  )
2339
+ ClusterInstancePlacementTypeDef = TypedDict(
2340
+ "ClusterInstancePlacementTypeDef",
2341
+ {
2342
+ "AvailabilityZone": NotRequired[str],
2343
+ "AvailabilityZoneId": NotRequired[str],
2344
+ },
2345
+ )
2336
2346
  ClusterInstanceStatusDetailsTypeDef = TypedDict(
2337
2347
  "ClusterInstanceStatusDetailsTypeDef",
2338
2348
  {
@@ -2680,6 +2690,19 @@ InferenceExecutionConfigTypeDef = TypedDict(
2680
2690
  "Mode": InferenceExecutionModeType,
2681
2691
  },
2682
2692
  )
2693
+ ModelPackageModelCardTypeDef = TypedDict(
2694
+ "ModelPackageModelCardTypeDef",
2695
+ {
2696
+ "ModelCardContent": NotRequired[str],
2697
+ "ModelCardStatus": NotRequired[ModelCardStatusType],
2698
+ },
2699
+ )
2700
+ ModelPackageSecurityConfigTypeDef = TypedDict(
2701
+ "ModelPackageSecurityConfigTypeDef",
2702
+ {
2703
+ "KmsKeyId": str,
2704
+ },
2705
+ )
2683
2706
  ModelQualityAppSpecificationTypeDef = TypedDict(
2684
2707
  "ModelQualityAppSpecificationTypeDef",
2685
2708
  {
@@ -7384,6 +7407,9 @@ ClusterNodeDetailsTypeDef = TypedDict(
7384
7407
  "LaunchTime": NotRequired[datetime],
7385
7408
  "LifeCycleConfig": NotRequired[ClusterLifeCycleConfigTypeDef],
7386
7409
  "ThreadsPerCore": NotRequired[int],
7410
+ "PrivatePrimaryIp": NotRequired[str],
7411
+ "PrivateDnsHostname": NotRequired[str],
7412
+ "Placement": NotRequired[ClusterInstancePlacementTypeDef],
7387
7413
  },
7388
7414
  )
7389
7415
  ClusterNodeSummaryTypeDef = TypedDict(
@@ -11208,32 +11234,6 @@ TrafficPatternTypeDef = TypedDict(
11208
11234
  "Stairs": NotRequired[StairsTypeDef],
11209
11235
  },
11210
11236
  )
11211
- TimeSeriesForecastingJobConfigOutputTypeDef = TypedDict(
11212
- "TimeSeriesForecastingJobConfigOutputTypeDef",
11213
- {
11214
- "ForecastFrequency": str,
11215
- "ForecastHorizon": int,
11216
- "TimeSeriesConfig": TimeSeriesConfigOutputTypeDef,
11217
- "FeatureSpecificationS3Uri": NotRequired[str],
11218
- "CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
11219
- "ForecastQuantiles": NotRequired[List[str]],
11220
- "Transformations": NotRequired[TimeSeriesTransformationsOutputTypeDef],
11221
- "HolidayConfig": NotRequired[List[HolidayConfigAttributesTypeDef]],
11222
- },
11223
- )
11224
- TimeSeriesForecastingJobConfigTypeDef = TypedDict(
11225
- "TimeSeriesForecastingJobConfigTypeDef",
11226
- {
11227
- "ForecastFrequency": str,
11228
- "ForecastHorizon": int,
11229
- "TimeSeriesConfig": TimeSeriesConfigTypeDef,
11230
- "FeatureSpecificationS3Uri": NotRequired[str],
11231
- "CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
11232
- "ForecastQuantiles": NotRequired[Sequence[str]],
11233
- "Transformations": NotRequired[TimeSeriesTransformationsTypeDef],
11234
- "HolidayConfig": NotRequired[Sequence[HolidayConfigAttributesTypeDef]],
11235
- },
11236
- )
11237
11237
  TrainingImageConfigTypeDef = TypedDict(
11238
11238
  "TrainingImageConfigTypeDef",
11239
11239
  {
@@ -11365,6 +11365,20 @@ TabularJobConfigOutputTypeDef = TypedDict(
11365
11365
  "SampleWeightAttributeName": NotRequired[str],
11366
11366
  },
11367
11367
  )
11368
+ TimeSeriesForecastingJobConfigOutputTypeDef = TypedDict(
11369
+ "TimeSeriesForecastingJobConfigOutputTypeDef",
11370
+ {
11371
+ "ForecastFrequency": str,
11372
+ "ForecastHorizon": int,
11373
+ "TimeSeriesConfig": TimeSeriesConfigOutputTypeDef,
11374
+ "FeatureSpecificationS3Uri": NotRequired[str],
11375
+ "CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
11376
+ "ForecastQuantiles": NotRequired[List[str]],
11377
+ "Transformations": NotRequired[TimeSeriesTransformationsOutputTypeDef],
11378
+ "HolidayConfig": NotRequired[List[HolidayConfigAttributesTypeDef]],
11379
+ "CandidateGenerationConfig": NotRequired[CandidateGenerationConfigOutputTypeDef],
11380
+ },
11381
+ )
11368
11382
  TabularJobConfigTypeDef = TypedDict(
11369
11383
  "TabularJobConfigTypeDef",
11370
11384
  {
@@ -11378,6 +11392,20 @@ TabularJobConfigTypeDef = TypedDict(
11378
11392
  "SampleWeightAttributeName": NotRequired[str],
11379
11393
  },
11380
11394
  )
11395
+ TimeSeriesForecastingJobConfigTypeDef = TypedDict(
11396
+ "TimeSeriesForecastingJobConfigTypeDef",
11397
+ {
11398
+ "ForecastFrequency": str,
11399
+ "ForecastHorizon": int,
11400
+ "TimeSeriesConfig": TimeSeriesConfigTypeDef,
11401
+ "FeatureSpecificationS3Uri": NotRequired[str],
11402
+ "CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
11403
+ "ForecastQuantiles": NotRequired[Sequence[str]],
11404
+ "Transformations": NotRequired[TimeSeriesTransformationsTypeDef],
11405
+ "HolidayConfig": NotRequired[Sequence[HolidayConfigAttributesTypeDef]],
11406
+ "CandidateGenerationConfig": NotRequired[CandidateGenerationConfigTypeDef],
11407
+ },
11408
+ )
11381
11409
  AutoMLChannelTypeDef = TypedDict(
11382
11410
  "AutoMLChannelTypeDef",
11383
11411
  {
@@ -14963,6 +14991,7 @@ UpdateModelPackageInputRequestTypeDef = TypedDict(
14963
14991
  ],
14964
14992
  "InferenceSpecification": NotRequired[InferenceSpecificationTypeDef],
14965
14993
  "SourceUri": NotRequired[str],
14994
+ "ModelCard": NotRequired[ModelPackageModelCardTypeDef],
14966
14995
  },
14967
14996
  )
14968
14997
  DescribeMonitoringScheduleResponseTypeDef = TypedDict(
@@ -15081,6 +15110,8 @@ DescribeModelPackageOutputTypeDef = TypedDict(
15081
15110
  ],
15082
15111
  "SkipModelValidation": SkipModelValidationType,
15083
15112
  "SourceUri": str,
15113
+ "SecurityConfig": ModelPackageSecurityConfigTypeDef,
15114
+ "ModelCard": ModelPackageModelCardTypeDef,
15084
15115
  "ResponseMetadata": ResponseMetadataTypeDef,
15085
15116
  },
15086
15117
  )
@@ -15113,6 +15144,8 @@ ModelPackageTypeDef = TypedDict(
15113
15144
  List[AdditionalInferenceSpecificationDefinitionOutputTypeDef]
15114
15145
  ],
15115
15146
  "SourceUri": NotRequired[str],
15147
+ "SecurityConfig": NotRequired[ModelPackageSecurityConfigTypeDef],
15148
+ "ModelCard": NotRequired[ModelPackageModelCardTypeDef],
15116
15149
  "Tags": NotRequired[List[TagTypeDef]],
15117
15150
  "CustomerMetadataProperties": NotRequired[Dict[str, str]],
15118
15151
  "DriftCheckBaselines": NotRequired[DriftCheckBaselinesTypeDef],
@@ -15159,6 +15192,8 @@ CreateModelPackageInputRequestTypeDef = TypedDict(
15159
15192
  ],
15160
15193
  "SkipModelValidation": NotRequired[SkipModelValidationType],
15161
15194
  "SourceUri": NotRequired[str],
15195
+ "SecurityConfig": NotRequired[ModelPackageSecurityConfigTypeDef],
15196
+ "ModelCard": NotRequired[ModelPackageModelCardTypeDef],
15162
15197
  },
15163
15198
  )
15164
15199
  ModelPackageValidationSpecificationUnionTypeDef = Union[
@@ -363,6 +363,7 @@ __all__ = (
363
363
  "ClarifyShapBaselineConfigTypeDef",
364
364
  "ClarifyTextConfigTypeDef",
365
365
  "ClusterLifeCycleConfigTypeDef",
366
+ "ClusterInstancePlacementTypeDef",
366
367
  "ClusterInstanceStatusDetailsTypeDef",
367
368
  "ClusterSummaryTypeDef",
368
369
  "ContainerConfigExtraOutputTypeDef",
@@ -408,6 +409,8 @@ __all__ = (
408
409
  "ModelCardSecurityConfigTypeDef",
409
410
  "ModelExplainabilityAppSpecificationTypeDef",
410
411
  "InferenceExecutionConfigTypeDef",
412
+ "ModelPackageModelCardTypeDef",
413
+ "ModelPackageSecurityConfigTypeDef",
411
414
  "ModelQualityAppSpecificationTypeDef",
412
415
  "InstanceMetadataServiceConfigurationTypeDef",
413
416
  "NotebookInstanceLifecycleHookTypeDef",
@@ -1392,8 +1395,6 @@ __all__ = (
1392
1395
  "SourceIpConfigUnionTypeDef",
1393
1396
  "TrafficPatternOutputTypeDef",
1394
1397
  "TrafficPatternTypeDef",
1395
- "TimeSeriesForecastingJobConfigOutputTypeDef",
1396
- "TimeSeriesForecastingJobConfigTypeDef",
1397
1398
  "TrainingImageConfigTypeDef",
1398
1399
  "TransformDataSourceTypeDef",
1399
1400
  "WorkforceTypeDef",
@@ -1409,7 +1410,9 @@ __all__ = (
1409
1410
  "AsyncInferenceConfigOutputTypeDef",
1410
1411
  "AsyncInferenceConfigTypeDef",
1411
1412
  "TabularJobConfigOutputTypeDef",
1413
+ "TimeSeriesForecastingJobConfigOutputTypeDef",
1412
1414
  "TabularJobConfigTypeDef",
1415
+ "TimeSeriesForecastingJobConfigTypeDef",
1413
1416
  "AutoMLChannelTypeDef",
1414
1417
  "AutoMLJobChannelTypeDef",
1415
1418
  "ListAutoMLJobsResponseTypeDef",
@@ -2333,6 +2336,13 @@ ClusterLifeCycleConfigTypeDef = TypedDict(
2333
2336
  "OnCreate": str,
2334
2337
  },
2335
2338
  )
2339
+ ClusterInstancePlacementTypeDef = TypedDict(
2340
+ "ClusterInstancePlacementTypeDef",
2341
+ {
2342
+ "AvailabilityZone": NotRequired[str],
2343
+ "AvailabilityZoneId": NotRequired[str],
2344
+ },
2345
+ )
2336
2346
  ClusterInstanceStatusDetailsTypeDef = TypedDict(
2337
2347
  "ClusterInstanceStatusDetailsTypeDef",
2338
2348
  {
@@ -2680,6 +2690,19 @@ InferenceExecutionConfigTypeDef = TypedDict(
2680
2690
  "Mode": InferenceExecutionModeType,
2681
2691
  },
2682
2692
  )
2693
+ ModelPackageModelCardTypeDef = TypedDict(
2694
+ "ModelPackageModelCardTypeDef",
2695
+ {
2696
+ "ModelCardContent": NotRequired[str],
2697
+ "ModelCardStatus": NotRequired[ModelCardStatusType],
2698
+ },
2699
+ )
2700
+ ModelPackageSecurityConfigTypeDef = TypedDict(
2701
+ "ModelPackageSecurityConfigTypeDef",
2702
+ {
2703
+ "KmsKeyId": str,
2704
+ },
2705
+ )
2683
2706
  ModelQualityAppSpecificationTypeDef = TypedDict(
2684
2707
  "ModelQualityAppSpecificationTypeDef",
2685
2708
  {
@@ -7384,6 +7407,9 @@ ClusterNodeDetailsTypeDef = TypedDict(
7384
7407
  "LaunchTime": NotRequired[datetime],
7385
7408
  "LifeCycleConfig": NotRequired[ClusterLifeCycleConfigTypeDef],
7386
7409
  "ThreadsPerCore": NotRequired[int],
7410
+ "PrivatePrimaryIp": NotRequired[str],
7411
+ "PrivateDnsHostname": NotRequired[str],
7412
+ "Placement": NotRequired[ClusterInstancePlacementTypeDef],
7387
7413
  },
7388
7414
  )
7389
7415
  ClusterNodeSummaryTypeDef = TypedDict(
@@ -11208,32 +11234,6 @@ TrafficPatternTypeDef = TypedDict(
11208
11234
  "Stairs": NotRequired[StairsTypeDef],
11209
11235
  },
11210
11236
  )
11211
- TimeSeriesForecastingJobConfigOutputTypeDef = TypedDict(
11212
- "TimeSeriesForecastingJobConfigOutputTypeDef",
11213
- {
11214
- "ForecastFrequency": str,
11215
- "ForecastHorizon": int,
11216
- "TimeSeriesConfig": TimeSeriesConfigOutputTypeDef,
11217
- "FeatureSpecificationS3Uri": NotRequired[str],
11218
- "CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
11219
- "ForecastQuantiles": NotRequired[List[str]],
11220
- "Transformations": NotRequired[TimeSeriesTransformationsOutputTypeDef],
11221
- "HolidayConfig": NotRequired[List[HolidayConfigAttributesTypeDef]],
11222
- },
11223
- )
11224
- TimeSeriesForecastingJobConfigTypeDef = TypedDict(
11225
- "TimeSeriesForecastingJobConfigTypeDef",
11226
- {
11227
- "ForecastFrequency": str,
11228
- "ForecastHorizon": int,
11229
- "TimeSeriesConfig": TimeSeriesConfigTypeDef,
11230
- "FeatureSpecificationS3Uri": NotRequired[str],
11231
- "CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
11232
- "ForecastQuantiles": NotRequired[Sequence[str]],
11233
- "Transformations": NotRequired[TimeSeriesTransformationsTypeDef],
11234
- "HolidayConfig": NotRequired[Sequence[HolidayConfigAttributesTypeDef]],
11235
- },
11236
- )
11237
11237
  TrainingImageConfigTypeDef = TypedDict(
11238
11238
  "TrainingImageConfigTypeDef",
11239
11239
  {
@@ -11365,6 +11365,20 @@ TabularJobConfigOutputTypeDef = TypedDict(
11365
11365
  "SampleWeightAttributeName": NotRequired[str],
11366
11366
  },
11367
11367
  )
11368
+ TimeSeriesForecastingJobConfigOutputTypeDef = TypedDict(
11369
+ "TimeSeriesForecastingJobConfigOutputTypeDef",
11370
+ {
11371
+ "ForecastFrequency": str,
11372
+ "ForecastHorizon": int,
11373
+ "TimeSeriesConfig": TimeSeriesConfigOutputTypeDef,
11374
+ "FeatureSpecificationS3Uri": NotRequired[str],
11375
+ "CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
11376
+ "ForecastQuantiles": NotRequired[List[str]],
11377
+ "Transformations": NotRequired[TimeSeriesTransformationsOutputTypeDef],
11378
+ "HolidayConfig": NotRequired[List[HolidayConfigAttributesTypeDef]],
11379
+ "CandidateGenerationConfig": NotRequired[CandidateGenerationConfigOutputTypeDef],
11380
+ },
11381
+ )
11368
11382
  TabularJobConfigTypeDef = TypedDict(
11369
11383
  "TabularJobConfigTypeDef",
11370
11384
  {
@@ -11378,6 +11392,20 @@ TabularJobConfigTypeDef = TypedDict(
11378
11392
  "SampleWeightAttributeName": NotRequired[str],
11379
11393
  },
11380
11394
  )
11395
+ TimeSeriesForecastingJobConfigTypeDef = TypedDict(
11396
+ "TimeSeriesForecastingJobConfigTypeDef",
11397
+ {
11398
+ "ForecastFrequency": str,
11399
+ "ForecastHorizon": int,
11400
+ "TimeSeriesConfig": TimeSeriesConfigTypeDef,
11401
+ "FeatureSpecificationS3Uri": NotRequired[str],
11402
+ "CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
11403
+ "ForecastQuantiles": NotRequired[Sequence[str]],
11404
+ "Transformations": NotRequired[TimeSeriesTransformationsTypeDef],
11405
+ "HolidayConfig": NotRequired[Sequence[HolidayConfigAttributesTypeDef]],
11406
+ "CandidateGenerationConfig": NotRequired[CandidateGenerationConfigTypeDef],
11407
+ },
11408
+ )
11381
11409
  AutoMLChannelTypeDef = TypedDict(
11382
11410
  "AutoMLChannelTypeDef",
11383
11411
  {
@@ -14963,6 +14991,7 @@ UpdateModelPackageInputRequestTypeDef = TypedDict(
14963
14991
  ],
14964
14992
  "InferenceSpecification": NotRequired[InferenceSpecificationTypeDef],
14965
14993
  "SourceUri": NotRequired[str],
14994
+ "ModelCard": NotRequired[ModelPackageModelCardTypeDef],
14966
14995
  },
14967
14996
  )
14968
14997
  DescribeMonitoringScheduleResponseTypeDef = TypedDict(
@@ -15081,6 +15110,8 @@ DescribeModelPackageOutputTypeDef = TypedDict(
15081
15110
  ],
15082
15111
  "SkipModelValidation": SkipModelValidationType,
15083
15112
  "SourceUri": str,
15113
+ "SecurityConfig": ModelPackageSecurityConfigTypeDef,
15114
+ "ModelCard": ModelPackageModelCardTypeDef,
15084
15115
  "ResponseMetadata": ResponseMetadataTypeDef,
15085
15116
  },
15086
15117
  )
@@ -15113,6 +15144,8 @@ ModelPackageTypeDef = TypedDict(
15113
15144
  List[AdditionalInferenceSpecificationDefinitionOutputTypeDef]
15114
15145
  ],
15115
15146
  "SourceUri": NotRequired[str],
15147
+ "SecurityConfig": NotRequired[ModelPackageSecurityConfigTypeDef],
15148
+ "ModelCard": NotRequired[ModelPackageModelCardTypeDef],
15116
15149
  "Tags": NotRequired[List[TagTypeDef]],
15117
15150
  "CustomerMetadataProperties": NotRequired[Dict[str, str]],
15118
15151
  "DriftCheckBaselines": NotRequired[DriftCheckBaselinesTypeDef],
@@ -15159,6 +15192,8 @@ CreateModelPackageInputRequestTypeDef = TypedDict(
15159
15192
  ],
15160
15193
  "SkipModelValidation": NotRequired[SkipModelValidationType],
15161
15194
  "SourceUri": NotRequired[str],
15195
+ "SecurityConfig": NotRequired[ModelPackageSecurityConfigTypeDef],
15196
+ "ModelCard": NotRequired[ModelPackageModelCardTypeDef],
15162
15197
  },
15163
15198
  )
15164
15199
  ModelPackageValidationSpecificationUnionTypeDef = Union[
@@ -2,4 +2,4 @@
2
2
  Source of truth for version.
3
3
  """
4
4
 
5
- __version__ = "1.34.107"
5
+ __version__ = "1.34.119"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-sagemaker
3
- Version: 1.34.107
4
- Summary: Type annotations for boto3.SageMaker 1.34.107 service generated with mypy-boto3-builder 7.24.0
3
+ Version: 1.34.119
4
+ Summary: Type annotations for boto3.SageMaker 1.34.119 service generated with mypy-boto3-builder 7.24.0
5
5
  Home-page: https://github.com/youtype/mypy_boto3_builder
6
6
  Author: Vlad Emelianov
7
7
  Author-email: vlad.emelianov.nz@gmail.com
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
43
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
44
 
45
45
  Type annotations for
46
- [boto3.SageMaker 1.34.107](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker)
46
+ [boto3.SageMaker 1.34.119](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker)
47
47
  service compatible with [VSCode](https://code.visualstudio.com/),
48
48
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
49
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -0,0 +1,20 @@
1
+ mypy_boto3_sagemaker/__init__.py,sha256=RaUXvRI-OVL0aIBxpAM-52Mn3M9MLQRXSVM31BmWKnY,19369
2
+ mypy_boto3_sagemaker/__init__.pyi,sha256=RaUXvRI-OVL0aIBxpAM-52Mn3M9MLQRXSVM31BmWKnY,19369
3
+ mypy_boto3_sagemaker/__main__.py,sha256=90gujgs9TWN0Z44moSQc_m-yNNBdaK-t5P8DJF2kWhQ,930
4
+ mypy_boto3_sagemaker/client.py,sha256=tAWjq4JpFdMnfCvLY8qnGi6S_TeXDGZZCv6WEcF-7B8,279435
5
+ mypy_boto3_sagemaker/client.pyi,sha256=Gfyr3PeEphK2ucY0yZcnk_i-gQW6SsU8UdvG82mL5GY,279432
6
+ mypy_boto3_sagemaker/literals.py,sha256=IKi3Tphb8GpoIn1XFMipKak-uZQAu8q_Xx6lsKXEbbg,68902
7
+ mypy_boto3_sagemaker/literals.pyi,sha256=IKi3Tphb8GpoIn1XFMipKak-uZQAu8q_Xx6lsKXEbbg,68902
8
+ mypy_boto3_sagemaker/paginator.py,sha256=q2jVJQEHSxSRpulbl9pWG8bBzHVP9di7T2JScL33WdE,102768
9
+ mypy_boto3_sagemaker/paginator.pyi,sha256=WEXKsc8Cb7_Rx4ngfAJJ0LHm0eE7r0W-TM9G7HOZAco,102695
10
+ mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_sagemaker/type_defs.py,sha256=84mqViESsmJtORVS_R8RykX6CgYjXAhXuBppxsQAcJk,545884
12
+ mypy_boto3_sagemaker/type_defs.pyi,sha256=84mqViESsmJtORVS_R8RykX6CgYjXAhXuBppxsQAcJk,545884
13
+ mypy_boto3_sagemaker/version.py,sha256=OWAnAQdolWPJlbt-528D-prMkykf5LOt07KK27FEJsI,63
14
+ mypy_boto3_sagemaker/waiter.py,sha256=sgVFqtSXJD4pkx1f6t-BBp6hh61GjIp1IS2Iz_WJMaE,13323
15
+ mypy_boto3_sagemaker/waiter.pyi,sha256=vpObdrmi9_5qh3M5fkDnJRCj55lDcN_ZcNaoZOb1U4I,13310
16
+ mypy_boto3_sagemaker-1.34.119.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
+ mypy_boto3_sagemaker-1.34.119.dist-info/METADATA,sha256=PbjT0s6VWhzkfuwo7iWVbBocTGpLBg7r3mHFOmxcpPs,25769
18
+ mypy_boto3_sagemaker-1.34.119.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
19
+ mypy_boto3_sagemaker-1.34.119.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
20
+ mypy_boto3_sagemaker-1.34.119.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- mypy_boto3_sagemaker/__init__.py,sha256=RaUXvRI-OVL0aIBxpAM-52Mn3M9MLQRXSVM31BmWKnY,19369
2
- mypy_boto3_sagemaker/__init__.pyi,sha256=RaUXvRI-OVL0aIBxpAM-52Mn3M9MLQRXSVM31BmWKnY,19369
3
- mypy_boto3_sagemaker/__main__.py,sha256=k1SZD5Buzjzhb7jauwIUuwDt4lcaNvBFIYYp2jH0HHk,930
4
- mypy_boto3_sagemaker/client.py,sha256=6qTjxYcKZbGXkZDW9jRSJZmn-u-FiPUoTjelWJQQ464,279188
5
- mypy_boto3_sagemaker/client.pyi,sha256=EkMLzbMMeZxsyTe5rRBgaHtf_oi_47t1e8zf6mVCiEI,279185
6
- mypy_boto3_sagemaker/literals.py,sha256=FulWGLFGXxQ-p0g0TU78SGthNbXOvEfQNLi3wOirmWs,68785
7
- mypy_boto3_sagemaker/literals.pyi,sha256=FulWGLFGXxQ-p0g0TU78SGthNbXOvEfQNLi3wOirmWs,68785
8
- mypy_boto3_sagemaker/paginator.py,sha256=q2jVJQEHSxSRpulbl9pWG8bBzHVP9di7T2JScL33WdE,102768
9
- mypy_boto3_sagemaker/paginator.pyi,sha256=WEXKsc8Cb7_Rx4ngfAJJ0LHm0eE7r0W-TM9G7HOZAco,102695
10
- mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_sagemaker/type_defs.py,sha256=a7GdkwgFXxOp8rgyZsdEAhaKFhZx1TBdiMLFYAgKWh0,544460
12
- mypy_boto3_sagemaker/type_defs.pyi,sha256=a7GdkwgFXxOp8rgyZsdEAhaKFhZx1TBdiMLFYAgKWh0,544460
13
- mypy_boto3_sagemaker/version.py,sha256=gmsxsaCiqAreYSW5Xlr4yGmLgL7AeE1Aj2iNBkl7fbc,63
14
- mypy_boto3_sagemaker/waiter.py,sha256=sgVFqtSXJD4pkx1f6t-BBp6hh61GjIp1IS2Iz_WJMaE,13323
15
- mypy_boto3_sagemaker/waiter.pyi,sha256=vpObdrmi9_5qh3M5fkDnJRCj55lDcN_ZcNaoZOb1U4I,13310
16
- mypy_boto3_sagemaker-1.34.107.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
- mypy_boto3_sagemaker-1.34.107.dist-info/METADATA,sha256=PiDVRH1q012tghtSopJzpz5tV-ERkVqpFxBODkedXG8,25769
18
- mypy_boto3_sagemaker-1.34.107.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
19
- mypy_boto3_sagemaker-1.34.107.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
20
- mypy_boto3_sagemaker-1.34.107.dist-info/RECORD,,