aws-cdk-lib 2.174.0__py3-none-any.whl → 2.174.1__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 aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.174.0.jsii.tgz → aws-cdk-lib@2.174.1.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +18 -0
- aws_cdk/aws_batch/__init__.py +32 -458
- aws_cdk/aws_bedrock/__init__.py +7 -4
- aws_cdk/aws_cleanrooms/__init__.py +683 -2
- aws_cdk/aws_dms/__init__.py +49 -27
- aws_cdk/aws_docdb/__init__.py +134 -0
- aws_cdk/aws_mediaconvert/__init__.py +39 -0
- aws_cdk/aws_quicksight/__init__.py +1422 -859
- aws_cdk/aws_rds/__init__.py +2 -7
- aws_cdk/aws_sagemaker/__init__.py +6 -6
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.174.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.174.1.dist-info}/RECORD +18 -18
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.174.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.174.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.174.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.174.1.dist-info}/top_level.txt +0 -0
|
@@ -1153,6 +1153,7 @@ class CfnQueue(
|
|
|
1153
1153
|
# tags: Any
|
|
1154
1154
|
|
|
1155
1155
|
cfn_queue = mediaconvert.CfnQueue(self, "MyCfnQueue",
|
|
1156
|
+
concurrent_jobs=123,
|
|
1156
1157
|
description="description",
|
|
1157
1158
|
name="name",
|
|
1158
1159
|
pricing_plan="pricingPlan",
|
|
@@ -1166,6 +1167,7 @@ class CfnQueue(
|
|
|
1166
1167
|
scope: _constructs_77d1e7e8.Construct,
|
|
1167
1168
|
id: builtins.str,
|
|
1168
1169
|
*,
|
|
1170
|
+
concurrent_jobs: typing.Optional[jsii.Number] = None,
|
|
1169
1171
|
description: typing.Optional[builtins.str] = None,
|
|
1170
1172
|
name: typing.Optional[builtins.str] = None,
|
|
1171
1173
|
pricing_plan: typing.Optional[builtins.str] = None,
|
|
@@ -1175,6 +1177,7 @@ class CfnQueue(
|
|
|
1175
1177
|
'''
|
|
1176
1178
|
:param scope: Scope in which this resource is defined.
|
|
1177
1179
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1180
|
+
:param concurrent_jobs:
|
|
1178
1181
|
:param description: Optional. A description of the queue that you are creating.
|
|
1179
1182
|
:param name: The name of the queue that you are creating.
|
|
1180
1183
|
:param pricing_plan: When you use AWS CloudFormation , you can create only on-demand queues. Therefore, always set ``PricingPlan`` to the value "ON_DEMAND" when declaring an AWS::MediaConvert::Queue in your AWS CloudFormation template. To create a reserved queue, use the AWS Elemental MediaConvert console at https://console.aws.amazon.com/mediaconvert to set up a contract. For more information, see `Working with AWS Elemental MediaConvert Queues <https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html>`_ in the ** .
|
|
@@ -1186,6 +1189,7 @@ class CfnQueue(
|
|
|
1186
1189
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
1187
1190
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
1188
1191
|
props = CfnQueueProps(
|
|
1192
|
+
concurrent_jobs=concurrent_jobs,
|
|
1189
1193
|
description=description,
|
|
1190
1194
|
name=name,
|
|
1191
1195
|
pricing_plan=pricing_plan,
|
|
@@ -1262,6 +1266,18 @@ class CfnQueue(
|
|
|
1262
1266
|
'''Tag Manager which manages the tags for this resource.'''
|
|
1263
1267
|
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
|
|
1264
1268
|
|
|
1269
|
+
@builtins.property
|
|
1270
|
+
@jsii.member(jsii_name="concurrentJobs")
|
|
1271
|
+
def concurrent_jobs(self) -> typing.Optional[jsii.Number]:
|
|
1272
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "concurrentJobs"))
|
|
1273
|
+
|
|
1274
|
+
@concurrent_jobs.setter
|
|
1275
|
+
def concurrent_jobs(self, value: typing.Optional[jsii.Number]) -> None:
|
|
1276
|
+
if __debug__:
|
|
1277
|
+
type_hints = typing.get_type_hints(_typecheckingstub__993fd95d91379114b61414ca4c663149a086fb421eb4dca35dd60e83c0abae78)
|
|
1278
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1279
|
+
jsii.set(self, "concurrentJobs", value) # pyright: ignore[reportArgumentType]
|
|
1280
|
+
|
|
1265
1281
|
@builtins.property
|
|
1266
1282
|
@jsii.member(jsii_name="description")
|
|
1267
1283
|
def description(self) -> typing.Optional[builtins.str]:
|
|
@@ -1332,6 +1348,7 @@ class CfnQueue(
|
|
|
1332
1348
|
jsii_type="aws-cdk-lib.aws_mediaconvert.CfnQueueProps",
|
|
1333
1349
|
jsii_struct_bases=[],
|
|
1334
1350
|
name_mapping={
|
|
1351
|
+
"concurrent_jobs": "concurrentJobs",
|
|
1335
1352
|
"description": "description",
|
|
1336
1353
|
"name": "name",
|
|
1337
1354
|
"pricing_plan": "pricingPlan",
|
|
@@ -1343,6 +1360,7 @@ class CfnQueueProps:
|
|
|
1343
1360
|
def __init__(
|
|
1344
1361
|
self,
|
|
1345
1362
|
*,
|
|
1363
|
+
concurrent_jobs: typing.Optional[jsii.Number] = None,
|
|
1346
1364
|
description: typing.Optional[builtins.str] = None,
|
|
1347
1365
|
name: typing.Optional[builtins.str] = None,
|
|
1348
1366
|
pricing_plan: typing.Optional[builtins.str] = None,
|
|
@@ -1351,6 +1369,7 @@ class CfnQueueProps:
|
|
|
1351
1369
|
) -> None:
|
|
1352
1370
|
'''Properties for defining a ``CfnQueue``.
|
|
1353
1371
|
|
|
1372
|
+
:param concurrent_jobs:
|
|
1354
1373
|
:param description: Optional. A description of the queue that you are creating.
|
|
1355
1374
|
:param name: The name of the queue that you are creating.
|
|
1356
1375
|
:param pricing_plan: When you use AWS CloudFormation , you can create only on-demand queues. Therefore, always set ``PricingPlan`` to the value "ON_DEMAND" when declaring an AWS::MediaConvert::Queue in your AWS CloudFormation template. To create a reserved queue, use the AWS Elemental MediaConvert console at https://console.aws.amazon.com/mediaconvert to set up a contract. For more information, see `Working with AWS Elemental MediaConvert Queues <https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html>`_ in the ** .
|
|
@@ -1369,6 +1388,7 @@ class CfnQueueProps:
|
|
|
1369
1388
|
# tags: Any
|
|
1370
1389
|
|
|
1371
1390
|
cfn_queue_props = mediaconvert.CfnQueueProps(
|
|
1391
|
+
concurrent_jobs=123,
|
|
1372
1392
|
description="description",
|
|
1373
1393
|
name="name",
|
|
1374
1394
|
pricing_plan="pricingPlan",
|
|
@@ -1378,12 +1398,15 @@ class CfnQueueProps:
|
|
|
1378
1398
|
'''
|
|
1379
1399
|
if __debug__:
|
|
1380
1400
|
type_hints = typing.get_type_hints(_typecheckingstub__7730e4d3d27bc8cf5ac3d6866a9c8915fd8e55a6c574e02bd2a03f4318d68f05)
|
|
1401
|
+
check_type(argname="argument concurrent_jobs", value=concurrent_jobs, expected_type=type_hints["concurrent_jobs"])
|
|
1381
1402
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
1382
1403
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
1383
1404
|
check_type(argname="argument pricing_plan", value=pricing_plan, expected_type=type_hints["pricing_plan"])
|
|
1384
1405
|
check_type(argname="argument status", value=status, expected_type=type_hints["status"])
|
|
1385
1406
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
1386
1407
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1408
|
+
if concurrent_jobs is not None:
|
|
1409
|
+
self._values["concurrent_jobs"] = concurrent_jobs
|
|
1387
1410
|
if description is not None:
|
|
1388
1411
|
self._values["description"] = description
|
|
1389
1412
|
if name is not None:
|
|
@@ -1395,6 +1418,14 @@ class CfnQueueProps:
|
|
|
1395
1418
|
if tags is not None:
|
|
1396
1419
|
self._values["tags"] = tags
|
|
1397
1420
|
|
|
1421
|
+
@builtins.property
|
|
1422
|
+
def concurrent_jobs(self) -> typing.Optional[jsii.Number]:
|
|
1423
|
+
'''
|
|
1424
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html#cfn-mediaconvert-queue-concurrentjobs
|
|
1425
|
+
'''
|
|
1426
|
+
result = self._values.get("concurrent_jobs")
|
|
1427
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1428
|
+
|
|
1398
1429
|
@builtins.property
|
|
1399
1430
|
def description(self) -> typing.Optional[builtins.str]:
|
|
1400
1431
|
'''Optional.
|
|
@@ -1665,6 +1696,7 @@ def _typecheckingstub__ce85d095c93254b82e67ee70a5cae96a78ca7b1fbb86f6494f48602d8
|
|
|
1665
1696
|
scope: _constructs_77d1e7e8.Construct,
|
|
1666
1697
|
id: builtins.str,
|
|
1667
1698
|
*,
|
|
1699
|
+
concurrent_jobs: typing.Optional[jsii.Number] = None,
|
|
1668
1700
|
description: typing.Optional[builtins.str] = None,
|
|
1669
1701
|
name: typing.Optional[builtins.str] = None,
|
|
1670
1702
|
pricing_plan: typing.Optional[builtins.str] = None,
|
|
@@ -1686,6 +1718,12 @@ def _typecheckingstub__35c318d1b3afa3029c00b3041ce2990e84ecd612460683bdfc3995e4f
|
|
|
1686
1718
|
"""Type checking stubs"""
|
|
1687
1719
|
pass
|
|
1688
1720
|
|
|
1721
|
+
def _typecheckingstub__993fd95d91379114b61414ca4c663149a086fb421eb4dca35dd60e83c0abae78(
|
|
1722
|
+
value: typing.Optional[jsii.Number],
|
|
1723
|
+
) -> None:
|
|
1724
|
+
"""Type checking stubs"""
|
|
1725
|
+
pass
|
|
1726
|
+
|
|
1689
1727
|
def _typecheckingstub__e85c7cbaa4ed5f47efbb96c65b1b5f493c2811227a36b5f2af1c323b91af1598(
|
|
1690
1728
|
value: typing.Optional[builtins.str],
|
|
1691
1729
|
) -> None:
|
|
@@ -1718,6 +1756,7 @@ def _typecheckingstub__0f40a2466cbcd54418fd8402f9b79ae297cbdc53819c461dd9bde5aa9
|
|
|
1718
1756
|
|
|
1719
1757
|
def _typecheckingstub__7730e4d3d27bc8cf5ac3d6866a9c8915fd8e55a6c574e02bd2a03f4318d68f05(
|
|
1720
1758
|
*,
|
|
1759
|
+
concurrent_jobs: typing.Optional[jsii.Number] = None,
|
|
1721
1760
|
description: typing.Optional[builtins.str] = None,
|
|
1722
1761
|
name: typing.Optional[builtins.str] = None,
|
|
1723
1762
|
pricing_plan: typing.Optional[builtins.str] = None,
|