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
aws_cdk/_jsii/__init__.py
CHANGED
|
@@ -35,7 +35,7 @@ import aws_cdk.cloud_assembly_schema._jsii
|
|
|
35
35
|
import constructs._jsii
|
|
36
36
|
|
|
37
37
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
38
|
-
"aws-cdk-lib", "2.174.
|
|
38
|
+
"aws-cdk-lib", "2.174.1", __name__[0:-6], "aws-cdk-lib@2.174.1.jsii.tgz"
|
|
39
39
|
)
|
|
40
40
|
|
|
41
41
|
__all__ = [
|
|
Binary file
|
aws_cdk/aws_amazonmq/__init__.py
CHANGED
|
@@ -122,6 +122,7 @@ class CfnBroker(
|
|
|
122
122
|
# the properties below are optional
|
|
123
123
|
console_access=False,
|
|
124
124
|
groups=["groups"],
|
|
125
|
+
jolokia_api_access="jolokiaApiAccess",
|
|
125
126
|
replication_user=False
|
|
126
127
|
)],
|
|
127
128
|
|
|
@@ -1358,6 +1359,7 @@ class CfnBroker(
|
|
|
1358
1359
|
"username": "username",
|
|
1359
1360
|
"console_access": "consoleAccess",
|
|
1360
1361
|
"groups": "groups",
|
|
1362
|
+
"jolokia_api_access": "jolokiaApiAccess",
|
|
1361
1363
|
"replication_user": "replicationUser",
|
|
1362
1364
|
},
|
|
1363
1365
|
)
|
|
@@ -1369,6 +1371,7 @@ class CfnBroker(
|
|
|
1369
1371
|
username: builtins.str,
|
|
1370
1372
|
console_access: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1371
1373
|
groups: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1374
|
+
jolokia_api_access: typing.Optional[builtins.str] = None,
|
|
1372
1375
|
replication_user: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1373
1376
|
) -> None:
|
|
1374
1377
|
'''The list of broker users (persons or applications) who can access queues and topics.
|
|
@@ -1379,6 +1382,7 @@ class CfnBroker(
|
|
|
1379
1382
|
:param username: The username of the broker user. For Amazon MQ for ActiveMQ brokers, this value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). For Amazon MQ for RabbitMQ brokers, this value can contain only alphanumeric characters, dashes, periods, underscores (- . _). This value must not contain a tilde (~) character. Amazon MQ prohibts using guest as a valid usename. This value must be 2-100 characters long. .. epigraph:: Do not add personally identifiable information (PII) or other confidential or sensitive information in broker usernames. Broker usernames are accessible to other AWS services, including CloudWatch Logs . Broker usernames are not intended to be used for private or sensitive data.
|
|
1380
1383
|
:param console_access: Enables access to the ActiveMQ web console for the ActiveMQ user. Does not apply to RabbitMQ brokers.
|
|
1381
1384
|
:param groups: The list of groups (20 maximum) to which the ActiveMQ user belongs. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long. Does not apply to RabbitMQ brokers.
|
|
1385
|
+
:param jolokia_api_access:
|
|
1382
1386
|
:param replication_user: Defines if this user is intended for CRDR replication purposes.
|
|
1383
1387
|
|
|
1384
1388
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-user.html
|
|
@@ -1397,6 +1401,7 @@ class CfnBroker(
|
|
|
1397
1401
|
# the properties below are optional
|
|
1398
1402
|
console_access=False,
|
|
1399
1403
|
groups=["groups"],
|
|
1404
|
+
jolokia_api_access="jolokiaApiAccess",
|
|
1400
1405
|
replication_user=False
|
|
1401
1406
|
)
|
|
1402
1407
|
'''
|
|
@@ -1406,6 +1411,7 @@ class CfnBroker(
|
|
|
1406
1411
|
check_type(argname="argument username", value=username, expected_type=type_hints["username"])
|
|
1407
1412
|
check_type(argname="argument console_access", value=console_access, expected_type=type_hints["console_access"])
|
|
1408
1413
|
check_type(argname="argument groups", value=groups, expected_type=type_hints["groups"])
|
|
1414
|
+
check_type(argname="argument jolokia_api_access", value=jolokia_api_access, expected_type=type_hints["jolokia_api_access"])
|
|
1409
1415
|
check_type(argname="argument replication_user", value=replication_user, expected_type=type_hints["replication_user"])
|
|
1410
1416
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1411
1417
|
"password": password,
|
|
@@ -1415,6 +1421,8 @@ class CfnBroker(
|
|
|
1415
1421
|
self._values["console_access"] = console_access
|
|
1416
1422
|
if groups is not None:
|
|
1417
1423
|
self._values["groups"] = groups
|
|
1424
|
+
if jolokia_api_access is not None:
|
|
1425
|
+
self._values["jolokia_api_access"] = jolokia_api_access
|
|
1418
1426
|
if replication_user is not None:
|
|
1419
1427
|
self._values["replication_user"] = replication_user
|
|
1420
1428
|
|
|
@@ -1469,6 +1477,14 @@ class CfnBroker(
|
|
|
1469
1477
|
result = self._values.get("groups")
|
|
1470
1478
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
1471
1479
|
|
|
1480
|
+
@builtins.property
|
|
1481
|
+
def jolokia_api_access(self) -> typing.Optional[builtins.str]:
|
|
1482
|
+
'''
|
|
1483
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-user.html#cfn-amazonmq-broker-user-jolokiaapiaccess
|
|
1484
|
+
'''
|
|
1485
|
+
result = self._values.get("jolokia_api_access")
|
|
1486
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1487
|
+
|
|
1472
1488
|
@builtins.property
|
|
1473
1489
|
def replication_user(
|
|
1474
1490
|
self,
|
|
@@ -1588,6 +1604,7 @@ class CfnBrokerProps:
|
|
|
1588
1604
|
# the properties below are optional
|
|
1589
1605
|
console_access=False,
|
|
1590
1606
|
groups=["groups"],
|
|
1607
|
+
jolokia_api_access="jolokiaApiAccess",
|
|
1591
1608
|
replication_user=False
|
|
1592
1609
|
)],
|
|
1593
1610
|
|
|
@@ -2938,6 +2955,7 @@ def _typecheckingstub__8a458786a0cd0d4269adef0bf3c85862386851ab69649004d5d3dcba4
|
|
|
2938
2955
|
username: builtins.str,
|
|
2939
2956
|
console_access: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2940
2957
|
groups: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2958
|
+
jolokia_api_access: typing.Optional[builtins.str] = None,
|
|
2941
2959
|
replication_user: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2942
2960
|
) -> None:
|
|
2943
2961
|
"""Type checking stubs"""
|