aws-cdk-lib 2.163.1__py3-none-any.whl → 2.164.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.163.1.jsii.tgz → aws-cdk-lib@2.164.1.jsii.tgz} +0 -0
- aws_cdk/aws_bedrock/__init__.py +6 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +3 -3
- aws_cdk/aws_codebuild/__init__.py +19 -19
- aws_cdk/aws_cognito/__init__.py +179 -10
- aws_cdk/aws_ec2/__init__.py +45 -0
- aws_cdk/aws_iam/__init__.py +66 -0
- aws_cdk/aws_lambda/__init__.py +13 -13
- aws_cdk/aws_lambda_nodejs/__init__.py +4 -5
- aws_cdk/aws_s3/__init__.py +2 -2
- aws_cdk/cx_api/__init__.py +19 -0
- aws_cdk/triggers/__init__.py +3 -3
- {aws_cdk_lib-2.163.1.dist-info → aws_cdk_lib-2.164.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.163.1.dist-info → aws_cdk_lib-2.164.1.dist-info}/RECORD +19 -19
- {aws_cdk_lib-2.163.1.dist-info → aws_cdk_lib-2.164.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.163.1.dist-info → aws_cdk_lib-2.164.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.163.1.dist-info → aws_cdk_lib-2.164.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.163.1.dist-info → aws_cdk_lib-2.164.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.
|
|
38
|
+
"aws-cdk-lib", "2.164.1", __name__[0:-6], "aws-cdk-lib@2.164.1.jsii.tgz"
|
|
39
39
|
)
|
|
40
40
|
|
|
41
41
|
__all__ = [
|
|
Binary file
|
aws_cdk/aws_bedrock/__init__.py
CHANGED
|
@@ -19650,6 +19650,12 @@ class FoundationModelIdentifier(
|
|
|
19650
19650
|
'''Base model "anthropic.claude-3-5-sonnet-20240620-v1:0".'''
|
|
19651
19651
|
return typing.cast("FoundationModelIdentifier", jsii.sget(cls, "ANTHROPIC_CLAUDE_3_5_SONNET_20240620_V1_0"))
|
|
19652
19652
|
|
|
19653
|
+
@jsii.python.classproperty
|
|
19654
|
+
@jsii.member(jsii_name="ANTHROPIC_CLAUDE_3_5_SONNET_20241022_V2_0")
|
|
19655
|
+
def ANTHROPIC_CLAUDE_3_5_SONNET_20241022_V2_0(cls) -> "FoundationModelIdentifier":
|
|
19656
|
+
'''Base model "anthropic.claude-3-5-sonnet-20241022-v2:0".'''
|
|
19657
|
+
return typing.cast("FoundationModelIdentifier", jsii.sget(cls, "ANTHROPIC_CLAUDE_3_5_SONNET_20241022_V2_0"))
|
|
19658
|
+
|
|
19653
19659
|
@jsii.python.classproperty
|
|
19654
19660
|
@jsii.member(jsii_name="ANTHROPIC_CLAUDE_3_HAIKU_20240307_V1_0")
|
|
19655
19661
|
def ANTHROPIC_CLAUDE_3_HAIKU_20240307_V1_0(cls) -> "FoundationModelIdentifier":
|
|
@@ -242,7 +242,7 @@ class EdgeFunction(
|
|
|
242
242
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
243
243
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
244
244
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
245
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
245
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
246
246
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
247
247
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
248
248
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -1074,7 +1074,7 @@ class EdgeFunctionProps(_FunctionProps_a308e854):
|
|
|
1074
1074
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
1075
1075
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
1076
1076
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
1077
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
1077
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
1078
1078
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
1079
1079
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
1080
1080
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -1734,7 +1734,7 @@ class EdgeFunctionProps(_FunctionProps_a308e854):
|
|
|
1734
1734
|
def recursive_loop(self) -> typing.Optional[_RecursiveLoop_fc293827]:
|
|
1735
1735
|
'''Sets the Recursive Loop Protection for Lambda Function.
|
|
1736
1736
|
|
|
1737
|
-
It lets Lambda detect and terminate unintended
|
|
1737
|
+
It lets Lambda detect and terminate unintended recursive loops.
|
|
1738
1738
|
|
|
1739
1739
|
:default: RecursiveLoop.Terminate
|
|
1740
1740
|
'''
|
|
@@ -1474,7 +1474,7 @@ class BuildEnvironment:
|
|
|
1474
1474
|
privileged: typing.Optional[builtins.bool] = None,
|
|
1475
1475
|
) -> None:
|
|
1476
1476
|
'''
|
|
1477
|
-
:param build_image: The image used for the builds. Default: LinuxBuildImage.
|
|
1477
|
+
:param build_image: The image used for the builds. Default: LinuxBuildImage.STANDARD_7_0
|
|
1478
1478
|
:param certificate: The location of the PEM-encoded certificate for the build project. Default: - No external certificate is added to the project
|
|
1479
1479
|
:param compute_type: The type of compute to use for this build. See the ``ComputeType`` enum for the possible values. Default: taken from ``#buildImage#defaultComputeType``
|
|
1480
1480
|
:param environment_variables: The environment variables that your builds can use.
|
|
@@ -1540,7 +1540,7 @@ class BuildEnvironment:
|
|
|
1540
1540
|
def build_image(self) -> typing.Optional["IBuildImage"]:
|
|
1541
1541
|
'''The image used for the builds.
|
|
1542
1542
|
|
|
1543
|
-
:default: LinuxBuildImage.
|
|
1543
|
+
:default: LinuxBuildImage.STANDARD_7_0
|
|
1544
1544
|
'''
|
|
1545
1545
|
result = self._values.get("build_image")
|
|
1546
1546
|
return typing.cast(typing.Optional["IBuildImage"], result)
|
|
@@ -7624,7 +7624,7 @@ class CommonProjectProps:
|
|
|
7624
7624
|
:param concurrent_build_limit: Maximum number of concurrent builds. Minimum value is 1 and maximum is account build limit. Default: - no explicit limit is set
|
|
7625
7625
|
:param description: A description of the project. Use the description to identify the purpose of the project. Default: - No description.
|
|
7626
7626
|
:param encryption_key: Encryption key to use to read and write artifacts. Default: - The AWS-managed CMK for Amazon Simple Storage Service (Amazon S3) is used.
|
|
7627
|
-
:param environment: Build environment to use for the build. Default: BuildEnvironment.LinuxBuildImage.
|
|
7627
|
+
:param environment: Build environment to use for the build. Default: BuildEnvironment.LinuxBuildImage.STANDARD_7_0
|
|
7628
7628
|
:param environment_variables: Additional environment variables to add to the build environment. Default: - No additional environment variables are specified.
|
|
7629
7629
|
:param file_system_locations: An ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier, location, mountOptions, mountPoint, and type of a file system created using Amazon Elastic File System. Default: - no file system locations
|
|
7630
7630
|
:param grant_report_group_permissions: Add permissions to this project's role to create and use test report groups with name starting with the name of this project. That is the standard report group that gets created when a simple name (in contrast to an ARN) is used in the 'reports' section of the buildspec of this project. This is usually harmless, but you can turn these off if you don't plan on using test reports in this project. Default: true
|
|
@@ -7907,7 +7907,7 @@ class CommonProjectProps:
|
|
|
7907
7907
|
def environment(self) -> typing.Optional[BuildEnvironment]:
|
|
7908
7908
|
'''Build environment to use for the build.
|
|
7909
7909
|
|
|
7910
|
-
:default: BuildEnvironment.LinuxBuildImage.
|
|
7910
|
+
:default: BuildEnvironment.LinuxBuildImage.STANDARD_7_0
|
|
7911
7911
|
'''
|
|
7912
7912
|
result = self._values.get("environment")
|
|
7913
7913
|
return typing.cast(typing.Optional[BuildEnvironment], result)
|
|
@@ -9273,7 +9273,7 @@ class IBuildImage(typing_extensions.Protocol):
|
|
|
9273
9273
|
) -> typing.List[builtins.str]:
|
|
9274
9274
|
'''Allows the image a chance to validate whether the passed configuration is correct.
|
|
9275
9275
|
|
|
9276
|
-
:param build_image: The image used for the builds. Default: LinuxBuildImage.
|
|
9276
|
+
:param build_image: The image used for the builds. Default: LinuxBuildImage.STANDARD_7_0
|
|
9277
9277
|
:param certificate: The location of the PEM-encoded certificate for the build project. Default: - No external certificate is added to the project
|
|
9278
9278
|
:param compute_type: The type of compute to use for this build. See the ``ComputeType`` enum for the possible values. Default: taken from ``#buildImage#defaultComputeType``
|
|
9279
9279
|
:param environment_variables: The environment variables that your builds can use.
|
|
@@ -9364,7 +9364,7 @@ class _IBuildImageProxy:
|
|
|
9364
9364
|
) -> typing.List[builtins.str]:
|
|
9365
9365
|
'''Allows the image a chance to validate whether the passed configuration is correct.
|
|
9366
9366
|
|
|
9367
|
-
:param build_image: The image used for the builds. Default: LinuxBuildImage.
|
|
9367
|
+
:param build_image: The image used for the builds. Default: LinuxBuildImage.STANDARD_7_0
|
|
9368
9368
|
:param certificate: The location of the PEM-encoded certificate for the build project. Default: - No external certificate is added to the project
|
|
9369
9369
|
:param compute_type: The type of compute to use for this build. See the ``ComputeType`` enum for the possible values. Default: taken from ``#buildImage#defaultComputeType``
|
|
9370
9370
|
:param environment_variables: The environment variables that your builds can use.
|
|
@@ -10849,7 +10849,7 @@ class LinuxArmBuildImage(
|
|
|
10849
10849
|
) -> typing.List[builtins.str]:
|
|
10850
10850
|
'''Validates by checking the BuildEnvironments' images are not Lambda ComputeTypes.
|
|
10851
10851
|
|
|
10852
|
-
:param build_image: The image used for the builds. Default: LinuxBuildImage.
|
|
10852
|
+
:param build_image: The image used for the builds. Default: LinuxBuildImage.STANDARD_7_0
|
|
10853
10853
|
:param certificate: The location of the PEM-encoded certificate for the build project. Default: - No external certificate is added to the project
|
|
10854
10854
|
:param compute_type: The type of compute to use for this build. See the ``ComputeType`` enum for the possible values. Default: taken from ``#buildImage#defaultComputeType``
|
|
10855
10855
|
:param environment_variables: The environment variables that your builds can use.
|
|
@@ -10972,7 +10972,7 @@ class LinuxArmLambdaBuildImage(
|
|
|
10972
10972
|
) -> typing.List[builtins.str]:
|
|
10973
10973
|
'''Allows the image a chance to validate whether the passed configuration is correct.
|
|
10974
10974
|
|
|
10975
|
-
:param build_image: The image used for the builds. Default: LinuxBuildImage.
|
|
10975
|
+
:param build_image: The image used for the builds. Default: LinuxBuildImage.STANDARD_7_0
|
|
10976
10976
|
:param certificate: The location of the PEM-encoded certificate for the build project. Default: - No external certificate is added to the project
|
|
10977
10977
|
:param compute_type: The type of compute to use for this build. See the ``ComputeType`` enum for the possible values. Default: taken from ``#buildImage#defaultComputeType``
|
|
10978
10978
|
:param environment_variables: The environment variables that your builds can use.
|
|
@@ -11292,7 +11292,7 @@ class LinuxBuildImage(
|
|
|
11292
11292
|
) -> typing.List[builtins.str]:
|
|
11293
11293
|
'''Allows the image a chance to validate whether the passed configuration is correct.
|
|
11294
11294
|
|
|
11295
|
-
:param build_image: The image used for the builds. Default: LinuxBuildImage.
|
|
11295
|
+
:param build_image: The image used for the builds. Default: LinuxBuildImage.STANDARD_7_0
|
|
11296
11296
|
:param certificate: The location of the PEM-encoded certificate for the build project. Default: - No external certificate is added to the project
|
|
11297
11297
|
:param compute_type: The type of compute to use for this build. See the ``ComputeType`` enum for the possible values. Default: taken from ``#buildImage#defaultComputeType``
|
|
11298
11298
|
:param environment_variables: The environment variables that your builds can use.
|
|
@@ -11536,7 +11536,7 @@ class LinuxLambdaBuildImage(
|
|
|
11536
11536
|
) -> typing.List[builtins.str]:
|
|
11537
11537
|
'''Allows the image a chance to validate whether the passed configuration is correct.
|
|
11538
11538
|
|
|
11539
|
-
:param build_image: The image used for the builds. Default: LinuxBuildImage.
|
|
11539
|
+
:param build_image: The image used for the builds. Default: LinuxBuildImage.STANDARD_7_0
|
|
11540
11540
|
:param certificate: The location of the PEM-encoded certificate for the build project. Default: - No external certificate is added to the project
|
|
11541
11541
|
:param compute_type: The type of compute to use for this build. See the ``ComputeType`` enum for the possible values. Default: taken from ``#buildImage#defaultComputeType``
|
|
11542
11542
|
:param environment_variables: The environment variables that your builds can use.
|
|
@@ -11977,7 +11977,7 @@ class MacBuildImage(
|
|
|
11977
11977
|
) -> typing.List[builtins.str]:
|
|
11978
11978
|
'''Allows the image a chance to validate whether the passed configuration is correct.
|
|
11979
11979
|
|
|
11980
|
-
:param build_image: The image used for the builds. Default: LinuxBuildImage.
|
|
11980
|
+
:param build_image: The image used for the builds. Default: LinuxBuildImage.STANDARD_7_0
|
|
11981
11981
|
:param certificate: The location of the PEM-encoded certificate for the build project. Default: - No external certificate is added to the project
|
|
11982
11982
|
:param compute_type: The type of compute to use for this build. See the ``ComputeType`` enum for the possible values. Default: taken from ``#buildImage#defaultComputeType``
|
|
11983
11983
|
:param environment_variables: The environment variables that your builds can use.
|
|
@@ -12148,7 +12148,7 @@ class PipelineProjectProps(CommonProjectProps):
|
|
|
12148
12148
|
:param concurrent_build_limit: Maximum number of concurrent builds. Minimum value is 1 and maximum is account build limit. Default: - no explicit limit is set
|
|
12149
12149
|
:param description: A description of the project. Use the description to identify the purpose of the project. Default: - No description.
|
|
12150
12150
|
:param encryption_key: Encryption key to use to read and write artifacts. Default: - The AWS-managed CMK for Amazon Simple Storage Service (Amazon S3) is used.
|
|
12151
|
-
:param environment: Build environment to use for the build. Default: BuildEnvironment.LinuxBuildImage.
|
|
12151
|
+
:param environment: Build environment to use for the build. Default: BuildEnvironment.LinuxBuildImage.STANDARD_7_0
|
|
12152
12152
|
:param environment_variables: Additional environment variables to add to the build environment. Default: - No additional environment variables are specified.
|
|
12153
12153
|
:param file_system_locations: An ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier, location, mountOptions, mountPoint, and type of a file system created using Amazon Elastic File System. Default: - no file system locations
|
|
12154
12154
|
:param grant_report_group_permissions: Add permissions to this project's role to create and use test report groups with name starting with the name of this project. That is the standard report group that gets created when a simple name (in contrast to an ARN) is used in the 'reports' section of the buildspec of this project. This is usually harmless, but you can turn these off if you don't plan on using test reports in this project. Default: true
|
|
@@ -12389,7 +12389,7 @@ class PipelineProjectProps(CommonProjectProps):
|
|
|
12389
12389
|
def environment(self) -> typing.Optional[BuildEnvironment]:
|
|
12390
12390
|
'''Build environment to use for the build.
|
|
12391
12391
|
|
|
12392
|
-
:default: BuildEnvironment.LinuxBuildImage.
|
|
12392
|
+
:default: BuildEnvironment.LinuxBuildImage.STANDARD_7_0
|
|
12393
12393
|
'''
|
|
12394
12394
|
result = self._values.get("environment")
|
|
12395
12395
|
return typing.cast(typing.Optional[BuildEnvironment], result)
|
|
@@ -12651,7 +12651,7 @@ class Project(
|
|
|
12651
12651
|
:param concurrent_build_limit: Maximum number of concurrent builds. Minimum value is 1 and maximum is account build limit. Default: - no explicit limit is set
|
|
12652
12652
|
:param description: A description of the project. Use the description to identify the purpose of the project. Default: - No description.
|
|
12653
12653
|
:param encryption_key: Encryption key to use to read and write artifacts. Default: - The AWS-managed CMK for Amazon Simple Storage Service (Amazon S3) is used.
|
|
12654
|
-
:param environment: Build environment to use for the build. Default: BuildEnvironment.LinuxBuildImage.
|
|
12654
|
+
:param environment: Build environment to use for the build. Default: BuildEnvironment.LinuxBuildImage.STANDARD_7_0
|
|
12655
12655
|
:param environment_variables: Additional environment variables to add to the build environment. Default: - No additional environment variables are specified.
|
|
12656
12656
|
:param file_system_locations: An ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier, location, mountOptions, mountPoint, and type of a file system created using Amazon Elastic File System. Default: - no file system locations
|
|
12657
12657
|
:param grant_report_group_permissions: Add permissions to this project's role to create and use test report groups with name starting with the name of this project. That is the standard report group that gets created when a simple name (in contrast to an ARN) is used in the 'reports' section of the buildspec of this project. This is usually harmless, but you can turn these off if you don't plan on using test reports in this project. Default: true
|
|
@@ -13684,7 +13684,7 @@ class ProjectProps(CommonProjectProps):
|
|
|
13684
13684
|
:param concurrent_build_limit: Maximum number of concurrent builds. Minimum value is 1 and maximum is account build limit. Default: - no explicit limit is set
|
|
13685
13685
|
:param description: A description of the project. Use the description to identify the purpose of the project. Default: - No description.
|
|
13686
13686
|
:param encryption_key: Encryption key to use to read and write artifacts. Default: - The AWS-managed CMK for Amazon Simple Storage Service (Amazon S3) is used.
|
|
13687
|
-
:param environment: Build environment to use for the build. Default: BuildEnvironment.LinuxBuildImage.
|
|
13687
|
+
:param environment: Build environment to use for the build. Default: BuildEnvironment.LinuxBuildImage.STANDARD_7_0
|
|
13688
13688
|
:param environment_variables: Additional environment variables to add to the build environment. Default: - No additional environment variables are specified.
|
|
13689
13689
|
:param file_system_locations: An ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier, location, mountOptions, mountPoint, and type of a file system created using Amazon Elastic File System. Default: - no file system locations
|
|
13690
13690
|
:param grant_report_group_permissions: Add permissions to this project's role to create and use test report groups with name starting with the name of this project. That is the standard report group that gets created when a simple name (in contrast to an ARN) is used in the 'reports' section of the buildspec of this project. This is usually harmless, but you can turn these off if you don't plan on using test reports in this project. Default: true
|
|
@@ -13902,7 +13902,7 @@ class ProjectProps(CommonProjectProps):
|
|
|
13902
13902
|
def environment(self) -> typing.Optional[BuildEnvironment]:
|
|
13903
13903
|
'''Build environment to use for the build.
|
|
13904
13904
|
|
|
13905
|
-
:default: BuildEnvironment.LinuxBuildImage.
|
|
13905
|
+
:default: BuildEnvironment.LinuxBuildImage.STANDARD_7_0
|
|
13906
13906
|
'''
|
|
13907
13907
|
result = self._values.get("environment")
|
|
13908
13908
|
return typing.cast(typing.Optional[BuildEnvironment], result)
|
|
@@ -15487,7 +15487,7 @@ class WindowsBuildImage(
|
|
|
15487
15487
|
) -> typing.List[builtins.str]:
|
|
15488
15488
|
'''Allows the image a chance to validate whether the passed configuration is correct.
|
|
15489
15489
|
|
|
15490
|
-
:param build_image: The image used for the builds. Default: LinuxBuildImage.
|
|
15490
|
+
:param build_image: The image used for the builds. Default: LinuxBuildImage.STANDARD_7_0
|
|
15491
15491
|
:param certificate: The location of the PEM-encoded certificate for the build project. Default: - No external certificate is added to the project
|
|
15492
15492
|
:param compute_type: The type of compute to use for this build. See the ``ComputeType`` enum for the possible values. Default: taken from ``#buildImage#defaultComputeType``
|
|
15493
15493
|
:param environment_variables: The environment variables that your builds can use.
|
|
@@ -16905,7 +16905,7 @@ class LinuxGpuBuildImage(
|
|
|
16905
16905
|
) -> typing.List[builtins.str]:
|
|
16906
16906
|
'''Allows the image a chance to validate whether the passed configuration is correct.
|
|
16907
16907
|
|
|
16908
|
-
:param build_image: The image used for the builds. Default: LinuxBuildImage.
|
|
16908
|
+
:param build_image: The image used for the builds. Default: LinuxBuildImage.STANDARD_7_0
|
|
16909
16909
|
:param certificate: The location of the PEM-encoded certificate for the build project. Default: - No external certificate is added to the project
|
|
16910
16910
|
:param compute_type: The type of compute to use for this build. See the ``ComputeType`` enum for the possible values. Default: taken from ``#buildImage#defaultComputeType``
|
|
16911
16911
|
:param environment_variables: The environment variables that your builds can use.
|
|
@@ -17154,7 +17154,7 @@ class PipelineProject(
|
|
|
17154
17154
|
:param concurrent_build_limit: Maximum number of concurrent builds. Minimum value is 1 and maximum is account build limit. Default: - no explicit limit is set
|
|
17155
17155
|
:param description: A description of the project. Use the description to identify the purpose of the project. Default: - No description.
|
|
17156
17156
|
:param encryption_key: Encryption key to use to read and write artifacts. Default: - The AWS-managed CMK for Amazon Simple Storage Service (Amazon S3) is used.
|
|
17157
|
-
:param environment: Build environment to use for the build. Default: BuildEnvironment.LinuxBuildImage.
|
|
17157
|
+
:param environment: Build environment to use for the build. Default: BuildEnvironment.LinuxBuildImage.STANDARD_7_0
|
|
17158
17158
|
:param environment_variables: Additional environment variables to add to the build environment. Default: - No additional environment variables are specified.
|
|
17159
17159
|
:param file_system_locations: An ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier, location, mountOptions, mountPoint, and type of a file system created using Amazon Elastic File System. Default: - no file system locations
|
|
17160
17160
|
:param grant_report_group_permissions: Add permissions to this project's role to create and use test report groups with name starting with the name of this project. That is the standard report group that gets created when a simple name (in contrast to an ARN) is used in the 'reports' section of the buildspec of this project. This is usually harmless, but you can turn these off if you don't plan on using test reports in this project. Default: true
|
aws_cdk/aws_cognito/__init__.py
CHANGED
|
@@ -308,13 +308,17 @@ configure an MFA token and use it for sign in. It also allows for the users to u
|
|
|
308
308
|
[time-based one time password
|
|
309
309
|
(TOTP)](https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-mfa-totp.html).
|
|
310
310
|
|
|
311
|
+
If you want to enable email-based MFA, set `email` propety to the Amazon SES email-sending configuration and set `advancedSecurityMode` to `AdvancedSecurity.ENFORCED` or `AdvancedSecurity.AUDIT`.
|
|
312
|
+
For more information, see [Email MFA](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pool-settings-advanced-security-email-mfa.html).
|
|
313
|
+
|
|
311
314
|
```python
|
|
312
315
|
cognito.UserPool(self, "myuserpool",
|
|
313
316
|
# ...
|
|
314
317
|
mfa=cognito.Mfa.REQUIRED,
|
|
315
318
|
mfa_second_factor=cognito.MfaSecondFactor(
|
|
316
319
|
sms=True,
|
|
317
|
-
otp=True
|
|
320
|
+
otp=True,
|
|
321
|
+
email=False
|
|
318
322
|
)
|
|
319
323
|
)
|
|
320
324
|
```
|
|
@@ -13633,7 +13637,8 @@ class Mfa(enum.Enum):
|
|
|
13633
13637
|
mfa=cognito.Mfa.REQUIRED,
|
|
13634
13638
|
mfa_second_factor=cognito.MfaSecondFactor(
|
|
13635
13639
|
sms=True,
|
|
13636
|
-
otp=True
|
|
13640
|
+
otp=True,
|
|
13641
|
+
email=False
|
|
13637
13642
|
)
|
|
13638
13643
|
)
|
|
13639
13644
|
'''
|
|
@@ -13649,14 +13654,21 @@ class Mfa(enum.Enum):
|
|
|
13649
13654
|
@jsii.data_type(
|
|
13650
13655
|
jsii_type="aws-cdk-lib.aws_cognito.MfaSecondFactor",
|
|
13651
13656
|
jsii_struct_bases=[],
|
|
13652
|
-
name_mapping={"otp": "otp", "sms": "sms"},
|
|
13657
|
+
name_mapping={"otp": "otp", "sms": "sms", "email": "email"},
|
|
13653
13658
|
)
|
|
13654
13659
|
class MfaSecondFactor:
|
|
13655
|
-
def __init__(
|
|
13660
|
+
def __init__(
|
|
13661
|
+
self,
|
|
13662
|
+
*,
|
|
13663
|
+
otp: builtins.bool,
|
|
13664
|
+
sms: builtins.bool,
|
|
13665
|
+
email: typing.Optional[builtins.bool] = None,
|
|
13666
|
+
) -> None:
|
|
13656
13667
|
'''The different ways in which a user pool can obtain their MFA token for sign in.
|
|
13657
13668
|
|
|
13658
13669
|
:param otp: The MFA token is a time-based one time password that is generated by a hardware or software token. Default: false
|
|
13659
13670
|
:param sms: The MFA token is sent to the user via SMS to their verified phone numbers. Default: true
|
|
13671
|
+
:param email: The MFA token is sent to the user via EMAIL. To enable email-based MFA, set ``email`` property to the Amazon SES email-sending configuration and set ``advancedSecurityMode`` to ``AdvancedSecurity.ENFORCED`` or ``AdvancedSecurity.AUDIT`` Default: false
|
|
13660
13672
|
|
|
13661
13673
|
:see: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-mfa.html
|
|
13662
13674
|
:exampleMetadata: infused
|
|
@@ -13668,7 +13680,8 @@ class MfaSecondFactor:
|
|
|
13668
13680
|
mfa=cognito.Mfa.REQUIRED,
|
|
13669
13681
|
mfa_second_factor=cognito.MfaSecondFactor(
|
|
13670
13682
|
sms=True,
|
|
13671
|
-
otp=True
|
|
13683
|
+
otp=True,
|
|
13684
|
+
email=False
|
|
13672
13685
|
)
|
|
13673
13686
|
)
|
|
13674
13687
|
'''
|
|
@@ -13676,10 +13689,13 @@ class MfaSecondFactor:
|
|
|
13676
13689
|
type_hints = typing.get_type_hints(_typecheckingstub__cd702328c87129c710daf17c5d6eb94fe91bfd54ab5fe2157a787ca7021ea599)
|
|
13677
13690
|
check_type(argname="argument otp", value=otp, expected_type=type_hints["otp"])
|
|
13678
13691
|
check_type(argname="argument sms", value=sms, expected_type=type_hints["sms"])
|
|
13692
|
+
check_type(argname="argument email", value=email, expected_type=type_hints["email"])
|
|
13679
13693
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
13680
13694
|
"otp": otp,
|
|
13681
13695
|
"sms": sms,
|
|
13682
13696
|
}
|
|
13697
|
+
if email is not None:
|
|
13698
|
+
self._values["email"] = email
|
|
13683
13699
|
|
|
13684
13700
|
@builtins.property
|
|
13685
13701
|
def otp(self) -> builtins.bool:
|
|
@@ -13699,12 +13715,26 @@ class MfaSecondFactor:
|
|
|
13699
13715
|
|
|
13700
13716
|
:default: true
|
|
13701
13717
|
|
|
13702
|
-
:see: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-mfa-sms-
|
|
13718
|
+
:see: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-mfa-sms-email-message.html
|
|
13703
13719
|
'''
|
|
13704
13720
|
result = self._values.get("sms")
|
|
13705
13721
|
assert result is not None, "Required property 'sms' is missing"
|
|
13706
13722
|
return typing.cast(builtins.bool, result)
|
|
13707
13723
|
|
|
13724
|
+
@builtins.property
|
|
13725
|
+
def email(self) -> typing.Optional[builtins.bool]:
|
|
13726
|
+
'''The MFA token is sent to the user via EMAIL.
|
|
13727
|
+
|
|
13728
|
+
To enable email-based MFA, set ``email`` property to the Amazon SES email-sending configuration
|
|
13729
|
+
and set ``advancedSecurityMode`` to ``AdvancedSecurity.ENFORCED`` or ``AdvancedSecurity.AUDIT``
|
|
13730
|
+
|
|
13731
|
+
:default: false
|
|
13732
|
+
|
|
13733
|
+
:see: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-mfa-sms-email-message.html
|
|
13734
|
+
'''
|
|
13735
|
+
result = self._values.get("email")
|
|
13736
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
13737
|
+
|
|
13708
13738
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
13709
13739
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
13710
13740
|
|
|
@@ -16290,7 +16320,7 @@ class UserPool(
|
|
|
16290
16320
|
:param lambda_triggers: Lambda functions to use for supported Cognito triggers. Default: - No Lambda triggers.
|
|
16291
16321
|
:param mfa: Configure whether users of this user pool can or are required use MFA to sign in. Default: Mfa.OFF
|
|
16292
16322
|
:param mfa_message: The SMS message template sent during MFA verification. Use '{####}' in the template where Cognito should insert the verification code. Default: 'Your authentication code is {####}.'
|
|
16293
|
-
:param mfa_second_factor: Configure the MFA types that users can use in this user pool. Ignored if ``mfa`` is set to ``OFF``. Default: - { sms: true, otp: false }, if ``mfa`` is set to ``OPTIONAL`` or ``REQUIRED``. { sms: false, otp: false }, otherwise
|
|
16323
|
+
:param mfa_second_factor: Configure the MFA types that users can use in this user pool. Ignored if ``mfa`` is set to ``OFF``. Default: - { sms: true, otp: false, email: false }, if ``mfa`` is set to ``OPTIONAL`` or ``REQUIRED``. { sms: false, otp: false, email:false }, otherwise
|
|
16294
16324
|
:param password_policy: Password policy for this user pool. Default: - see defaults on each property of PasswordPolicy.
|
|
16295
16325
|
:param removal_policy: Policy to apply when the user pool is removed from the stack. Default: RemovalPolicy.RETAIN
|
|
16296
16326
|
:param self_sign_up_enabled: Whether self sign-up should be enabled. To configure self sign-up configuration use the ``userVerification`` property. Default: - false
|
|
@@ -17885,6 +17915,132 @@ class _UserPoolEmailProxy(UserPoolEmail):
|
|
|
17885
17915
|
typing.cast(typing.Any, UserPoolEmail).__jsii_proxy_class__ = lambda : _UserPoolEmailProxy
|
|
17886
17916
|
|
|
17887
17917
|
|
|
17918
|
+
@jsii.data_type(
|
|
17919
|
+
jsii_type="aws-cdk-lib.aws_cognito.UserPoolEmailConfig",
|
|
17920
|
+
jsii_struct_bases=[],
|
|
17921
|
+
name_mapping={
|
|
17922
|
+
"configuration_set": "configurationSet",
|
|
17923
|
+
"email_sending_account": "emailSendingAccount",
|
|
17924
|
+
"from_": "from",
|
|
17925
|
+
"reply_to_email_address": "replyToEmailAddress",
|
|
17926
|
+
"source_arn": "sourceArn",
|
|
17927
|
+
},
|
|
17928
|
+
)
|
|
17929
|
+
class UserPoolEmailConfig:
|
|
17930
|
+
def __init__(
|
|
17931
|
+
self,
|
|
17932
|
+
*,
|
|
17933
|
+
configuration_set: typing.Optional[builtins.str] = None,
|
|
17934
|
+
email_sending_account: typing.Optional[builtins.str] = None,
|
|
17935
|
+
from_: typing.Optional[builtins.str] = None,
|
|
17936
|
+
reply_to_email_address: typing.Optional[builtins.str] = None,
|
|
17937
|
+
source_arn: typing.Optional[builtins.str] = None,
|
|
17938
|
+
) -> None:
|
|
17939
|
+
'''Result of binding email settings with a user pool.
|
|
17940
|
+
|
|
17941
|
+
:param configuration_set: The name of the configuration set in SES. Default: - none
|
|
17942
|
+
:param email_sending_account: Specifies whether to use Cognito's built in email functionality or SES. Default: - Cognito built in email functionality
|
|
17943
|
+
:param from_: Identifies either the sender's email address or the sender's name with their email address. If emailSendingAccount is DEVELOPER then this cannot be specified. Default: 'no-reply@verificationemail.com'
|
|
17944
|
+
:param reply_to_email_address: The destination to which the receiver of the email should reply to. Default: - same as ``from``
|
|
17945
|
+
:param source_arn: The ARN of a verified email address in Amazon SES. required if emailSendingAccount is DEVELOPER or if 'from' is provided. Default: - none
|
|
17946
|
+
|
|
17947
|
+
:exampleMetadata: fixture=_generated
|
|
17948
|
+
|
|
17949
|
+
Example::
|
|
17950
|
+
|
|
17951
|
+
# The code below shows an example of how to instantiate this type.
|
|
17952
|
+
# The values are placeholders you should change.
|
|
17953
|
+
from aws_cdk import aws_cognito as cognito
|
|
17954
|
+
|
|
17955
|
+
user_pool_email_config = cognito.UserPoolEmailConfig(
|
|
17956
|
+
configuration_set="configurationSet",
|
|
17957
|
+
email_sending_account="emailSendingAccount",
|
|
17958
|
+
from="from",
|
|
17959
|
+
reply_to_email_address="replyToEmailAddress",
|
|
17960
|
+
source_arn="sourceArn"
|
|
17961
|
+
)
|
|
17962
|
+
'''
|
|
17963
|
+
if __debug__:
|
|
17964
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e3ce90cb9624f22600c6b33192c8ad7ad7f3946d65d49e2cf22b46b1dca4339e)
|
|
17965
|
+
check_type(argname="argument configuration_set", value=configuration_set, expected_type=type_hints["configuration_set"])
|
|
17966
|
+
check_type(argname="argument email_sending_account", value=email_sending_account, expected_type=type_hints["email_sending_account"])
|
|
17967
|
+
check_type(argname="argument from_", value=from_, expected_type=type_hints["from_"])
|
|
17968
|
+
check_type(argname="argument reply_to_email_address", value=reply_to_email_address, expected_type=type_hints["reply_to_email_address"])
|
|
17969
|
+
check_type(argname="argument source_arn", value=source_arn, expected_type=type_hints["source_arn"])
|
|
17970
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
17971
|
+
if configuration_set is not None:
|
|
17972
|
+
self._values["configuration_set"] = configuration_set
|
|
17973
|
+
if email_sending_account is not None:
|
|
17974
|
+
self._values["email_sending_account"] = email_sending_account
|
|
17975
|
+
if from_ is not None:
|
|
17976
|
+
self._values["from_"] = from_
|
|
17977
|
+
if reply_to_email_address is not None:
|
|
17978
|
+
self._values["reply_to_email_address"] = reply_to_email_address
|
|
17979
|
+
if source_arn is not None:
|
|
17980
|
+
self._values["source_arn"] = source_arn
|
|
17981
|
+
|
|
17982
|
+
@builtins.property
|
|
17983
|
+
def configuration_set(self) -> typing.Optional[builtins.str]:
|
|
17984
|
+
'''The name of the configuration set in SES.
|
|
17985
|
+
|
|
17986
|
+
:default: - none
|
|
17987
|
+
'''
|
|
17988
|
+
result = self._values.get("configuration_set")
|
|
17989
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
17990
|
+
|
|
17991
|
+
@builtins.property
|
|
17992
|
+
def email_sending_account(self) -> typing.Optional[builtins.str]:
|
|
17993
|
+
'''Specifies whether to use Cognito's built in email functionality or SES.
|
|
17994
|
+
|
|
17995
|
+
:default: - Cognito built in email functionality
|
|
17996
|
+
'''
|
|
17997
|
+
result = self._values.get("email_sending_account")
|
|
17998
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
17999
|
+
|
|
18000
|
+
@builtins.property
|
|
18001
|
+
def from_(self) -> typing.Optional[builtins.str]:
|
|
18002
|
+
'''Identifies either the sender's email address or the sender's name with their email address.
|
|
18003
|
+
|
|
18004
|
+
If emailSendingAccount is DEVELOPER then this cannot be specified.
|
|
18005
|
+
|
|
18006
|
+
:default: 'no-reply@verificationemail.com'
|
|
18007
|
+
'''
|
|
18008
|
+
result = self._values.get("from_")
|
|
18009
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
18010
|
+
|
|
18011
|
+
@builtins.property
|
|
18012
|
+
def reply_to_email_address(self) -> typing.Optional[builtins.str]:
|
|
18013
|
+
'''The destination to which the receiver of the email should reply to.
|
|
18014
|
+
|
|
18015
|
+
:default: - same as ``from``
|
|
18016
|
+
'''
|
|
18017
|
+
result = self._values.get("reply_to_email_address")
|
|
18018
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
18019
|
+
|
|
18020
|
+
@builtins.property
|
|
18021
|
+
def source_arn(self) -> typing.Optional[builtins.str]:
|
|
18022
|
+
'''The ARN of a verified email address in Amazon SES.
|
|
18023
|
+
|
|
18024
|
+
required if emailSendingAccount is DEVELOPER or if
|
|
18025
|
+
'from' is provided.
|
|
18026
|
+
|
|
18027
|
+
:default: - none
|
|
18028
|
+
'''
|
|
18029
|
+
result = self._values.get("source_arn")
|
|
18030
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
18031
|
+
|
|
18032
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
18033
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
18034
|
+
|
|
18035
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
18036
|
+
return not (rhs == self)
|
|
18037
|
+
|
|
18038
|
+
def __repr__(self) -> str:
|
|
18039
|
+
return "UserPoolEmailConfig(%s)" % ", ".join(
|
|
18040
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
18041
|
+
)
|
|
18042
|
+
|
|
18043
|
+
|
|
17888
18044
|
class UserPoolIdentityProvider(
|
|
17889
18045
|
metaclass=jsii.JSIIMeta,
|
|
17890
18046
|
jsii_type="aws-cdk-lib.aws_cognito.UserPoolIdentityProvider",
|
|
@@ -19107,7 +19263,7 @@ class UserPoolProps:
|
|
|
19107
19263
|
:param lambda_triggers: Lambda functions to use for supported Cognito triggers. Default: - No Lambda triggers.
|
|
19108
19264
|
:param mfa: Configure whether users of this user pool can or are required use MFA to sign in. Default: Mfa.OFF
|
|
19109
19265
|
:param mfa_message: The SMS message template sent during MFA verification. Use '{####}' in the template where Cognito should insert the verification code. Default: 'Your authentication code is {####}.'
|
|
19110
|
-
:param mfa_second_factor: Configure the MFA types that users can use in this user pool. Ignored if ``mfa`` is set to ``OFF``. Default: - { sms: true, otp: false }, if ``mfa`` is set to ``OPTIONAL`` or ``REQUIRED``. { sms: false, otp: false }, otherwise
|
|
19266
|
+
:param mfa_second_factor: Configure the MFA types that users can use in this user pool. Ignored if ``mfa`` is set to ``OFF``. Default: - { sms: true, otp: false, email: false }, if ``mfa`` is set to ``OPTIONAL`` or ``REQUIRED``. { sms: false, otp: false, email:false }, otherwise
|
|
19111
19267
|
:param password_policy: Password policy for this user pool. Default: - see defaults on each property of PasswordPolicy.
|
|
19112
19268
|
:param removal_policy: Policy to apply when the user pool is removed from the stack. Default: RemovalPolicy.RETAIN
|
|
19113
19269
|
:param self_sign_up_enabled: Whether self sign-up should be enabled. To configure self sign-up configuration use the ``userVerification`` property. Default: - false
|
|
@@ -19380,8 +19536,8 @@ class UserPoolProps:
|
|
|
19380
19536
|
|
|
19381
19537
|
:default:
|
|
19382
19538
|
|
|
19383
|
-
- { sms: true, otp: false }, if ``mfa`` is set to ``OPTIONAL`` or ``REQUIRED``.
|
|
19384
|
-
{ sms: false, otp: false }, otherwise
|
|
19539
|
+
- { sms: true, otp: false, email: false }, if ``mfa`` is set to ``OPTIONAL`` or ``REQUIRED``.
|
|
19540
|
+
{ sms: false, otp: false, email:false }, otherwise
|
|
19385
19541
|
'''
|
|
19386
19542
|
result = self._values.get("mfa_second_factor")
|
|
19387
19543
|
return typing.cast(typing.Optional[MfaSecondFactor], result)
|
|
@@ -21421,6 +21577,7 @@ __all__ = [
|
|
|
21421
21577
|
"UserPoolDomainOptions",
|
|
21422
21578
|
"UserPoolDomainProps",
|
|
21423
21579
|
"UserPoolEmail",
|
|
21580
|
+
"UserPoolEmailConfig",
|
|
21424
21581
|
"UserPoolIdentityProvider",
|
|
21425
21582
|
"UserPoolIdentityProviderAmazon",
|
|
21426
21583
|
"UserPoolIdentityProviderAmazonProps",
|
|
@@ -23224,6 +23381,7 @@ def _typecheckingstub__cd702328c87129c710daf17c5d6eb94fe91bfd54ab5fe2157a787ca70
|
|
|
23224
23381
|
*,
|
|
23225
23382
|
otp: builtins.bool,
|
|
23226
23383
|
sms: builtins.bool,
|
|
23384
|
+
email: typing.Optional[builtins.bool] = None,
|
|
23227
23385
|
) -> None:
|
|
23228
23386
|
"""Type checking stubs"""
|
|
23229
23387
|
pass
|
|
@@ -23660,6 +23818,17 @@ def _typecheckingstub__8bae3bcd6b2ec774cf9e4981de492abd05cc31118c8ca51bb996ae328
|
|
|
23660
23818
|
"""Type checking stubs"""
|
|
23661
23819
|
pass
|
|
23662
23820
|
|
|
23821
|
+
def _typecheckingstub__e3ce90cb9624f22600c6b33192c8ad7ad7f3946d65d49e2cf22b46b1dca4339e(
|
|
23822
|
+
*,
|
|
23823
|
+
configuration_set: typing.Optional[builtins.str] = None,
|
|
23824
|
+
email_sending_account: typing.Optional[builtins.str] = None,
|
|
23825
|
+
from_: typing.Optional[builtins.str] = None,
|
|
23826
|
+
reply_to_email_address: typing.Optional[builtins.str] = None,
|
|
23827
|
+
source_arn: typing.Optional[builtins.str] = None,
|
|
23828
|
+
) -> None:
|
|
23829
|
+
"""Type checking stubs"""
|
|
23830
|
+
pass
|
|
23831
|
+
|
|
23663
23832
|
def _typecheckingstub__9db3563a94587e916fce47561a9ad603b26f36fbcb7b72d5e133ddf1e77b76d6(
|
|
23664
23833
|
scope: _constructs_77d1e7e8.Construct,
|
|
23665
23834
|
id: builtins.str,
|
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -283,6 +283,23 @@ ec2.Vpc(self, "TheVPC",
|
|
|
283
283
|
provider.connections.allow_from(ec2.Peer.ipv4("1.2.3.4/8"), ec2.Port.HTTP)
|
|
284
284
|
```
|
|
285
285
|
|
|
286
|
+
### Associate Public IP Address to NAT Instance
|
|
287
|
+
|
|
288
|
+
You can choose to associate public IP address to a NAT instance V2 by specifying `associatePublicIpAddress`
|
|
289
|
+
like the following:
|
|
290
|
+
|
|
291
|
+
```python
|
|
292
|
+
nat_gateway_provider = ec2.NatProvider.instance_v2(
|
|
293
|
+
instance_type=ec2.InstanceType("t3.small"),
|
|
294
|
+
associate_public_ip_address=True
|
|
295
|
+
)
|
|
296
|
+
```
|
|
297
|
+
|
|
298
|
+
In certain scenarios where the public subnet has set `mapPublicIpOnLaunch` to `false`, NAT instances does not
|
|
299
|
+
get public IP addresses assigned which would result in non-working NAT instance as NAT instance requires a public
|
|
300
|
+
IP address to enable outbound internet connectivity. Users can specify `associatePublicIpAddress` to `true` to
|
|
301
|
+
solve this problem.
|
|
302
|
+
|
|
286
303
|
### Ip Address Management
|
|
287
304
|
|
|
288
305
|
The VPC spans a supernet IP range, which contains the non-overlapping IPs of its contained subnets. Possible sources for this IP range are:
|
|
@@ -81326,6 +81343,7 @@ class NatInstanceImage(
|
|
|
81326
81343
|
jsii_struct_bases=[],
|
|
81327
81344
|
name_mapping={
|
|
81328
81345
|
"instance_type": "instanceType",
|
|
81346
|
+
"associate_public_ip_address": "associatePublicIpAddress",
|
|
81329
81347
|
"credit_specification": "creditSpecification",
|
|
81330
81348
|
"default_allowed_traffic": "defaultAllowedTraffic",
|
|
81331
81349
|
"key_name": "keyName",
|
|
@@ -81340,6 +81358,7 @@ class NatInstanceProps:
|
|
|
81340
81358
|
self,
|
|
81341
81359
|
*,
|
|
81342
81360
|
instance_type: InstanceType,
|
|
81361
|
+
associate_public_ip_address: typing.Optional[builtins.bool] = None,
|
|
81343
81362
|
credit_specification: typing.Optional[CpuCredits] = None,
|
|
81344
81363
|
default_allowed_traffic: typing.Optional["NatTrafficDirection"] = None,
|
|
81345
81364
|
key_name: typing.Optional[builtins.str] = None,
|
|
@@ -81351,6 +81370,7 @@ class NatInstanceProps:
|
|
|
81351
81370
|
'''Properties for a NAT instance.
|
|
81352
81371
|
|
|
81353
81372
|
:param instance_type: Instance type of the NAT instance.
|
|
81373
|
+
:param associate_public_ip_address: Whether to associate a public IP address to the primary network interface attached to this instance. Default: undefined - No public IP address associated
|
|
81354
81374
|
:param credit_specification: Specifying the CPU credit type for burstable EC2 instance types (T2, T3, T3a, etc). The unlimited CPU credit option is not supported for T3 instances with dedicated host (``host``) tenancy. Default: - T2 instances are standard, while T3, T4g, and T3a instances are unlimited.
|
|
81355
81375
|
:param default_allowed_traffic: Direction to allow all traffic through the NAT instance by default. By default, inbound and outbound traffic is allowed. If you set this to another value than INBOUND_AND_OUTBOUND, you must configure the NAT instance's security groups in another way, either by passing in a fully configured Security Group using the ``securityGroup`` property, or by configuring it using the ``.securityGroup`` or ``.connections`` members after passing the NAT Instance Provider to a Vpc. Default: NatTrafficDirection.INBOUND_AND_OUTBOUND
|
|
81356
81376
|
:param key_name: (deprecated) Name of SSH keypair to grant access to instance. Default: - No SSH access will be possible.
|
|
@@ -81378,6 +81398,7 @@ class NatInstanceProps:
|
|
|
81378
81398
|
if __debug__:
|
|
81379
81399
|
type_hints = typing.get_type_hints(_typecheckingstub__d7c7c717447859e1ccc181bc97f7752cc3f7fa7afaee4c3a4266eeac32c08643)
|
|
81380
81400
|
check_type(argname="argument instance_type", value=instance_type, expected_type=type_hints["instance_type"])
|
|
81401
|
+
check_type(argname="argument associate_public_ip_address", value=associate_public_ip_address, expected_type=type_hints["associate_public_ip_address"])
|
|
81381
81402
|
check_type(argname="argument credit_specification", value=credit_specification, expected_type=type_hints["credit_specification"])
|
|
81382
81403
|
check_type(argname="argument default_allowed_traffic", value=default_allowed_traffic, expected_type=type_hints["default_allowed_traffic"])
|
|
81383
81404
|
check_type(argname="argument key_name", value=key_name, expected_type=type_hints["key_name"])
|
|
@@ -81388,6 +81409,8 @@ class NatInstanceProps:
|
|
|
81388
81409
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
81389
81410
|
"instance_type": instance_type,
|
|
81390
81411
|
}
|
|
81412
|
+
if associate_public_ip_address is not None:
|
|
81413
|
+
self._values["associate_public_ip_address"] = associate_public_ip_address
|
|
81391
81414
|
if credit_specification is not None:
|
|
81392
81415
|
self._values["credit_specification"] = credit_specification
|
|
81393
81416
|
if default_allowed_traffic is not None:
|
|
@@ -81410,6 +81433,15 @@ class NatInstanceProps:
|
|
|
81410
81433
|
assert result is not None, "Required property 'instance_type' is missing"
|
|
81411
81434
|
return typing.cast(InstanceType, result)
|
|
81412
81435
|
|
|
81436
|
+
@builtins.property
|
|
81437
|
+
def associate_public_ip_address(self) -> typing.Optional[builtins.bool]:
|
|
81438
|
+
'''Whether to associate a public IP address to the primary network interface attached to this instance.
|
|
81439
|
+
|
|
81440
|
+
:default: undefined - No public IP address associated
|
|
81441
|
+
'''
|
|
81442
|
+
result = self._values.get("associate_public_ip_address")
|
|
81443
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
81444
|
+
|
|
81413
81445
|
@builtins.property
|
|
81414
81446
|
def credit_specification(self) -> typing.Optional[CpuCredits]:
|
|
81415
81447
|
'''Specifying the CPU credit type for burstable EC2 instance types (T2, T3, T3a, etc).
|
|
@@ -81592,6 +81624,7 @@ class NatProvider(
|
|
|
81592
81624
|
cls,
|
|
81593
81625
|
*,
|
|
81594
81626
|
instance_type: InstanceType,
|
|
81627
|
+
associate_public_ip_address: typing.Optional[builtins.bool] = None,
|
|
81595
81628
|
credit_specification: typing.Optional[CpuCredits] = None,
|
|
81596
81629
|
default_allowed_traffic: typing.Optional["NatTrafficDirection"] = None,
|
|
81597
81630
|
key_name: typing.Optional[builtins.str] = None,
|
|
@@ -81609,6 +81642,7 @@ class NatProvider(
|
|
|
81609
81642
|
your own NatProvider based on AutoScaling groups if you need that.
|
|
81610
81643
|
|
|
81611
81644
|
:param instance_type: Instance type of the NAT instance.
|
|
81645
|
+
:param associate_public_ip_address: Whether to associate a public IP address to the primary network interface attached to this instance. Default: undefined - No public IP address associated
|
|
81612
81646
|
:param credit_specification: Specifying the CPU credit type for burstable EC2 instance types (T2, T3, T3a, etc). The unlimited CPU credit option is not supported for T3 instances with dedicated host (``host``) tenancy. Default: - T2 instances are standard, while T3, T4g, and T3a instances are unlimited.
|
|
81613
81647
|
:param default_allowed_traffic: Direction to allow all traffic through the NAT instance by default. By default, inbound and outbound traffic is allowed. If you set this to another value than INBOUND_AND_OUTBOUND, you must configure the NAT instance's security groups in another way, either by passing in a fully configured Security Group using the ``securityGroup`` property, or by configuring it using the ``.securityGroup`` or ``.connections`` members after passing the NAT Instance Provider to a Vpc. Default: NatTrafficDirection.INBOUND_AND_OUTBOUND
|
|
81614
81648
|
:param key_name: (deprecated) Name of SSH keypair to grant access to instance. Default: - No SSH access will be possible.
|
|
@@ -81627,6 +81661,7 @@ class NatProvider(
|
|
|
81627
81661
|
'''
|
|
81628
81662
|
props = NatInstanceProps(
|
|
81629
81663
|
instance_type=instance_type,
|
|
81664
|
+
associate_public_ip_address=associate_public_ip_address,
|
|
81630
81665
|
credit_specification=credit_specification,
|
|
81631
81666
|
default_allowed_traffic=default_allowed_traffic,
|
|
81632
81667
|
key_name=key_name,
|
|
@@ -81644,6 +81679,7 @@ class NatProvider(
|
|
|
81644
81679
|
cls,
|
|
81645
81680
|
*,
|
|
81646
81681
|
instance_type: InstanceType,
|
|
81682
|
+
associate_public_ip_address: typing.Optional[builtins.bool] = None,
|
|
81647
81683
|
credit_specification: typing.Optional[CpuCredits] = None,
|
|
81648
81684
|
default_allowed_traffic: typing.Optional["NatTrafficDirection"] = None,
|
|
81649
81685
|
key_name: typing.Optional[builtins.str] = None,
|
|
@@ -81661,6 +81697,7 @@ class NatProvider(
|
|
|
81661
81697
|
your own NatProvider based on AutoScaling groups if you need that.
|
|
81662
81698
|
|
|
81663
81699
|
:param instance_type: Instance type of the NAT instance.
|
|
81700
|
+
:param associate_public_ip_address: Whether to associate a public IP address to the primary network interface attached to this instance. Default: undefined - No public IP address associated
|
|
81664
81701
|
:param credit_specification: Specifying the CPU credit type for burstable EC2 instance types (T2, T3, T3a, etc). The unlimited CPU credit option is not supported for T3 instances with dedicated host (``host``) tenancy. Default: - T2 instances are standard, while T3, T4g, and T3a instances are unlimited.
|
|
81665
81702
|
:param default_allowed_traffic: Direction to allow all traffic through the NAT instance by default. By default, inbound and outbound traffic is allowed. If you set this to another value than INBOUND_AND_OUTBOUND, you must configure the NAT instance's security groups in another way, either by passing in a fully configured Security Group using the ``securityGroup`` property, or by configuring it using the ``.securityGroup`` or ``.connections`` members after passing the NAT Instance Provider to a Vpc. Default: NatTrafficDirection.INBOUND_AND_OUTBOUND
|
|
81666
81703
|
:param key_name: (deprecated) Name of SSH keypair to grant access to instance. Default: - No SSH access will be possible.
|
|
@@ -81673,6 +81710,7 @@ class NatProvider(
|
|
|
81673
81710
|
'''
|
|
81674
81711
|
props = NatInstanceProps(
|
|
81675
81712
|
instance_type=instance_type,
|
|
81713
|
+
associate_public_ip_address=associate_public_ip_address,
|
|
81676
81714
|
credit_specification=credit_specification,
|
|
81677
81715
|
default_allowed_traffic=default_allowed_traffic,
|
|
81678
81716
|
key_name=key_name,
|
|
@@ -94196,6 +94234,7 @@ class NatInstanceProvider(
|
|
|
94196
94234
|
self,
|
|
94197
94235
|
*,
|
|
94198
94236
|
instance_type: InstanceType,
|
|
94237
|
+
associate_public_ip_address: typing.Optional[builtins.bool] = None,
|
|
94199
94238
|
credit_specification: typing.Optional[CpuCredits] = None,
|
|
94200
94239
|
default_allowed_traffic: typing.Optional[NatTrafficDirection] = None,
|
|
94201
94240
|
key_name: typing.Optional[builtins.str] = None,
|
|
@@ -94206,6 +94245,7 @@ class NatInstanceProvider(
|
|
|
94206
94245
|
) -> None:
|
|
94207
94246
|
'''
|
|
94208
94247
|
:param instance_type: Instance type of the NAT instance.
|
|
94248
|
+
:param associate_public_ip_address: Whether to associate a public IP address to the primary network interface attached to this instance. Default: undefined - No public IP address associated
|
|
94209
94249
|
:param credit_specification: Specifying the CPU credit type for burstable EC2 instance types (T2, T3, T3a, etc). The unlimited CPU credit option is not supported for T3 instances with dedicated host (``host``) tenancy. Default: - T2 instances are standard, while T3, T4g, and T3a instances are unlimited.
|
|
94210
94250
|
:param default_allowed_traffic: Direction to allow all traffic through the NAT instance by default. By default, inbound and outbound traffic is allowed. If you set this to another value than INBOUND_AND_OUTBOUND, you must configure the NAT instance's security groups in another way, either by passing in a fully configured Security Group using the ``securityGroup`` property, or by configuring it using the ``.securityGroup`` or ``.connections`` members after passing the NAT Instance Provider to a Vpc. Default: NatTrafficDirection.INBOUND_AND_OUTBOUND
|
|
94211
94251
|
:param key_name: (deprecated) Name of SSH keypair to grant access to instance. Default: - No SSH access will be possible.
|
|
@@ -94218,6 +94258,7 @@ class NatInstanceProvider(
|
|
|
94218
94258
|
'''
|
|
94219
94259
|
props = NatInstanceProps(
|
|
94220
94260
|
instance_type=instance_type,
|
|
94261
|
+
associate_public_ip_address=associate_public_ip_address,
|
|
94221
94262
|
credit_specification=credit_specification,
|
|
94222
94263
|
default_allowed_traffic=default_allowed_traffic,
|
|
94223
94264
|
key_name=key_name,
|
|
@@ -94329,6 +94370,7 @@ class NatInstanceProviderV2(
|
|
|
94329
94370
|
self,
|
|
94330
94371
|
*,
|
|
94331
94372
|
instance_type: InstanceType,
|
|
94373
|
+
associate_public_ip_address: typing.Optional[builtins.bool] = None,
|
|
94332
94374
|
credit_specification: typing.Optional[CpuCredits] = None,
|
|
94333
94375
|
default_allowed_traffic: typing.Optional[NatTrafficDirection] = None,
|
|
94334
94376
|
key_name: typing.Optional[builtins.str] = None,
|
|
@@ -94339,6 +94381,7 @@ class NatInstanceProviderV2(
|
|
|
94339
94381
|
) -> None:
|
|
94340
94382
|
'''
|
|
94341
94383
|
:param instance_type: Instance type of the NAT instance.
|
|
94384
|
+
:param associate_public_ip_address: Whether to associate a public IP address to the primary network interface attached to this instance. Default: undefined - No public IP address associated
|
|
94342
94385
|
:param credit_specification: Specifying the CPU credit type for burstable EC2 instance types (T2, T3, T3a, etc). The unlimited CPU credit option is not supported for T3 instances with dedicated host (``host``) tenancy. Default: - T2 instances are standard, while T3, T4g, and T3a instances are unlimited.
|
|
94343
94386
|
:param default_allowed_traffic: Direction to allow all traffic through the NAT instance by default. By default, inbound and outbound traffic is allowed. If you set this to another value than INBOUND_AND_OUTBOUND, you must configure the NAT instance's security groups in another way, either by passing in a fully configured Security Group using the ``securityGroup`` property, or by configuring it using the ``.securityGroup`` or ``.connections`` members after passing the NAT Instance Provider to a Vpc. Default: NatTrafficDirection.INBOUND_AND_OUTBOUND
|
|
94344
94387
|
:param key_name: (deprecated) Name of SSH keypair to grant access to instance. Default: - No SSH access will be possible.
|
|
@@ -94349,6 +94392,7 @@ class NatInstanceProviderV2(
|
|
|
94349
94392
|
'''
|
|
94350
94393
|
props = NatInstanceProps(
|
|
94351
94394
|
instance_type=instance_type,
|
|
94395
|
+
associate_public_ip_address=associate_public_ip_address,
|
|
94352
94396
|
credit_specification=credit_specification,
|
|
94353
94397
|
default_allowed_traffic=default_allowed_traffic,
|
|
94354
94398
|
key_name=key_name,
|
|
@@ -107253,6 +107297,7 @@ def _typecheckingstub__addd8acc808c4965634311e54a7ffc0e3ebe29f2170d0d62750af3ad0
|
|
|
107253
107297
|
def _typecheckingstub__d7c7c717447859e1ccc181bc97f7752cc3f7fa7afaee4c3a4266eeac32c08643(
|
|
107254
107298
|
*,
|
|
107255
107299
|
instance_type: InstanceType,
|
|
107300
|
+
associate_public_ip_address: typing.Optional[builtins.bool] = None,
|
|
107256
107301
|
credit_specification: typing.Optional[CpuCredits] = None,
|
|
107257
107302
|
default_allowed_traffic: typing.Optional[NatTrafficDirection] = None,
|
|
107258
107303
|
key_name: typing.Optional[builtins.str] = None,
|
aws_cdk/aws_iam/__init__.py
CHANGED
|
@@ -262,6 +262,72 @@ iam.Role.customize_roles(self,
|
|
|
262
262
|
For more information on configuring permissions see the [Security And Safety Dev
|
|
263
263
|
Guide](https://github.com/aws/aws-cdk/wiki/Security-And-Safety-Dev-Guide)
|
|
264
264
|
|
|
265
|
+
#### Policy report generation
|
|
266
|
+
|
|
267
|
+
When `customizeRoles` is used, the `iam-policy-report.txt` report will contain a list
|
|
268
|
+
of IAM roles and associated permissions that would have been created. This report is
|
|
269
|
+
generated in an attempt to resolve and replace any references with a more user-friendly
|
|
270
|
+
value.
|
|
271
|
+
|
|
272
|
+
The following are some examples of the value that will appear in the report:
|
|
273
|
+
|
|
274
|
+
```json
|
|
275
|
+
"Resource": {
|
|
276
|
+
"Fn::Join": [
|
|
277
|
+
"",
|
|
278
|
+
[
|
|
279
|
+
"arn:",
|
|
280
|
+
{
|
|
281
|
+
"Ref": "AWS::Partition"
|
|
282
|
+
},
|
|
283
|
+
":iam::",
|
|
284
|
+
{
|
|
285
|
+
"Ref": "AWS::AccountId"
|
|
286
|
+
},
|
|
287
|
+
":role/Role"
|
|
288
|
+
]
|
|
289
|
+
]
|
|
290
|
+
}
|
|
291
|
+
```
|
|
292
|
+
|
|
293
|
+
The policy report will instead get:
|
|
294
|
+
|
|
295
|
+
```json
|
|
296
|
+
"Resource": "arn:(PARTITION):iam::(ACCOUNT):role/Role"
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
If IAM policy is referencing a resource attribute:
|
|
300
|
+
|
|
301
|
+
```json
|
|
302
|
+
"Resource": [
|
|
303
|
+
{
|
|
304
|
+
"Fn::GetAtt": [
|
|
305
|
+
"SomeResource",
|
|
306
|
+
"Arn"
|
|
307
|
+
]
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"Ref": "AWS::NoValue",
|
|
311
|
+
}
|
|
312
|
+
]
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
The policy report will instead get:
|
|
316
|
+
|
|
317
|
+
```json
|
|
318
|
+
"Resource": [
|
|
319
|
+
"(Path/To/SomeResource.Arn)"
|
|
320
|
+
"(NOVALUE)"
|
|
321
|
+
]
|
|
322
|
+
```
|
|
323
|
+
|
|
324
|
+
The following pseudo parameters will be converted:
|
|
325
|
+
|
|
326
|
+
1. `{ 'Ref': 'AWS::AccountId' }` -> `(ACCOUNT)
|
|
327
|
+
2. `{ 'Ref': 'AWS::Partition' }` -> `(PARTITION)
|
|
328
|
+
3. `{ 'Ref': 'AWS::Region' }` -> `(REGION)
|
|
329
|
+
4. `{ 'Ref': 'AWS::NoValue' }` -> `(NOVALUE)
|
|
330
|
+
|
|
265
331
|
#### Generating a permissions report
|
|
266
332
|
|
|
267
333
|
It is also possible to generate the report *without* preventing the role/policy creation.
|
aws_cdk/aws_lambda/__init__.py
CHANGED
|
@@ -14531,7 +14531,7 @@ class FunctionOptions(EventInvokeConfigOptions):
|
|
|
14531
14531
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
14532
14532
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
14533
14533
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
14534
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
14534
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
14535
14535
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
14536
14536
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
14537
14537
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -15264,7 +15264,7 @@ class FunctionOptions(EventInvokeConfigOptions):
|
|
|
15264
15264
|
def recursive_loop(self) -> typing.Optional["RecursiveLoop"]:
|
|
15265
15265
|
'''Sets the Recursive Loop Protection for Lambda Function.
|
|
15266
15266
|
|
|
15267
|
-
It lets Lambda detect and terminate unintended
|
|
15267
|
+
It lets Lambda detect and terminate unintended recursive loops.
|
|
15268
15268
|
|
|
15269
15269
|
:default: RecursiveLoop.Terminate
|
|
15270
15270
|
'''
|
|
@@ -15574,7 +15574,7 @@ class FunctionProps(FunctionOptions):
|
|
|
15574
15574
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
15575
15575
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
15576
15576
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
15577
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
15577
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
15578
15578
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
15579
15579
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
15580
15580
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -16228,7 +16228,7 @@ class FunctionProps(FunctionOptions):
|
|
|
16228
16228
|
def recursive_loop(self) -> typing.Optional["RecursiveLoop"]:
|
|
16229
16229
|
'''Sets the Recursive Loop Protection for Lambda Function.
|
|
16230
16230
|
|
|
16231
|
-
It lets Lambda detect and terminate unintended
|
|
16231
|
+
It lets Lambda detect and terminate unintended recursive loops.
|
|
16232
16232
|
|
|
16233
16233
|
:default: RecursiveLoop.Terminate
|
|
16234
16234
|
'''
|
|
@@ -19429,7 +19429,7 @@ class LogFormat(enum.Enum):
|
|
|
19429
19429
|
By setting this value to Text,
|
|
19430
19430
|
will result in the current structure of logs format, whereas, by setting this value to JSON,
|
|
19431
19431
|
Lambda will print the logs as Structured JSON Logs, with the corresponding timestamp and log level
|
|
19432
|
-
of each event. Selecting ‘JSON’ format will only allow
|
|
19432
|
+
of each event. Selecting ‘JSON’ format will only allow customers to have different log level
|
|
19433
19433
|
Application log level and the System log level.
|
|
19434
19434
|
'''
|
|
19435
19435
|
|
|
@@ -19521,7 +19521,7 @@ class LoggingFormat(enum.Enum):
|
|
|
19521
19521
|
By setting this value to Text,
|
|
19522
19522
|
will result in the current structure of logs format, whereas, by setting this value to JSON,
|
|
19523
19523
|
Lambda will print the logs as Structured JSON Logs, with the corresponding timestamp and log level
|
|
19524
|
-
of each event. Selecting ‘JSON’ format will only allow
|
|
19524
|
+
of each event. Selecting ‘JSON’ format will only allow customers to have different log level
|
|
19525
19525
|
Application log level and the System log level.
|
|
19526
19526
|
|
|
19527
19527
|
:exampleMetadata: infused
|
|
@@ -21059,7 +21059,7 @@ class SingletonFunctionProps(FunctionProps):
|
|
|
21059
21059
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
21060
21060
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
21061
21061
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
21062
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
21062
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
21063
21063
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
21064
21064
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
21065
21065
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -21701,7 +21701,7 @@ class SingletonFunctionProps(FunctionProps):
|
|
|
21701
21701
|
def recursive_loop(self) -> typing.Optional[RecursiveLoop]:
|
|
21702
21702
|
'''Sets the Recursive Loop Protection for Lambda Function.
|
|
21703
21703
|
|
|
21704
|
-
It lets Lambda detect and terminate unintended
|
|
21704
|
+
It lets Lambda detect and terminate unintended recursive loops.
|
|
21705
21705
|
|
|
21706
21706
|
:default: RecursiveLoop.Terminate
|
|
21707
21707
|
'''
|
|
@@ -24013,7 +24013,7 @@ class DockerImageFunctionProps(FunctionOptions):
|
|
|
24013
24013
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
24014
24014
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
24015
24015
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
24016
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
24016
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
24017
24017
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
24018
24018
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
24019
24019
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -24640,7 +24640,7 @@ class DockerImageFunctionProps(FunctionOptions):
|
|
|
24640
24640
|
def recursive_loop(self) -> typing.Optional[RecursiveLoop]:
|
|
24641
24641
|
'''Sets the Recursive Loop Protection for Lambda Function.
|
|
24642
24642
|
|
|
24643
|
-
It lets Lambda detect and terminate unintended
|
|
24643
|
+
It lets Lambda detect and terminate unintended recursive loops.
|
|
24644
24644
|
|
|
24645
24645
|
:default: RecursiveLoop.Terminate
|
|
24646
24646
|
'''
|
|
@@ -26100,7 +26100,7 @@ class SingletonFunction(
|
|
|
26100
26100
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
26101
26101
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
26102
26102
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
26103
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
26103
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
26104
26104
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
26105
26105
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
26106
26106
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -27090,7 +27090,7 @@ class Function(
|
|
|
27090
27090
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
27091
27091
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
27092
27092
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
27093
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
27093
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
27094
27094
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
27095
27095
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
27096
27096
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -27886,7 +27886,7 @@ class DockerImageFunction(
|
|
|
27886
27886
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
27887
27887
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
27888
27888
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
27889
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
27889
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
27890
27890
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
27891
27891
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
27892
27892
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -173,8 +173,7 @@ nodejs.NodejsFunction(self, "my-handler",
|
|
|
173
173
|
)
|
|
174
174
|
```
|
|
175
175
|
|
|
176
|
-
Includes AWS SDK in the bundle asset by setting `bundleAwsSDK` to `true`. This will
|
|
177
|
-
module and not be resolved to the Lambda provided sdk.
|
|
176
|
+
Includes AWS SDK in the bundle asset by setting `bundleAwsSDK` to `true`. This will exclude SDK from the external module and would not be resolved to Lambda provided SDK.
|
|
178
177
|
|
|
179
178
|
```python
|
|
180
179
|
nodejs.NodejsFunction(self, "my-handler",
|
|
@@ -1664,7 +1663,7 @@ class NodejsFunction(
|
|
|
1664
1663
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
1665
1664
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
1666
1665
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
1667
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
1666
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
1668
1667
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
1669
1668
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
1670
1669
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -1912,7 +1911,7 @@ class NodejsFunctionProps(_FunctionOptions_328f4d39):
|
|
|
1912
1911
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
1913
1912
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
1914
1913
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
1915
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
1914
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
1916
1915
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
1917
1916
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
1918
1917
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -2583,7 +2582,7 @@ class NodejsFunctionProps(_FunctionOptions_328f4d39):
|
|
|
2583
2582
|
def recursive_loop(self) -> typing.Optional[_RecursiveLoop_fc293827]:
|
|
2584
2583
|
'''Sets the Recursive Loop Protection for Lambda Function.
|
|
2585
2584
|
|
|
2586
|
-
It lets Lambda detect and terminate unintended
|
|
2585
|
+
It lets Lambda detect and terminate unintended recursive loops.
|
|
2587
2586
|
|
|
2588
2587
|
:default: RecursiveLoop.Terminate
|
|
2589
2588
|
'''
|
aws_cdk/aws_s3/__init__.py
CHANGED
|
@@ -212,8 +212,8 @@ To import an existing bucket into your CDK application, use the `Bucket.fromBuck
|
|
|
212
212
|
factory method. This method accepts `BucketAttributes` which describes the properties of an already
|
|
213
213
|
existing bucket:
|
|
214
214
|
|
|
215
|
-
Note that this method allows importing buckets with legacy names containing underscores (`_`), which
|
|
216
|
-
permitted for buckets created before March 1, 2018. For buckets created after this date, underscores
|
|
215
|
+
Note that this method allows importing buckets with legacy names containing uppercase letters (`A-Z`) or underscores (`_`), which were
|
|
216
|
+
permitted for buckets created before March 1, 2018. For buckets created after this date, uppercase letters and underscores
|
|
217
217
|
are not allowed in the bucket name.
|
|
218
218
|
|
|
219
219
|
```python
|
aws_cdk/cx_api/__init__.py
CHANGED
|
@@ -476,6 +476,25 @@ occur between these tightly coupled dependencies when using the AWS SDK v3 in La
|
|
|
476
476
|
}
|
|
477
477
|
}
|
|
478
478
|
```
|
|
479
|
+
|
|
480
|
+
* `@aws-cdk/aws-dynamodb:resourcePolicyPerReplica`
|
|
481
|
+
|
|
482
|
+
If this flag is not set, the default behavior for `TableV2` is to use a different `resourcePolicy` for each replica.
|
|
483
|
+
|
|
484
|
+
If this flag is set to false, the behavior is that each replica shares the same `resourcePolicy` as the source table.
|
|
485
|
+
This will prevent you from creating a new table which has an additional replica and a resource policy.
|
|
486
|
+
|
|
487
|
+
This is a feature flag as the old behavior was technically incorrect but users may have come to depend on it.
|
|
488
|
+
|
|
489
|
+
*cdk.json*
|
|
490
|
+
|
|
491
|
+
```json
|
|
492
|
+
{
|
|
493
|
+
"context": {
|
|
494
|
+
"@aws-cdk/aws-dynamodb:resourcePolicyPerReplica": false,
|
|
495
|
+
},
|
|
496
|
+
}
|
|
497
|
+
```
|
|
479
498
|
'''
|
|
480
499
|
from pkgutil import extend_path
|
|
481
500
|
__path__ = extend_path(__path__, __name__)
|
aws_cdk/triggers/__init__.py
CHANGED
|
@@ -511,7 +511,7 @@ class TriggerFunction(
|
|
|
511
511
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
512
512
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
513
513
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
514
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
514
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
515
515
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
516
516
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
517
517
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -1058,7 +1058,7 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
|
|
|
1058
1058
|
:param params_and_secrets: Specify the configuration of Parameters and Secrets Extension. Default: - No Parameters and Secrets Extension
|
|
1059
1059
|
:param profiling: Enable profiling. Default: - No profiling.
|
|
1060
1060
|
:param profiling_group: Profiling Group. Default: - A new profiling group will be created if ``profiling`` is set.
|
|
1061
|
-
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended
|
|
1061
|
+
:param recursive_loop: Sets the Recursive Loop Protection for Lambda Function. It lets Lambda detect and terminate unintended recursive loops. Default: RecursiveLoop.Terminate
|
|
1062
1062
|
:param reserved_concurrent_executions: The maximum of concurrent executions you want to reserve for the function. Default: - No specific limit - account limit.
|
|
1063
1063
|
:param role: Lambda execution role. This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal. The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself. The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole". Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling ``addToRolePolicy``.
|
|
1064
1064
|
:param runtime_management_mode: Sets the runtime management configuration for a function's version. Default: Auto
|
|
@@ -1716,7 +1716,7 @@ class TriggerFunctionProps(_FunctionProps_a308e854, TriggerOptions):
|
|
|
1716
1716
|
def recursive_loop(self) -> typing.Optional[_RecursiveLoop_fc293827]:
|
|
1717
1717
|
'''Sets the Recursive Loop Protection for Lambda Function.
|
|
1718
1718
|
|
|
1719
|
-
It lets Lambda detect and terminate unintended
|
|
1719
|
+
It lets Lambda detect and terminate unintended recursive loops.
|
|
1720
1720
|
|
|
1721
1721
|
:default: RecursiveLoop.Terminate
|
|
1722
1722
|
'''
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
aws_cdk/__init__.py,sha256=KSWF33kJFXDdeM19ji1gEUB_N9sRPeV1c2VpOIjQJog,1818550
|
|
2
2
|
aws_cdk/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/_jsii/__init__.py,sha256=
|
|
4
|
-
aws_cdk/_jsii/aws-cdk-lib@2.
|
|
3
|
+
aws_cdk/_jsii/__init__.py,sha256=GfWrv259M03pTGH3aT1UsVBWiypl1NjhoUrfbNZtmEk,1582
|
|
4
|
+
aws_cdk/_jsii/aws-cdk-lib@2.164.1.jsii.tgz,sha256=Zkkbb5DKlFutUewedfLPAg0j2uoWHo9DOfVcqnC0Qh4,22940697
|
|
5
5
|
aws_cdk/alexa_ask/__init__.py,sha256=yF4ftch7XArzAniw_xoUmGi3wLGeBqIUlOjBTHSxDb4,36370
|
|
6
6
|
aws_cdk/assertions/__init__.py,sha256=vX--kb5ot1oIPFr5H5ElSpuie_TwWOzu1KZU9kcvmuw,92306
|
|
7
7
|
aws_cdk/aws_accessanalyzer/__init__.py,sha256=CtU1aNfPFMbVnTCDoTmfeqI53Dz64i_25R6yDIDj1N4,43040
|
|
@@ -37,7 +37,7 @@ aws_cdk/aws_backup/__init__.py,sha256=jOQMzbqFVZ7oPUb1hMPlPl4DOonNIirItaAkAjkIu0
|
|
|
37
37
|
aws_cdk/aws_backupgateway/__init__.py,sha256=fWZzjez06YHs0rk-kxVm0f2isg102cJv2jFesKW1Jm0,24571
|
|
38
38
|
aws_cdk/aws_batch/__init__.py,sha256=7R6ndWS6hrhoMS9g3E7Q890hsyxFHIaI_eVQOREqHwM,1429280
|
|
39
39
|
aws_cdk/aws_bcmdataexports/__init__.py,sha256=MPzMdYliYXZRV9YD4xdj05ULsSTxUElV7-mRl6QerOY,55627
|
|
40
|
-
aws_cdk/aws_bedrock/__init__.py,sha256=
|
|
40
|
+
aws_cdk/aws_bedrock/__init__.py,sha256=Q4Rh_6soUs3-a7hkibA37xjrzAks3Z1Icwf_IwWcuNc,1192211
|
|
41
41
|
aws_cdk/aws_billingconductor/__init__.py,sha256=d-J_dpWvMOtnkJJIK_Zn0RSP3LeVZl0qY04g62HgqUI,143066
|
|
42
42
|
aws_cdk/aws_budgets/__init__.py,sha256=2vAa1yh0ZeuDPTd0iSKnlYZhvXtk8dm_Jn3qvXr6w-o,163046
|
|
43
43
|
aws_cdk/aws_cassandra/__init__.py,sha256=96K10qTC0N0F_K4FVGXMfT_aqLxr_uNKZexhhtltZ3U,147312
|
|
@@ -49,13 +49,13 @@ aws_cdk/aws_cleanroomsml/__init__.py,sha256=OZ769Xji5yR16YuvCcaCuH-5emjHREnhIUqj
|
|
|
49
49
|
aws_cdk/aws_cloud9/__init__.py,sha256=WbYJhSBPFY4ix6PJiND_KHPIVWxim7VAsbDJ6ePpGec,43094
|
|
50
50
|
aws_cdk/aws_cloudformation/__init__.py,sha256=R0KEZkMNoqYLSDdyHi1lhCmSizqRs3-ThTiv-NrlvFg,395760
|
|
51
51
|
aws_cdk/aws_cloudfront/__init__.py,sha256=n-u_zz_r0Z_WW5BhDST94VFh1DyVbwbCmyNWHQNEolA,1506804
|
|
52
|
-
aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=
|
|
52
|
+
aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=Idkbb4AJxuNaV8DA-p0NslbDcWOpQK70hkMtwdU-STg,138843
|
|
53
53
|
aws_cdk/aws_cloudfront_origins/__init__.py,sha256=9thjBWMxHdbNnaE8Ql1L_zbuz507EXneGnjQsnE-WU4,213723
|
|
54
54
|
aws_cdk/aws_cloudtrail/__init__.py,sha256=Sx5VxSUc5-dWqG5bc5lzhMJn1sHv2Q_IOBJKZ9lZ2Yo,315348
|
|
55
55
|
aws_cdk/aws_cloudwatch/__init__.py,sha256=G83zKCOplma8KXXBraMe6kYe7AV_YiGATWeF2JFSxLg,804016
|
|
56
56
|
aws_cdk/aws_cloudwatch_actions/__init__.py,sha256=NiO4EWHXKqyaPYDW-sVvV0YJep3Z-udkF84JlVAIobY,22370
|
|
57
57
|
aws_cdk/aws_codeartifact/__init__.py,sha256=ysKsozQWde3PaDYQ87_gm3BejhU8rlSX3C3oy81hdcI,88035
|
|
58
|
-
aws_cdk/aws_codebuild/__init__.py,sha256=
|
|
58
|
+
aws_cdk/aws_codebuild/__init__.py,sha256=zHdgygBoDrNkrClORkYBn3gWh9lWgjnYEmihCnUrtUM,1025279
|
|
59
59
|
aws_cdk/aws_codecommit/__init__.py,sha256=cJe8-KOnQSUarHk_0-uKshcYcNNEGrfDMiAX5jtSnuI,237949
|
|
60
60
|
aws_cdk/aws_codeconnections/__init__.py,sha256=Q57XJwQbJX3HfeJYIcVYjoJw1X5NM4LwStzqeiuqIo0,19964
|
|
61
61
|
aws_cdk/aws_codedeploy/__init__.py,sha256=rJPl_I8D3OGY8qI63PyStOH60hM1KppFStc0zACv47I,606567
|
|
@@ -66,7 +66,7 @@ aws_cdk/aws_codepipeline_actions/__init__.py,sha256=qJKbb4Au17NpZkKe-x6-QrCCp2Et
|
|
|
66
66
|
aws_cdk/aws_codestar/__init__.py,sha256=WhZxNTKEk9gu7tFzbdF7AKnEipApHzhwVfMPrGzXAsw,38783
|
|
67
67
|
aws_cdk/aws_codestarconnections/__init__.py,sha256=oGFXDpdwddFIPcXlfZvnonv8M0ALTMpkQXkdaxXfM4I,62714
|
|
68
68
|
aws_cdk/aws_codestarnotifications/__init__.py,sha256=DAjyEup8GY5GIExTaFeiqM4VsbHWhnvjTJRNBPmhTN0,77344
|
|
69
|
-
aws_cdk/aws_cognito/__init__.py,sha256=
|
|
69
|
+
aws_cdk/aws_cognito/__init__.py,sha256=wkGRHoiRITSHz_9zO6pMa0Aa6kdIh_Eqh-SrY2sEksY,1338289
|
|
70
70
|
aws_cdk/aws_comprehend/__init__.py,sha256=GDiEy9xnCOeMohZp-yAG7enyePdDabwWxpxRSewOvcE,156707
|
|
71
71
|
aws_cdk/aws_config/__init__.py,sha256=XlynSGVhTD_cLs092YR8FwoprcqAY8T6yuo0EagMGyk,865862
|
|
72
72
|
aws_cdk/aws_connect/__init__.py,sha256=f_dKCY2MU5J_c0KAkkxLkifVs760ZT3RO-QJK2LOFoc,871329
|
|
@@ -89,7 +89,7 @@ aws_cdk/aws_dms/__init__.py,sha256=SCJYL0cwke6SVwpINB63fJIhaVWdJ5dhpIv6HlUNnlk,9
|
|
|
89
89
|
aws_cdk/aws_docdb/__init__.py,sha256=2YAsWWD4da2WJjK7aWlyQmIJJmSswFPUprnmcr1p0_Q,321189
|
|
90
90
|
aws_cdk/aws_docdbelastic/__init__.py,sha256=8ULf53CjSElODf5ZegB4vP1fvBXVjZjnQOA-D976_nE,46746
|
|
91
91
|
aws_cdk/aws_dynamodb/__init__.py,sha256=Uybi4fH2g9LO7pw1FFtXKx8DbQcQNb6CFQBAZ8eodpY,941482
|
|
92
|
-
aws_cdk/aws_ec2/__init__.py,sha256=
|
|
92
|
+
aws_cdk/aws_ec2/__init__.py,sha256=CoYlPPnt7WlKyy4zjgxvQneJcOY0PI0pMI_MmULh_1g,5717429
|
|
93
93
|
aws_cdk/aws_ecr/__init__.py,sha256=os4V4OLb0AM19nGrz2slbSwkFTFqx10BTpYT-9kcLiI,298642
|
|
94
94
|
aws_cdk/aws_ecr_assets/__init__.py,sha256=gWgQAeisOgj-wCA8OPdvswJ7kRjVVPkRnac7taoBPeI,84595
|
|
95
95
|
aws_cdk/aws_ecs/__init__.py,sha256=v5ztsv86MdsSJNbZgBYSX9fLFRhdNHZ762qjvwAlxoo,2650012
|
|
@@ -128,7 +128,7 @@ aws_cdk/aws_groundstation/__init__.py,sha256=M5Nzqhn58ypp7DjlzVlotO6JJlVSIBT91-f
|
|
|
128
128
|
aws_cdk/aws_guardduty/__init__.py,sha256=gYnGgbz35Qsgzy5ArpSIgyXKDOWPuZkgLzonn0yymfo,236207
|
|
129
129
|
aws_cdk/aws_healthimaging/__init__.py,sha256=bNpcbOhCYjvvgCJwb6pbmA8BH_8RjtjKJZG8f40I8qQ,17410
|
|
130
130
|
aws_cdk/aws_healthlake/__init__.py,sha256=ybnPJIZglzelRfvC1z2jp2GI__Rwdeu3QXsf-0SIasg,54449
|
|
131
|
-
aws_cdk/aws_iam/__init__.py,sha256=
|
|
131
|
+
aws_cdk/aws_iam/__init__.py,sha256=AZU5VBnosW_nzovwFyTB2otMCoMVAKLOMUjwa3AGr0k,847848
|
|
132
132
|
aws_cdk/aws_identitystore/__init__.py,sha256=yXjJuier75gXXW5QBSRTsGvDx5BdNdu9VRcnLhbEMlQ,32106
|
|
133
133
|
aws_cdk/aws_imagebuilder/__init__.py,sha256=FK-mlmBHr7UAsan1OGrZ5kmC_dxl3Z8r5wKDCb0HlFg,577120
|
|
134
134
|
aws_cdk/aws_inspector/__init__.py,sha256=rQysIyMgQRYemWRRG-6q4gLbU5M3t4q8HcoO2kfxx0c,44512
|
|
@@ -157,10 +157,10 @@ aws_cdk/aws_kinesisfirehose/__init__.py,sha256=DzecYVnN6a-rVJfbCK5JYh--sZoOuESYD
|
|
|
157
157
|
aws_cdk/aws_kinesisvideo/__init__.py,sha256=KR-ZCTMZFNR9EJ32dIjEfeiZQMJZha33v-2lg0-mhYY,38745
|
|
158
158
|
aws_cdk/aws_kms/__init__.py,sha256=Qqw_wUEBz5bGROAwuBQ9h5oboNigPov-vNk_n2n7zmg,243206
|
|
159
159
|
aws_cdk/aws_lakeformation/__init__.py,sha256=1tIWIda01HBDgScxl1TzPAibWeTOoN5Y92I_5QxpQjo,335939
|
|
160
|
-
aws_cdk/aws_lambda/__init__.py,sha256=
|
|
160
|
+
aws_cdk/aws_lambda/__init__.py,sha256=aceBS9mQAprViT4I0TeREdBn2v24OIlkAKqLUTRuM8Y,1678218
|
|
161
161
|
aws_cdk/aws_lambda_destinations/__init__.py,sha256=kfVMafyFv5RBNdi2XHb_9qSRmcRQ4ALhjHwNMfcNk5I,21411
|
|
162
162
|
aws_cdk/aws_lambda_event_sources/__init__.py,sha256=k3npHqzJv8lds7d4Ww0S2eIWEkvY8n_qwFYDfNOnbMM,211007
|
|
163
|
-
aws_cdk/aws_lambda_nodejs/__init__.py,sha256=
|
|
163
|
+
aws_cdk/aws_lambda_nodejs/__init__.py,sha256=mCYThPVskD36XktwxbOwW4i16Pc3XRJup7YKJtyLCSQ,177383
|
|
164
164
|
aws_cdk/aws_launchwizard/__init__.py,sha256=JjBWmw2Beaa5km4JKzRHAphB-HQ83B0g7t34bsw2FsU,24028
|
|
165
165
|
aws_cdk/aws_lex/__init__.py,sha256=ZxdRqHP6njAeoc3j8ICH1BhxlYbUdQ1wwdRo93kNq9U,701594
|
|
166
166
|
aws_cdk/aws_licensemanager/__init__.py,sha256=y37V03_LDcfC2j681MxlhN1J5O5o3dJjFZnFJ0u7V9U,87983
|
|
@@ -228,7 +228,7 @@ aws_cdk/aws_route53recoverycontrol/__init__.py,sha256=0WSDxnS6OvT32w-Mxqq42R2fYD
|
|
|
228
228
|
aws_cdk/aws_route53recoveryreadiness/__init__.py,sha256=_tJI6bM9ZJJwOwM1wjYJIBH5zjnfXBLWj996joYsoYs,95213
|
|
229
229
|
aws_cdk/aws_route53resolver/__init__.py,sha256=TVCxhQyMpBm-U-TYJ5CBG_wBLZXNszQ-_TE0FeWEVQM,238233
|
|
230
230
|
aws_cdk/aws_rum/__init__.py,sha256=FP4Bql2ABXWjRaTfSsuvK3uwsLzBxLHwSxRzHMC64TY,74371
|
|
231
|
-
aws_cdk/aws_s3/__init__.py,sha256=
|
|
231
|
+
aws_cdk/aws_s3/__init__.py,sha256=xy2Jy8LlbdHwb0MUYhTQdF0Ijsxgj8GDg9UdtPYQdeE,1214538
|
|
232
232
|
aws_cdk/aws_s3_assets/__init__.py,sha256=Fsuzwb4bijkZwXD6sIRUMTCtG5-JGUwPXani6t7TWB8,46850
|
|
233
233
|
aws_cdk/aws_s3_deployment/__init__.py,sha256=lyqjtnSQcfzxpMvXdBo6urc8vJZWMsFXttJ1HxbUROo,120783
|
|
234
234
|
aws_cdk/aws_s3_notifications/__init__.py,sha256=sv6q8twfxyMiUT6DgDqabGnnMCDySqhFdZgNcgtcuw8,10068
|
|
@@ -279,16 +279,16 @@ aws_cdk/aws_xray/__init__.py,sha256=A6qEwDk09YUzCrnBOdh73YQZTEVMG85VUXoy2siZEi8,
|
|
|
279
279
|
aws_cdk/cloud_assembly_schema/__init__.py,sha256=LMX7o1BOZKOK6AclVD2xmguLl1mNoxwvmspaWu6xUBg,424927
|
|
280
280
|
aws_cdk/cloudformation_include/__init__.py,sha256=nWU59UskSwMHLVfmA2qrsTOqUk65NWElIPTvp-KLA_8,50358
|
|
281
281
|
aws_cdk/custom_resources/__init__.py,sha256=HGNG5d52gePjDpnkTn4T96hQbn66xgly4DmHqBx5qNw,166026
|
|
282
|
-
aws_cdk/cx_api/__init__.py,sha256=
|
|
282
|
+
aws_cdk/cx_api/__init__.py,sha256=xzPzu4qyzK7HmpSjVatc48nzKczQsYvx5cIy1WgoONE,169543
|
|
283
283
|
aws_cdk/lambda_layer_awscli/__init__.py,sha256=FUcVOwp5XHkYiFms2BGfZWWYCo4vujoEtc9uN-Jc570,3291
|
|
284
284
|
aws_cdk/lambda_layer_kubectl/__init__.py,sha256=n4HLk6edsx2fSmW82ybM_RwaRCsxvfgCBjgCpRrc1K4,3563
|
|
285
285
|
aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=Q0PMbPsP4A7YO-YZe9esn-iziyQHEXR5z1CSSNfeHn8,3306
|
|
286
286
|
aws_cdk/pipelines/__init__.py,sha256=PMIOp-7-2JByt8yJ72-uv07gSSPJ1BTxdykdDG17nfA,397495
|
|
287
287
|
aws_cdk/region_info/__init__.py,sha256=29jwDjGrb4gSGedV1W1e5SuAYF9ZZKYsz0gsSFjdBO4,39658
|
|
288
|
-
aws_cdk/triggers/__init__.py,sha256=
|
|
289
|
-
aws_cdk_lib-2.
|
|
290
|
-
aws_cdk_lib-2.
|
|
291
|
-
aws_cdk_lib-2.
|
|
292
|
-
aws_cdk_lib-2.
|
|
293
|
-
aws_cdk_lib-2.
|
|
294
|
-
aws_cdk_lib-2.
|
|
288
|
+
aws_cdk/triggers/__init__.py,sha256=WcCAogtuD5HT8RWUZqXoAmNh4KrPFLiVLJN1QORC9hw,123464
|
|
289
|
+
aws_cdk_lib-2.164.1.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
|
|
290
|
+
aws_cdk_lib-2.164.1.dist-info/METADATA,sha256=zB36YGhPKPUdl3F02wcPRdyInRAmzQ2EzH1EbpwidGs,60027
|
|
291
|
+
aws_cdk_lib-2.164.1.dist-info/NOTICE,sha256=p5UQgJ0CVV5-J24vpfPP0ijj274gNydvWDTD8KR1zTI,41177
|
|
292
|
+
aws_cdk_lib-2.164.1.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
293
|
+
aws_cdk_lib-2.164.1.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
294
|
+
aws_cdk_lib-2.164.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|