aws-cdk-lib 2.118.0__py3-none-any.whl → 2.119.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +4 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.118.0.jsii.tgz → aws-cdk-lib@2.119.0.jsii.tgz} +0 -0
- aws_cdk/amzn_sdc/__init__.py +496 -0
- aws_cdk/aws_appsync/__init__.py +23 -9
- aws_cdk/aws_certificatemanager/__init__.py +164 -3
- aws_cdk/aws_cloud9/__init__.py +3 -3
- aws_cdk/aws_cloudfront/__init__.py +105 -5
- aws_cdk/aws_cloudtrail/__init__.py +54 -34
- aws_cdk/aws_cloudwatch_actions/__init__.py +105 -0
- aws_cdk/aws_codebuild/__init__.py +1 -0
- aws_cdk/aws_codecommit/__init__.py +9 -3
- aws_cdk/aws_codetest/__init__.py +788 -0
- aws_cdk/aws_cognito/__init__.py +104 -0
- aws_cdk/aws_connect/__init__.py +626 -78
- aws_cdk/aws_docdb/__init__.py +442 -0
- aws_cdk/aws_dynamodb/__init__.py +14 -0
- aws_cdk/aws_ec2/__init__.py +372 -44
- aws_cdk/aws_emrserverless/__init__.py +20 -13
- aws_cdk/aws_events/__init__.py +90 -1
- aws_cdk/aws_fis/__init__.py +12 -32
- aws_cdk/aws_globalaccelerator/__init__.py +19 -0
- aws_cdk/aws_glue/__init__.py +329 -0
- aws_cdk/aws_iam/__init__.py +30 -24
- aws_cdk/aws_iot/__init__.py +112 -0
- aws_cdk/aws_iotsitewise/__init__.py +4 -4
- aws_cdk/aws_kendra/__init__.py +10 -5
- aws_cdk/aws_kinesisfirehose/__init__.py +111 -0
- aws_cdk/aws_location/__init__.py +1132 -17
- aws_cdk/aws_mediatailor/__init__.py +120 -17
- aws_cdk/aws_networkfirewall/__init__.py +2 -2
- aws_cdk/aws_networkmanager/__init__.py +1 -1
- aws_cdk/aws_omics/__init__.py +4 -4
- aws_cdk/aws_opensearchservice/__init__.py +2 -0
- aws_cdk/aws_pinpoint/__init__.py +14 -6
- aws_cdk/aws_pipes/__init__.py +7 -2
- aws_cdk/aws_rds/__init__.py +15 -9
- aws_cdk/aws_redshift/__init__.py +103 -0
- aws_cdk/aws_route53/__init__.py +68 -20
- aws_cdk/aws_s3/__init__.py +2 -4
- aws_cdk/aws_s3objectlambda/__init__.py +2 -2
- aws_cdk/aws_servicecatalogappregistry/__init__.py +3 -3
- aws_cdk/aws_signer/__init__.py +27 -4
- aws_cdk/aws_ssm/__init__.py +76 -13
- aws_cdk/aws_stepfunctions/__init__.py +110 -5
- aws_cdk/pipelines/__init__.py +136 -37
- {aws_cdk_lib-2.118.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.118.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/RECORD +52 -50
- {aws_cdk_lib-2.118.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.118.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.118.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.118.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/top_level.txt +0 -0
aws_cdk/pipelines/__init__.py
CHANGED
|
@@ -26,7 +26,8 @@ down to using the `aws-codepipeline` construct library directly.
|
|
|
26
26
|
> allows more control of CodeBuild project generation; supports deployment
|
|
27
27
|
> engines other than CodePipeline.
|
|
28
28
|
>
|
|
29
|
-
> The README for the original API, as well as a migration guide, can be found in
|
|
29
|
+
> The README for the original API, as well as a migration guide, can be found in
|
|
30
|
+
> [our GitHub repository](https://github.com/aws/aws-cdk/blob/main/packages/@aws-cdk/pipelines/ORIGINAL_API.md).
|
|
30
31
|
|
|
31
32
|
## At a glance
|
|
32
33
|
|
|
@@ -1176,6 +1177,53 @@ and orphan the old bucket. You should manually delete the orphaned bucket
|
|
|
1176
1177
|
after you are sure you have redeployed all CDK applications and there are no
|
|
1177
1178
|
more references to the old asset bucket.
|
|
1178
1179
|
|
|
1180
|
+
## Considerations around Running at Scale
|
|
1181
|
+
|
|
1182
|
+
If you are planning to run pipelines for more than a hundred repos
|
|
1183
|
+
deploying across multiple regions, then you will want to consider reusing
|
|
1184
|
+
both artifacts buckets and cross-region replication buckets.
|
|
1185
|
+
|
|
1186
|
+
In a situation like this, you will want to have a separate CDK app / dedicated repo which creates
|
|
1187
|
+
and managed the buckets which will be shared by the pipelines of all your other apps.
|
|
1188
|
+
Note that this app must NOT be using the shared buckets because of chicken & egg issues.
|
|
1189
|
+
|
|
1190
|
+
The following code assumes you have created and are managing your buckets in the aforementioned
|
|
1191
|
+
separate cdk repo and are just importing them for use in one of your (many) pipelines.
|
|
1192
|
+
|
|
1193
|
+
```python
|
|
1194
|
+
# shared_xRegion_us_west1_bucket_arn: str
|
|
1195
|
+
# shared_xRegion_us_west1_key_arn: str
|
|
1196
|
+
|
|
1197
|
+
# shared_xRegion_us_west2_bucket_arn: str
|
|
1198
|
+
# shared_xRegion_us_west2_key_arn: str
|
|
1199
|
+
|
|
1200
|
+
|
|
1201
|
+
us_west1_bucket = s3.Bucket.from_bucket_attributes(scope, "UsEast1Bucket",
|
|
1202
|
+
bucket_arn=shared_xRegion_us_west1_bucket_arn,
|
|
1203
|
+
encryption_key=kms.Key.from_key_arn(scope, "UsEast1BucketKeyArn", shared_xRegion_us_west1_bucket_arn)
|
|
1204
|
+
)
|
|
1205
|
+
|
|
1206
|
+
us_west2_bucket = s3.Bucket.from_bucket_attributes(scope, "UsWest2Bucket",
|
|
1207
|
+
bucket_arn=shared_xRegion_us_west2_bucket_arn,
|
|
1208
|
+
encryption_key=kms.Key.from_key_arn(scope, "UsWest2BucketKeyArn", shared_xRegion_us_west2_key_arn)
|
|
1209
|
+
)
|
|
1210
|
+
|
|
1211
|
+
cross_region_replication_buckets = {
|
|
1212
|
+
"us-west-1": us_west1_bucket,
|
|
1213
|
+
"us-west-2": us_west2_bucket
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
pipeline = pipelines.CodePipeline(self, "Pipeline",
|
|
1217
|
+
synth=pipelines.ShellStep("Synth",
|
|
1218
|
+
input=pipelines.CodePipelineSource.connection("my-org/my-app", "main",
|
|
1219
|
+
connection_arn="arn:aws:codestar-connections:us-east-1:222222222222:connection/7d2469ff-514a-4e4f-9003-5ca4a43cdc41"
|
|
1220
|
+
),
|
|
1221
|
+
commands=["npm ci", "npm run build", "npx cdk synth"]
|
|
1222
|
+
), # Use shared buckets.
|
|
1223
|
+
cross_region_replication_buckets=cross_region_replication_buckets
|
|
1224
|
+
)
|
|
1225
|
+
```
|
|
1226
|
+
|
|
1179
1227
|
## Context Lookups
|
|
1180
1228
|
|
|
1181
1229
|
You might be using CDK constructs that need to look up [runtime
|
|
@@ -2351,6 +2399,7 @@ class CodePipelineActionFactoryResult:
|
|
|
2351
2399
|
"code_build_defaults": "codeBuildDefaults",
|
|
2352
2400
|
"code_pipeline": "codePipeline",
|
|
2353
2401
|
"cross_account_keys": "crossAccountKeys",
|
|
2402
|
+
"cross_region_replication_buckets": "crossRegionReplicationBuckets",
|
|
2354
2403
|
"docker_credentials": "dockerCredentials",
|
|
2355
2404
|
"docker_enabled_for_self_mutation": "dockerEnabledForSelfMutation",
|
|
2356
2405
|
"docker_enabled_for_synth": "dockerEnabledForSynth",
|
|
@@ -2376,6 +2425,7 @@ class CodePipelineProps:
|
|
|
2376
2425
|
code_build_defaults: typing.Optional[typing.Union[CodeBuildOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
2377
2426
|
code_pipeline: typing.Optional[_Pipeline_ea38de84] = None,
|
|
2378
2427
|
cross_account_keys: typing.Optional[builtins.bool] = None,
|
|
2428
|
+
cross_region_replication_buckets: typing.Optional[typing.Mapping[builtins.str, _IBucket_42e086fd]] = None,
|
|
2379
2429
|
docker_credentials: typing.Optional[typing.Sequence["DockerCredential"]] = None,
|
|
2380
2430
|
docker_enabled_for_self_mutation: typing.Optional[builtins.bool] = None,
|
|
2381
2431
|
docker_enabled_for_synth: typing.Optional[builtins.bool] = None,
|
|
@@ -2398,6 +2448,7 @@ class CodePipelineProps:
|
|
|
2398
2448
|
:param code_build_defaults: Customize the CodeBuild projects created for this pipeline. Default: - All projects run non-privileged build, SMALL instance, LinuxBuildImage.STANDARD_7_0
|
|
2399
2449
|
:param code_pipeline: An existing Pipeline to be reused and built upon. [disable-awslint:ref-via-interface] Default: - a new underlying pipeline is created.
|
|
2400
2450
|
:param cross_account_keys: Create KMS keys for the artifact buckets, allowing cross-account deployments. The artifact buckets have to be encrypted to support deploying CDK apps to another account, so if you want to do that or want to have your artifact buckets encrypted, be sure to set this value to ``true``. Be aware there is a cost associated with maintaining the KMS keys. Default: false
|
|
2451
|
+
:param cross_region_replication_buckets: A map of region to S3 bucket name used for cross-region CodePipeline. For every Action that you specify targeting a different region than the Pipeline itself, if you don't provide an explicit Bucket for that region using this property, the construct will automatically create a Stack containing an S3 Bucket in that region. Passed directly through to the {@link cp.Pipeline}. Default: - no cross region replication buckets.
|
|
2401
2452
|
:param docker_credentials: A list of credentials used to authenticate to Docker registries. Specify any credentials necessary within the pipeline to build, synth, update, or publish assets. Default: []
|
|
2402
2453
|
:param docker_enabled_for_self_mutation: Enable Docker for the self-mutate step. Set this to true if the pipeline itself uses Docker container assets (for example, if you use ``LinuxBuildImage.fromAsset()`` as the build image of a CodeBuild step in the pipeline). You do not need to set it if you build Docker image assets in the application Stages and Stacks that are *deployed* by this pipeline. Configures privileged mode for the self-mutation CodeBuild action. If you are about to turn this on in an already-deployed Pipeline, set the value to ``true`` first, commit and allow the pipeline to self-update, and only then use the Docker asset in the pipeline. Default: false
|
|
2403
2454
|
:param docker_enabled_for_synth: Enable Docker for the 'synth' step. Set this to true if you are using file assets that require "bundling" anywhere in your application (meaning an asset compilation step will be run with the tools provided by a Docker image), both for the Pipeline stack as well as the application stacks. A common way to use bundling assets in your application is by using the ``aws-cdk-lib/aws-lambda-nodejs`` library. Configures privileged mode for the synth CodeBuild action. If you are about to turn this on in an already-deployed Pipeline, set the value to ``true`` first, commit and allow the pipeline to self-update, and only then use the bundled asset. Default: false
|
|
@@ -2415,18 +2466,24 @@ class CodePipelineProps:
|
|
|
2415
2466
|
|
|
2416
2467
|
Example::
|
|
2417
2468
|
|
|
2418
|
-
#
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
source_artifact = codepipeline.Artifact("MySourceArtifact")
|
|
2422
|
-
|
|
2423
|
-
pipeline = pipelines.CodePipeline(self, "Pipeline",
|
|
2424
|
-
code_pipeline=code_pipeline,
|
|
2469
|
+
# Modern API
|
|
2470
|
+
modern_pipeline = pipelines.CodePipeline(self, "Pipeline",
|
|
2471
|
+
self_mutation=False,
|
|
2425
2472
|
synth=pipelines.ShellStep("Synth",
|
|
2426
|
-
input=pipelines.
|
|
2427
|
-
|
|
2473
|
+
input=pipelines.CodePipelineSource.connection("my-org/my-app", "main",
|
|
2474
|
+
connection_arn="arn:aws:codestar-connections:us-east-1:222222222222:connection/7d2469ff-514a-4e4f-9003-5ca4a43cdc41"
|
|
2475
|
+
),
|
|
2476
|
+
commands=["npm ci", "npm run build", "npx cdk synth"
|
|
2477
|
+
]
|
|
2428
2478
|
)
|
|
2429
2479
|
)
|
|
2480
|
+
|
|
2481
|
+
# Original API
|
|
2482
|
+
cloud_assembly_artifact = codepipeline.Artifact()
|
|
2483
|
+
original_pipeline = pipelines.CdkPipeline(self, "Pipeline",
|
|
2484
|
+
self_mutating=False,
|
|
2485
|
+
cloud_assembly_artifact=cloud_assembly_artifact
|
|
2486
|
+
)
|
|
2430
2487
|
'''
|
|
2431
2488
|
if isinstance(asset_publishing_code_build_defaults, dict):
|
|
2432
2489
|
asset_publishing_code_build_defaults = CodeBuildOptions(**asset_publishing_code_build_defaults)
|
|
@@ -2445,6 +2502,7 @@ class CodePipelineProps:
|
|
|
2445
2502
|
check_type(argname="argument code_build_defaults", value=code_build_defaults, expected_type=type_hints["code_build_defaults"])
|
|
2446
2503
|
check_type(argname="argument code_pipeline", value=code_pipeline, expected_type=type_hints["code_pipeline"])
|
|
2447
2504
|
check_type(argname="argument cross_account_keys", value=cross_account_keys, expected_type=type_hints["cross_account_keys"])
|
|
2505
|
+
check_type(argname="argument cross_region_replication_buckets", value=cross_region_replication_buckets, expected_type=type_hints["cross_region_replication_buckets"])
|
|
2448
2506
|
check_type(argname="argument docker_credentials", value=docker_credentials, expected_type=type_hints["docker_credentials"])
|
|
2449
2507
|
check_type(argname="argument docker_enabled_for_self_mutation", value=docker_enabled_for_self_mutation, expected_type=type_hints["docker_enabled_for_self_mutation"])
|
|
2450
2508
|
check_type(argname="argument docker_enabled_for_synth", value=docker_enabled_for_synth, expected_type=type_hints["docker_enabled_for_synth"])
|
|
@@ -2472,6 +2530,8 @@ class CodePipelineProps:
|
|
|
2472
2530
|
self._values["code_pipeline"] = code_pipeline
|
|
2473
2531
|
if cross_account_keys is not None:
|
|
2474
2532
|
self._values["cross_account_keys"] = cross_account_keys
|
|
2533
|
+
if cross_region_replication_buckets is not None:
|
|
2534
|
+
self._values["cross_region_replication_buckets"] = cross_region_replication_buckets
|
|
2475
2535
|
if docker_credentials is not None:
|
|
2476
2536
|
self._values["docker_credentials"] = docker_credentials
|
|
2477
2537
|
if docker_enabled_for_self_mutation is not None:
|
|
@@ -2589,6 +2649,22 @@ class CodePipelineProps:
|
|
|
2589
2649
|
result = self._values.get("cross_account_keys")
|
|
2590
2650
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
2591
2651
|
|
|
2652
|
+
@builtins.property
|
|
2653
|
+
def cross_region_replication_buckets(
|
|
2654
|
+
self,
|
|
2655
|
+
) -> typing.Optional[typing.Mapping[builtins.str, _IBucket_42e086fd]]:
|
|
2656
|
+
'''A map of region to S3 bucket name used for cross-region CodePipeline.
|
|
2657
|
+
|
|
2658
|
+
For every Action that you specify targeting a different region than the Pipeline itself,
|
|
2659
|
+
if you don't provide an explicit Bucket for that region using this property,
|
|
2660
|
+
the construct will automatically create a Stack containing an S3 Bucket in that region.
|
|
2661
|
+
Passed directly through to the {@link cp.Pipeline}.
|
|
2662
|
+
|
|
2663
|
+
:default: - no cross region replication buckets.
|
|
2664
|
+
'''
|
|
2665
|
+
result = self._values.get("cross_region_replication_buckets")
|
|
2666
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, _IBucket_42e086fd]], result)
|
|
2667
|
+
|
|
2592
2668
|
@builtins.property
|
|
2593
2669
|
def docker_credentials(self) -> typing.Optional[typing.List["DockerCredential"]]:
|
|
2594
2670
|
'''A list of credentials used to authenticate to Docker registries.
|
|
@@ -4403,18 +4479,24 @@ class ShellStepProps:
|
|
|
4403
4479
|
|
|
4404
4480
|
Example::
|
|
4405
4481
|
|
|
4406
|
-
#
|
|
4407
|
-
|
|
4408
|
-
|
|
4409
|
-
source_artifact = codepipeline.Artifact("MySourceArtifact")
|
|
4410
|
-
|
|
4411
|
-
pipeline = pipelines.CodePipeline(self, "Pipeline",
|
|
4412
|
-
code_pipeline=code_pipeline,
|
|
4482
|
+
# Modern API
|
|
4483
|
+
modern_pipeline = pipelines.CodePipeline(self, "Pipeline",
|
|
4484
|
+
self_mutation=False,
|
|
4413
4485
|
synth=pipelines.ShellStep("Synth",
|
|
4414
|
-
input=pipelines.
|
|
4415
|
-
|
|
4486
|
+
input=pipelines.CodePipelineSource.connection("my-org/my-app", "main",
|
|
4487
|
+
connection_arn="arn:aws:codestar-connections:us-east-1:222222222222:connection/7d2469ff-514a-4e4f-9003-5ca4a43cdc41"
|
|
4488
|
+
),
|
|
4489
|
+
commands=["npm ci", "npm run build", "npx cdk synth"
|
|
4490
|
+
]
|
|
4416
4491
|
)
|
|
4417
4492
|
)
|
|
4493
|
+
|
|
4494
|
+
# Original API
|
|
4495
|
+
cloud_assembly_artifact = codepipeline.Artifact()
|
|
4496
|
+
original_pipeline = pipelines.CdkPipeline(self, "Pipeline",
|
|
4497
|
+
self_mutating=False,
|
|
4498
|
+
cloud_assembly_artifact=cloud_assembly_artifact
|
|
4499
|
+
)
|
|
4418
4500
|
'''
|
|
4419
4501
|
if __debug__:
|
|
4420
4502
|
type_hints = typing.get_type_hints(_typecheckingstub__672600085b4c1f54d7e497f605a0be2945f1a2759aaf8632197707da6d73a55c)
|
|
@@ -6448,18 +6530,24 @@ class CodePipeline(
|
|
|
6448
6530
|
|
|
6449
6531
|
Example::
|
|
6450
6532
|
|
|
6451
|
-
#
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
source_artifact = codepipeline.Artifact("MySourceArtifact")
|
|
6455
|
-
|
|
6456
|
-
pipeline = pipelines.CodePipeline(self, "Pipeline",
|
|
6457
|
-
code_pipeline=code_pipeline,
|
|
6533
|
+
# Modern API
|
|
6534
|
+
modern_pipeline = pipelines.CodePipeline(self, "Pipeline",
|
|
6535
|
+
self_mutation=False,
|
|
6458
6536
|
synth=pipelines.ShellStep("Synth",
|
|
6459
|
-
input=pipelines.
|
|
6460
|
-
|
|
6537
|
+
input=pipelines.CodePipelineSource.connection("my-org/my-app", "main",
|
|
6538
|
+
connection_arn="arn:aws:codestar-connections:us-east-1:222222222222:connection/7d2469ff-514a-4e4f-9003-5ca4a43cdc41"
|
|
6539
|
+
),
|
|
6540
|
+
commands=["npm ci", "npm run build", "npx cdk synth"
|
|
6541
|
+
]
|
|
6461
6542
|
)
|
|
6462
6543
|
)
|
|
6544
|
+
|
|
6545
|
+
# Original API
|
|
6546
|
+
cloud_assembly_artifact = codepipeline.Artifact()
|
|
6547
|
+
original_pipeline = pipelines.CdkPipeline(self, "Pipeline",
|
|
6548
|
+
self_mutating=False,
|
|
6549
|
+
cloud_assembly_artifact=cloud_assembly_artifact
|
|
6550
|
+
)
|
|
6463
6551
|
'''
|
|
6464
6552
|
|
|
6465
6553
|
def __init__(
|
|
@@ -6474,6 +6562,7 @@ class CodePipeline(
|
|
|
6474
6562
|
code_build_defaults: typing.Optional[typing.Union[CodeBuildOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
6475
6563
|
code_pipeline: typing.Optional[_Pipeline_ea38de84] = None,
|
|
6476
6564
|
cross_account_keys: typing.Optional[builtins.bool] = None,
|
|
6565
|
+
cross_region_replication_buckets: typing.Optional[typing.Mapping[builtins.str, _IBucket_42e086fd]] = None,
|
|
6477
6566
|
docker_credentials: typing.Optional[typing.Sequence[DockerCredential]] = None,
|
|
6478
6567
|
docker_enabled_for_self_mutation: typing.Optional[builtins.bool] = None,
|
|
6479
6568
|
docker_enabled_for_synth: typing.Optional[builtins.bool] = None,
|
|
@@ -6497,6 +6586,7 @@ class CodePipeline(
|
|
|
6497
6586
|
:param code_build_defaults: Customize the CodeBuild projects created for this pipeline. Default: - All projects run non-privileged build, SMALL instance, LinuxBuildImage.STANDARD_7_0
|
|
6498
6587
|
:param code_pipeline: An existing Pipeline to be reused and built upon. [disable-awslint:ref-via-interface] Default: - a new underlying pipeline is created.
|
|
6499
6588
|
:param cross_account_keys: Create KMS keys for the artifact buckets, allowing cross-account deployments. The artifact buckets have to be encrypted to support deploying CDK apps to another account, so if you want to do that or want to have your artifact buckets encrypted, be sure to set this value to ``true``. Be aware there is a cost associated with maintaining the KMS keys. Default: false
|
|
6589
|
+
:param cross_region_replication_buckets: A map of region to S3 bucket name used for cross-region CodePipeline. For every Action that you specify targeting a different region than the Pipeline itself, if you don't provide an explicit Bucket for that region using this property, the construct will automatically create a Stack containing an S3 Bucket in that region. Passed directly through to the {@link cp.Pipeline}. Default: - no cross region replication buckets.
|
|
6500
6590
|
:param docker_credentials: A list of credentials used to authenticate to Docker registries. Specify any credentials necessary within the pipeline to build, synth, update, or publish assets. Default: []
|
|
6501
6591
|
:param docker_enabled_for_self_mutation: Enable Docker for the self-mutate step. Set this to true if the pipeline itself uses Docker container assets (for example, if you use ``LinuxBuildImage.fromAsset()`` as the build image of a CodeBuild step in the pipeline). You do not need to set it if you build Docker image assets in the application Stages and Stacks that are *deployed* by this pipeline. Configures privileged mode for the self-mutation CodeBuild action. If you are about to turn this on in an already-deployed Pipeline, set the value to ``true`` first, commit and allow the pipeline to self-update, and only then use the Docker asset in the pipeline. Default: false
|
|
6502
6592
|
:param docker_enabled_for_synth: Enable Docker for the 'synth' step. Set this to true if you are using file assets that require "bundling" anywhere in your application (meaning an asset compilation step will be run with the tools provided by a Docker image), both for the Pipeline stack as well as the application stacks. A common way to use bundling assets in your application is by using the ``aws-cdk-lib/aws-lambda-nodejs`` library. Configures privileged mode for the synth CodeBuild action. If you are about to turn this on in an already-deployed Pipeline, set the value to ``true`` first, commit and allow the pipeline to self-update, and only then use the bundled asset. Default: false
|
|
@@ -6522,6 +6612,7 @@ class CodePipeline(
|
|
|
6522
6612
|
code_build_defaults=code_build_defaults,
|
|
6523
6613
|
code_pipeline=code_pipeline,
|
|
6524
6614
|
cross_account_keys=cross_account_keys,
|
|
6615
|
+
cross_region_replication_buckets=cross_region_replication_buckets,
|
|
6525
6616
|
docker_credentials=docker_credentials,
|
|
6526
6617
|
docker_enabled_for_self_mutation=docker_enabled_for_self_mutation,
|
|
6527
6618
|
docker_enabled_for_synth=docker_enabled_for_synth,
|
|
@@ -7236,18 +7327,24 @@ class ShellStep(
|
|
|
7236
7327
|
|
|
7237
7328
|
Example::
|
|
7238
7329
|
|
|
7239
|
-
#
|
|
7240
|
-
|
|
7241
|
-
|
|
7242
|
-
source_artifact = codepipeline.Artifact("MySourceArtifact")
|
|
7243
|
-
|
|
7244
|
-
pipeline = pipelines.CodePipeline(self, "Pipeline",
|
|
7245
|
-
code_pipeline=code_pipeline,
|
|
7330
|
+
# Modern API
|
|
7331
|
+
modern_pipeline = pipelines.CodePipeline(self, "Pipeline",
|
|
7332
|
+
self_mutation=False,
|
|
7246
7333
|
synth=pipelines.ShellStep("Synth",
|
|
7247
|
-
input=pipelines.
|
|
7248
|
-
|
|
7334
|
+
input=pipelines.CodePipelineSource.connection("my-org/my-app", "main",
|
|
7335
|
+
connection_arn="arn:aws:codestar-connections:us-east-1:222222222222:connection/7d2469ff-514a-4e4f-9003-5ca4a43cdc41"
|
|
7336
|
+
),
|
|
7337
|
+
commands=["npm ci", "npm run build", "npx cdk synth"
|
|
7338
|
+
]
|
|
7249
7339
|
)
|
|
7250
7340
|
)
|
|
7341
|
+
|
|
7342
|
+
# Original API
|
|
7343
|
+
cloud_assembly_artifact = codepipeline.Artifact()
|
|
7344
|
+
original_pipeline = pipelines.CdkPipeline(self, "Pipeline",
|
|
7345
|
+
self_mutating=False,
|
|
7346
|
+
cloud_assembly_artifact=cloud_assembly_artifact
|
|
7347
|
+
)
|
|
7251
7348
|
'''
|
|
7252
7349
|
|
|
7253
7350
|
def __init__(
|
|
@@ -7837,6 +7934,7 @@ def _typecheckingstub__c46bc21ca63efb27c935c31017ebbc8c85b3b93ae1798e54892dd3eae
|
|
|
7837
7934
|
code_build_defaults: typing.Optional[typing.Union[CodeBuildOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
7838
7935
|
code_pipeline: typing.Optional[_Pipeline_ea38de84] = None,
|
|
7839
7936
|
cross_account_keys: typing.Optional[builtins.bool] = None,
|
|
7937
|
+
cross_region_replication_buckets: typing.Optional[typing.Mapping[builtins.str, _IBucket_42e086fd]] = None,
|
|
7840
7938
|
docker_credentials: typing.Optional[typing.Sequence[DockerCredential]] = None,
|
|
7841
7939
|
docker_enabled_for_self_mutation: typing.Optional[builtins.bool] = None,
|
|
7842
7940
|
docker_enabled_for_synth: typing.Optional[builtins.bool] = None,
|
|
@@ -8298,6 +8396,7 @@ def _typecheckingstub__7b4b4a0bcbd5fab3e4b78aa07ff9504469ae96c16799604ca3345bcb9
|
|
|
8298
8396
|
code_build_defaults: typing.Optional[typing.Union[CodeBuildOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
8299
8397
|
code_pipeline: typing.Optional[_Pipeline_ea38de84] = None,
|
|
8300
8398
|
cross_account_keys: typing.Optional[builtins.bool] = None,
|
|
8399
|
+
cross_region_replication_buckets: typing.Optional[typing.Mapping[builtins.str, _IBucket_42e086fd]] = None,
|
|
8301
8400
|
docker_credentials: typing.Optional[typing.Sequence[DockerCredential]] = None,
|
|
8302
8401
|
docker_enabled_for_self_mutation: typing.Optional[builtins.bool] = None,
|
|
8303
8402
|
docker_enabled_for_synth: typing.Optional[builtins.bool] = None,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk-lib
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.119.0
|
|
4
4
|
Summary: Version 2 of the AWS Cloud Development Kit library
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -25,7 +25,7 @@ Requires-Dist: aws-cdk.asset-awscli-v1 <3.0.0,>=2.2.201
|
|
|
25
25
|
Requires-Dist: aws-cdk.asset-kubectl-v20 <3.0.0,>=2.1.2
|
|
26
26
|
Requires-Dist: aws-cdk.asset-node-proxy-agent-v6 <3.0.0,>=2.0.1
|
|
27
27
|
Requires-Dist: constructs <11.0.0,>=10.0.0
|
|
28
|
-
Requires-Dist: jsii <2.0.0,>=1.
|
|
28
|
+
Requires-Dist: jsii <2.0.0,>=1.94.0
|
|
29
29
|
Requires-Dist: publication >=0.0.3
|
|
30
30
|
Requires-Dist: typeguard ~=2.13.3
|
|
31
31
|
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
aws_cdk/__init__.py,sha256=
|
|
1
|
+
aws_cdk/__init__.py,sha256=yrQdz3-vauu9uWwI1lfJq90CSX1P_pqzPWBMEe0vCoo,1787836
|
|
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=3iUCVOMyfQRwqduXkCEUE2Fpj-n--uMcS5CAShcQkUk,495
|
|
4
|
+
aws_cdk/_jsii/aws-cdk-lib@2.119.0.jsii.tgz,sha256=ypgJB2hTTOnsszOljPrfRri6YTSlFkfENrRM2nWxNR8,20905792
|
|
5
5
|
aws_cdk/alexa_ask/__init__.py,sha256=KBd7UYSJ9LMAbaXARoTnXJokWnSeu_Ksvs9f98PWZWI,35211
|
|
6
|
+
aws_cdk/amzn_sdc/__init__.py,sha256=8XEJl8L7zWDgCmy9auuWOPXzMHmiJ71BLECY0PCrtJY,19718
|
|
6
7
|
aws_cdk/assertions/__init__.py,sha256=7SmQ09hSs2xm4vNAS1vji3eTgl0FzSJMsu2zs6Uy34w,86514
|
|
7
8
|
aws_cdk/aws_accessanalyzer/__init__.py,sha256=iNysgypAjWTrg8TTS9_0bVv4zknaCtEOsxkb5Uu8v_Y,41805
|
|
8
9
|
aws_cdk/aws_acmpca/__init__.py,sha256=AM1veEdYWPmQNXPcuS1Pyfoo9tkz64vgZfH3MU-KccU,328840
|
|
@@ -21,7 +22,7 @@ aws_cdk/aws_applicationinsights/__init__.py,sha256=4CYaS-tiwIn8_Zvq3fn1dqUL6rWLC
|
|
|
21
22
|
aws_cdk/aws_appmesh/__init__.py,sha256=IiPiOOnljxT0KguQlvozNLZLrXBe-yo98RepVVRFZz4,1604871
|
|
22
23
|
aws_cdk/aws_apprunner/__init__.py,sha256=uSiVOA5EV8_vCzP0JEU--Oazb5VgG_Q4pJIrxZOWT2E,238180
|
|
23
24
|
aws_cdk/aws_appstream/__init__.py,sha256=EBTwU5OJqk7pNllIenOlVnePOvSXtW05PlDEECTIBWU,446807
|
|
24
|
-
aws_cdk/aws_appsync/__init__.py,sha256=
|
|
25
|
+
aws_cdk/aws_appsync/__init__.py,sha256=XSBv7vZNYGvaTHrLKU6AVBN18pWqKyZT3Prr2tfZT5E,880003
|
|
25
26
|
aws_cdk/aws_aps/__init__.py,sha256=8xid6Lf6AFzv8NKEwXUAMt5-6VcQNNaiit5NlqZ-6gM,37813
|
|
26
27
|
aws_cdk/aws_arczonalshift/__init__.py,sha256=js-qOuL7ImcWqwCo5MeAwBWSmylOkia5I2LqPxPD-c0,37620
|
|
27
28
|
aws_cdk/aws_athena/__init__.py,sha256=8PSID90L6WQ33JuBGbKjNgICl0tI4N8B_iqrAUDrB40,201162
|
|
@@ -39,20 +40,20 @@ aws_cdk/aws_billingconductor/__init__.py,sha256=s9SYvx1WDMqx-dsBKnK4gGQ_i-AJ5beq
|
|
|
39
40
|
aws_cdk/aws_budgets/__init__.py,sha256=ngKKiI79vlw0rPn44Pf5tPgKtuM8lUSeFj5tfdhC3uA,147216
|
|
40
41
|
aws_cdk/aws_cassandra/__init__.py,sha256=WSpbBJjY4jsxv_10-8xTF6J9kB1ssT-r2mYLOcAeyeY,95065
|
|
41
42
|
aws_cdk/aws_ce/__init__.py,sha256=erqQ0I939u8dQ0f86_P_J9luyHHUBk9zXN0sIA9R2zY,81164
|
|
42
|
-
aws_cdk/aws_certificatemanager/__init__.py,sha256=
|
|
43
|
+
aws_cdk/aws_certificatemanager/__init__.py,sha256=O_u5sfhgiyqTM89wpntQhIIlZan7R99HuObOqLwWowE,152438
|
|
43
44
|
aws_cdk/aws_chatbot/__init__.py,sha256=e1cgNXcYk0fT04KExzgnqm3abgoU_P4_Iqx-CNRnBsI,104139
|
|
44
45
|
aws_cdk/aws_cleanrooms/__init__.py,sha256=-JFgR6MaKYEKqJnVTPSgoHAWMyY1ZZir-Vz5YspR_sg,245854
|
|
45
|
-
aws_cdk/aws_cloud9/__init__.py,sha256=
|
|
46
|
+
aws_cdk/aws_cloud9/__init__.py,sha256=dR7Z6zH2RanxIh5AZpqffZDKSZqOiBmpDvlQ9cv04Os,43626
|
|
46
47
|
aws_cdk/aws_cloudformation/__init__.py,sha256=s9udIpnd__88LeR-jdCrHT4dCK928-kFn-Sq-bD7Eqc,388502
|
|
47
|
-
aws_cdk/aws_cloudfront/__init__.py,sha256=
|
|
48
|
+
aws_cdk/aws_cloudfront/__init__.py,sha256=jW3sh0O3uwIBjdRLIWv2U0NePaS_fXIML2tc-_nyjpo,1404323
|
|
48
49
|
aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=vgeo6aMSk44Xuim1zP10qtzb6C8dMr1ZEol4o5_9OsY,120996
|
|
49
50
|
aws_cdk/aws_cloudfront_origins/__init__.py,sha256=RVM8lC3cdClJLC8wvYH0Qa51yZyP31ndAYb7VvAPigY,92212
|
|
50
|
-
aws_cdk/aws_cloudtrail/__init__.py,sha256=
|
|
51
|
+
aws_cdk/aws_cloudtrail/__init__.py,sha256=To7ZcRZYcc06b-0lIlNbXbqdzZBSGA8UnxJKXkcaU4Q,359690
|
|
51
52
|
aws_cdk/aws_cloudwatch/__init__.py,sha256=8gzZEVCjd30GEciyGN7kS-6GqKM-Q-ZAjkAmYv4GLUU,750588
|
|
52
|
-
aws_cdk/aws_cloudwatch_actions/__init__.py,sha256=
|
|
53
|
+
aws_cdk/aws_cloudwatch_actions/__init__.py,sha256=fHw4O0aOSyQi0u-tJkc4ipbOTEh_B8-7sO_A7mPrnmE,21339
|
|
53
54
|
aws_cdk/aws_codeartifact/__init__.py,sha256=nUjpOJiVg2OGZeYOLmVjGQclzARx9YdJsf8iykL-b4Q,45231
|
|
54
|
-
aws_cdk/aws_codebuild/__init__.py,sha256=
|
|
55
|
-
aws_cdk/aws_codecommit/__init__.py,sha256=
|
|
55
|
+
aws_cdk/aws_codebuild/__init__.py,sha256=30m8P2y22orn25ezEEtxerDfPGlii3XSxrxeYh7eK9Y,907670
|
|
56
|
+
aws_cdk/aws_codecommit/__init__.py,sha256=iy8u1xOGkdaVzp8hfDXgdeMPUWLpcyZIs2_65tK7S-c,226535
|
|
56
57
|
aws_cdk/aws_codedeploy/__init__.py,sha256=ipc73_G2L5w3ZLD1bASv1UgMCE4b6JtoWApCJlRoLNc,584961
|
|
57
58
|
aws_cdk/aws_codeguruprofiler/__init__.py,sha256=kXpbQsl13T0pzQD-OyPmdKttIBUs2W8zt7tgrAn7pgg,47073
|
|
58
59
|
aws_cdk/aws_codegurureviewer/__init__.py,sha256=L28Bx7nYDi3SCtgjSxYDsVCFu4LxUWYCP0tz5zXVpdk,26008
|
|
@@ -61,10 +62,11 @@ aws_cdk/aws_codepipeline_actions/__init__.py,sha256=q_0DHMl7RkU-w9ZXryJT1tBIK-qD
|
|
|
61
62
|
aws_cdk/aws_codestar/__init__.py,sha256=aWVcqG6wlFV8SBpHQzSGKxk3Nf07fb4soTqAAHyCq9c,37434
|
|
62
63
|
aws_cdk/aws_codestarconnections/__init__.py,sha256=-zVIDBibtLq-XfxjGZve-qZWstBCwPvw4tDgStGc62Q,55501
|
|
63
64
|
aws_cdk/aws_codestarnotifications/__init__.py,sha256=HQ9FjUyLvk_iPUbA9dlXsfuTexiAcyIODYn--B5WdTs,70202
|
|
64
|
-
aws_cdk/
|
|
65
|
+
aws_cdk/aws_codetest/__init__.py,sha256=jAFkC4b1e5-2E_OqTi75J7yno6cOmwG2vd1YKbTmi1M,32928
|
|
66
|
+
aws_cdk/aws_cognito/__init__.py,sha256=pnl3Y9CSLjHP5BIr_sYDSlcc-3sjiexikxYU2G8amGE,1221723
|
|
65
67
|
aws_cdk/aws_comprehend/__init__.py,sha256=zLjsRG9S8oEA5dff2--KnzWHhy6LC9IXCivCI8WdkgI,154564
|
|
66
68
|
aws_cdk/aws_config/__init__.py,sha256=vWTMosVkZIpwhwc8zexIRmvY5w4wHJXZI8coS9WHYSQ,802506
|
|
67
|
-
aws_cdk/aws_connect/__init__.py,sha256=
|
|
69
|
+
aws_cdk/aws_connect/__init__.py,sha256=krPDzpnOz9L30fQqvF7fk-XNsHn-gFNyw5tNnVa1ivs,768272
|
|
68
70
|
aws_cdk/aws_connectcampaigns/__init__.py,sha256=DGh2bZDYUQ_a9x2qGBw2fs-x1j9uaWduLO-k2jk-Lbo,52121
|
|
69
71
|
aws_cdk/aws_controltower/__init__.py,sha256=iE1O2-DYuqi8R7EFdLC9sFDaETWGxDhGguLYceSRbP4,34465
|
|
70
72
|
aws_cdk/aws_cur/__init__.py,sha256=SlgZUXeLWw7txlH9lDNAYfgTRCkY8jLntQ1hDDDB0wE,34397
|
|
@@ -79,10 +81,10 @@ aws_cdk/aws_devopsguru/__init__.py,sha256=eyklNOlzFYMDmwCU_iSap6ZaX-LMrsH3otmTS2
|
|
|
79
81
|
aws_cdk/aws_directoryservice/__init__.py,sha256=PqI_bH-p7wmuHvFPjVDdpEVq7gGVLc2oxwUE7YrMEec,65049
|
|
80
82
|
aws_cdk/aws_dlm/__init__.py,sha256=d_DhsLYq02bb8h7pNoGRgoKGDU1Tb1thnCGOD4wfeHg,242906
|
|
81
83
|
aws_cdk/aws_dms/__init__.py,sha256=SyKHZCVZNtCb6S3UKPsuEr4XH5VjP3qxCMd7uoBGwC0,902189
|
|
82
|
-
aws_cdk/aws_docdb/__init__.py,sha256=
|
|
84
|
+
aws_cdk/aws_docdb/__init__.py,sha256=8lSfIX7M7nEK_zsksx_gsCJKWDv9uUL6XPQj4gjUzLM,294492
|
|
83
85
|
aws_cdk/aws_docdbelastic/__init__.py,sha256=fHcmRQCph_ruK6Yk7nh1JL_ppQPYspT6e_4eqEFjqww,37243
|
|
84
|
-
aws_cdk/aws_dynamodb/__init__.py,sha256=
|
|
85
|
-
aws_cdk/aws_ec2/__init__.py,sha256=
|
|
86
|
+
aws_cdk/aws_dynamodb/__init__.py,sha256=nGNWkYNCXOm1L3HHLTy3EAUL2-X1K-iC0tUmx1KD0_U,814969
|
|
87
|
+
aws_cdk/aws_ec2/__init__.py,sha256=dAz2UNg34aARm9N1KIhIBEPv5cIRlr0Q7bj5xB-vq6M,5370255
|
|
86
88
|
aws_cdk/aws_ecr/__init__.py,sha256=vglpDnORj_E0NmcURByVlUn8hM6WzYZXQog_V-UIPE0,256555
|
|
87
89
|
aws_cdk/aws_ecr_assets/__init__.py,sha256=rmEQjGT6LXm_JcgfxGp6aLdBW3taSCctJpr_KQxwO1U,82682
|
|
88
90
|
aws_cdk/aws_ecs/__init__.py,sha256=5Ru6w_xeNnM_bhL7K0_iHqdrKRGV3Ez4qNMF_8iYQSQ,2401659
|
|
@@ -98,22 +100,22 @@ aws_cdk/aws_elasticloadbalancingv2_targets/__init__.py,sha256=D2RrjjoUIA-1LgaSME
|
|
|
98
100
|
aws_cdk/aws_elasticsearch/__init__.py,sha256=H3YsgNIm_XSWZywoNCRXnYZeqFwJi3qGmbiLjtiO_hk,463916
|
|
99
101
|
aws_cdk/aws_emr/__init__.py,sha256=GHxLk2zm_PjjtSIpnzAqDPxXv4SM6duJYObDC5Cy8R4,733246
|
|
100
102
|
aws_cdk/aws_emrcontainers/__init__.py,sha256=_-6QYhi23s-jwxhovAjckQ8BIZVp-P2Cwv4vSXCydwg,28357
|
|
101
|
-
aws_cdk/aws_emrserverless/__init__.py,sha256=
|
|
103
|
+
aws_cdk/aws_emrserverless/__init__.py,sha256=3i7_vcyf3ayHrg1XYrtUQYqv8Qq5BPkIr6tYdKpCWM0,130034
|
|
102
104
|
aws_cdk/aws_entityresolution/__init__.py,sha256=PNN1of4HW-JxkF-FumAmw-iq20TsfLPtgTWGK-iLMWg,156361
|
|
103
|
-
aws_cdk/aws_events/__init__.py,sha256=
|
|
105
|
+
aws_cdk/aws_events/__init__.py,sha256=jRqQk0AjaWbgS4VMPFR7x9DEmLZLZqsTeUBMF95wHJs,631305
|
|
104
106
|
aws_cdk/aws_events_targets/__init__.py,sha256=swKvsUGXOmXtiT1sbV-k9bU9V8hXfUPSmlBiVoJw-jA,231445
|
|
105
107
|
aws_cdk/aws_eventschemas/__init__.py,sha256=I34MUL4Zoo1i2oHPyIpAhImqPnA1znfYcZO02ryOMrA,71283
|
|
106
108
|
aws_cdk/aws_evidently/__init__.py,sha256=VPCU1rwsDmxpeXtU7gAGrSbsUEdykRXVn6KGJgmq22I,246205
|
|
107
109
|
aws_cdk/aws_finspace/__init__.py,sha256=LayqT8I75lEZKO5-z7oa_qz199qDNcoNwwjJcuMWG9c,50095
|
|
108
|
-
aws_cdk/aws_fis/__init__.py,sha256=
|
|
110
|
+
aws_cdk/aws_fis/__init__.py,sha256=FpzMIUogVLVxUohGMy8yOlZGNkTeeyhmear4Xu8ZXYE,89744
|
|
109
111
|
aws_cdk/aws_fms/__init__.py,sha256=r_2fFU3ZOd9cTdHgIIoH2aBuZucqD_ugKk0ZID_9XeU,212175
|
|
110
112
|
aws_cdk/aws_forecast/__init__.py,sha256=-yQbmXHdorMzTSu9EAaJFt_awlzLxXKvmE5BB9W4Sos,60485
|
|
111
113
|
aws_cdk/aws_frauddetector/__init__.py,sha256=OiOmPOUP_1KWWZLxcK8cP1wkU2U2m2vZIwPE5gGq0Qc,259889
|
|
112
114
|
aws_cdk/aws_fsx/__init__.py,sha256=wY8b2giBTapfmxqaJywbbgH5Wzusw3tcMKwuPRDivFk,537207
|
|
113
115
|
aws_cdk/aws_gamelift/__init__.py,sha256=2r8Qd8MtECnRvlThLYKc1TTu42NST5Oe2pemzvF6Qec,474208
|
|
114
|
-
aws_cdk/aws_globalaccelerator/__init__.py,sha256=
|
|
116
|
+
aws_cdk/aws_globalaccelerator/__init__.py,sha256=AbZgg8BEt7nnb3fE3ak0B-NI_d6IzOJSJPknMAjIAic,207507
|
|
115
117
|
aws_cdk/aws_globalaccelerator_endpoints/__init__.py,sha256=w3QdVp4zmO5eseqq0A4GI-ke3g9pJxobH1-oMuQBbro,23825
|
|
116
|
-
aws_cdk/aws_glue/__init__.py,sha256=
|
|
118
|
+
aws_cdk/aws_glue/__init__.py,sha256=y6G2KxaWH2E_LKzQ3w46PeZwNXtC-GxeID8LpQ6m2mI,868119
|
|
117
119
|
aws_cdk/aws_grafana/__init__.py,sha256=Q6ZNhvIWGNGok1b7UDDiekv5vHfbLmKBiyhHXDOYCoA,102526
|
|
118
120
|
aws_cdk/aws_greengrass/__init__.py,sha256=hHfxgDr2QjR1wIw_0ecgA4bW0hEMlmo-EBVj_stq6g4,659590
|
|
119
121
|
aws_cdk/aws_greengrassv2/__init__.py,sha256=hCa2LOmEkA7YxcAFKFCAQogXhLkB6Bz9C1qih8Elp-M,212452
|
|
@@ -121,32 +123,32 @@ aws_cdk/aws_groundstation/__init__.py,sha256=crvrvbn8mAzXoTFHT7tYxmtARbMg9Ly0EEC
|
|
|
121
123
|
aws_cdk/aws_guardduty/__init__.py,sha256=qhjFcHHrsjrZzOgvf7OK0V4nnbBfkId1Tpw4xvJSwPk,185679
|
|
122
124
|
aws_cdk/aws_healthimaging/__init__.py,sha256=lmXc6H_O9gtMMjhF-SerdVmslAvosaFdrU1vFt62ibY,15873
|
|
123
125
|
aws_cdk/aws_healthlake/__init__.py,sha256=foYJ4JYbdotHFrIWoHRzRj3FKWgKHd_NMRg-Oiqw4oQ,53176
|
|
124
|
-
aws_cdk/aws_iam/__init__.py,sha256=
|
|
126
|
+
aws_cdk/aws_iam/__init__.py,sha256=JJgXZqUbwEu6COthO87OBlmk1x-2uSSJ1FYXuQxYz5A,840054
|
|
125
127
|
aws_cdk/aws_identitystore/__init__.py,sha256=-RfR0omsLRBwx_rRUMPDyOBtfqIP4J7f__QQ-Yu73_E,29814
|
|
126
128
|
aws_cdk/aws_imagebuilder/__init__.py,sha256=_jyBu3RrFcLuaobHCTwzNRq7HStoz9fhHKtZVFtnD_Y,565943
|
|
127
129
|
aws_cdk/aws_inspector/__init__.py,sha256=qv_sK0ssf9y6sGclIqPMm3D6pr7NtMhlHV89FClNFnw,43163
|
|
128
130
|
aws_cdk/aws_inspectorv2/__init__.py,sha256=sBosy93NfjQQobEknjfnTMtKUifqQJPCKBferU2DOVA,117490
|
|
129
131
|
aws_cdk/aws_internetmonitor/__init__.py,sha256=wTTE2t2qVvHt0YOIaU7Qv4S2xOMShjZpZeRryPbxFQY,74802
|
|
130
|
-
aws_cdk/aws_iot/__init__.py,sha256=
|
|
132
|
+
aws_cdk/aws_iot/__init__.py,sha256=94DHqAJ0T2g_mQeqvyPDL9MWqitF9mChfLa9uJxHSJY,1124145
|
|
131
133
|
aws_cdk/aws_iot1click/__init__.py,sha256=nY7JI596ImQqVRIPGAgn2a1EDT_ybD7xr3ol4OxN7po,51549
|
|
132
134
|
aws_cdk/aws_iotanalytics/__init__.py,sha256=OTC_4mFgFu-g68bJDZVpm7-yOoH22GYKjOmrav0fe0s,358535
|
|
133
135
|
aws_cdk/aws_iotcoredeviceadvisor/__init__.py,sha256=wxzjY91At4mtts4jufXA_TB5nJ9PpZOfFR5C0z_efSQ,31171
|
|
134
136
|
aws_cdk/aws_iotevents/__init__.py,sha256=4UR39TgoMu1J9PG3IH16AUFenvWCFambcBGlv4TAlsI,445463
|
|
135
137
|
aws_cdk/aws_iotfleethub/__init__.py,sha256=OZboYobncoyU48_VqMwUkpWtd3pOJUHG3dazcI44irQ,20065
|
|
136
138
|
aws_cdk/aws_iotfleetwise/__init__.py,sha256=IXkjVXzATZbm-LBpP7DXtd8O6PQFGGonPVUeiHYjdLc,339451
|
|
137
|
-
aws_cdk/aws_iotsitewise/__init__.py,sha256=
|
|
139
|
+
aws_cdk/aws_iotsitewise/__init__.py,sha256=0TyAP-s4pY4P_OJCfIPP8MpM1D7i7lBz97lk6C7k4Wk,304729
|
|
138
140
|
aws_cdk/aws_iotthingsgraph/__init__.py,sha256=mm5HIlwx9dlYebHcJ65ALavcvlGisuKsqYsOj2tCNBE,16367
|
|
139
141
|
aws_cdk/aws_iottwinmaker/__init__.py,sha256=P2QOeSQMeULzhuIgAEJfAdG9ijnbI4nEpjNK2XfqPBg,288000
|
|
140
142
|
aws_cdk/aws_iotwireless/__init__.py,sha256=cTF1Deu1Nxns5qqtKi2kyQiPx2X3u48fwl7v_1iaFi4,395469
|
|
141
143
|
aws_cdk/aws_ivs/__init__.py,sha256=fRtLQRWztTJt1qDQLUEk6PBmiFM7CH9dkoCoDXQ0AK4,112796
|
|
142
144
|
aws_cdk/aws_ivschat/__init__.py,sha256=mFdwPSdmtG0UXJXYUTm5ddEr6aCS1EEulQ-Y80DXgYM,62512
|
|
143
145
|
aws_cdk/aws_kafkaconnect/__init__.py,sha256=VYyvkhRLUcuhd33wvnZ_tJjsF2dnryPKB1uA5fHyhAw,122607
|
|
144
|
-
aws_cdk/aws_kendra/__init__.py,sha256=
|
|
146
|
+
aws_cdk/aws_kendra/__init__.py,sha256=ztd3u6nfokWjqwxm51Q5OBIHb3AoqxHbrB12Z-JyQy4,673976
|
|
145
147
|
aws_cdk/aws_kendraranking/__init__.py,sha256=bgHXSx0H7daAXAerRFsGrjEIz_bhtQIGoBxaE6536WI,24007
|
|
146
148
|
aws_cdk/aws_kinesis/__init__.py,sha256=dt1czCdUUQQrFremul9CJBJ_1BfJM14ddRNO5uVpthg,280008
|
|
147
149
|
aws_cdk/aws_kinesisanalytics/__init__.py,sha256=klGur0E0rJEN4rpOKYvsCTvI0297qAzPN2lxYTDSoj0,580074
|
|
148
150
|
aws_cdk/aws_kinesisanalyticsv2/__init__.py,sha256=smfBVDUA1wSKpbzfSyWLjaE7PoBwinXWTJR9DuQgcPU,380905
|
|
149
|
-
aws_cdk/aws_kinesisfirehose/__init__.py,sha256=
|
|
151
|
+
aws_cdk/aws_kinesisfirehose/__init__.py,sha256=F2ovy-U2-z4AQlBqxm0hRlwlGkHyFBnQfryUfjiD87o,466378
|
|
150
152
|
aws_cdk/aws_kinesisvideo/__init__.py,sha256=fZRDDSdr24vOQaf67ayrBjlEB7W3Fm0aE3lDMKLzr10,37088
|
|
151
153
|
aws_cdk/aws_kms/__init__.py,sha256=tiwkfZ-JlUTKEG8hBUIOhC-0H7M6rQvo1MTsxq0ZB6c,225719
|
|
152
154
|
aws_cdk/aws_lakeformation/__init__.py,sha256=-j1-T8YM1TtVGLByE1uZZR5J_eDYI0SsGzTwxjLheE8,330391
|
|
@@ -157,7 +159,7 @@ aws_cdk/aws_lambda_nodejs/__init__.py,sha256=dTXKhj2aHs0LokEcG_wSGY33z3JmPkbRq_I
|
|
|
157
159
|
aws_cdk/aws_lex/__init__.py,sha256=CSbcu0tzUS3Q_zeWps4hgfbQPMl3ZmVFwfqNr7pLKMY,699264
|
|
158
160
|
aws_cdk/aws_licensemanager/__init__.py,sha256=c69FUrzV0jerzr6JnztdOL_AMl4nPll2vh44AfG_UGQ,86292
|
|
159
161
|
aws_cdk/aws_lightsail/__init__.py,sha256=c4lNwl3WAwuugoiy9MUUuq8Qtzr-9CM6X--jr2_Kidw,535963
|
|
160
|
-
aws_cdk/aws_location/__init__.py,sha256=
|
|
162
|
+
aws_cdk/aws_location/__init__.py,sha256=ifk783g-lYvvNoK5NorhkXEpUVRSB969DLugX_jdrNs,199268
|
|
161
163
|
aws_cdk/aws_logs/__init__.py,sha256=GZeT9S1Obt0kHU2FOjeRFhGQ3yi_veiKbo4D51XEdmM,459228
|
|
162
164
|
aws_cdk/aws_logs_destinations/__init__.py,sha256=oK7vzKkzXb_thyFluFomC5ebGuNfQXs6TMO2mVX57WA,11718
|
|
163
165
|
aws_cdk/aws_lookoutequipment/__init__.py,sha256=oO-QazzkxX-hkj7fIk2p4LMp0OxWIgRjFYLi3xnWYfY,58095
|
|
@@ -172,19 +174,19 @@ aws_cdk/aws_medialive/__init__.py,sha256=nUx2g8fSDUQLAkUIqhUalcxdVbwEj4lMF07TkA7
|
|
|
172
174
|
aws_cdk/aws_mediapackage/__init__.py,sha256=d0MjWT3iuPMW8vBDWti2NGDkiyzjPf7Lv6xTTmMGjFg,441403
|
|
173
175
|
aws_cdk/aws_mediapackagev2/__init__.py,sha256=rAAEaHLoIMf-lPEIYYW-psF8kbiX9l0p7ijqdHHi68Q,178574
|
|
174
176
|
aws_cdk/aws_mediastore/__init__.py,sha256=Dp4w1BY0ghiRzlfAMYuOPFgVmxpijDmkb5p7joYnu8o,55676
|
|
175
|
-
aws_cdk/aws_mediatailor/__init__.py,sha256=
|
|
177
|
+
aws_cdk/aws_mediatailor/__init__.py,sha256=WI8RATaXkgHoCuUjfZHcn008Zya0P9dI8sNvltmMcWs,263982
|
|
176
178
|
aws_cdk/aws_memorydb/__init__.py,sha256=VefcjsF_RKRFWeCMw3_dh6ZZSbesipXi3phsoIZZmaw,138627
|
|
177
179
|
aws_cdk/aws_msk/__init__.py,sha256=Zu9BBaIXFkLIC4_HB1bkvQP0aU_GAgxphfZxgmmVnSY,334584
|
|
178
180
|
aws_cdk/aws_mwaa/__init__.py,sha256=DLo8LYvFwayU0hANv-uQ4bPcaK-d0etZYeE8JuSPwZM,107039
|
|
179
181
|
aws_cdk/aws_neptune/__init__.py,sha256=AIEdiuOLOaAUX9g9SQdohng51E1i7Jhiy8J-5_RsBRM,189933
|
|
180
182
|
aws_cdk/aws_neptunegraph/__init__.py,sha256=W61_Boji_t_HfG6zHOdf7RuRR15XlObOvXQoIzg9T28,48718
|
|
181
|
-
aws_cdk/aws_networkfirewall/__init__.py,sha256=
|
|
182
|
-
aws_cdk/aws_networkmanager/__init__.py,sha256=
|
|
183
|
+
aws_cdk/aws_networkfirewall/__init__.py,sha256=fmmw9gA_x43CqmQboKS0ZZFIwEh7QRwCRkwgv1baQ_M,413322
|
|
184
|
+
aws_cdk/aws_networkmanager/__init__.py,sha256=DGC6B7FdETvfsIiVNev8lnKkfY9G5B4GahCYPgT9gpQ,342148
|
|
183
185
|
aws_cdk/aws_nimblestudio/__init__.py,sha256=oh72xtISJX7oxhACCHXZjlcOp9Pd1dpa5cN7zeuSuYU,204689
|
|
184
186
|
aws_cdk/aws_oam/__init__.py,sha256=4ZzNHSIXKAIeUna7VOC4oCqLEaKiTFFjcgqN9XSiU5A,33518
|
|
185
|
-
aws_cdk/aws_omics/__init__.py,sha256=
|
|
187
|
+
aws_cdk/aws_omics/__init__.py,sha256=6rmTFo-o0p26iHcTJwueqgrfB_ecvNBoaIQkmm2h8og,154964
|
|
186
188
|
aws_cdk/aws_opensearchserverless/__init__.py,sha256=nO0HxRYEcpGOFqbIcPt93p_u7aywkXTTFTYuc4pBjF8,98576
|
|
187
|
-
aws_cdk/aws_opensearchservice/__init__.py,sha256=
|
|
189
|
+
aws_cdk/aws_opensearchservice/__init__.py,sha256=xZPC42OaoeGZBl1Qt9p4Ys-RuuuIjLu0IXdViKFcd-w,535996
|
|
188
190
|
aws_cdk/aws_opsworks/__init__.py,sha256=CXBZAMnnXfiEGwcY2V1l_nVt3GoxfDpw3d9fvQOrjX8,433419
|
|
189
191
|
aws_cdk/aws_opsworkscm/__init__.py,sha256=6J2QqVo7qeWgrXvYkuddM3TA62kGXcATmRClMio_IDs,85671
|
|
190
192
|
aws_cdk/aws_organizations/__init__.py,sha256=btZpiRyI2YPDb9mQwDS5lhYUjqlJ_LGLZTpq0zHcfGA,112349
|
|
@@ -192,15 +194,15 @@ aws_cdk/aws_osis/__init__.py,sha256=5mBh4mcYDpsVrNGaPGc8mMUw-1o21YBTI2-7nmcQPJY,
|
|
|
192
194
|
aws_cdk/aws_panorama/__init__.py,sha256=HJT4eChE7xJsWzfBgofzU91j2fPexG1Ynp1zYdxSqDY,79633
|
|
193
195
|
aws_cdk/aws_pcaconnectorad/__init__.py,sha256=Ogm6VAqwQpRSpxnafg8vFF7t1jFqcf_gSuVUsUgKMq4,383597
|
|
194
196
|
aws_cdk/aws_personalize/__init__.py,sha256=BT23i_AIcM_YcaGHBVO8KSK3y_bAi2Zq5MIuctv542g,133325
|
|
195
|
-
aws_cdk/aws_pinpoint/__init__.py,sha256=
|
|
197
|
+
aws_cdk/aws_pinpoint/__init__.py,sha256=NNi4KxquOFUjDh2G7ShCAmFrw8FBydXHAeg25ZbZ3eE,853523
|
|
196
198
|
aws_cdk/aws_pinpointemail/__init__.py,sha256=LGNN0yFah0RLd-jyxtRXnghrBXq9MAFUxGATzpdHmF0,150474
|
|
197
|
-
aws_cdk/aws_pipes/__init__.py,sha256=
|
|
199
|
+
aws_cdk/aws_pipes/__init__.py,sha256=CpYDxHFGo1-XavaWYFiwKvHD009VU-x0aAfTA7cU4Tc,448999
|
|
198
200
|
aws_cdk/aws_proton/__init__.py,sha256=1N5qTzjI71zCkQs8ZqGLRhuksWspujBjuZyQR2DgVGI,69525
|
|
199
201
|
aws_cdk/aws_qldb/__init__.py,sha256=BSz9t18cvSjH233l05ziK1JjaDJZ7aAA7FtRqYAb0JQ,62324
|
|
200
202
|
aws_cdk/aws_quicksight/__init__.py,sha256=7vd_jQyAqE7SQ7JrMMKrfFMdlmsvS8UBkGhTaPdeHM0,13444260
|
|
201
203
|
aws_cdk/aws_ram/__init__.py,sha256=1CsTM3E8RIWM3H7pFE3Q6pJ1lfmzyzXsQSl4P3-LtLM,50147
|
|
202
|
-
aws_cdk/aws_rds/__init__.py,sha256=
|
|
203
|
-
aws_cdk/aws_redshift/__init__.py,sha256=
|
|
204
|
+
aws_cdk/aws_rds/__init__.py,sha256=bQihcosIaNoRAYn_pDJYGOMEDYzAumevERb_y-x95AY,2565853
|
|
205
|
+
aws_cdk/aws_redshift/__init__.py,sha256=l-AxUqaS7TQXAdGfFtqPCrKf5dMryEcdpESwVUf2a0w,375643
|
|
204
206
|
aws_cdk/aws_redshiftserverless/__init__.py,sha256=tgHtlB1Vpay1DN3-Cq5QcYXQAwhcgj56T_i7K4CU35w,128954
|
|
205
207
|
aws_cdk/aws_refactorspaces/__init__.py,sha256=czbmTS63zIZp-T5TqGjJzW7fxWjCxZkFUa5aHmu-cXA,121392
|
|
206
208
|
aws_cdk/aws_rekognition/__init__.py,sha256=xXet3UbLYmaLBdgdjWQX3y6vBf1CUaDUvCxORY-jU90,119282
|
|
@@ -209,19 +211,19 @@ aws_cdk/aws_resourceexplorer2/__init__.py,sha256=Pek675Cm4YWfNGPauUao0PEgbvTDfEK
|
|
|
209
211
|
aws_cdk/aws_resourcegroups/__init__.py,sha256=-k9i2i8RYgZhu9olnXR4hwhLoMsSYdLVlPHu8QgsP58,60432
|
|
210
212
|
aws_cdk/aws_robomaker/__init__.py,sha256=8iVjet-1G91meCY3yjS9mqhAQEFib-6Le968jeUz9-o,126247
|
|
211
213
|
aws_cdk/aws_rolesanywhere/__init__.py,sha256=IGCyeEwcxZsd9AckfS4VKre5oGO8Nvtjtj9rBvxZeko,79608
|
|
212
|
-
aws_cdk/aws_route53/__init__.py,sha256=
|
|
214
|
+
aws_cdk/aws_route53/__init__.py,sha256=P7ohm1uSc245rurFEvOCbWodpE8T-z5rQxENDYlJ7JY,757096
|
|
213
215
|
aws_cdk/aws_route53_patterns/__init__.py,sha256=QhcBf_lOv7xHRepL9JgiUvBSQDXWq3GISd0roPnJiGY,12497
|
|
214
216
|
aws_cdk/aws_route53_targets/__init__.py,sha256=3EH8FAR-K_c8WROApuNPdHHG031hOI42BBN8uzxDuYI,38265
|
|
215
217
|
aws_cdk/aws_route53recoverycontrol/__init__.py,sha256=7te2gW44pNV6LiWk4971ggj18IkNUXkK1RYDelPAIiI,90938
|
|
216
218
|
aws_cdk/aws_route53recoveryreadiness/__init__.py,sha256=UFV495ObxqZm5HDfWNmX_oCCI-fwrFZQYi3Xjk8_Mlo,93674
|
|
217
219
|
aws_cdk/aws_route53resolver/__init__.py,sha256=YzDkT5CQKou7l7U4ASKWiP4D72NcitAVhridcwTZhZE,228775
|
|
218
220
|
aws_cdk/aws_rum/__init__.py,sha256=iLB7QC4HjxxAnuplG5ikp8wHEwUKDKVPtaJ1wmJ1VXo,73098
|
|
219
|
-
aws_cdk/aws_s3/__init__.py,sha256=
|
|
221
|
+
aws_cdk/aws_s3/__init__.py,sha256=7-K7WIPW6Bkwn3lPjGFiEA9i0yZeJOGbGkV05yYBHZ8,1180440
|
|
220
222
|
aws_cdk/aws_s3_assets/__init__.py,sha256=Mj_QNCwE8oPp4G5Zbp5cN6w1W0SoqTItlDqohz5e_ME,45783
|
|
221
223
|
aws_cdk/aws_s3_deployment/__init__.py,sha256=bq0VMUcPxy1x3yJriWRXJzakpXJ3OIU2H0Wh6TD2VLg,108185
|
|
222
224
|
aws_cdk/aws_s3_notifications/__init__.py,sha256=GKA7HrdhAlCm8TejARs1mq3L5yskFRfvk3uD1fGLDwY,9007
|
|
223
225
|
aws_cdk/aws_s3express/__init__.py,sha256=dWDooYIzcfSuC-y6OQjegkiX1nwZOY1SKvSkKUXPBj0,32169
|
|
224
|
-
aws_cdk/aws_s3objectlambda/__init__.py,sha256=
|
|
226
|
+
aws_cdk/aws_s3objectlambda/__init__.py,sha256=Tx71XcghxGoPRvxXi5uG0nNnQrWBrKQ9kAxQoBRMbNU,67387
|
|
225
227
|
aws_cdk/aws_s3outposts/__init__.py,sha256=KLF3wGbGgNaNbVE_VwcItqYLo96sVT9-kSbmBbHGFs4,113093
|
|
226
228
|
aws_cdk/aws_sagemaker/__init__.py,sha256=lyA-atLeQA0zBY23Tn3eu-uxqNcq2lH8YYIaq_XDiWA,2655403
|
|
227
229
|
aws_cdk/aws_sam/__init__.py,sha256=LA6XKMVNyDyABhOU910fzALyZEpEt5Guh8Mjb-l_EJM,752834
|
|
@@ -230,21 +232,21 @@ aws_cdk/aws_sdb/__init__.py,sha256=OOwlGUf4BscZA696vdfCjtsg_ppCwxH4kKgS_TqiRWI,9
|
|
|
230
232
|
aws_cdk/aws_secretsmanager/__init__.py,sha256=6Z5WcD6mDPtc5TSPr91NwUam-2C8kxV9y7SwYCWlH1Q,378142
|
|
231
233
|
aws_cdk/aws_securityhub/__init__.py,sha256=W197T9QogXFa9i8pqcUyiERnDr-i8DIx-jGmWxmpVX0,243732
|
|
232
234
|
aws_cdk/aws_servicecatalog/__init__.py,sha256=i2WyV792XMQWJUwyamenOx--RdmNA2ee7_7tAV7WI_0,536077
|
|
233
|
-
aws_cdk/aws_servicecatalogappregistry/__init__.py,sha256=
|
|
235
|
+
aws_cdk/aws_servicecatalogappregistry/__init__.py,sha256=2n12tkGM6EvhzGv8CkbhSx9mUV8s7-IKAFWX6Fn2Ebw,55681
|
|
234
236
|
aws_cdk/aws_servicediscovery/__init__.py,sha256=5NqCJRPVQrabTIVMmLBsJTYRo0bI4Q-DQkXMaBeGLRQ,359056
|
|
235
237
|
aws_cdk/aws_ses/__init__.py,sha256=ra2WqbWizD3-bBWAQAScl74Mj47hIdOtBEi6uSH4X8I,564926
|
|
236
238
|
aws_cdk/aws_ses_actions/__init__.py,sha256=-hW__2vyHMRhyzYOyG3-Y_zDt481Z1hLDc-tm-4TQ1g,44556
|
|
237
239
|
aws_cdk/aws_shield/__init__.py,sha256=zvpwFEMu3IIxr7A0c_91TyBLWqhcNGfJYxC9WdpTzxg,103759
|
|
238
|
-
aws_cdk/aws_signer/__init__.py,sha256=
|
|
240
|
+
aws_cdk/aws_signer/__init__.py,sha256=SmE3ejzm3fls9mvG0J64p5OlzehZWRfmSHsPAFU7vZk,56042
|
|
239
241
|
aws_cdk/aws_simspaceweaver/__init__.py,sha256=CJ1lSRPpfGhOdjQeVViqexSiBmAcFe7-vIeybqKuNwM,31404
|
|
240
242
|
aws_cdk/aws_sns/__init__.py,sha256=VzBKvlEWrIQ-7pHxcbnswH68G2nPv5pJ0Q40C3P-74g,331410
|
|
241
243
|
aws_cdk/aws_sns_subscriptions/__init__.py,sha256=S4V2iZYMqYKjkc765eT54kdDIlcEItK_hdggaE_ywvI,59789
|
|
242
244
|
aws_cdk/aws_sqs/__init__.py,sha256=er409LBGh0vDMfeIvZ8RnEnVbrZlvL8FGPNrmbEds4g,264219
|
|
243
|
-
aws_cdk/aws_ssm/__init__.py,sha256=
|
|
245
|
+
aws_cdk/aws_ssm/__init__.py,sha256=3VnRhMsMHHSgUJ-FzUuJlPmJ3TO8ItruZSPqFLb96UM,576669
|
|
244
246
|
aws_cdk/aws_ssmcontacts/__init__.py,sha256=zH5R41EvrP404eBDZoblVaDAAYcW_6h-oYLTcZPeqRY,135677
|
|
245
247
|
aws_cdk/aws_ssmincidents/__init__.py,sha256=yAQPsNm60XCQd7eQ-TsKgaqqSqfQrOUY2678USlkABM,111816
|
|
246
248
|
aws_cdk/aws_sso/__init__.py,sha256=ULKfnu3OmDzv3HddWAiQiil906KERY2Yzl2ou5u2uXU,99527
|
|
247
|
-
aws_cdk/aws_stepfunctions/__init__.py,sha256
|
|
249
|
+
aws_cdk/aws_stepfunctions/__init__.py,sha256=GTFWSqznG8qqzG0k-lbjQ1jvm3VunsGQPerpaIzrqeY,768795
|
|
248
250
|
aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=2iQ80d42dyjyVyTtW_fcjJyBgB1Ui7V6h6LEFwkUd1Q,1764354
|
|
249
251
|
aws_cdk/aws_supportapp/__init__.py,sha256=LKAVwmsAgzl8dxvObBmX6ygHJYX-kqWBS83ifwd91Xo,47946
|
|
250
252
|
aws_cdk/aws_synthetics/__init__.py,sha256=N4kv3LCc0ujV2cxpQ4OnxllhAElQY8I_Eh2aGhBIZ5I,229520
|
|
@@ -269,12 +271,12 @@ aws_cdk/cx_api/__init__.py,sha256=SyDUyVgXsaqvBl3J5i39ssVzo4xgs32szdSQo6KziSA,15
|
|
|
269
271
|
aws_cdk/lambda_layer_awscli/__init__.py,sha256=aV83wgBEooKA4v0ld0ZNg8KvzNNFinxQn-HLMDE4iOM,2246
|
|
270
272
|
aws_cdk/lambda_layer_kubectl/__init__.py,sha256=vZ7ewd1mVu9Tz0tYomwpNuRf88kofC9-LCmoWS2Wukg,2518
|
|
271
273
|
aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=a8yWzK1MkpuLJAmWQzO_QdzlAJMo15_mcKFd-OJoln4,2261
|
|
272
|
-
aws_cdk/pipelines/__init__.py,sha256=
|
|
274
|
+
aws_cdk/pipelines/__init__.py,sha256=bgzCqsXPyWMUu3f3DSS8dJkXldrQKnFFjJ4vnDLXX04,398615
|
|
273
275
|
aws_cdk/region_info/__init__.py,sha256=aW-_3oaub1N0TF6hHit5KCAsZIWU_kQxwLUfCM-f9_Q,37217
|
|
274
276
|
aws_cdk/triggers/__init__.py,sha256=_nT3e9hUvi1rnDqszru6bLo014-LvPvNqd4L4aSGGzE,107804
|
|
275
|
-
aws_cdk_lib-2.
|
|
276
|
-
aws_cdk_lib-2.
|
|
277
|
-
aws_cdk_lib-2.
|
|
278
|
-
aws_cdk_lib-2.
|
|
279
|
-
aws_cdk_lib-2.
|
|
280
|
-
aws_cdk_lib-2.
|
|
277
|
+
aws_cdk_lib-2.119.0.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
|
|
278
|
+
aws_cdk_lib-2.119.0.dist-info/METADATA,sha256=FPIVDrCM4z9YMdFIdIIbVONJiSif1uwzrBuAfhUjHH8,59322
|
|
279
|
+
aws_cdk_lib-2.119.0.dist-info/NOTICE,sha256=Y1V2iwQeOWmW8QU6HoX9j5TeAYnGb42ptOHBk_X7LxE,41135
|
|
280
|
+
aws_cdk_lib-2.119.0.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
|
281
|
+
aws_cdk_lib-2.119.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
282
|
+
aws_cdk_lib-2.119.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|