aws-cdk.cx-api 2.159.1__py3-none-any.whl → 2.160.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.cx-api might be problematic. Click here for more details.
- aws_cdk/cx_api/__init__.py +79 -0
- aws_cdk/cx_api/_jsii/__init__.py +1 -1
- aws_cdk/cx_api/_jsii/cx-api@2.160.0.jsii.tgz +0 -0
- {aws_cdk.cx_api-2.159.1.dist-info → aws_cdk.cx_api-2.160.0.dist-info}/METADATA +18 -2
- aws_cdk.cx_api-2.160.0.dist-info/RECORD +10 -0
- aws_cdk/cx_api/_jsii/cx-api@2.159.1.jsii.tgz +0 -0
- aws_cdk.cx_api-2.159.1.dist-info/RECORD +0 -10
- {aws_cdk.cx_api-2.159.1.dist-info → aws_cdk.cx_api-2.160.0.dist-info}/LICENSE +0 -0
- {aws_cdk.cx_api-2.159.1.dist-info → aws_cdk.cx_api-2.160.0.dist-info}/NOTICE +0 -0
- {aws_cdk.cx_api-2.159.1.dist-info → aws_cdk.cx_api-2.160.0.dist-info}/WHEEL +0 -0
- {aws_cdk.cx_api-2.159.1.dist-info → aws_cdk.cx_api-2.160.0.dist-info}/top_level.txt +0 -0
aws_cdk/cx_api/__init__.py
CHANGED
|
@@ -410,6 +410,22 @@ When this feature flag is enabled, we will only grant the necessary permissions
|
|
|
410
410
|
}
|
|
411
411
|
}
|
|
412
412
|
```
|
|
413
|
+
|
|
414
|
+
* `@aws-cdk/aws-ec2:ec2SumTImeoutEnabled`
|
|
415
|
+
|
|
416
|
+
Currently is both initOptions.timeout and resourceSignalTimeout are both specified in the options for creating an EC2 Instance, only the value from 'resourceSignalTimeout' will be used.
|
|
417
|
+
|
|
418
|
+
When this feature flag is enabled, if both initOptions.timeout and resourceSignalTimeout are specified, the values will to be summed together.
|
|
419
|
+
|
|
420
|
+
*cdk.json*
|
|
421
|
+
|
|
422
|
+
```json
|
|
423
|
+
{
|
|
424
|
+
"context": {
|
|
425
|
+
"@aws-cdk/aws-ec2:ec2SumTImeoutEnabled": true
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
```
|
|
413
429
|
'''
|
|
414
430
|
from pkgutil import extend_path
|
|
415
431
|
__path__ = extend_path(__path__, __name__)
|
|
@@ -629,6 +645,7 @@ class CloudArtifact(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudArt
|
|
|
629
645
|
import aws_cdk.cloud_assembly_schema as cloud_assembly_schema
|
|
630
646
|
import aws_cdk.cx_api as cx_api
|
|
631
647
|
|
|
648
|
+
# assume_role_additional_options: Any
|
|
632
649
|
# cloud_assembly: cx_api.CloudAssembly
|
|
633
650
|
|
|
634
651
|
cloud_artifact = cx_api.CloudArtifact.from_manifest(cloud_assembly, "MyCloudArtifact",
|
|
@@ -651,6 +668,9 @@ class CloudArtifact(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudArt
|
|
|
651
668
|
template_file="templateFile",
|
|
652
669
|
|
|
653
670
|
# the properties below are optional
|
|
671
|
+
assume_role_additional_options={
|
|
672
|
+
"assume_role_additional_options_key": assume_role_additional_options
|
|
673
|
+
},
|
|
654
674
|
assume_role_arn="assumeRoleArn",
|
|
655
675
|
assume_role_external_id="assumeRoleExternalId",
|
|
656
676
|
bootstrap_stack_version_ssm_parameter="bootstrapStackVersionSsmParameter",
|
|
@@ -659,10 +679,14 @@ class CloudArtifact(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudArt
|
|
|
659
679
|
arn="arn",
|
|
660
680
|
|
|
661
681
|
# the properties below are optional
|
|
682
|
+
assume_role_additional_options={
|
|
683
|
+
"assume_role_additional_options_key": assume_role_additional_options
|
|
684
|
+
},
|
|
662
685
|
assume_role_external_id="assumeRoleExternalId",
|
|
663
686
|
bootstrap_stack_version_ssm_parameter="bootstrapStackVersionSsmParameter",
|
|
664
687
|
requires_bootstrap_stack_version=123
|
|
665
688
|
),
|
|
689
|
+
notification_arns=["notificationArns"],
|
|
666
690
|
parameters={
|
|
667
691
|
"parameters_key": "parameters"
|
|
668
692
|
},
|
|
@@ -1246,6 +1270,7 @@ class CloudFormationStackArtifact(
|
|
|
1246
1270
|
import aws_cdk.cloud_assembly_schema as cloud_assembly_schema
|
|
1247
1271
|
import aws_cdk.cx_api as cx_api
|
|
1248
1272
|
|
|
1273
|
+
# assume_role_additional_options: Any
|
|
1249
1274
|
# cloud_assembly: cx_api.CloudAssembly
|
|
1250
1275
|
|
|
1251
1276
|
cloud_formation_stack_artifact = cx_api.CloudFormationStackArtifact(cloud_assembly, "artifactId",
|
|
@@ -1268,6 +1293,9 @@ class CloudFormationStackArtifact(
|
|
|
1268
1293
|
template_file="templateFile",
|
|
1269
1294
|
|
|
1270
1295
|
# the properties below are optional
|
|
1296
|
+
assume_role_additional_options={
|
|
1297
|
+
"assume_role_additional_options_key": assume_role_additional_options
|
|
1298
|
+
},
|
|
1271
1299
|
assume_role_arn="assumeRoleArn",
|
|
1272
1300
|
assume_role_external_id="assumeRoleExternalId",
|
|
1273
1301
|
bootstrap_stack_version_ssm_parameter="bootstrapStackVersionSsmParameter",
|
|
@@ -1276,10 +1304,14 @@ class CloudFormationStackArtifact(
|
|
|
1276
1304
|
arn="arn",
|
|
1277
1305
|
|
|
1278
1306
|
# the properties below are optional
|
|
1307
|
+
assume_role_additional_options={
|
|
1308
|
+
"assume_role_additional_options_key": assume_role_additional_options
|
|
1309
|
+
},
|
|
1279
1310
|
assume_role_external_id="assumeRoleExternalId",
|
|
1280
1311
|
bootstrap_stack_version_ssm_parameter="bootstrapStackVersionSsmParameter",
|
|
1281
1312
|
requires_bootstrap_stack_version=123
|
|
1282
1313
|
),
|
|
1314
|
+
notification_arns=["notificationArns"],
|
|
1283
1315
|
parameters={
|
|
1284
1316
|
"parameters_key": "parameters"
|
|
1285
1317
|
},
|
|
@@ -1395,6 +1427,12 @@ class CloudFormationStackArtifact(
|
|
|
1395
1427
|
'''
|
|
1396
1428
|
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
1397
1429
|
|
|
1430
|
+
@builtins.property
|
|
1431
|
+
@jsii.member(jsii_name="notificationArns")
|
|
1432
|
+
def notification_arns(self) -> typing.List[builtins.str]:
|
|
1433
|
+
'''SNS Topics that will receive stack events.'''
|
|
1434
|
+
return typing.cast(typing.List[builtins.str], jsii.get(self, "notificationArns"))
|
|
1435
|
+
|
|
1398
1436
|
@builtins.property
|
|
1399
1437
|
@jsii.member(jsii_name="originalName")
|
|
1400
1438
|
def original_name(self) -> builtins.str:
|
|
@@ -1437,6 +1475,23 @@ class CloudFormationStackArtifact(
|
|
|
1437
1475
|
'''Full path to the template file.'''
|
|
1438
1476
|
return typing.cast(builtins.str, jsii.get(self, "templateFullPath"))
|
|
1439
1477
|
|
|
1478
|
+
@builtins.property
|
|
1479
|
+
@jsii.member(jsii_name="assumeRoleAdditionalOptions")
|
|
1480
|
+
def assume_role_additional_options(
|
|
1481
|
+
self,
|
|
1482
|
+
) -> typing.Optional[typing.Mapping[builtins.str, typing.Any]]:
|
|
1483
|
+
'''Additional options to pass to STS when assuming the role for cloudformation deployments.
|
|
1484
|
+
|
|
1485
|
+
- ``RoleArn`` should not be used. Use the dedicated ``assumeRoleArn`` property instead.
|
|
1486
|
+
- ``ExternalId`` should not be used. Use the dedicated ``assumeRoleExternalId`` instead.
|
|
1487
|
+
- ``TransitiveTagKeys`` defaults to use all keys (if any) specified in ``Tags``. E.g, all tags are transitive by default.
|
|
1488
|
+
|
|
1489
|
+
:default: - No additional options.
|
|
1490
|
+
|
|
1491
|
+
:see: https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/STS.html#assumeRole-property
|
|
1492
|
+
'''
|
|
1493
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], jsii.get(self, "assumeRoleAdditionalOptions"))
|
|
1494
|
+
|
|
1440
1495
|
@builtins.property
|
|
1441
1496
|
@jsii.member(jsii_name="assumeRoleArn")
|
|
1442
1497
|
def assume_role_arn(self) -> typing.Optional[builtins.str]:
|
|
@@ -2521,6 +2576,7 @@ class NestedCloudAssemblyArtifact(
|
|
|
2521
2576
|
import aws_cdk.cloud_assembly_schema as cloud_assembly_schema
|
|
2522
2577
|
import aws_cdk.cx_api as cx_api
|
|
2523
2578
|
|
|
2579
|
+
# assume_role_additional_options: Any
|
|
2524
2580
|
# cloud_assembly: cx_api.CloudAssembly
|
|
2525
2581
|
|
|
2526
2582
|
nested_cloud_assembly_artifact = cx_api.NestedCloudAssemblyArtifact(cloud_assembly, "name",
|
|
@@ -2543,6 +2599,9 @@ class NestedCloudAssemblyArtifact(
|
|
|
2543
2599
|
template_file="templateFile",
|
|
2544
2600
|
|
|
2545
2601
|
# the properties below are optional
|
|
2602
|
+
assume_role_additional_options={
|
|
2603
|
+
"assume_role_additional_options_key": assume_role_additional_options
|
|
2604
|
+
},
|
|
2546
2605
|
assume_role_arn="assumeRoleArn",
|
|
2547
2606
|
assume_role_external_id="assumeRoleExternalId",
|
|
2548
2607
|
bootstrap_stack_version_ssm_parameter="bootstrapStackVersionSsmParameter",
|
|
@@ -2551,10 +2610,14 @@ class NestedCloudAssemblyArtifact(
|
|
|
2551
2610
|
arn="arn",
|
|
2552
2611
|
|
|
2553
2612
|
# the properties below are optional
|
|
2613
|
+
assume_role_additional_options={
|
|
2614
|
+
"assume_role_additional_options_key": assume_role_additional_options
|
|
2615
|
+
},
|
|
2554
2616
|
assume_role_external_id="assumeRoleExternalId",
|
|
2555
2617
|
bootstrap_stack_version_ssm_parameter="bootstrapStackVersionSsmParameter",
|
|
2556
2618
|
requires_bootstrap_stack_version=123
|
|
2557
2619
|
),
|
|
2620
|
+
notification_arns=["notificationArns"],
|
|
2558
2621
|
parameters={
|
|
2559
2622
|
"parameters_key": "parameters"
|
|
2560
2623
|
},
|
|
@@ -2896,6 +2959,7 @@ class TreeCloudArtifact(
|
|
|
2896
2959
|
import aws_cdk.cloud_assembly_schema as cloud_assembly_schema
|
|
2897
2960
|
import aws_cdk.cx_api as cx_api
|
|
2898
2961
|
|
|
2962
|
+
# assume_role_additional_options: Any
|
|
2899
2963
|
# cloud_assembly: cx_api.CloudAssembly
|
|
2900
2964
|
|
|
2901
2965
|
tree_cloud_artifact = cx_api.TreeCloudArtifact(cloud_assembly, "name",
|
|
@@ -2918,6 +2982,9 @@ class TreeCloudArtifact(
|
|
|
2918
2982
|
template_file="templateFile",
|
|
2919
2983
|
|
|
2920
2984
|
# the properties below are optional
|
|
2985
|
+
assume_role_additional_options={
|
|
2986
|
+
"assume_role_additional_options_key": assume_role_additional_options
|
|
2987
|
+
},
|
|
2921
2988
|
assume_role_arn="assumeRoleArn",
|
|
2922
2989
|
assume_role_external_id="assumeRoleExternalId",
|
|
2923
2990
|
bootstrap_stack_version_ssm_parameter="bootstrapStackVersionSsmParameter",
|
|
@@ -2926,10 +2993,14 @@ class TreeCloudArtifact(
|
|
|
2926
2993
|
arn="arn",
|
|
2927
2994
|
|
|
2928
2995
|
# the properties below are optional
|
|
2996
|
+
assume_role_additional_options={
|
|
2997
|
+
"assume_role_additional_options_key": assume_role_additional_options
|
|
2998
|
+
},
|
|
2929
2999
|
assume_role_external_id="assumeRoleExternalId",
|
|
2930
3000
|
bootstrap_stack_version_ssm_parameter="bootstrapStackVersionSsmParameter",
|
|
2931
3001
|
requires_bootstrap_stack_version=123
|
|
2932
3002
|
),
|
|
3003
|
+
notification_arns=["notificationArns"],
|
|
2933
3004
|
parameters={
|
|
2934
3005
|
"parameters_key": "parameters"
|
|
2935
3006
|
},
|
|
@@ -3548,6 +3619,7 @@ class AssetManifestArtifact(
|
|
|
3548
3619
|
import aws_cdk.cloud_assembly_schema as cloud_assembly_schema
|
|
3549
3620
|
import aws_cdk.cx_api as cx_api
|
|
3550
3621
|
|
|
3622
|
+
# assume_role_additional_options: Any
|
|
3551
3623
|
# cloud_assembly: cx_api.CloudAssembly
|
|
3552
3624
|
|
|
3553
3625
|
asset_manifest_artifact = cx_api.AssetManifestArtifact(cloud_assembly, "name",
|
|
@@ -3570,6 +3642,9 @@ class AssetManifestArtifact(
|
|
|
3570
3642
|
template_file="templateFile",
|
|
3571
3643
|
|
|
3572
3644
|
# the properties below are optional
|
|
3645
|
+
assume_role_additional_options={
|
|
3646
|
+
"assume_role_additional_options_key": assume_role_additional_options
|
|
3647
|
+
},
|
|
3573
3648
|
assume_role_arn="assumeRoleArn",
|
|
3574
3649
|
assume_role_external_id="assumeRoleExternalId",
|
|
3575
3650
|
bootstrap_stack_version_ssm_parameter="bootstrapStackVersionSsmParameter",
|
|
@@ -3578,10 +3653,14 @@ class AssetManifestArtifact(
|
|
|
3578
3653
|
arn="arn",
|
|
3579
3654
|
|
|
3580
3655
|
# the properties below are optional
|
|
3656
|
+
assume_role_additional_options={
|
|
3657
|
+
"assume_role_additional_options_key": assume_role_additional_options
|
|
3658
|
+
},
|
|
3581
3659
|
assume_role_external_id="assumeRoleExternalId",
|
|
3582
3660
|
bootstrap_stack_version_ssm_parameter="bootstrapStackVersionSsmParameter",
|
|
3583
3661
|
requires_bootstrap_stack_version=123
|
|
3584
3662
|
),
|
|
3663
|
+
notification_arns=["notificationArns"],
|
|
3585
3664
|
parameters={
|
|
3586
3665
|
"parameters_key": "parameters"
|
|
3587
3666
|
},
|
aws_cdk/cx_api/_jsii/__init__.py
CHANGED
|
@@ -31,7 +31,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
|
|
|
31
31
|
import aws_cdk.cloud_assembly_schema._jsii
|
|
32
32
|
|
|
33
33
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
34
|
-
"@aws-cdk/cx-api", "2.
|
|
34
|
+
"@aws-cdk/cx-api", "2.160.0", __name__[0:-6], "cx-api@2.160.0.jsii.tgz"
|
|
35
35
|
)
|
|
36
36
|
|
|
37
37
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk.cx-api
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.160.0
|
|
4
4
|
Summary: Cloud executable protocol
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -23,7 +23,7 @@ Requires-Python: ~=3.8
|
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
License-File: LICENSE
|
|
25
25
|
License-File: NOTICE
|
|
26
|
-
Requires-Dist: aws-cdk.cloud-assembly-schema<
|
|
26
|
+
Requires-Dist: aws-cdk.cloud-assembly-schema<39.0.0,>=38.0.0
|
|
27
27
|
Requires-Dist: jsii<2.0.0,>=1.103.1
|
|
28
28
|
Requires-Dist: publication>=0.0.3
|
|
29
29
|
Requires-Dist: typeguard<5.0.0,>=2.13.3
|
|
@@ -439,3 +439,19 @@ When this feature flag is enabled, we will only grant the necessary permissions
|
|
|
439
439
|
}
|
|
440
440
|
}
|
|
441
441
|
```
|
|
442
|
+
|
|
443
|
+
* `@aws-cdk/aws-ec2:ec2SumTImeoutEnabled`
|
|
444
|
+
|
|
445
|
+
Currently is both initOptions.timeout and resourceSignalTimeout are both specified in the options for creating an EC2 Instance, only the value from 'resourceSignalTimeout' will be used.
|
|
446
|
+
|
|
447
|
+
When this feature flag is enabled, if both initOptions.timeout and resourceSignalTimeout are specified, the values will to be summed together.
|
|
448
|
+
|
|
449
|
+
*cdk.json*
|
|
450
|
+
|
|
451
|
+
```json
|
|
452
|
+
{
|
|
453
|
+
"context": {
|
|
454
|
+
"@aws-cdk/aws-ec2:ec2SumTImeoutEnabled": true
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
```
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
aws_cdk/cx_api/__init__.py,sha256=nhnpOFLKSqYBCl7cEbn6yKM7hPAtO39xtAr8Bhx_-DI,185169
|
|
2
|
+
aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
aws_cdk/cx_api/_jsii/__init__.py,sha256=zdSTmlbd4sHJIZrageEt2a0xxbm4S7l_xS9EzVgriFw,1434
|
|
4
|
+
aws_cdk/cx_api/_jsii/cx-api@2.160.0.jsii.tgz,sha256=JZfBnAo9fRTnYarEuum5zPcex78iC98jvwRm1aAOaBY,216391
|
|
5
|
+
aws_cdk.cx_api-2.160.0.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
|
|
6
|
+
aws_cdk.cx_api-2.160.0.dist-info/METADATA,sha256=clrckBIVuVF4t2ssZmBvYmWz1cNI_aMJCCtjLL7sQIc,14552
|
|
7
|
+
aws_cdk.cx_api-2.160.0.dist-info/NOTICE,sha256=7NBh7G38MUfvNz94ADBTirf0VgJwU48PUCT7jvrNxK4,1078
|
|
8
|
+
aws_cdk.cx_api-2.160.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
9
|
+
aws_cdk.cx_api-2.160.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
+
aws_cdk.cx_api-2.160.0.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
aws_cdk/cx_api/__init__.py,sha256=_7OOKh1yWUfKqShN9_IIpIilbRiV0ErxVJWyClD7Odg,181360
|
|
2
|
-
aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/cx_api/_jsii/__init__.py,sha256=uf1VURVGydctyCWOlOWDvqTijTjTEjvaP5ajYTPazZE,1434
|
|
4
|
-
aws_cdk/cx_api/_jsii/cx-api@2.159.1.jsii.tgz,sha256=jjTW1MCss1lmfCsXAKe4SPJ4zzxQQvHT8OvW1iwxUac,213865
|
|
5
|
-
aws_cdk.cx_api-2.159.1.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
|
|
6
|
-
aws_cdk.cx_api-2.159.1.dist-info/METADATA,sha256=lm6YAjFXqd15hgPN6DlDe1POYk5ocjAF-Cht7FPkGNw,14080
|
|
7
|
-
aws_cdk.cx_api-2.159.1.dist-info/NOTICE,sha256=7NBh7G38MUfvNz94ADBTirf0VgJwU48PUCT7jvrNxK4,1078
|
|
8
|
-
aws_cdk.cx_api-2.159.1.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
9
|
-
aws_cdk.cx_api-2.159.1.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
-
aws_cdk.cx_api-2.159.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|