aws-cdk-lib 2.125.0__py3-none-any.whl → 2.127.0__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/__init__.py +0 -2
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.125.0.jsii.tgz → aws-cdk-lib@2.127.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +18 -6
- aws_cdk/aws_amazonmq/__init__.py +3 -2
- aws_cdk/aws_amplifyuibuilder/__init__.py +1212 -666
- aws_cdk/aws_apigateway/__init__.py +7 -3
- aws_cdk/aws_appconfig/__init__.py +108 -19
- aws_cdk/aws_appsync/__init__.py +43 -0
- aws_cdk/aws_autoscaling/__init__.py +37 -14
- aws_cdk/aws_cassandra/__init__.py +810 -4
- aws_cdk/aws_cloudfront/__init__.py +35 -37
- aws_cdk/aws_cloudfront/experimental/__init__.py +21 -0
- aws_cdk/aws_codebuild/__init__.py +43 -3
- aws_cdk/aws_codecommit/__init__.py +1 -0
- aws_cdk/aws_codepipeline/__init__.py +7 -3
- aws_cdk/aws_codepipeline_actions/__init__.py +11 -1
- aws_cdk/aws_codestarnotifications/__init__.py +24 -15
- aws_cdk/aws_cognito/__init__.py +180 -116
- aws_cdk/aws_datasync/__init__.py +8 -4
- aws_cdk/aws_dynamodb/__init__.py +80 -11
- aws_cdk/aws_ec2/__init__.py +207 -45
- aws_cdk/aws_ecs/__init__.py +171 -78
- aws_cdk/aws_ecs_patterns/__init__.py +24 -0
- aws_cdk/aws_efs/__init__.py +64 -8
- aws_cdk/aws_eks/__init__.py +52 -41
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +12 -9
- aws_cdk/aws_fis/__init__.py +32 -12
- aws_cdk/aws_fsx/__init__.py +61 -43
- aws_cdk/aws_glue/__init__.py +449 -0
- aws_cdk/aws_guardduty/__init__.py +0 -8
- aws_cdk/aws_iam/__init__.py +3 -3
- aws_cdk/aws_inspectorv2/__init__.py +989 -0
- aws_cdk/aws_internetmonitor/__init__.py +10 -12
- aws_cdk/aws_iot/__init__.py +112 -0
- aws_cdk/aws_iotwireless/__init__.py +32 -19
- aws_cdk/aws_lambda/__init__.py +129 -32
- aws_cdk/aws_lambda_event_sources/__init__.py +95 -4
- aws_cdk/aws_lambda_nodejs/__init__.py +21 -0
- aws_cdk/aws_location/__init__.py +8 -2
- aws_cdk/aws_logs/__init__.py +7 -3
- aws_cdk/aws_networkmanager/__init__.py +1 -1
- aws_cdk/aws_opensearchserverless/__init__.py +4 -4
- aws_cdk/aws_osis/__init__.py +13 -13
- aws_cdk/aws_personalize/__init__.py +1 -1
- aws_cdk/aws_pinpoint/__init__.py +5 -5
- aws_cdk/aws_pipes/__init__.py +7 -10
- aws_cdk/aws_rds/__init__.py +449 -8
- aws_cdk/aws_redshiftserverless/__init__.py +282 -0
- aws_cdk/aws_rolesanywhere/__init__.py +53 -41
- aws_cdk/aws_route53/__init__.py +282 -0
- aws_cdk/aws_s3/__init__.py +11 -6
- aws_cdk/aws_sagemaker/__init__.py +1398 -39
- aws_cdk/aws_sns/__init__.py +56 -13
- aws_cdk/aws_sqs/__init__.py +13 -10
- aws_cdk/aws_stepfunctions/__init__.py +3612 -1395
- aws_cdk/aws_stepfunctions_tasks/__init__.py +267 -181
- aws_cdk/aws_transfer/__init__.py +1 -1
- aws_cdk/aws_verifiedpermissions/__init__.py +55 -55
- aws_cdk/aws_workspacesweb/__init__.py +6 -3
- aws_cdk/cx_api/__init__.py +17 -0
- aws_cdk/triggers/__init__.py +21 -0
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/RECORD +68 -69
- aws_cdk/aws_ssmguiconnect/__init__.py +0 -540
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/top_level.txt +0 -0
aws_cdk/__init__.py
CHANGED
|
@@ -34014,7 +34014,6 @@ __all__ = [
|
|
|
34014
34014
|
"aws_sqs",
|
|
34015
34015
|
"aws_ssm",
|
|
34016
34016
|
"aws_ssmcontacts",
|
|
34017
|
-
"aws_ssmguiconnect",
|
|
34018
34017
|
"aws_ssmincidents",
|
|
34019
34018
|
"aws_sso",
|
|
34020
34019
|
"aws_stepfunctions",
|
|
@@ -34290,7 +34289,6 @@ from . import aws_sns_subscriptions
|
|
|
34290
34289
|
from . import aws_sqs
|
|
34291
34290
|
from . import aws_ssm
|
|
34292
34291
|
from . import aws_ssmcontacts
|
|
34293
|
-
from . import aws_ssmguiconnect
|
|
34294
34292
|
from . import aws_ssmincidents
|
|
34295
34293
|
from . import aws_sso
|
|
34296
34294
|
from . import aws_stepfunctions
|
aws_cdk/_jsii/__init__.py
CHANGED
|
@@ -16,7 +16,7 @@ import aws_cdk.asset_node_proxy_agent_v6._jsii
|
|
|
16
16
|
import constructs._jsii
|
|
17
17
|
|
|
18
18
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
19
|
-
"aws-cdk-lib", "2.
|
|
19
|
+
"aws-cdk-lib", "2.127.0", __name__[0:-6], "aws-cdk-lib@2.127.0.jsii.tgz"
|
|
20
20
|
)
|
|
21
21
|
|
|
22
22
|
__all__ = [
|
|
Binary file
|
aws_cdk/aws_acmpca/__init__.py
CHANGED
|
@@ -2727,7 +2727,7 @@ class CfnCertificateAuthority(
|
|
|
2727
2727
|
) -> None:
|
|
2728
2728
|
'''Contains configuration information for a certificate revocation list (CRL).
|
|
2729
2729
|
|
|
2730
|
-
Your private certificate authority (CA) creates base CRLs. Delta CRLs are not supported. You can enable CRLs for your new or an existing private CA by setting the *Enabled* parameter to ``true`` . Your private CA writes CRLs to an S3 bucket that you specify in the *S3BucketName* parameter. You can hide the name of your bucket by specifying a value for the *CustomCname* parameter. Your private CA copies the CNAME or the S3 bucket name to the *CRL Distribution Points* extension of each certificate it issues. Your S3 bucket policy must give write permission to AWS Private CA.
|
|
2730
|
+
Your private certificate authority (CA) creates base CRLs. Delta CRLs are not supported. You can enable CRLs for your new or an existing private CA by setting the *Enabled* parameter to ``true`` . Your private CA writes CRLs to an S3 bucket that you specify in the *S3BucketName* parameter. You can hide the name of your bucket by specifying a value for the *CustomCname* parameter. Your private CA by default copies the CNAME or the S3 bucket name to the *CRL Distribution Points* extension of each certificate it issues. If you want to configure this default behavior to be something different, you can set the *CrlDistributionPointExtensionConfiguration* parameter. Your S3 bucket policy must give write permission to AWS Private CA.
|
|
2731
2731
|
|
|
2732
2732
|
AWS Private CA assets that are stored in Amazon S3 can be protected with encryption. For more information, see `Encrypting Your CRLs <https://docs.aws.amazon.com/privateca/latest/userguide/PcaCreateCa.html#crl-encryption>`_ .
|
|
2733
2733
|
|
|
@@ -2759,7 +2759,7 @@ class CfnCertificateAuthority(
|
|
|
2759
2759
|
|
|
2760
2760
|
For more information, see `Planning a certificate revocation list (CRL) <https://docs.aws.amazon.com/privateca/latest/userguide/crl-planning.html>`_ in the *AWS Private Certificate Authority User Guide*
|
|
2761
2761
|
|
|
2762
|
-
:param crl_distribution_point_extension_configuration: Configures the default behavior of the CRL Distribution Point extension for certificates issued by your
|
|
2762
|
+
:param crl_distribution_point_extension_configuration: Configures the default behavior of the CRL Distribution Point extension for certificates issued by your CA. If this field is not provided, then the CRL Distribution Point extension will be present and contain the default CRL URL.
|
|
2763
2763
|
:param custom_cname: Name inserted into the certificate *CRL Distribution Points* extension that enables the use of an alias for the CRL distribution point. Use this value if you don't want the name of your S3 bucket to be public. .. epigraph:: The content of a Canonical Name (CNAME) record must conform to `RFC2396 <https://docs.aws.amazon.com/https://www.ietf.org/rfc/rfc2396.txt>`_ restrictions on the use of special characters in URIs. Additionally, the value of the CNAME must not include a protocol prefix such as "http://" or "https://".
|
|
2764
2764
|
:param enabled: Boolean value that specifies whether certificate revocation lists (CRLs) are enabled. You can use this value to enable certificate revocation for a new CA when you call the ``CreateCertificateAuthority`` operation or for an existing CA when you call the ``UpdateCertificateAuthority`` operation.
|
|
2765
2765
|
:param expiration_in_days: Validity period of the CRL in days.
|
|
@@ -2812,7 +2812,9 @@ class CfnCertificateAuthority(
|
|
|
2812
2812
|
def crl_distribution_point_extension_configuration(
|
|
2813
2813
|
self,
|
|
2814
2814
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCertificateAuthority.CrlDistributionPointExtensionConfigurationProperty"]]:
|
|
2815
|
-
'''Configures the default behavior of the CRL Distribution Point extension for certificates issued by your
|
|
2815
|
+
'''Configures the default behavior of the CRL Distribution Point extension for certificates issued by your CA.
|
|
2816
|
+
|
|
2817
|
+
If this field is not provided, then the CRL Distribution Point extension will be present and contain the default CRL URL.
|
|
2816
2818
|
|
|
2817
2819
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-crldistributionpointextensionconfiguration
|
|
2818
2820
|
'''
|
|
@@ -2908,9 +2910,11 @@ class CfnCertificateAuthority(
|
|
|
2908
2910
|
*,
|
|
2909
2911
|
omit_extension: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
2910
2912
|
) -> None:
|
|
2911
|
-
'''
|
|
2913
|
+
'''Contains configuration information for the default behavior of the CRL Distribution Point (CDP) extension in certificates issued by your CA.
|
|
2914
|
+
|
|
2915
|
+
This extension contains a link to download the CRL, so you can check whether a certificate has been revoked. To choose whether you want this extension omitted or not in certificates issued by your CA, you can set the *OmitExtension* parameter.
|
|
2912
2916
|
|
|
2913
|
-
:param omit_extension:
|
|
2917
|
+
:param omit_extension: Configures whether the CRL Distribution Point extension should be populated with the default URL to the CRL. If set to ``true`` , then the CDP extension will not be present in any certificates issued by that CA unless otherwise specified through CSR or API passthrough. .. epigraph:: Only set this if you have another way to distribute the CRL Distribution Points for certificates issued by your CA, such as the Matter Distributed Compliance Ledger. This configuration cannot be enabled with a custom CNAME set.
|
|
2914
2918
|
|
|
2915
2919
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crldistributionpointextensionconfiguration.html
|
|
2916
2920
|
:exampleMetadata: fixture=_generated
|
|
@@ -2934,7 +2938,15 @@ class CfnCertificateAuthority(
|
|
|
2934
2938
|
|
|
2935
2939
|
@builtins.property
|
|
2936
2940
|
def omit_extension(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
2937
|
-
'''
|
|
2941
|
+
'''Configures whether the CRL Distribution Point extension should be populated with the default URL to the CRL.
|
|
2942
|
+
|
|
2943
|
+
If set to ``true`` , then the CDP extension will not be present in any certificates issued by that CA unless otherwise specified through CSR or API passthrough.
|
|
2944
|
+
.. epigraph::
|
|
2945
|
+
|
|
2946
|
+
Only set this if you have another way to distribute the CRL Distribution Points for certificates issued by your CA, such as the Matter Distributed Compliance Ledger.
|
|
2947
|
+
|
|
2948
|
+
This configuration cannot be enabled with a custom CNAME set.
|
|
2949
|
+
|
|
2938
2950
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crldistributionpointextensionconfiguration.html#cfn-acmpca-certificateauthority-crldistributionpointextensionconfiguration-omitextension
|
|
2939
2951
|
'''
|
|
2940
2952
|
result = self._values.get("omit_extension")
|
aws_cdk/aws_amazonmq/__init__.py
CHANGED
|
@@ -1361,7 +1361,7 @@ class CfnBroker(
|
|
|
1361
1361
|
: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.
|
|
1362
1362
|
:param console_access: Enables access to the ActiveMQ web console for the ActiveMQ user. Does not apply to RabbitMQ brokers.
|
|
1363
1363
|
: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.
|
|
1364
|
-
:param replication_user:
|
|
1364
|
+
:param replication_user: Defines if this user is intended for CRDR replication purposes.
|
|
1365
1365
|
|
|
1366
1366
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-user.html
|
|
1367
1367
|
:exampleMetadata: fixture=_generated
|
|
@@ -1455,7 +1455,8 @@ class CfnBroker(
|
|
|
1455
1455
|
def replication_user(
|
|
1456
1456
|
self,
|
|
1457
1457
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
1458
|
-
'''
|
|
1458
|
+
'''Defines if this user is intended for CRDR replication purposes.
|
|
1459
|
+
|
|
1459
1460
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-user.html#cfn-amazonmq-broker-user-replicationuser
|
|
1460
1461
|
'''
|
|
1461
1462
|
result = self._values.get("replication_user")
|