cloudsnorkel.cdk-turbo-layers 0.2.5__py3-none-any.whl → 0.3.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.
- cloudsnorkel/cdk_turbo_layers/__init__.py +96 -96
- cloudsnorkel/cdk_turbo_layers/_jsii/__init__.py +2 -2
- cloudsnorkel/cdk_turbo_layers/_jsii/cdk-turbo-layers@0.3.1.jsii.tgz +0 -0
- {cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info → cloudsnorkel_cdk_turbo_layers-0.3.1.dist-info}/METADATA +7 -8
- cloudsnorkel_cdk_turbo_layers-0.3.1.dist-info/RECORD +9 -0
- {cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info → cloudsnorkel_cdk_turbo_layers-0.3.1.dist-info}/WHEEL +1 -1
- cloudsnorkel/cdk_turbo_layers/_jsii/cdk-turbo-layers@0.2.5.jsii.tgz +0 -0
- cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info/RECORD +0 -9
- {cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info → cloudsnorkel_cdk_turbo_layers-0.3.1.dist-info}/LICENSE +0 -0
- {cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info → cloudsnorkel_cdk_turbo_layers-0.3.1.dist-info}/top_level.txt +0 -0
|
@@ -234,23 +234,23 @@ class DependencyPackagerProps:
|
|
|
234
234
|
def __init__(
|
|
235
235
|
self,
|
|
236
236
|
*,
|
|
237
|
-
architecture: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Architecture] = None,
|
|
238
|
-
log_removal_policy: typing.Optional[_aws_cdk_ceddda9d.RemovalPolicy] = None,
|
|
239
|
-
log_retention: typing.Optional[_aws_cdk_aws_logs_ceddda9d.RetentionDays] = None,
|
|
237
|
+
architecture: typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Architecture"] = None,
|
|
238
|
+
log_removal_policy: typing.Optional["_aws_cdk_ceddda9d.RemovalPolicy"] = None,
|
|
239
|
+
log_retention: typing.Optional["_aws_cdk_aws_logs_ceddda9d.RetentionDays"] = None,
|
|
240
240
|
preinstall_commands: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
241
|
-
runtime: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Runtime] = None,
|
|
242
|
-
subnet_selection: typing.Optional[typing.Union[_aws_cdk_aws_ec2_ceddda9d.SubnetSelection, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
241
|
+
runtime: typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Runtime"] = None,
|
|
242
|
+
subnet_selection: typing.Optional[typing.Union["_aws_cdk_aws_ec2_ceddda9d.SubnetSelection", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
243
243
|
type: typing.Optional["DependencyPackagerType"] = None,
|
|
244
|
-
vpc: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.IVpc] = None,
|
|
244
|
+
vpc: typing.Optional["_aws_cdk_aws_ec2_ceddda9d.IVpc"] = None,
|
|
245
245
|
) -> None:
|
|
246
246
|
'''
|
|
247
247
|
:param architecture: (experimental) Target Lambda architecture. Packages will be installed for this architecture so make sure it fits your Lambda functions.
|
|
248
|
-
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way
|
|
248
|
+
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way logs can still be viewed, and you can see why the build failed. We try to not leave anything behind when removed. But sometimes a log staying behind is useful. Default: RemovalPolicy.DESTROY
|
|
249
249
|
:param log_retention: (experimental) The number of days log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. Default: logs.RetentionDays.ONE_MONTH
|
|
250
250
|
:param preinstall_commands: (experimental) Additional commands to run before installing packages. Use this to authenticate your package repositories like CodeArtifact. Default: []
|
|
251
251
|
:param runtime: (experimental) Target Lambda runtime. Packages will be installed for this runtime so make sure it fits your Lambda functions.
|
|
252
252
|
:param subnet_selection: (experimental) VPC subnets used for packager. Default: default subnets, if VPC is used
|
|
253
|
-
:param type: (experimental) Type of dependency packager. Use Lambda for speed and CodeBuild for complex dependencies that require building native extensions. Default: {@link DependencyPackagerType.LAMBDA}
|
|
253
|
+
:param type: (experimental) Type of dependency packager. Use Lambda for speed and CodeBuild for complex dependencies that require building native extensions. Default: {@link DependencyPackagerType.LAMBDA }
|
|
254
254
|
:param vpc: (experimental) VPC used for packager. Use this if your package repositories are only available from within a VPC. Default: no VPC
|
|
255
255
|
|
|
256
256
|
:stability: experimental
|
|
@@ -288,7 +288,7 @@ class DependencyPackagerProps:
|
|
|
288
288
|
@builtins.property
|
|
289
289
|
def architecture(
|
|
290
290
|
self,
|
|
291
|
-
) -> typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Architecture]:
|
|
291
|
+
) -> typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Architecture"]:
|
|
292
292
|
'''(experimental) Target Lambda architecture.
|
|
293
293
|
|
|
294
294
|
Packages will be installed for this architecture so make sure it fits your Lambda functions.
|
|
@@ -296,13 +296,13 @@ class DependencyPackagerProps:
|
|
|
296
296
|
:stability: experimental
|
|
297
297
|
'''
|
|
298
298
|
result = self._values.get("architecture")
|
|
299
|
-
return typing.cast(typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Architecture], result)
|
|
299
|
+
return typing.cast(typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Architecture"], result)
|
|
300
300
|
|
|
301
301
|
@builtins.property
|
|
302
|
-
def log_removal_policy(self) -> typing.Optional[_aws_cdk_ceddda9d.RemovalPolicy]:
|
|
302
|
+
def log_removal_policy(self) -> typing.Optional["_aws_cdk_ceddda9d.RemovalPolicy"]:
|
|
303
303
|
'''(experimental) Removal policy for logs of image builds.
|
|
304
304
|
|
|
305
|
-
If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way
|
|
305
|
+
If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way logs can still be viewed, and you can see why the build failed.
|
|
306
306
|
|
|
307
307
|
We try to not leave anything behind when removed. But sometimes a log staying behind is useful.
|
|
308
308
|
|
|
@@ -311,12 +311,12 @@ class DependencyPackagerProps:
|
|
|
311
311
|
:stability: experimental
|
|
312
312
|
'''
|
|
313
313
|
result = self._values.get("log_removal_policy")
|
|
314
|
-
return typing.cast(typing.Optional[_aws_cdk_ceddda9d.RemovalPolicy], result)
|
|
314
|
+
return typing.cast(typing.Optional["_aws_cdk_ceddda9d.RemovalPolicy"], result)
|
|
315
315
|
|
|
316
316
|
@builtins.property
|
|
317
317
|
def log_retention(
|
|
318
318
|
self,
|
|
319
|
-
) -> typing.Optional[_aws_cdk_aws_logs_ceddda9d.RetentionDays]:
|
|
319
|
+
) -> typing.Optional["_aws_cdk_aws_logs_ceddda9d.RetentionDays"]:
|
|
320
320
|
'''(experimental) The number of days log events are kept in CloudWatch Logs.
|
|
321
321
|
|
|
322
322
|
When updating
|
|
@@ -328,7 +328,7 @@ class DependencyPackagerProps:
|
|
|
328
328
|
:stability: experimental
|
|
329
329
|
'''
|
|
330
330
|
result = self._values.get("log_retention")
|
|
331
|
-
return typing.cast(typing.Optional[_aws_cdk_aws_logs_ceddda9d.RetentionDays], result)
|
|
331
|
+
return typing.cast(typing.Optional["_aws_cdk_aws_logs_ceddda9d.RetentionDays"], result)
|
|
332
332
|
|
|
333
333
|
@builtins.property
|
|
334
334
|
def preinstall_commands(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -344,7 +344,7 @@ class DependencyPackagerProps:
|
|
|
344
344
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
345
345
|
|
|
346
346
|
@builtins.property
|
|
347
|
-
def runtime(self) -> typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Runtime]:
|
|
347
|
+
def runtime(self) -> typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Runtime"]:
|
|
348
348
|
'''(experimental) Target Lambda runtime.
|
|
349
349
|
|
|
350
350
|
Packages will be installed for this runtime so make sure it fits your Lambda functions.
|
|
@@ -352,12 +352,12 @@ class DependencyPackagerProps:
|
|
|
352
352
|
:stability: experimental
|
|
353
353
|
'''
|
|
354
354
|
result = self._values.get("runtime")
|
|
355
|
-
return typing.cast(typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Runtime], result)
|
|
355
|
+
return typing.cast(typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Runtime"], result)
|
|
356
356
|
|
|
357
357
|
@builtins.property
|
|
358
358
|
def subnet_selection(
|
|
359
359
|
self,
|
|
360
|
-
) -> typing.Optional[_aws_cdk_aws_ec2_ceddda9d.SubnetSelection]:
|
|
360
|
+
) -> typing.Optional["_aws_cdk_aws_ec2_ceddda9d.SubnetSelection"]:
|
|
361
361
|
'''(experimental) VPC subnets used for packager.
|
|
362
362
|
|
|
363
363
|
:default: default subnets, if VPC is used
|
|
@@ -365,7 +365,7 @@ class DependencyPackagerProps:
|
|
|
365
365
|
:stability: experimental
|
|
366
366
|
'''
|
|
367
367
|
result = self._values.get("subnet_selection")
|
|
368
|
-
return typing.cast(typing.Optional[_aws_cdk_aws_ec2_ceddda9d.SubnetSelection], result)
|
|
368
|
+
return typing.cast(typing.Optional["_aws_cdk_aws_ec2_ceddda9d.SubnetSelection"], result)
|
|
369
369
|
|
|
370
370
|
@builtins.property
|
|
371
371
|
def type(self) -> typing.Optional["DependencyPackagerType"]:
|
|
@@ -373,7 +373,7 @@ class DependencyPackagerProps:
|
|
|
373
373
|
|
|
374
374
|
Use Lambda for speed and CodeBuild for complex dependencies that require building native extensions.
|
|
375
375
|
|
|
376
|
-
:default: {@link DependencyPackagerType.LAMBDA}
|
|
376
|
+
:default: {@link DependencyPackagerType.LAMBDA }
|
|
377
377
|
|
|
378
378
|
:stability: experimental
|
|
379
379
|
'''
|
|
@@ -381,7 +381,7 @@ class DependencyPackagerProps:
|
|
|
381
381
|
return typing.cast(typing.Optional["DependencyPackagerType"], result)
|
|
382
382
|
|
|
383
383
|
@builtins.property
|
|
384
|
-
def vpc(self) -> typing.Optional[_aws_cdk_aws_ec2_ceddda9d.IVpc]:
|
|
384
|
+
def vpc(self) -> typing.Optional["_aws_cdk_aws_ec2_ceddda9d.IVpc"]:
|
|
385
385
|
'''(experimental) VPC used for packager.
|
|
386
386
|
|
|
387
387
|
Use this if your package repositories are only available from within a VPC.
|
|
@@ -391,7 +391,7 @@ class DependencyPackagerProps:
|
|
|
391
391
|
:stability: experimental
|
|
392
392
|
'''
|
|
393
393
|
result = self._values.get("vpc")
|
|
394
|
-
return typing.cast(typing.Optional[_aws_cdk_aws_ec2_ceddda9d.IVpc], result)
|
|
394
|
+
return typing.cast(typing.Optional["_aws_cdk_aws_ec2_ceddda9d.IVpc"], result)
|
|
395
395
|
|
|
396
396
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
397
397
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -445,28 +445,28 @@ class JavaDependencyPackager(
|
|
|
445
445
|
|
|
446
446
|
def __init__(
|
|
447
447
|
self,
|
|
448
|
-
scope: _constructs_77d1e7e8.Construct,
|
|
448
|
+
scope: "_constructs_77d1e7e8.Construct",
|
|
449
449
|
id: builtins.str,
|
|
450
450
|
*,
|
|
451
|
-
architecture: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Architecture] = None,
|
|
452
|
-
log_removal_policy: typing.Optional[_aws_cdk_ceddda9d.RemovalPolicy] = None,
|
|
453
|
-
log_retention: typing.Optional[_aws_cdk_aws_logs_ceddda9d.RetentionDays] = None,
|
|
451
|
+
architecture: typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Architecture"] = None,
|
|
452
|
+
log_removal_policy: typing.Optional["_aws_cdk_ceddda9d.RemovalPolicy"] = None,
|
|
453
|
+
log_retention: typing.Optional["_aws_cdk_aws_logs_ceddda9d.RetentionDays"] = None,
|
|
454
454
|
preinstall_commands: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
455
|
-
runtime: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Runtime] = None,
|
|
456
|
-
subnet_selection: typing.Optional[typing.Union[_aws_cdk_aws_ec2_ceddda9d.SubnetSelection, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
457
|
-
type: typing.Optional[DependencyPackagerType] = None,
|
|
458
|
-
vpc: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.IVpc] = None,
|
|
455
|
+
runtime: typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Runtime"] = None,
|
|
456
|
+
subnet_selection: typing.Optional[typing.Union["_aws_cdk_aws_ec2_ceddda9d.SubnetSelection", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
457
|
+
type: typing.Optional["DependencyPackagerType"] = None,
|
|
458
|
+
vpc: typing.Optional["_aws_cdk_aws_ec2_ceddda9d.IVpc"] = None,
|
|
459
459
|
) -> None:
|
|
460
460
|
'''
|
|
461
461
|
:param scope: -
|
|
462
462
|
:param id: -
|
|
463
463
|
:param architecture: (experimental) Target Lambda architecture. Packages will be installed for this architecture so make sure it fits your Lambda functions.
|
|
464
|
-
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way
|
|
464
|
+
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way logs can still be viewed, and you can see why the build failed. We try to not leave anything behind when removed. But sometimes a log staying behind is useful. Default: RemovalPolicy.DESTROY
|
|
465
465
|
:param log_retention: (experimental) The number of days log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. Default: logs.RetentionDays.ONE_MONTH
|
|
466
466
|
:param preinstall_commands: (experimental) Additional commands to run before installing packages. Use this to authenticate your package repositories like CodeArtifact. Default: []
|
|
467
467
|
:param runtime: (experimental) Target Lambda runtime. Packages will be installed for this runtime so make sure it fits your Lambda functions.
|
|
468
468
|
:param subnet_selection: (experimental) VPC subnets used for packager. Default: default subnets, if VPC is used
|
|
469
|
-
:param type: (experimental) Type of dependency packager. Use Lambda for speed and CodeBuild for complex dependencies that require building native extensions. Default: {@link DependencyPackagerType.LAMBDA}
|
|
469
|
+
:param type: (experimental) Type of dependency packager. Use Lambda for speed and CodeBuild for complex dependencies that require building native extensions. Default: {@link DependencyPackagerType.LAMBDA }
|
|
470
470
|
:param vpc: (experimental) VPC used for packager. Use this if your package repositories are only available from within a VPC. Default: no VPC
|
|
471
471
|
|
|
472
472
|
:stability: experimental
|
|
@@ -495,7 +495,7 @@ class JavaDependencyPackager(
|
|
|
495
495
|
path: builtins.str,
|
|
496
496
|
*,
|
|
497
497
|
always_rebuild: typing.Optional[builtins.bool] = None,
|
|
498
|
-
) -> _aws_cdk_aws_lambda_ceddda9d.LayerVersion:
|
|
498
|
+
) -> "_aws_cdk_aws_lambda_ceddda9d.LayerVersion":
|
|
499
499
|
'''(experimental) Create a layer for dependencies defined in pom.xml installed with Maven.
|
|
500
500
|
|
|
501
501
|
:param id: -
|
|
@@ -510,25 +510,25 @@ class JavaDependencyPackager(
|
|
|
510
510
|
check_type(argname="argument path", value=path, expected_type=type_hints["path"])
|
|
511
511
|
props = LayerProps(always_rebuild=always_rebuild)
|
|
512
512
|
|
|
513
|
-
return typing.cast(_aws_cdk_aws_lambda_ceddda9d.LayerVersion, jsii.invoke(self, "layerFromMaven", [id, path, props]))
|
|
513
|
+
return typing.cast("_aws_cdk_aws_lambda_ceddda9d.LayerVersion", jsii.invoke(self, "layerFromMaven", [id, path, props]))
|
|
514
514
|
|
|
515
515
|
@builtins.property
|
|
516
516
|
@jsii.member(jsii_name="connections")
|
|
517
|
-
def connections(self) -> _aws_cdk_aws_ec2_ceddda9d.Connections:
|
|
517
|
+
def connections(self) -> "_aws_cdk_aws_ec2_ceddda9d.Connections":
|
|
518
518
|
'''(experimental) The network connections associated with this resource.
|
|
519
519
|
|
|
520
520
|
:stability: experimental
|
|
521
521
|
'''
|
|
522
|
-
return typing.cast(_aws_cdk_aws_ec2_ceddda9d.Connections, jsii.get(self, "connections"))
|
|
522
|
+
return typing.cast("_aws_cdk_aws_ec2_ceddda9d.Connections", jsii.get(self, "connections"))
|
|
523
523
|
|
|
524
524
|
@builtins.property
|
|
525
525
|
@jsii.member(jsii_name="grantPrincipal")
|
|
526
|
-
def grant_principal(self) -> _aws_cdk_aws_iam_ceddda9d.IPrincipal:
|
|
526
|
+
def grant_principal(self) -> "_aws_cdk_aws_iam_ceddda9d.IPrincipal":
|
|
527
527
|
'''(experimental) The principal to grant permissions to.
|
|
528
528
|
|
|
529
529
|
:stability: experimental
|
|
530
530
|
'''
|
|
531
|
-
return typing.cast(_aws_cdk_aws_iam_ceddda9d.IPrincipal, jsii.get(self, "grantPrincipal"))
|
|
531
|
+
return typing.cast("_aws_cdk_aws_iam_ceddda9d.IPrincipal", jsii.get(self, "grantPrincipal"))
|
|
532
532
|
|
|
533
533
|
|
|
534
534
|
@jsii.data_type(
|
|
@@ -590,28 +590,28 @@ class NodejsDependencyPackager(
|
|
|
590
590
|
|
|
591
591
|
def __init__(
|
|
592
592
|
self,
|
|
593
|
-
scope: _constructs_77d1e7e8.Construct,
|
|
593
|
+
scope: "_constructs_77d1e7e8.Construct",
|
|
594
594
|
id: builtins.str,
|
|
595
595
|
*,
|
|
596
|
-
architecture: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Architecture] = None,
|
|
597
|
-
log_removal_policy: typing.Optional[_aws_cdk_ceddda9d.RemovalPolicy] = None,
|
|
598
|
-
log_retention: typing.Optional[_aws_cdk_aws_logs_ceddda9d.RetentionDays] = None,
|
|
596
|
+
architecture: typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Architecture"] = None,
|
|
597
|
+
log_removal_policy: typing.Optional["_aws_cdk_ceddda9d.RemovalPolicy"] = None,
|
|
598
|
+
log_retention: typing.Optional["_aws_cdk_aws_logs_ceddda9d.RetentionDays"] = None,
|
|
599
599
|
preinstall_commands: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
600
|
-
runtime: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Runtime] = None,
|
|
601
|
-
subnet_selection: typing.Optional[typing.Union[_aws_cdk_aws_ec2_ceddda9d.SubnetSelection, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
602
|
-
type: typing.Optional[DependencyPackagerType] = None,
|
|
603
|
-
vpc: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.IVpc] = None,
|
|
600
|
+
runtime: typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Runtime"] = None,
|
|
601
|
+
subnet_selection: typing.Optional[typing.Union["_aws_cdk_aws_ec2_ceddda9d.SubnetSelection", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
602
|
+
type: typing.Optional["DependencyPackagerType"] = None,
|
|
603
|
+
vpc: typing.Optional["_aws_cdk_aws_ec2_ceddda9d.IVpc"] = None,
|
|
604
604
|
) -> None:
|
|
605
605
|
'''
|
|
606
606
|
:param scope: -
|
|
607
607
|
:param id: -
|
|
608
608
|
:param architecture: (experimental) Target Lambda architecture. Packages will be installed for this architecture so make sure it fits your Lambda functions.
|
|
609
|
-
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way
|
|
609
|
+
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way logs can still be viewed, and you can see why the build failed. We try to not leave anything behind when removed. But sometimes a log staying behind is useful. Default: RemovalPolicy.DESTROY
|
|
610
610
|
:param log_retention: (experimental) The number of days log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. Default: logs.RetentionDays.ONE_MONTH
|
|
611
611
|
:param preinstall_commands: (experimental) Additional commands to run before installing packages. Use this to authenticate your package repositories like CodeArtifact. Default: []
|
|
612
612
|
:param runtime: (experimental) Target Lambda runtime. Packages will be installed for this runtime so make sure it fits your Lambda functions.
|
|
613
613
|
:param subnet_selection: (experimental) VPC subnets used for packager. Default: default subnets, if VPC is used
|
|
614
|
-
:param type: (experimental) Type of dependency packager. Use Lambda for speed and CodeBuild for complex dependencies that require building native extensions. Default: {@link DependencyPackagerType.LAMBDA}
|
|
614
|
+
:param type: (experimental) Type of dependency packager. Use Lambda for speed and CodeBuild for complex dependencies that require building native extensions. Default: {@link DependencyPackagerType.LAMBDA }
|
|
615
615
|
:param vpc: (experimental) VPC used for packager. Use this if your package repositories are only available from within a VPC. Default: no VPC
|
|
616
616
|
|
|
617
617
|
:stability: experimental
|
|
@@ -640,7 +640,7 @@ class NodejsDependencyPackager(
|
|
|
640
640
|
libraries: typing.Sequence[builtins.str],
|
|
641
641
|
*,
|
|
642
642
|
always_rebuild: typing.Optional[builtins.bool] = None,
|
|
643
|
-
) -> _aws_cdk_aws_lambda_ceddda9d.LayerVersion:
|
|
643
|
+
) -> "_aws_cdk_aws_lambda_ceddda9d.LayerVersion":
|
|
644
644
|
'''(experimental) Create a layer for dependencies passed as an argument and installed with npm.
|
|
645
645
|
|
|
646
646
|
:param id: -
|
|
@@ -655,7 +655,7 @@ class NodejsDependencyPackager(
|
|
|
655
655
|
check_type(argname="argument libraries", value=libraries, expected_type=type_hints["libraries"])
|
|
656
656
|
props = LayerProps(always_rebuild=always_rebuild)
|
|
657
657
|
|
|
658
|
-
return typing.cast(_aws_cdk_aws_lambda_ceddda9d.LayerVersion, jsii.invoke(self, "layerFromInline", [id, libraries, props]))
|
|
658
|
+
return typing.cast("_aws_cdk_aws_lambda_ceddda9d.LayerVersion", jsii.invoke(self, "layerFromInline", [id, libraries, props]))
|
|
659
659
|
|
|
660
660
|
@jsii.member(jsii_name="layerFromPackageJson")
|
|
661
661
|
def layer_from_package_json(
|
|
@@ -664,7 +664,7 @@ class NodejsDependencyPackager(
|
|
|
664
664
|
path: builtins.str,
|
|
665
665
|
*,
|
|
666
666
|
always_rebuild: typing.Optional[builtins.bool] = None,
|
|
667
|
-
) -> _aws_cdk_aws_lambda_ceddda9d.LayerVersion:
|
|
667
|
+
) -> "_aws_cdk_aws_lambda_ceddda9d.LayerVersion":
|
|
668
668
|
'''(experimental) Create a layer for dependencies defined in package.json and (optionally) package-lock.json and installed with npm.
|
|
669
669
|
|
|
670
670
|
:param id: -
|
|
@@ -679,7 +679,7 @@ class NodejsDependencyPackager(
|
|
|
679
679
|
check_type(argname="argument path", value=path, expected_type=type_hints["path"])
|
|
680
680
|
props = LayerProps(always_rebuild=always_rebuild)
|
|
681
681
|
|
|
682
|
-
return typing.cast(_aws_cdk_aws_lambda_ceddda9d.LayerVersion, jsii.invoke(self, "layerFromPackageJson", [id, path, props]))
|
|
682
|
+
return typing.cast("_aws_cdk_aws_lambda_ceddda9d.LayerVersion", jsii.invoke(self, "layerFromPackageJson", [id, path, props]))
|
|
683
683
|
|
|
684
684
|
@jsii.member(jsii_name="layerFromYarn")
|
|
685
685
|
def layer_from_yarn(
|
|
@@ -688,7 +688,7 @@ class NodejsDependencyPackager(
|
|
|
688
688
|
path: builtins.str,
|
|
689
689
|
*,
|
|
690
690
|
always_rebuild: typing.Optional[builtins.bool] = None,
|
|
691
|
-
) -> _aws_cdk_aws_lambda_ceddda9d.LayerVersion:
|
|
691
|
+
) -> "_aws_cdk_aws_lambda_ceddda9d.LayerVersion":
|
|
692
692
|
'''(experimental) Create a layer for dependencies defined in package.json and yarn.lock and installed with yarn.
|
|
693
693
|
|
|
694
694
|
:param id: -
|
|
@@ -703,25 +703,25 @@ class NodejsDependencyPackager(
|
|
|
703
703
|
check_type(argname="argument path", value=path, expected_type=type_hints["path"])
|
|
704
704
|
props = LayerProps(always_rebuild=always_rebuild)
|
|
705
705
|
|
|
706
|
-
return typing.cast(_aws_cdk_aws_lambda_ceddda9d.LayerVersion, jsii.invoke(self, "layerFromYarn", [id, path, props]))
|
|
706
|
+
return typing.cast("_aws_cdk_aws_lambda_ceddda9d.LayerVersion", jsii.invoke(self, "layerFromYarn", [id, path, props]))
|
|
707
707
|
|
|
708
708
|
@builtins.property
|
|
709
709
|
@jsii.member(jsii_name="connections")
|
|
710
|
-
def connections(self) -> _aws_cdk_aws_ec2_ceddda9d.Connections:
|
|
710
|
+
def connections(self) -> "_aws_cdk_aws_ec2_ceddda9d.Connections":
|
|
711
711
|
'''(experimental) The network connections associated with this resource.
|
|
712
712
|
|
|
713
713
|
:stability: experimental
|
|
714
714
|
'''
|
|
715
|
-
return typing.cast(_aws_cdk_aws_ec2_ceddda9d.Connections, jsii.get(self, "connections"))
|
|
715
|
+
return typing.cast("_aws_cdk_aws_ec2_ceddda9d.Connections", jsii.get(self, "connections"))
|
|
716
716
|
|
|
717
717
|
@builtins.property
|
|
718
718
|
@jsii.member(jsii_name="grantPrincipal")
|
|
719
|
-
def grant_principal(self) -> _aws_cdk_aws_iam_ceddda9d.IPrincipal:
|
|
719
|
+
def grant_principal(self) -> "_aws_cdk_aws_iam_ceddda9d.IPrincipal":
|
|
720
720
|
'''(experimental) The principal to grant permissions to.
|
|
721
721
|
|
|
722
722
|
:stability: experimental
|
|
723
723
|
'''
|
|
724
|
-
return typing.cast(_aws_cdk_aws_iam_ceddda9d.IPrincipal, jsii.get(self, "grantPrincipal"))
|
|
724
|
+
return typing.cast("_aws_cdk_aws_iam_ceddda9d.IPrincipal", jsii.get(self, "grantPrincipal"))
|
|
725
725
|
|
|
726
726
|
|
|
727
727
|
@jsii.implements(_aws_cdk_aws_iam_ceddda9d.IGrantable, _aws_cdk_aws_ec2_ceddda9d.IConnectable)
|
|
@@ -739,28 +739,28 @@ class PythonDependencyPackager(
|
|
|
739
739
|
|
|
740
740
|
def __init__(
|
|
741
741
|
self,
|
|
742
|
-
scope: _constructs_77d1e7e8.Construct,
|
|
742
|
+
scope: "_constructs_77d1e7e8.Construct",
|
|
743
743
|
id: builtins.str,
|
|
744
744
|
*,
|
|
745
|
-
architecture: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Architecture] = None,
|
|
746
|
-
log_removal_policy: typing.Optional[_aws_cdk_ceddda9d.RemovalPolicy] = None,
|
|
747
|
-
log_retention: typing.Optional[_aws_cdk_aws_logs_ceddda9d.RetentionDays] = None,
|
|
745
|
+
architecture: typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Architecture"] = None,
|
|
746
|
+
log_removal_policy: typing.Optional["_aws_cdk_ceddda9d.RemovalPolicy"] = None,
|
|
747
|
+
log_retention: typing.Optional["_aws_cdk_aws_logs_ceddda9d.RetentionDays"] = None,
|
|
748
748
|
preinstall_commands: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
749
|
-
runtime: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Runtime] = None,
|
|
750
|
-
subnet_selection: typing.Optional[typing.Union[_aws_cdk_aws_ec2_ceddda9d.SubnetSelection, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
751
|
-
type: typing.Optional[DependencyPackagerType] = None,
|
|
752
|
-
vpc: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.IVpc] = None,
|
|
749
|
+
runtime: typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Runtime"] = None,
|
|
750
|
+
subnet_selection: typing.Optional[typing.Union["_aws_cdk_aws_ec2_ceddda9d.SubnetSelection", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
751
|
+
type: typing.Optional["DependencyPackagerType"] = None,
|
|
752
|
+
vpc: typing.Optional["_aws_cdk_aws_ec2_ceddda9d.IVpc"] = None,
|
|
753
753
|
) -> None:
|
|
754
754
|
'''
|
|
755
755
|
:param scope: -
|
|
756
756
|
:param id: -
|
|
757
757
|
:param architecture: (experimental) Target Lambda architecture. Packages will be installed for this architecture so make sure it fits your Lambda functions.
|
|
758
|
-
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way
|
|
758
|
+
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way logs can still be viewed, and you can see why the build failed. We try to not leave anything behind when removed. But sometimes a log staying behind is useful. Default: RemovalPolicy.DESTROY
|
|
759
759
|
:param log_retention: (experimental) The number of days log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. Default: logs.RetentionDays.ONE_MONTH
|
|
760
760
|
:param preinstall_commands: (experimental) Additional commands to run before installing packages. Use this to authenticate your package repositories like CodeArtifact. Default: []
|
|
761
761
|
:param runtime: (experimental) Target Lambda runtime. Packages will be installed for this runtime so make sure it fits your Lambda functions.
|
|
762
762
|
:param subnet_selection: (experimental) VPC subnets used for packager. Default: default subnets, if VPC is used
|
|
763
|
-
:param type: (experimental) Type of dependency packager. Use Lambda for speed and CodeBuild for complex dependencies that require building native extensions. Default: {@link DependencyPackagerType.LAMBDA}
|
|
763
|
+
:param type: (experimental) Type of dependency packager. Use Lambda for speed and CodeBuild for complex dependencies that require building native extensions. Default: {@link DependencyPackagerType.LAMBDA }
|
|
764
764
|
:param vpc: (experimental) VPC used for packager. Use this if your package repositories are only available from within a VPC. Default: no VPC
|
|
765
765
|
|
|
766
766
|
:stability: experimental
|
|
@@ -789,7 +789,7 @@ class PythonDependencyPackager(
|
|
|
789
789
|
requirements: typing.Sequence[builtins.str],
|
|
790
790
|
*,
|
|
791
791
|
always_rebuild: typing.Optional[builtins.bool] = None,
|
|
792
|
-
) -> _aws_cdk_aws_lambda_ceddda9d.LayerVersion:
|
|
792
|
+
) -> "_aws_cdk_aws_lambda_ceddda9d.LayerVersion":
|
|
793
793
|
'''(experimental) Create a layer for dependencies passed as an argument and installed with pip.
|
|
794
794
|
|
|
795
795
|
:param id: -
|
|
@@ -804,7 +804,7 @@ class PythonDependencyPackager(
|
|
|
804
804
|
check_type(argname="argument requirements", value=requirements, expected_type=type_hints["requirements"])
|
|
805
805
|
props = LayerProps(always_rebuild=always_rebuild)
|
|
806
806
|
|
|
807
|
-
return typing.cast(_aws_cdk_aws_lambda_ceddda9d.LayerVersion, jsii.invoke(self, "layerFromInline", [id, requirements, props]))
|
|
807
|
+
return typing.cast("_aws_cdk_aws_lambda_ceddda9d.LayerVersion", jsii.invoke(self, "layerFromInline", [id, requirements, props]))
|
|
808
808
|
|
|
809
809
|
@jsii.member(jsii_name="layerFromPipenv")
|
|
810
810
|
def layer_from_pipenv(
|
|
@@ -813,7 +813,7 @@ class PythonDependencyPackager(
|
|
|
813
813
|
path: builtins.str,
|
|
814
814
|
*,
|
|
815
815
|
always_rebuild: typing.Optional[builtins.bool] = None,
|
|
816
|
-
) -> _aws_cdk_aws_lambda_ceddda9d.LayerVersion:
|
|
816
|
+
) -> "_aws_cdk_aws_lambda_ceddda9d.LayerVersion":
|
|
817
817
|
'''(experimental) Create a layer for dependencies defined in Pipfile and (optionally) Pipfile.lock and installed with pipenv.
|
|
818
818
|
|
|
819
819
|
:param id: -
|
|
@@ -828,7 +828,7 @@ class PythonDependencyPackager(
|
|
|
828
828
|
check_type(argname="argument path", value=path, expected_type=type_hints["path"])
|
|
829
829
|
props = LayerProps(always_rebuild=always_rebuild)
|
|
830
830
|
|
|
831
|
-
return typing.cast(_aws_cdk_aws_lambda_ceddda9d.LayerVersion, jsii.invoke(self, "layerFromPipenv", [id, path, props]))
|
|
831
|
+
return typing.cast("_aws_cdk_aws_lambda_ceddda9d.LayerVersion", jsii.invoke(self, "layerFromPipenv", [id, path, props]))
|
|
832
832
|
|
|
833
833
|
@jsii.member(jsii_name="layerFromPoetry")
|
|
834
834
|
def layer_from_poetry(
|
|
@@ -837,7 +837,7 @@ class PythonDependencyPackager(
|
|
|
837
837
|
path: builtins.str,
|
|
838
838
|
*,
|
|
839
839
|
always_rebuild: typing.Optional[builtins.bool] = None,
|
|
840
|
-
) -> _aws_cdk_aws_lambda_ceddda9d.LayerVersion:
|
|
840
|
+
) -> "_aws_cdk_aws_lambda_ceddda9d.LayerVersion":
|
|
841
841
|
'''(experimental) Create a layer for dependencies defined in pyproject.toml and (optionally) poetry.lock and installed with poetry.
|
|
842
842
|
|
|
843
843
|
:param id: -
|
|
@@ -852,7 +852,7 @@ class PythonDependencyPackager(
|
|
|
852
852
|
check_type(argname="argument path", value=path, expected_type=type_hints["path"])
|
|
853
853
|
props = LayerProps(always_rebuild=always_rebuild)
|
|
854
854
|
|
|
855
|
-
return typing.cast(_aws_cdk_aws_lambda_ceddda9d.LayerVersion, jsii.invoke(self, "layerFromPoetry", [id, path, props]))
|
|
855
|
+
return typing.cast("_aws_cdk_aws_lambda_ceddda9d.LayerVersion", jsii.invoke(self, "layerFromPoetry", [id, path, props]))
|
|
856
856
|
|
|
857
857
|
@jsii.member(jsii_name="layerFromRequirementsTxt")
|
|
858
858
|
def layer_from_requirements_txt(
|
|
@@ -861,7 +861,7 @@ class PythonDependencyPackager(
|
|
|
861
861
|
path: builtins.str,
|
|
862
862
|
*,
|
|
863
863
|
always_rebuild: typing.Optional[builtins.bool] = None,
|
|
864
|
-
) -> _aws_cdk_aws_lambda_ceddda9d.LayerVersion:
|
|
864
|
+
) -> "_aws_cdk_aws_lambda_ceddda9d.LayerVersion":
|
|
865
865
|
'''(experimental) Create a layer for dependencies defined in requirements.txt and installed with pip.
|
|
866
866
|
|
|
867
867
|
:param id: -
|
|
@@ -876,25 +876,25 @@ class PythonDependencyPackager(
|
|
|
876
876
|
check_type(argname="argument path", value=path, expected_type=type_hints["path"])
|
|
877
877
|
props = LayerProps(always_rebuild=always_rebuild)
|
|
878
878
|
|
|
879
|
-
return typing.cast(_aws_cdk_aws_lambda_ceddda9d.LayerVersion, jsii.invoke(self, "layerFromRequirementsTxt", [id, path, props]))
|
|
879
|
+
return typing.cast("_aws_cdk_aws_lambda_ceddda9d.LayerVersion", jsii.invoke(self, "layerFromRequirementsTxt", [id, path, props]))
|
|
880
880
|
|
|
881
881
|
@builtins.property
|
|
882
882
|
@jsii.member(jsii_name="connections")
|
|
883
|
-
def connections(self) -> _aws_cdk_aws_ec2_ceddda9d.Connections:
|
|
883
|
+
def connections(self) -> "_aws_cdk_aws_ec2_ceddda9d.Connections":
|
|
884
884
|
'''(experimental) The network connections associated with this resource.
|
|
885
885
|
|
|
886
886
|
:stability: experimental
|
|
887
887
|
'''
|
|
888
|
-
return typing.cast(_aws_cdk_aws_ec2_ceddda9d.Connections, jsii.get(self, "connections"))
|
|
888
|
+
return typing.cast("_aws_cdk_aws_ec2_ceddda9d.Connections", jsii.get(self, "connections"))
|
|
889
889
|
|
|
890
890
|
@builtins.property
|
|
891
891
|
@jsii.member(jsii_name="grantPrincipal")
|
|
892
|
-
def grant_principal(self) -> _aws_cdk_aws_iam_ceddda9d.IPrincipal:
|
|
892
|
+
def grant_principal(self) -> "_aws_cdk_aws_iam_ceddda9d.IPrincipal":
|
|
893
893
|
'''(experimental) The principal to grant permissions to.
|
|
894
894
|
|
|
895
895
|
:stability: experimental
|
|
896
896
|
'''
|
|
897
|
-
return typing.cast(_aws_cdk_aws_iam_ceddda9d.IPrincipal, jsii.get(self, "grantPrincipal"))
|
|
897
|
+
return typing.cast("_aws_cdk_aws_iam_ceddda9d.IPrincipal", jsii.get(self, "grantPrincipal"))
|
|
898
898
|
|
|
899
899
|
|
|
900
900
|
@jsii.implements(_aws_cdk_aws_iam_ceddda9d.IGrantable, _aws_cdk_aws_ec2_ceddda9d.IConnectable)
|
|
@@ -912,28 +912,28 @@ class RubyDependencyPackager(
|
|
|
912
912
|
|
|
913
913
|
def __init__(
|
|
914
914
|
self,
|
|
915
|
-
scope: _constructs_77d1e7e8.Construct,
|
|
915
|
+
scope: "_constructs_77d1e7e8.Construct",
|
|
916
916
|
id: builtins.str,
|
|
917
917
|
*,
|
|
918
|
-
architecture: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Architecture] = None,
|
|
919
|
-
log_removal_policy: typing.Optional[_aws_cdk_ceddda9d.RemovalPolicy] = None,
|
|
920
|
-
log_retention: typing.Optional[_aws_cdk_aws_logs_ceddda9d.RetentionDays] = None,
|
|
918
|
+
architecture: typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Architecture"] = None,
|
|
919
|
+
log_removal_policy: typing.Optional["_aws_cdk_ceddda9d.RemovalPolicy"] = None,
|
|
920
|
+
log_retention: typing.Optional["_aws_cdk_aws_logs_ceddda9d.RetentionDays"] = None,
|
|
921
921
|
preinstall_commands: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
922
|
-
runtime: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Runtime] = None,
|
|
923
|
-
subnet_selection: typing.Optional[typing.Union[_aws_cdk_aws_ec2_ceddda9d.SubnetSelection, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
924
|
-
type: typing.Optional[DependencyPackagerType] = None,
|
|
925
|
-
vpc: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.IVpc] = None,
|
|
922
|
+
runtime: typing.Optional["_aws_cdk_aws_lambda_ceddda9d.Runtime"] = None,
|
|
923
|
+
subnet_selection: typing.Optional[typing.Union["_aws_cdk_aws_ec2_ceddda9d.SubnetSelection", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
924
|
+
type: typing.Optional["DependencyPackagerType"] = None,
|
|
925
|
+
vpc: typing.Optional["_aws_cdk_aws_ec2_ceddda9d.IVpc"] = None,
|
|
926
926
|
) -> None:
|
|
927
927
|
'''
|
|
928
928
|
:param scope: -
|
|
929
929
|
:param id: -
|
|
930
930
|
:param architecture: (experimental) Target Lambda architecture. Packages will be installed for this architecture so make sure it fits your Lambda functions.
|
|
931
|
-
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way
|
|
931
|
+
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way logs can still be viewed, and you can see why the build failed. We try to not leave anything behind when removed. But sometimes a log staying behind is useful. Default: RemovalPolicy.DESTROY
|
|
932
932
|
:param log_retention: (experimental) The number of days log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. Default: logs.RetentionDays.ONE_MONTH
|
|
933
933
|
:param preinstall_commands: (experimental) Additional commands to run before installing packages. Use this to authenticate your package repositories like CodeArtifact. Default: []
|
|
934
934
|
:param runtime: (experimental) Target Lambda runtime. Packages will be installed for this runtime so make sure it fits your Lambda functions.
|
|
935
935
|
:param subnet_selection: (experimental) VPC subnets used for packager. Default: default subnets, if VPC is used
|
|
936
|
-
:param type: (experimental) Type of dependency packager. Use Lambda for speed and CodeBuild for complex dependencies that require building native extensions. Default: {@link DependencyPackagerType.LAMBDA}
|
|
936
|
+
:param type: (experimental) Type of dependency packager. Use Lambda for speed and CodeBuild for complex dependencies that require building native extensions. Default: {@link DependencyPackagerType.LAMBDA }
|
|
937
937
|
:param vpc: (experimental) VPC used for packager. Use this if your package repositories are only available from within a VPC. Default: no VPC
|
|
938
938
|
|
|
939
939
|
:stability: experimental
|
|
@@ -962,7 +962,7 @@ class RubyDependencyPackager(
|
|
|
962
962
|
path: builtins.str,
|
|
963
963
|
*,
|
|
964
964
|
always_rebuild: typing.Optional[builtins.bool] = None,
|
|
965
|
-
) -> _aws_cdk_aws_lambda_ceddda9d.LayerVersion:
|
|
965
|
+
) -> "_aws_cdk_aws_lambda_ceddda9d.LayerVersion":
|
|
966
966
|
'''(experimental) Create a layer for dependencies defined in Gemfile and (optionally) Gemfile.lock and installed with Bundler.
|
|
967
967
|
|
|
968
968
|
:param id: -
|
|
@@ -977,25 +977,25 @@ class RubyDependencyPackager(
|
|
|
977
977
|
check_type(argname="argument path", value=path, expected_type=type_hints["path"])
|
|
978
978
|
props = LayerProps(always_rebuild=always_rebuild)
|
|
979
979
|
|
|
980
|
-
return typing.cast(_aws_cdk_aws_lambda_ceddda9d.LayerVersion, jsii.invoke(self, "layerFromBundler", [id, path, props]))
|
|
980
|
+
return typing.cast("_aws_cdk_aws_lambda_ceddda9d.LayerVersion", jsii.invoke(self, "layerFromBundler", [id, path, props]))
|
|
981
981
|
|
|
982
982
|
@builtins.property
|
|
983
983
|
@jsii.member(jsii_name="connections")
|
|
984
|
-
def connections(self) -> _aws_cdk_aws_ec2_ceddda9d.Connections:
|
|
984
|
+
def connections(self) -> "_aws_cdk_aws_ec2_ceddda9d.Connections":
|
|
985
985
|
'''(experimental) The network connections associated with this resource.
|
|
986
986
|
|
|
987
987
|
:stability: experimental
|
|
988
988
|
'''
|
|
989
|
-
return typing.cast(_aws_cdk_aws_ec2_ceddda9d.Connections, jsii.get(self, "connections"))
|
|
989
|
+
return typing.cast("_aws_cdk_aws_ec2_ceddda9d.Connections", jsii.get(self, "connections"))
|
|
990
990
|
|
|
991
991
|
@builtins.property
|
|
992
992
|
@jsii.member(jsii_name="grantPrincipal")
|
|
993
|
-
def grant_principal(self) -> _aws_cdk_aws_iam_ceddda9d.IPrincipal:
|
|
993
|
+
def grant_principal(self) -> "_aws_cdk_aws_iam_ceddda9d.IPrincipal":
|
|
994
994
|
'''(experimental) The principal to grant permissions to.
|
|
995
995
|
|
|
996
996
|
:stability: experimental
|
|
997
997
|
'''
|
|
998
|
-
return typing.cast(_aws_cdk_aws_iam_ceddda9d.IPrincipal, jsii.get(self, "grantPrincipal"))
|
|
998
|
+
return typing.cast("_aws_cdk_aws_iam_ceddda9d.IPrincipal", jsii.get(self, "grantPrincipal"))
|
|
999
999
|
|
|
1000
1000
|
|
|
1001
1001
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cloudsnorkel.cdk-turbo-layers
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Speed-up Lambda function deployment with dependency layers built in AWS
|
|
5
5
|
Home-page: https://github.com/CloudSnorkel/cdk-turbo-layers.git
|
|
6
6
|
Author: Amir Szekely<amir@cloudsnorkel.com>
|
|
@@ -10,21 +10,20 @@ Classifier: Intended Audience :: Developers
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Classifier: Programming Language :: JavaScript
|
|
12
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
16
|
Classifier: Typing :: Typed
|
|
18
17
|
Classifier: Development Status :: 4 - Beta
|
|
19
18
|
Classifier: License :: OSI Approved
|
|
20
|
-
Requires-Python: ~=3.
|
|
19
|
+
Requires-Python: ~=3.9
|
|
21
20
|
Description-Content-Type: text/markdown
|
|
22
21
|
License-File: LICENSE
|
|
23
|
-
Requires-Dist: aws-cdk-lib<3.0.0,>=2.
|
|
24
|
-
Requires-Dist: constructs<11.0.0,>=10.0.5
|
|
25
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
26
|
-
Requires-Dist: publication>=0.0.3
|
|
27
|
-
Requires-Dist: typeguard
|
|
22
|
+
Requires-Dist: aws-cdk-lib <3.0.0,>=2.146.0
|
|
23
|
+
Requires-Dist: constructs <11.0.0,>=10.0.5
|
|
24
|
+
Requires-Dist: jsii <2.0.0,>=1.126.0
|
|
25
|
+
Requires-Dist: publication >=0.0.3
|
|
26
|
+
Requires-Dist: typeguard ==2.13.3
|
|
28
27
|
|
|
29
28
|
# Turbo Layers for CDK
|
|
30
29
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
cloudsnorkel/cdk_turbo_layers/__init__.py,sha256=sSw7jAbNssqSmYWD4P6HPLH8aialFR3aIA9HAdDKtvs,58000
|
|
2
|
+
cloudsnorkel/cdk_turbo_layers/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
cloudsnorkel/cdk_turbo_layers/_jsii/__init__.py,sha256=0vrgcrjZrE3BWIjOlJVyGAs1XouhdPXUGVIxiQqt0sE,1470
|
|
4
|
+
cloudsnorkel/cdk_turbo_layers/_jsii/cdk-turbo-layers@0.3.1.jsii.tgz,sha256=Gpe_lBGakFHUUSyl-G_y4uMiWC7gzD2JvBelHbTKHfA,363572
|
|
5
|
+
cloudsnorkel_cdk_turbo_layers-0.3.1.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
6
|
+
cloudsnorkel_cdk_turbo_layers-0.3.1.dist-info/METADATA,sha256=Ww5opwsios0k--shQLkhG6mFw4wr9oTcAPliqkMRxRA,9648
|
|
7
|
+
cloudsnorkel_cdk_turbo_layers-0.3.1.dist-info/WHEEL,sha256=WnJ8fYhv8N4SYVK2lLYNI6N0kVATA7b0piVUNvqIIJE,91
|
|
8
|
+
cloudsnorkel_cdk_turbo_layers-0.3.1.dist-info/top_level.txt,sha256=6vUrT-dcGOiRMT4Q6gEQPznoyS7nHOJ269MHpo4DEd8,13
|
|
9
|
+
cloudsnorkel_cdk_turbo_layers-0.3.1.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
cloudsnorkel/cdk_turbo_layers/__init__.py,sha256=Cmyoa4ODFDNQZZSGG49QgcF0s3t5W1LfB1TOilSdcII,57910
|
|
2
|
-
cloudsnorkel/cdk_turbo_layers/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
cloudsnorkel/cdk_turbo_layers/_jsii/__init__.py,sha256=aG2Rb0rCylO9vHKrFeqFAXQYm8T7W9Vnl30M2lS_IJc,1470
|
|
4
|
-
cloudsnorkel/cdk_turbo_layers/_jsii/cdk-turbo-layers@0.2.5.jsii.tgz,sha256=pSbTj1EJ-pDHzE4Hz7PbgTB3pJIDzw7nN58nu6gNUM0,333044
|
|
5
|
-
cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
6
|
-
cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info/METADATA,sha256=kBdeWfq1G_5xmGzh4z5f3NYDj4iCtx0wToMkHXpnxLo,9699
|
|
7
|
-
cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
8
|
-
cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info/top_level.txt,sha256=6vUrT-dcGOiRMT4Q6gEQPznoyS7nHOJ269MHpo4DEd8,13
|
|
9
|
-
cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|