aws-cdk-lib 2.192.0__py3-none-any.whl → 2.194.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/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.192.0.jsii.tgz → aws-cdk-lib@2.194.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +3 -1
- aws_cdk/aws_appsync/__init__.py +4367 -336
- aws_cdk/aws_aps/__init__.py +34 -22
- aws_cdk/aws_autoscaling/__init__.py +8 -0
- aws_cdk/aws_batch/__init__.py +2 -2
- aws_cdk/aws_bedrock/__init__.py +6 -4
- aws_cdk/aws_ce/__init__.py +34 -22
- aws_cdk/aws_cloudfront/__init__.py +3019 -971
- aws_cdk/aws_codebuild/__init__.py +19 -10
- aws_cdk/aws_codepipeline_actions/__init__.py +526 -0
- aws_cdk/aws_dlm/__init__.py +2 -2
- aws_cdk/aws_ec2/__init__.py +6 -3
- aws_cdk/aws_ecr/__init__.py +417 -0
- aws_cdk/aws_ecs/__init__.py +18 -10
- aws_cdk/aws_eks/__init__.py +170 -2
- aws_cdk/aws_entityresolution/__init__.py +7 -2
- aws_cdk/aws_events/__init__.py +41 -8
- aws_cdk/aws_lambda/__init__.py +1 -1
- aws_cdk/aws_mediapackagev2/__init__.py +50 -6
- aws_cdk/aws_memorydb/__init__.py +21 -11
- aws_cdk/aws_omics/__init__.py +5 -5
- aws_cdk/aws_opensearchservice/__init__.py +45 -25
- aws_cdk/aws_qbusiness/__init__.py +2 -2
- aws_cdk/aws_quicksight/__init__.py +1 -1
- aws_cdk/aws_rds/__init__.py +46 -2
- aws_cdk/aws_redshiftserverless/__init__.py +20 -0
- aws_cdk/aws_route53resolver/__init__.py +41 -0
- aws_cdk/aws_s3/__init__.py +2 -4
- aws_cdk/aws_sagemaker/__init__.py +2 -4
- aws_cdk/aws_vpclattice/__init__.py +6 -2
- aws_cdk/aws_wisdom/__init__.py +25 -6
- {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/RECORD +39 -39
- {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/top_level.txt +0 -0
aws_cdk/_jsii/__init__.py
CHANGED
|
@@ -34,7 +34,7 @@ import aws_cdk.cloud_assembly_schema._jsii
|
|
|
34
34
|
import constructs._jsii
|
|
35
35
|
|
|
36
36
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
37
|
-
"aws-cdk-lib", "2.
|
|
37
|
+
"aws-cdk-lib", "2.194.0", __name__[0:-6], "aws-cdk-lib@2.194.0.jsii.tgz"
|
|
38
38
|
)
|
|
39
39
|
|
|
40
40
|
__all__ = [
|
|
Binary file
|
|
@@ -3861,6 +3861,8 @@ class CfnAccount(
|
|
|
3861
3861
|
|
|
3862
3862
|
To avoid overwriting other roles, you should only have one ``AWS::ApiGateway::Account`` resource per region per account.
|
|
3863
3863
|
|
|
3864
|
+
When you delete a stack containing this resource, API Gateway can still assume the provided IAM role to write API logs to CloudWatch Logs. To deny API Gateway access to write API logs to CloudWatch logs, update the permissions policies or change the IAM role to deny access.
|
|
3865
|
+
|
|
3864
3866
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html
|
|
3865
3867
|
:cloudformationResource: AWS::ApiGateway::Account
|
|
3866
3868
|
:exampleMetadata: fixture=_generated
|
|
@@ -9091,7 +9093,7 @@ class CfnGatewayResponse(
|
|
|
9091
9093
|
):
|
|
9092
9094
|
'''The ``AWS::ApiGateway::GatewayResponse`` resource creates a gateway response for your API.
|
|
9093
9095
|
|
|
9094
|
-
For more information, see `API Gateway Responses <https://docs.aws.amazon.com/apigateway/latest/developerguide/customize-gateway-responses.html#api-gateway-gatewayResponse-definition>`_ in the *API Gateway Developer Guide* .
|
|
9096
|
+
When you delete a stack containing this resource, your custom gateway responses are reset. For more information, see `API Gateway Responses <https://docs.aws.amazon.com/apigateway/latest/developerguide/customize-gateway-responses.html#api-gateway-gatewayResponse-definition>`_ in the *API Gateway Developer Guide* .
|
|
9095
9097
|
|
|
9096
9098
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html
|
|
9097
9099
|
:cloudformationResource: AWS::ApiGateway::GatewayResponse
|