aws-cdk-lib 2.154.1__py3-none-any.whl → 2.155.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.154.1.jsii.tgz → aws-cdk-lib@2.155.0.jsii.tgz} +0 -0
- aws_cdk/assertions/__init__.py +17 -17
- aws_cdk/aws_cloudfront/__init__.py +4 -2
- aws_cdk/aws_codebuild/__init__.py +348 -7
- aws_cdk/aws_ec2/__init__.py +226 -35
- aws_cdk/aws_eks/__init__.py +34 -4
- aws_cdk/aws_ivs/__init__.py +10 -8
- aws_cdk/aws_kms/__init__.py +36 -0
- aws_cdk/aws_lambda/__init__.py +38 -23
- aws_cdk/aws_lambda_event_sources/__init__.py +27 -0
- aws_cdk/aws_rds/__init__.py +6 -0
- aws_cdk/aws_secretsmanager/__init__.py +3 -2
- aws_cdk/aws_ses/__init__.py +7 -7
- aws_cdk/aws_ssmcontacts/__init__.py +12 -0
- aws_cdk/aws_stepfunctions/__init__.py +12 -14
- aws_cdk/aws_stepfunctions_tasks/__init__.py +76 -0
- aws_cdk/aws_synthetics/__init__.py +13 -0
- aws_cdk/custom_resources/__init__.py +106 -1
- {aws_cdk_lib-2.154.1.dist-info → aws_cdk_lib-2.155.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.154.1.dist-info → aws_cdk_lib-2.155.0.dist-info}/RECORD +25 -25
- {aws_cdk_lib-2.154.1.dist-info → aws_cdk_lib-2.155.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.154.1.dist-info → aws_cdk_lib-2.155.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.154.1.dist-info → aws_cdk_lib-2.155.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.154.1.dist-info → aws_cdk_lib-2.155.0.dist-info}/top_level.txt +0 -0
|
@@ -6663,28 +6663,26 @@ class IntegrationPattern(enum.Enum):
|
|
|
6663
6663
|
import aws_cdk.aws_codebuild as codebuild
|
|
6664
6664
|
|
|
6665
6665
|
|
|
6666
|
-
|
|
6666
|
+
codebuild_project = codebuild.Project(self, "Project",
|
|
6667
6667
|
project_name="MyTestProject",
|
|
6668
|
-
build_spec=codebuild.BuildSpec.
|
|
6669
|
-
"version": 0.2,
|
|
6670
|
-
"
|
|
6671
|
-
"build
|
|
6672
|
-
"
|
|
6673
|
-
|
|
6668
|
+
build_spec=codebuild.BuildSpec.from_object({
|
|
6669
|
+
"version": "0.2",
|
|
6670
|
+
"phases": {
|
|
6671
|
+
"build": {
|
|
6672
|
+
"commands": ["echo \"Hello, CodeBuild!\""
|
|
6673
|
+
]
|
|
6674
6674
|
}
|
|
6675
|
-
]
|
|
6676
6675
|
}
|
|
6677
6676
|
})
|
|
6678
6677
|
)
|
|
6679
|
-
project.enable_batch_builds()
|
|
6680
6678
|
|
|
6681
|
-
task = tasks.
|
|
6682
|
-
project=
|
|
6683
|
-
integration_pattern=sfn.IntegrationPattern.
|
|
6679
|
+
task = tasks.CodeBuildStartBuild(self, "Task",
|
|
6680
|
+
project=codebuild_project,
|
|
6681
|
+
integration_pattern=sfn.IntegrationPattern.RUN_JOB,
|
|
6684
6682
|
environment_variables_override={
|
|
6685
|
-
"
|
|
6683
|
+
"ZONE": codebuild.BuildEnvironmentVariable(
|
|
6686
6684
|
type=codebuild.BuildEnvironmentVariableType.PLAINTEXT,
|
|
6687
|
-
value="
|
|
6685
|
+
value=sfn.JsonPath.string_at("$.envVariables.zone")
|
|
6688
6686
|
)
|
|
6689
6687
|
}
|
|
6690
6688
|
)
|
|
@@ -716,6 +716,38 @@ run_task = tasks.EcsRunTask(self, "RunFargate",
|
|
|
716
716
|
)
|
|
717
717
|
```
|
|
718
718
|
|
|
719
|
+
#### Override CPU and Memory Parameter
|
|
720
|
+
|
|
721
|
+
By setting the property cpu or memoryMiB, you can override the Fargate or EC2 task instance size at runtime.
|
|
722
|
+
|
|
723
|
+
see: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TaskOverride.html
|
|
724
|
+
|
|
725
|
+
```python
|
|
726
|
+
vpc = ec2.Vpc.from_lookup(self, "Vpc",
|
|
727
|
+
is_default=True
|
|
728
|
+
)
|
|
729
|
+
cluster = ecs.Cluster(self, "ECSCluster", vpc=vpc)
|
|
730
|
+
|
|
731
|
+
task_definition = ecs.TaskDefinition(self, "TD",
|
|
732
|
+
compatibility=ecs.Compatibility.FARGATE,
|
|
733
|
+
cpu="256",
|
|
734
|
+
memory_mi_b="512"
|
|
735
|
+
)
|
|
736
|
+
|
|
737
|
+
task_definition.add_container("TheContainer",
|
|
738
|
+
image=ecs.ContainerImage.from_registry("foo/bar")
|
|
739
|
+
)
|
|
740
|
+
|
|
741
|
+
run_task = tasks.EcsRunTask(self, "Run",
|
|
742
|
+
integration_pattern=sfn.IntegrationPattern.RUN_JOB,
|
|
743
|
+
cluster=cluster,
|
|
744
|
+
task_definition=task_definition,
|
|
745
|
+
launch_target=tasks.EcsFargateLaunchTarget(),
|
|
746
|
+
cpu="1024",
|
|
747
|
+
memory_mi_b="1048"
|
|
748
|
+
)
|
|
749
|
+
```
|
|
750
|
+
|
|
719
751
|
#### ECS enable Exec
|
|
720
752
|
|
|
721
753
|
By setting the property [`enableExecuteCommand`](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html#ECS-RunTask-request-enableExecuteCommand) to `true`, you can enable the [ECS Exec feature](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-exec.html) for the task for either Fargate or EC2 launch types.
|
|
@@ -12718,7 +12750,9 @@ class EcsRunTask(
|
|
|
12718
12750
|
task_definition: _TaskDefinition_a541a103,
|
|
12719
12751
|
assign_public_ip: typing.Optional[builtins.bool] = None,
|
|
12720
12752
|
container_overrides: typing.Optional[typing.Sequence[typing.Union[ContainerOverride, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12753
|
+
cpu: typing.Optional[builtins.str] = None,
|
|
12721
12754
|
enable_execute_command: typing.Optional[builtins.bool] = None,
|
|
12755
|
+
memory_mib: typing.Optional[builtins.str] = None,
|
|
12722
12756
|
propagated_tag_source: typing.Optional[_PropagatedTagSource_ad4e874a] = None,
|
|
12723
12757
|
revision_number: typing.Optional[jsii.Number] = None,
|
|
12724
12758
|
security_groups: typing.Optional[typing.Sequence[_ISecurityGroup_acf8a799]] = None,
|
|
@@ -12744,7 +12778,9 @@ class EcsRunTask(
|
|
|
12744
12778
|
:param task_definition: [disable-awslint:ref-via-interface] Task Definition used for running tasks in the service. Note: this must be TaskDefinition, and not ITaskDefinition, as it requires properties that are not known for imported task definitions If you want to run a RunTask with an imported task definition, consider using CustomState
|
|
12745
12779
|
:param assign_public_ip: Assign public IP addresses to each task. Default: false
|
|
12746
12780
|
:param container_overrides: Container setting overrides. Specify the container to use and the overrides to apply. Default: - No overrides
|
|
12781
|
+
:param cpu: Cpu setting override. Default: - No override
|
|
12747
12782
|
:param enable_execute_command: Whether ECS Exec should be enabled. Default: false
|
|
12783
|
+
:param memory_mib: Memory setting override. Default: - No override
|
|
12748
12784
|
:param propagated_tag_source: Specifies whether to propagate the tags from the task definition to the task. An error will be received if you specify the SERVICE option when running a task. Default: - No tags are propagated.
|
|
12749
12785
|
:param revision_number: The revision number of ECS task definition family. Default: - '$latest'
|
|
12750
12786
|
:param security_groups: Existing security groups to use for the tasks. Default: - A new security group is created
|
|
@@ -12772,7 +12808,9 @@ class EcsRunTask(
|
|
|
12772
12808
|
task_definition=task_definition,
|
|
12773
12809
|
assign_public_ip=assign_public_ip,
|
|
12774
12810
|
container_overrides=container_overrides,
|
|
12811
|
+
cpu=cpu,
|
|
12775
12812
|
enable_execute_command=enable_execute_command,
|
|
12813
|
+
memory_mib=memory_mib,
|
|
12776
12814
|
propagated_tag_source=propagated_tag_source,
|
|
12777
12815
|
revision_number=revision_number,
|
|
12778
12816
|
security_groups=security_groups,
|
|
@@ -12831,7 +12869,9 @@ class EcsRunTask(
|
|
|
12831
12869
|
"task_definition": "taskDefinition",
|
|
12832
12870
|
"assign_public_ip": "assignPublicIp",
|
|
12833
12871
|
"container_overrides": "containerOverrides",
|
|
12872
|
+
"cpu": "cpu",
|
|
12834
12873
|
"enable_execute_command": "enableExecuteCommand",
|
|
12874
|
+
"memory_mib": "memoryMiB",
|
|
12835
12875
|
"propagated_tag_source": "propagatedTagSource",
|
|
12836
12876
|
"revision_number": "revisionNumber",
|
|
12837
12877
|
"security_groups": "securityGroups",
|
|
@@ -12859,7 +12899,9 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12859
12899
|
task_definition: _TaskDefinition_a541a103,
|
|
12860
12900
|
assign_public_ip: typing.Optional[builtins.bool] = None,
|
|
12861
12901
|
container_overrides: typing.Optional[typing.Sequence[typing.Union[ContainerOverride, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12902
|
+
cpu: typing.Optional[builtins.str] = None,
|
|
12862
12903
|
enable_execute_command: typing.Optional[builtins.bool] = None,
|
|
12904
|
+
memory_mib: typing.Optional[builtins.str] = None,
|
|
12863
12905
|
propagated_tag_source: typing.Optional[_PropagatedTagSource_ad4e874a] = None,
|
|
12864
12906
|
revision_number: typing.Optional[jsii.Number] = None,
|
|
12865
12907
|
security_groups: typing.Optional[typing.Sequence[_ISecurityGroup_acf8a799]] = None,
|
|
@@ -12884,7 +12926,9 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12884
12926
|
:param task_definition: [disable-awslint:ref-via-interface] Task Definition used for running tasks in the service. Note: this must be TaskDefinition, and not ITaskDefinition, as it requires properties that are not known for imported task definitions If you want to run a RunTask with an imported task definition, consider using CustomState
|
|
12885
12927
|
:param assign_public_ip: Assign public IP addresses to each task. Default: false
|
|
12886
12928
|
:param container_overrides: Container setting overrides. Specify the container to use and the overrides to apply. Default: - No overrides
|
|
12929
|
+
:param cpu: Cpu setting override. Default: - No override
|
|
12887
12930
|
:param enable_execute_command: Whether ECS Exec should be enabled. Default: false
|
|
12931
|
+
:param memory_mib: Memory setting override. Default: - No override
|
|
12888
12932
|
:param propagated_tag_source: Specifies whether to propagate the tags from the task definition to the task. An error will be received if you specify the SERVICE option when running a task. Default: - No tags are propagated.
|
|
12889
12933
|
:param revision_number: The revision number of ECS task definition family. Default: - '$latest'
|
|
12890
12934
|
:param security_groups: Existing security groups to use for the tasks. Default: - A new security group is created
|
|
@@ -12947,7 +12991,9 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12947
12991
|
check_type(argname="argument task_definition", value=task_definition, expected_type=type_hints["task_definition"])
|
|
12948
12992
|
check_type(argname="argument assign_public_ip", value=assign_public_ip, expected_type=type_hints["assign_public_ip"])
|
|
12949
12993
|
check_type(argname="argument container_overrides", value=container_overrides, expected_type=type_hints["container_overrides"])
|
|
12994
|
+
check_type(argname="argument cpu", value=cpu, expected_type=type_hints["cpu"])
|
|
12950
12995
|
check_type(argname="argument enable_execute_command", value=enable_execute_command, expected_type=type_hints["enable_execute_command"])
|
|
12996
|
+
check_type(argname="argument memory_mib", value=memory_mib, expected_type=type_hints["memory_mib"])
|
|
12951
12997
|
check_type(argname="argument propagated_tag_source", value=propagated_tag_source, expected_type=type_hints["propagated_tag_source"])
|
|
12952
12998
|
check_type(argname="argument revision_number", value=revision_number, expected_type=type_hints["revision_number"])
|
|
12953
12999
|
check_type(argname="argument security_groups", value=security_groups, expected_type=type_hints["security_groups"])
|
|
@@ -12985,8 +13031,12 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
12985
13031
|
self._values["assign_public_ip"] = assign_public_ip
|
|
12986
13032
|
if container_overrides is not None:
|
|
12987
13033
|
self._values["container_overrides"] = container_overrides
|
|
13034
|
+
if cpu is not None:
|
|
13035
|
+
self._values["cpu"] = cpu
|
|
12988
13036
|
if enable_execute_command is not None:
|
|
12989
13037
|
self._values["enable_execute_command"] = enable_execute_command
|
|
13038
|
+
if memory_mib is not None:
|
|
13039
|
+
self._values["memory_mib"] = memory_mib
|
|
12990
13040
|
if propagated_tag_source is not None:
|
|
12991
13041
|
self._values["propagated_tag_source"] = propagated_tag_source
|
|
12992
13042
|
if revision_number is not None:
|
|
@@ -13201,6 +13251,17 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13201
13251
|
result = self._values.get("container_overrides")
|
|
13202
13252
|
return typing.cast(typing.Optional[typing.List[ContainerOverride]], result)
|
|
13203
13253
|
|
|
13254
|
+
@builtins.property
|
|
13255
|
+
def cpu(self) -> typing.Optional[builtins.str]:
|
|
13256
|
+
'''Cpu setting override.
|
|
13257
|
+
|
|
13258
|
+
:default: - No override
|
|
13259
|
+
|
|
13260
|
+
:see: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TaskOverride.html
|
|
13261
|
+
'''
|
|
13262
|
+
result = self._values.get("cpu")
|
|
13263
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
13264
|
+
|
|
13204
13265
|
@builtins.property
|
|
13205
13266
|
def enable_execute_command(self) -> typing.Optional[builtins.bool]:
|
|
13206
13267
|
'''Whether ECS Exec should be enabled.
|
|
@@ -13212,6 +13273,17 @@ class EcsRunTaskProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
13212
13273
|
result = self._values.get("enable_execute_command")
|
|
13213
13274
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
13214
13275
|
|
|
13276
|
+
@builtins.property
|
|
13277
|
+
def memory_mib(self) -> typing.Optional[builtins.str]:
|
|
13278
|
+
'''Memory setting override.
|
|
13279
|
+
|
|
13280
|
+
:default: - No override
|
|
13281
|
+
|
|
13282
|
+
:see: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TaskOverride.html
|
|
13283
|
+
'''
|
|
13284
|
+
result = self._values.get("memory_mib")
|
|
13285
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
13286
|
+
|
|
13215
13287
|
@builtins.property
|
|
13216
13288
|
def propagated_tag_source(self) -> typing.Optional[_PropagatedTagSource_ad4e874a]:
|
|
13217
13289
|
'''Specifies whether to propagate the tags from the task definition to the task.
|
|
@@ -35530,7 +35602,9 @@ def _typecheckingstub__1b9fa1de6876853cd0aa59517079cbcfc7017daf643f17b13556a7a5f
|
|
|
35530
35602
|
task_definition: _TaskDefinition_a541a103,
|
|
35531
35603
|
assign_public_ip: typing.Optional[builtins.bool] = None,
|
|
35532
35604
|
container_overrides: typing.Optional[typing.Sequence[typing.Union[ContainerOverride, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
35605
|
+
cpu: typing.Optional[builtins.str] = None,
|
|
35533
35606
|
enable_execute_command: typing.Optional[builtins.bool] = None,
|
|
35607
|
+
memory_mib: typing.Optional[builtins.str] = None,
|
|
35534
35608
|
propagated_tag_source: typing.Optional[_PropagatedTagSource_ad4e874a] = None,
|
|
35535
35609
|
revision_number: typing.Optional[jsii.Number] = None,
|
|
35536
35610
|
security_groups: typing.Optional[typing.Sequence[_ISecurityGroup_acf8a799]] = None,
|
|
@@ -35570,7 +35644,9 @@ def _typecheckingstub__4f880997570006602fac387ce93510039132ec3f42612722766b67ec6
|
|
|
35570
35644
|
task_definition: _TaskDefinition_a541a103,
|
|
35571
35645
|
assign_public_ip: typing.Optional[builtins.bool] = None,
|
|
35572
35646
|
container_overrides: typing.Optional[typing.Sequence[typing.Union[ContainerOverride, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
35647
|
+
cpu: typing.Optional[builtins.str] = None,
|
|
35573
35648
|
enable_execute_command: typing.Optional[builtins.bool] = None,
|
|
35649
|
+
memory_mib: typing.Optional[builtins.str] = None,
|
|
35574
35650
|
propagated_tag_source: typing.Optional[_PropagatedTagSource_ad4e874a] = None,
|
|
35575
35651
|
revision_number: typing.Optional[jsii.Number] = None,
|
|
35576
35652
|
security_groups: typing.Optional[typing.Sequence[_ISecurityGroup_acf8a799]] = None,
|
|
@@ -3839,6 +3839,19 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3839
3839
|
'''
|
|
3840
3840
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_PYTHON_SELENIUM_3_0"))
|
|
3841
3841
|
|
|
3842
|
+
@jsii.python.classproperty
|
|
3843
|
+
@jsii.member(jsii_name="SYNTHETICS_PYTHON_SELENIUM_4_0")
|
|
3844
|
+
def SYNTHETICS_PYTHON_SELENIUM_4_0(cls) -> "Runtime":
|
|
3845
|
+
'''``syn-python-selenium-4.0`` includes the following: - Lambda runtime Python 3.9 - Selenium version 4.15.1 - Chromium version 126.0.6478.126.
|
|
3846
|
+
|
|
3847
|
+
New Features:
|
|
3848
|
+
|
|
3849
|
+
- **Bug fixes** for errors in HAR parser logging.
|
|
3850
|
+
|
|
3851
|
+
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_python_selenium.html#CloudWatch_Synthetics_runtimeversion-syn-python-selenium-4.0
|
|
3852
|
+
'''
|
|
3853
|
+
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_PYTHON_SELENIUM_4_0"))
|
|
3854
|
+
|
|
3842
3855
|
@builtins.property
|
|
3843
3856
|
@jsii.member(jsii_name="family")
|
|
3844
3857
|
def family(self) -> "RuntimeFamily":
|
|
@@ -842,6 +842,8 @@ Note that `CustomResourceConfig` uses Aspects to modify your constructs. There i
|
|
|
842
842
|
CustomResourceConfig.of(App).addLogRetentionLifetime(logs.RetentionDays.TEN_YEARS);
|
|
843
843
|
CustomResourceConfig.of(App).addLogRetentionLifetime(logs.RetentionDays.ONE_DAY);
|
|
844
844
|
|
|
845
|
+
### Setting Log Retention Lifetime
|
|
846
|
+
|
|
845
847
|
The following example configures every custom resource in this CDK app to retain its logs for ten years:
|
|
846
848
|
|
|
847
849
|
```python
|
|
@@ -918,6 +920,8 @@ s3deploy.BucketDeployment(nested_stack_b, "s3deployB",
|
|
|
918
920
|
)
|
|
919
921
|
```
|
|
920
922
|
|
|
923
|
+
### Setting Log Group Removal Policy
|
|
924
|
+
|
|
921
925
|
The `addLogRetentionLifetime` method of `CustomResourceConfig` will associate a log group with a AWS-vended custom resource lambda.
|
|
922
926
|
The `addRemovalPolicy` method will configure the custom resource lambda log group removal policy to `DESTROY`.
|
|
923
927
|
|
|
@@ -936,6 +940,27 @@ ses.ReceiptRuleSet(app, "RuleSet",
|
|
|
936
940
|
drop_spam=True
|
|
937
941
|
)
|
|
938
942
|
```
|
|
943
|
+
|
|
944
|
+
### Setting Lambda Runtimes
|
|
945
|
+
|
|
946
|
+
The `addLambdaRuntime` method of `CustomResourceConfig` will set every AWS-vended custom resource to the specified lambda runtime, provided that the custom resource lambda is in the same runtime family as the one you specified. The S3 BucketDeployment construct uses lambda runtime Python 3.9. The following example sets the custom resource lambda runtime to `PYTHON_3_12`:
|
|
947
|
+
|
|
948
|
+
```python
|
|
949
|
+
import aws_cdk as cdk
|
|
950
|
+
import aws_cdk.aws_s3_deployment as s3deploy
|
|
951
|
+
from aws_cdk.custom_resources import CustomResourceConfig
|
|
952
|
+
|
|
953
|
+
|
|
954
|
+
app = cdk.App()
|
|
955
|
+
stack = cdk.Stack(app, "Stack")
|
|
956
|
+
CustomResourceConfig.of(app).add_lambda_runtime(lambda_.Runtime.PYTHON_3_12)
|
|
957
|
+
|
|
958
|
+
website_bucket = s3.Bucket(stack, "WebsiteBucket")
|
|
959
|
+
s3deploy.BucketDeployment(stack, "s3deploy",
|
|
960
|
+
sources=[s3deploy.Source.json_data("file.json", {"a": "b"})],
|
|
961
|
+
destination_bucket=website_bucket
|
|
962
|
+
)
|
|
963
|
+
```
|
|
939
964
|
'''
|
|
940
965
|
from pkgutil import extend_path
|
|
941
966
|
__path__ = extend_path(__path__, __name__)
|
|
@@ -976,7 +1001,7 @@ from ..aws_iam import (
|
|
|
976
1001
|
PolicyStatement as _PolicyStatement_0fe33853,
|
|
977
1002
|
)
|
|
978
1003
|
from ..aws_kms import IKey as _IKey_5f11635f
|
|
979
|
-
from ..aws_lambda import IFunction as _IFunction_6adb0ab8
|
|
1004
|
+
from ..aws_lambda import IFunction as _IFunction_6adb0ab8, Runtime as _Runtime_b4eaa844
|
|
980
1005
|
from ..aws_logs import (
|
|
981
1006
|
ILogGroup as _ILogGroup_3c4fa718, RetentionDays as _RetentionDays_070f99f0
|
|
982
1007
|
)
|
|
@@ -1824,10 +1849,25 @@ class CustomResourceConfig(
|
|
|
1824
1849
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
1825
1850
|
return typing.cast("CustomResourceConfig", jsii.sinvoke(cls, "of", [scope]))
|
|
1826
1851
|
|
|
1852
|
+
@jsii.member(jsii_name="addLambdaRuntime")
|
|
1853
|
+
def add_lambda_runtime(self, lambda_runtime: _Runtime_b4eaa844) -> None:
|
|
1854
|
+
'''Set the runtime version on AWS-vended custom resources lambdas.
|
|
1855
|
+
|
|
1856
|
+
This feature is currently experimental.
|
|
1857
|
+
|
|
1858
|
+
:param lambda_runtime: -
|
|
1859
|
+
'''
|
|
1860
|
+
if __debug__:
|
|
1861
|
+
type_hints = typing.get_type_hints(_typecheckingstub__78a138e921609d9dcf95b341aa403897a831e305855b6a8bf80efcf60f0acc0e)
|
|
1862
|
+
check_type(argname="argument lambda_runtime", value=lambda_runtime, expected_type=type_hints["lambda_runtime"])
|
|
1863
|
+
return typing.cast(None, jsii.invoke(self, "addLambdaRuntime", [lambda_runtime]))
|
|
1864
|
+
|
|
1827
1865
|
@jsii.member(jsii_name="addLogRetentionLifetime")
|
|
1828
1866
|
def add_log_retention_lifetime(self, rentention: _RetentionDays_070f99f0) -> None:
|
|
1829
1867
|
'''Set the log retention of AWS-vended custom resource lambdas.
|
|
1830
1868
|
|
|
1869
|
+
This feature is currently experimental.
|
|
1870
|
+
|
|
1831
1871
|
:param rentention: -
|
|
1832
1872
|
'''
|
|
1833
1873
|
if __debug__:
|
|
@@ -1839,6 +1879,8 @@ class CustomResourceConfig(
|
|
|
1839
1879
|
def add_removal_policy(self, removal_policy: _RemovalPolicy_9f93c814) -> None:
|
|
1840
1880
|
'''Set the removal policy of AWS-vended custom resource logGroup.
|
|
1841
1881
|
|
|
1882
|
+
This feature is currently experimental.
|
|
1883
|
+
|
|
1842
1884
|
:param removal_policy: -
|
|
1843
1885
|
'''
|
|
1844
1886
|
if __debug__:
|
|
@@ -1847,6 +1889,50 @@ class CustomResourceConfig(
|
|
|
1847
1889
|
return typing.cast(None, jsii.invoke(self, "addRemovalPolicy", [removal_policy]))
|
|
1848
1890
|
|
|
1849
1891
|
|
|
1892
|
+
@jsii.implements(_IAspect_118c810a)
|
|
1893
|
+
class CustomResourceLambdaRuntime(
|
|
1894
|
+
metaclass=jsii.JSIIMeta,
|
|
1895
|
+
jsii_type="aws-cdk-lib.custom_resources.CustomResourceLambdaRuntime",
|
|
1896
|
+
):
|
|
1897
|
+
'''Manages lambda runtime for AWS-vended custom resources.
|
|
1898
|
+
|
|
1899
|
+
This feature is currently experimental.
|
|
1900
|
+
|
|
1901
|
+
:exampleMetadata: fixture=_generated
|
|
1902
|
+
|
|
1903
|
+
Example::
|
|
1904
|
+
|
|
1905
|
+
# The code below shows an example of how to instantiate this type.
|
|
1906
|
+
# The values are placeholders you should change.
|
|
1907
|
+
from aws_cdk import aws_lambda as lambda_
|
|
1908
|
+
from aws_cdk import custom_resources
|
|
1909
|
+
|
|
1910
|
+
# runtime: lambda.Runtime
|
|
1911
|
+
|
|
1912
|
+
custom_resource_lambda_runtime = custom_resources.CustomResourceLambdaRuntime(runtime)
|
|
1913
|
+
'''
|
|
1914
|
+
|
|
1915
|
+
def __init__(self, lambda_runtime: _Runtime_b4eaa844) -> None:
|
|
1916
|
+
'''
|
|
1917
|
+
:param lambda_runtime: -
|
|
1918
|
+
'''
|
|
1919
|
+
if __debug__:
|
|
1920
|
+
type_hints = typing.get_type_hints(_typecheckingstub__12285526f811e0d37f024a5fdf89253f5dd9d8adfeb44ea4697e8a0c2722e8f4)
|
|
1921
|
+
check_type(argname="argument lambda_runtime", value=lambda_runtime, expected_type=type_hints["lambda_runtime"])
|
|
1922
|
+
jsii.create(self.__class__, self, [lambda_runtime])
|
|
1923
|
+
|
|
1924
|
+
@jsii.member(jsii_name="visit")
|
|
1925
|
+
def visit(self, node: _constructs_77d1e7e8.IConstruct) -> None:
|
|
1926
|
+
'''All aspects can visit an IConstruct.
|
|
1927
|
+
|
|
1928
|
+
:param node: -
|
|
1929
|
+
'''
|
|
1930
|
+
if __debug__:
|
|
1931
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4a41e38bc97de5d240895d2afbccd81c124833c332c3dca576ae7d31e5fc3f21)
|
|
1932
|
+
check_type(argname="argument node", value=node, expected_type=type_hints["node"])
|
|
1933
|
+
return typing.cast(None, jsii.invoke(self, "visit", [node]))
|
|
1934
|
+
|
|
1935
|
+
|
|
1850
1936
|
@jsii.implements(_IAspect_118c810a)
|
|
1851
1937
|
class CustomResourceLogRetention(
|
|
1852
1938
|
metaclass=jsii.JSIIMeta,
|
|
@@ -3049,6 +3135,7 @@ __all__ = [
|
|
|
3049
3135
|
"AwsCustomResourceProps",
|
|
3050
3136
|
"AwsSdkCall",
|
|
3051
3137
|
"CustomResourceConfig",
|
|
3138
|
+
"CustomResourceLambdaRuntime",
|
|
3052
3139
|
"CustomResourceLogRetention",
|
|
3053
3140
|
"CustomResourceRemovalPolicy",
|
|
3054
3141
|
"LogOptions",
|
|
@@ -3149,6 +3236,12 @@ def _typecheckingstub__71c1178bbfb24d2c3974ce93648bb5eea2ec04e86060e04ce5e125d82
|
|
|
3149
3236
|
"""Type checking stubs"""
|
|
3150
3237
|
pass
|
|
3151
3238
|
|
|
3239
|
+
def _typecheckingstub__78a138e921609d9dcf95b341aa403897a831e305855b6a8bf80efcf60f0acc0e(
|
|
3240
|
+
lambda_runtime: _Runtime_b4eaa844,
|
|
3241
|
+
) -> None:
|
|
3242
|
+
"""Type checking stubs"""
|
|
3243
|
+
pass
|
|
3244
|
+
|
|
3152
3245
|
def _typecheckingstub__b24e4182dd0a87c24dfd3d5c1bc10b91914571416d15e209d3fbd01cdcca86c3(
|
|
3153
3246
|
rentention: _RetentionDays_070f99f0,
|
|
3154
3247
|
) -> None:
|
|
@@ -3161,6 +3254,18 @@ def _typecheckingstub__40b6d12e0fa498dd2bcee3634487a6647d3a4e2c1241e542a57e63d03
|
|
|
3161
3254
|
"""Type checking stubs"""
|
|
3162
3255
|
pass
|
|
3163
3256
|
|
|
3257
|
+
def _typecheckingstub__12285526f811e0d37f024a5fdf89253f5dd9d8adfeb44ea4697e8a0c2722e8f4(
|
|
3258
|
+
lambda_runtime: _Runtime_b4eaa844,
|
|
3259
|
+
) -> None:
|
|
3260
|
+
"""Type checking stubs"""
|
|
3261
|
+
pass
|
|
3262
|
+
|
|
3263
|
+
def _typecheckingstub__4a41e38bc97de5d240895d2afbccd81c124833c332c3dca576ae7d31e5fc3f21(
|
|
3264
|
+
node: _constructs_77d1e7e8.IConstruct,
|
|
3265
|
+
) -> None:
|
|
3266
|
+
"""Type checking stubs"""
|
|
3267
|
+
pass
|
|
3268
|
+
|
|
3164
3269
|
def _typecheckingstub__d9817c2e505de7a66bfdd5dae2d9307acfd8d0c9c65dd6bd79ef0eb799e16ac3(
|
|
3165
3270
|
set_log_retention: _RetentionDays_070f99f0,
|
|
3166
3271
|
) -> None:
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
aws_cdk/__init__.py,sha256=FUsZJgTwntpY36QGRIfjRqwpfiXGD4w2V683Zo57l6E,1791752
|
|
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=C9ALEUAdzIf0nxHa2aCPta-YT3I7tqwYf5kJihF4ugk,614
|
|
4
|
+
aws_cdk/_jsii/aws-cdk-lib@2.155.0.jsii.tgz,sha256=wONOSbeVm8LikJhiLufOSfyHQH2zpW0J9HqCC1OQo1o,22611778
|
|
5
5
|
aws_cdk/alexa_ask/__init__.py,sha256=zUGLCwba1AKRaTqnt0HDNOPL3kKC2iO22vy2Hh5coVg,35402
|
|
6
|
-
aws_cdk/assertions/__init__.py,sha256=
|
|
6
|
+
aws_cdk/assertions/__init__.py,sha256=Htb0RTIq3dd-7ylxKsnLI-B4QSOq-Ql1RlznxvqNrQU,91338
|
|
7
7
|
aws_cdk/aws_accessanalyzer/__init__.py,sha256=LSHAqzTbJ9EC1wrpiYYG1d0qTldyTr_ooJk-bzCNw94,42072
|
|
8
8
|
aws_cdk/aws_acmpca/__init__.py,sha256=GpC17vycvjluxgiO2I11EdQttSqagtrIL-w_lmjPS6A,341328
|
|
9
9
|
aws_cdk/aws_amazonmq/__init__.py,sha256=8FtATOwhXaXWEB7Wc8XbsJp7KOP-lN501a5oY6w0nOg,162859
|
|
@@ -48,14 +48,14 @@ aws_cdk/aws_cleanrooms/__init__.py,sha256=jmZrRlAYGuwwyDdXNybjAPuyN1y-BdSi4wLRyu
|
|
|
48
48
|
aws_cdk/aws_cleanroomsml/__init__.py,sha256=kB5aTRZ0raMWpEBz-Lrs0UcJkHQUzoFQ_6Ul7FipNJI,48343
|
|
49
49
|
aws_cdk/aws_cloud9/__init__.py,sha256=4F9YEi-KSwnro2tdchg0g2CTatiuYL8Z75JdCUcvE_k,42126
|
|
50
50
|
aws_cdk/aws_cloudformation/__init__.py,sha256=gLuJPayx3CUvXeVlJ0xvawsupTdJGkGP1MsSvfWbJhQ,392310
|
|
51
|
-
aws_cdk/aws_cloudfront/__init__.py,sha256=
|
|
51
|
+
aws_cdk/aws_cloudfront/__init__.py,sha256=f4cK7U0aGfoGlgqDVWZM_Ff2hXsNjIwsPlHBLVcgd2g,1480357
|
|
52
52
|
aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=LanvMgGMqxQ6D0YN9RcWeO5m9BPRgPc9ciDBwn5HLIo,135393
|
|
53
53
|
aws_cdk/aws_cloudfront_origins/__init__.py,sha256=8V5Yq4s5Lf0gj3E-3OlnB9HvX37r0bpvUpVjqIDMO10,110507
|
|
54
54
|
aws_cdk/aws_cloudtrail/__init__.py,sha256=xAYD5UV7lOJPsaNyOrbHhRgIHF9OiuU-P4z1QUes7tQ,316019
|
|
55
55
|
aws_cdk/aws_cloudwatch/__init__.py,sha256=GcurGoJGd15N-VCRGqwSD5t2XEWiscKJtqyGamA-DF8,803518
|
|
56
56
|
aws_cdk/aws_cloudwatch_actions/__init__.py,sha256=YS4vVIqy1q30xxtj4t4n_sTjLfDOgBpMJF9HqVuXub0,21402
|
|
57
57
|
aws_cdk/aws_codeartifact/__init__.py,sha256=xqju4lQkEh6qsSWkcFLB9grb1nktgI3GBq6MW_9Ygjw,87067
|
|
58
|
-
aws_cdk/aws_codebuild/__init__.py,sha256=
|
|
58
|
+
aws_cdk/aws_codebuild/__init__.py,sha256=vpZiu5xcfkuunj9MyZnhpL0N6E88mIjiYNGC6gUR1Wc,1024295
|
|
59
59
|
aws_cdk/aws_codecommit/__init__.py,sha256=RzdD0cttkKH_SGGZEHsBMem4PGJMN4lI_pkKlZ882Lk,236981
|
|
60
60
|
aws_cdk/aws_codeconnections/__init__.py,sha256=KPaXbIHD94IqtospMhiGo4kakoUOb12Ue1SuWpcUYuM,18996
|
|
61
61
|
aws_cdk/aws_codedeploy/__init__.py,sha256=AZPmSFD7UUkSr3qsHRzDlP4KSN5sXNCbfQz7KA9r6Ek,605599
|
|
@@ -89,13 +89,13 @@ aws_cdk/aws_dms/__init__.py,sha256=ve0pYRgJZFGiyuMPFvDBbd2T1LFiAzknhFysTQi7X94,8
|
|
|
89
89
|
aws_cdk/aws_docdb/__init__.py,sha256=LJZdhLKn7gm6Vc_yiP9TCQBFJNTo0sfiwz--OPilUZI,314800
|
|
90
90
|
aws_cdk/aws_docdbelastic/__init__.py,sha256=LvdizkXJJjNyDwUbjOpPRMAbwcyyCJtzQWfM3ib4x0U,45778
|
|
91
91
|
aws_cdk/aws_dynamodb/__init__.py,sha256=PzrYr3BgOopTh-fsYjVIBc99fEE9gaKZ3s8u3TvgFzM,938225
|
|
92
|
-
aws_cdk/aws_ec2/__init__.py,sha256=
|
|
92
|
+
aws_cdk/aws_ec2/__init__.py,sha256=gcY2FJhEn3JjIDIXMGam6_tA6Ivh7p5VDQyBNa3DnMo,5604212
|
|
93
93
|
aws_cdk/aws_ecr/__init__.py,sha256=jpys3f4KEZEgbzA_L_bB-3hmCAYnOGoifNwc-k8etkk,297482
|
|
94
94
|
aws_cdk/aws_ecr_assets/__init__.py,sha256=XwzseEGjGjqPcIAaw_vxLLxcm5qmFCEoGp3vFQebPGg,83627
|
|
95
95
|
aws_cdk/aws_ecs/__init__.py,sha256=dU-4amzp0JriAGTNuz_zGb2tVAn_6sh5ORLcScDVSQo,2559755
|
|
96
96
|
aws_cdk/aws_ecs_patterns/__init__.py,sha256=uPwp_RgoE-uB_S_SSI5wVRkv1q725u8yFLkRVBwd-vo,1019737
|
|
97
97
|
aws_cdk/aws_efs/__init__.py,sha256=NxQAPRN9S3PrcR8GMiSeMtUBayXAe7KCWtwCi6gQ0X0,276175
|
|
98
|
-
aws_cdk/aws_eks/__init__.py,sha256=
|
|
98
|
+
aws_cdk/aws_eks/__init__.py,sha256=scT77ty0fhL4Y_Xl01Xf1JPxN_M7K3qiEGlQwrkwgJg,1145655
|
|
99
99
|
aws_cdk/aws_elasticache/__init__.py,sha256=0AxAnvIKUbwDR3FaWAz6aGv13lfVdO0egUR3h7675vE,522208
|
|
100
100
|
aws_cdk/aws_elasticbeanstalk/__init__.py,sha256=zG5rRLiXJcuTzewIBmUe0ExSTiNga1C0N5ew7zX__XM,164485
|
|
101
101
|
aws_cdk/aws_elasticloadbalancing/__init__.py,sha256=mKphApMa6sexSSlpyjQOAG8BY3F3TT2FJeXmY7GPblM,162160
|
|
@@ -145,7 +145,7 @@ aws_cdk/aws_iotsitewise/__init__.py,sha256=8rqmoMj2beuOob5PARHO1xMV0XJWzqcRW_0L-
|
|
|
145
145
|
aws_cdk/aws_iotthingsgraph/__init__.py,sha256=QL3pqsNxfprTdG12NyTq-AIENs8tlFYjkcJwSzBtGUY,16520
|
|
146
146
|
aws_cdk/aws_iottwinmaker/__init__.py,sha256=LqKOXZLsPKS3TXbB_aCepv_Cosj59xu0kU3SfYl31xY,289353
|
|
147
147
|
aws_cdk/aws_iotwireless/__init__.py,sha256=AGi6lYM3navaKa_zBb_D1UyWaiMTjERVxPQTlU3h7EA,401451
|
|
148
|
-
aws_cdk/aws_ivs/__init__.py,sha256=
|
|
148
|
+
aws_cdk/aws_ivs/__init__.py,sha256=U5MjZ0o0g_XENn4nk1Rux_ZwMsSwY6u7WoObbVL8Jcc,205629
|
|
149
149
|
aws_cdk/aws_ivschat/__init__.py,sha256=cIW2MXAKO0Jtn9eQyeXdR9MGHmY4VFstZ1MfDAknZ84,62931
|
|
150
150
|
aws_cdk/aws_kafkaconnect/__init__.py,sha256=XG0aRF3khDICBcfQRmbH7NhyOWWTfM4IARdZ_qXzQLk,171500
|
|
151
151
|
aws_cdk/aws_kendra/__init__.py,sha256=i4Cy5BKwS0uT1t1A5-5_Q4VhZqpaUg4XGakC8Mbytb8,682001
|
|
@@ -155,11 +155,11 @@ aws_cdk/aws_kinesisanalytics/__init__.py,sha256=yXech7x04L6-iZZ8a1y43omcIChnWUMP
|
|
|
155
155
|
aws_cdk/aws_kinesisanalyticsv2/__init__.py,sha256=QpmKe7w5YqaceC0Tgj8vgmMXwc94zhhzY-flmXf8oQA,386995
|
|
156
156
|
aws_cdk/aws_kinesisfirehose/__init__.py,sha256=R8N-hV8ImjyhwjAKjkHQSI8dWwDjEK6v53SzhkpQvA8,572372
|
|
157
157
|
aws_cdk/aws_kinesisvideo/__init__.py,sha256=EEUVwOHPfC6ijy82XZAY2PZ9ipf5Y5-qgTBW6BBmvM4,37777
|
|
158
|
-
aws_cdk/aws_kms/__init__.py,sha256=
|
|
158
|
+
aws_cdk/aws_kms/__init__.py,sha256=JXsNolXWlqqpRRZg6N1AcKiHO7EjK6SxM5HDvfHMFNQ,235903
|
|
159
159
|
aws_cdk/aws_lakeformation/__init__.py,sha256=D5V7RV5Xo-0llV1LPNAFYmn2Nfu6mseGEFJN8dHRi8c,334971
|
|
160
|
-
aws_cdk/aws_lambda/__init__.py,sha256=
|
|
160
|
+
aws_cdk/aws_lambda/__init__.py,sha256=moBBkaDtwzyvGpjiG8CvW8B8C0u3u6Zyp4G7fRvOR6s,1636084
|
|
161
161
|
aws_cdk/aws_lambda_destinations/__init__.py,sha256=j-W-G8f-0TH0RHmhPAkPulkdx0LwpBP7n7hIZKCI0sY,20443
|
|
162
|
-
aws_cdk/aws_lambda_event_sources/__init__.py,sha256=
|
|
162
|
+
aws_cdk/aws_lambda_event_sources/__init__.py,sha256=NIKr1QGZ5Y2jYEgbrCTAxkY1lSf_UYgFxG6eXrAyTdo,210023
|
|
163
163
|
aws_cdk/aws_lambda_nodejs/__init__.py,sha256=7__pdE-Z7rYfW8BqROG-aDFLIShUIJEYUmID5FjbMaU,173946
|
|
164
164
|
aws_cdk/aws_launchwizard/__init__.py,sha256=p_dMxNUc5HjbVI-LxKlFtWzwR4jBOUGVfxQWs1I71Mg,23060
|
|
165
165
|
aws_cdk/aws_lex/__init__.py,sha256=FYFYZIEjCXnJC9xSJ-GGqMjkYCJxPTO4M0XKt7FrThk,700253
|
|
@@ -209,7 +209,7 @@ aws_cdk/aws_qbusiness/__init__.py,sha256=OU4t6QiNYa7JDNTTFDdSEIv-ly2IYxm25I3FCU9
|
|
|
209
209
|
aws_cdk/aws_qldb/__init__.py,sha256=i03CF7CDGrVDR5mVf0eiCg4OXiLRaFzTVzHhYwhMJa0,62857
|
|
210
210
|
aws_cdk/aws_quicksight/__init__.py,sha256=gsvf62JdHQWJvWXaNWfl09vScswbLTKs4Ton9Mc-X7I,14063406
|
|
211
211
|
aws_cdk/aws_ram/__init__.py,sha256=KPKkfPb_m-OOvKsH5gnaNFj6Ls4xyptalIrUAkJ3E_U,50642
|
|
212
|
-
aws_cdk/aws_rds/__init__.py,sha256=
|
|
212
|
+
aws_cdk/aws_rds/__init__.py,sha256=s7n7oo7G4Xy0UBpF7BSIE6Y2_0QqSbd7B-37wnrdCZQ,2734437
|
|
213
213
|
aws_cdk/aws_redshift/__init__.py,sha256=RISM58rAwWxWO-PQ5ppeAewp5aju1hV2fAC5M6hqTXo,379375
|
|
214
214
|
aws_cdk/aws_redshiftserverless/__init__.py,sha256=P_MhN0x_sSYIwTRIW8Vd_YGnw2G6PT6nHDFTp_sEoJc,160507
|
|
215
215
|
aws_cdk/aws_refactorspaces/__init__.py,sha256=58VQUduULKOsqpA-6OFSVvs-2yXAbbFpuViiiUbYZlE,122452
|
|
@@ -238,13 +238,13 @@ aws_cdk/aws_sagemaker/__init__.py,sha256=cgya39F3cYple_NRw8o0rREU5Tc4BptslRRNuVi
|
|
|
238
238
|
aws_cdk/aws_sam/__init__.py,sha256=0cAhTwIctDt_iJY7p5HHqHeGV0-rL1tXsobUqyuXy0w,756749
|
|
239
239
|
aws_cdk/aws_scheduler/__init__.py,sha256=yCZHkNnRDjahvdR4jTZ4skTVGzw6H3I6MlTe008s9eY,157964
|
|
240
240
|
aws_cdk/aws_sdb/__init__.py,sha256=FS9ueQq3GdGAV60dibLm-pK--VAoGdm833C4eeRs2wk,9820
|
|
241
|
-
aws_cdk/aws_secretsmanager/__init__.py,sha256=
|
|
241
|
+
aws_cdk/aws_secretsmanager/__init__.py,sha256=TXoxDjzwhGhS61MgVcGgHFSIlLWMO0bzxiJ6W1-UCH0,379021
|
|
242
242
|
aws_cdk/aws_securityhub/__init__.py,sha256=oOuFoq4YV97UQx9ViYYfCdxmdXtLqkS64-hh3Fut5mE,737556
|
|
243
243
|
aws_cdk/aws_securitylake/__init__.py,sha256=kNES0s6vj4EBefW9swTY2tyq8cvTHqmQxPyFu2C_JV0,122102
|
|
244
244
|
aws_cdk/aws_servicecatalog/__init__.py,sha256=tS1jbLumRJ9z4LjoisDLSE8ALClOw9koXENqoa0cva4,541093
|
|
245
245
|
aws_cdk/aws_servicecatalogappregistry/__init__.py,sha256=CMoCSbTYKF7K7eTntFRyJylrwL2KjUsWqPnYVT4j40Q,56215
|
|
246
246
|
aws_cdk/aws_servicediscovery/__init__.py,sha256=EO_uRNV7ugEHqBdE4sSpYot83tXfgvrq8hmhxBDl438,363945
|
|
247
|
-
aws_cdk/aws_ses/__init__.py,sha256=
|
|
247
|
+
aws_cdk/aws_ses/__init__.py,sha256=dXNnsQIJn1egFWzz_1m3lzLEifbrIXhqt2Xbgk-2OCw,912030
|
|
248
248
|
aws_cdk/aws_ses_actions/__init__.py,sha256=Gc3yshcOyvpUDrVuk00FzZODuRrZY5OPWYXBIznrtFQ,50696
|
|
249
249
|
aws_cdk/aws_shield/__init__.py,sha256=VW3klMweIrGce0cFsABgspssCv8vfmkD9tjIwrtVvj0,104451
|
|
250
250
|
aws_cdk/aws_signer/__init__.py,sha256=TdH9K5MWSfL2vA3e_QAGai0SyUfUzlvP3ihV2COIU2E,58443
|
|
@@ -253,13 +253,13 @@ aws_cdk/aws_sns/__init__.py,sha256=P-vuzc3f8MeMQelJ0DXtSIVXW0iDKL9fvpbkSSCLHvI,3
|
|
|
253
253
|
aws_cdk/aws_sns_subscriptions/__init__.py,sha256=yaa9v_nAeQwkMtSgtI_V1sHozOhaw8EUmQCxYCUgIw0,59913
|
|
254
254
|
aws_cdk/aws_sqs/__init__.py,sha256=RI32K5y2sgZcJOc_AwQRTXlQ89ro6LGwebr9amvxXas,273929
|
|
255
255
|
aws_cdk/aws_ssm/__init__.py,sha256=aZ49gBLI4-of1JQf86FEhKbovz6wmifb7-ayZd1b-8g,594445
|
|
256
|
-
aws_cdk/aws_ssmcontacts/__init__.py,sha256=
|
|
256
|
+
aws_cdk/aws_ssmcontacts/__init__.py,sha256=rQ0P6pHTQpO0FUDxkYgfb-GSJMSSHrA9-f769QceC9U,138355
|
|
257
257
|
aws_cdk/aws_ssmincidents/__init__.py,sha256=o5VGUNA7ZHPxAyKp9MvWB6YPt52v-jNOb_eDH9RKT0k,112553
|
|
258
258
|
aws_cdk/aws_sso/__init__.py,sha256=99Pv_9aucWLhduj8rpLz7LocrEwapmnUUMGC3upbC4M,155356
|
|
259
|
-
aws_cdk/aws_stepfunctions/__init__.py,sha256
|
|
260
|
-
aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=
|
|
259
|
+
aws_cdk/aws_stepfunctions/__init__.py,sha256=aeJ4r4Q6fJHQXi_uBGYprfiFvE6hXDE5_aSEcLK_8m8,899717
|
|
260
|
+
aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=htQ9yqejzk3741UnJoZK88pyIA-neW_HuGgGm9s0820,1952020
|
|
261
261
|
aws_cdk/aws_supportapp/__init__.py,sha256=Unr22ezlZuXYbwSuCmpwT1uZgg4Cgt3KB2PI5B3Cd5w,48441
|
|
262
|
-
aws_cdk/aws_synthetics/__init__.py,sha256=
|
|
262
|
+
aws_cdk/aws_synthetics/__init__.py,sha256=J1WCgP28nDJUAcyiDPl8V4vqENKmCP9Pxqw1jnvtjco,246733
|
|
263
263
|
aws_cdk/aws_systemsmanagersap/__init__.py,sha256=1hzsq9R0qyUSlNwX7-VfsD8zOyjlWsKRm_q8_ORyFms,31850
|
|
264
264
|
aws_cdk/aws_timestream/__init__.py,sha256=seqKX0LUfcAt14_GZLop1ikL0_oIhd3wHIkZs1JXEk4,241405
|
|
265
265
|
aws_cdk/aws_transfer/__init__.py,sha256=mpBXbtpt1zdDLZJRU1N7IWA5czUpv-bpK7sUxuu3CO8,400541
|
|
@@ -276,7 +276,7 @@ aws_cdk/aws_workspacesweb/__init__.py,sha256=aGoLKR3AiBkKGdyodAPTBlNvFAegKXPNxp2
|
|
|
276
276
|
aws_cdk/aws_xray/__init__.py,sha256=7w8d2Zzl27ybB_OqCPAjB3wEKE_LapoED5FGc-5196U,97599
|
|
277
277
|
aws_cdk/cloud_assembly_schema/__init__.py,sha256=RPSY_HNCy4OZpBQk1Em418s-3bLZ3AXFAq-yQCVOwfY,369870
|
|
278
278
|
aws_cdk/cloudformation_include/__init__.py,sha256=_98bU50-7xAo_JVU50YQmRkHQvdAIpTh4BnNUaDLQcg,46655
|
|
279
|
-
aws_cdk/custom_resources/__init__.py,sha256=
|
|
279
|
+
aws_cdk/custom_resources/__init__.py,sha256=wXP1pskFyQ6i6w3rr7pR_xPhkIQ7LupJGBIiTpPjSMQ,165048
|
|
280
280
|
aws_cdk/cx_api/__init__.py,sha256=bkcmrm1sp28wXbH36YMyFyvGusn_LHX-j9jHJkXFgOU,160952
|
|
281
281
|
aws_cdk/lambda_layer_awscli/__init__.py,sha256=IlACJkDyh8sV2B0z5D_117b_PtXaJm51CQ1p1-ZXQ4w,2323
|
|
282
282
|
aws_cdk/lambda_layer_kubectl/__init__.py,sha256=W-dUsp28JPkIlpvARiWnkMl1qsESOIi8_ajqFAcGxBk,2595
|
|
@@ -284,9 +284,9 @@ aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=t7G83ZQzGlrH_CVhMxtbzMG
|
|
|
284
284
|
aws_cdk/pipelines/__init__.py,sha256=q65MYnai009K8g_eaxjTnDOR_-maZyZ3MJKys4c8JKk,396401
|
|
285
285
|
aws_cdk/region_info/__init__.py,sha256=OhxtjLqmH2FZZytkekg1b7WVc6HNpgwddo0guOq92j8,38690
|
|
286
286
|
aws_cdk/triggers/__init__.py,sha256=M7IDuEP3XIH3-EJQaAm4xahkM7i5Icez8bccIsExP9I,120014
|
|
287
|
-
aws_cdk_lib-2.
|
|
288
|
-
aws_cdk_lib-2.
|
|
289
|
-
aws_cdk_lib-2.
|
|
290
|
-
aws_cdk_lib-2.
|
|
291
|
-
aws_cdk_lib-2.
|
|
292
|
-
aws_cdk_lib-2.
|
|
287
|
+
aws_cdk_lib-2.155.0.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
|
|
288
|
+
aws_cdk_lib-2.155.0.dist-info/METADATA,sha256=_UxGCxRfUzWDWYp8svDcwSprFYEpPlCFeIapUj6LKrA,59951
|
|
289
|
+
aws_cdk_lib-2.155.0.dist-info/NOTICE,sha256=BZyRfC0PoNXSoqGVWkGaJhCSmAA1TObhSW8a6_m_SlI,40861
|
|
290
|
+
aws_cdk_lib-2.155.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
291
|
+
aws_cdk_lib-2.155.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
292
|
+
aws_cdk_lib-2.155.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|