@aws-cdk/cloud-assembly-schema 2.17.0 → 2.20.0
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.
- package/.jsii +1523 -62
- package/.jsii.tabl.json +729 -1
- package/.warnings.jsii.js +78 -16
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/integ-tests/commands/common.d.ts +178 -0
- package/lib/integ-tests/commands/common.js +22 -0
- package/lib/integ-tests/commands/deploy.d.ts +86 -0
- package/lib/integ-tests/commands/deploy.js +3 -0
- package/lib/integ-tests/commands/destroy.d.ts +18 -0
- package/lib/integ-tests/commands/destroy.js +3 -0
- package/lib/integ-tests/commands/index.d.ts +3 -0
- package/lib/integ-tests/commands/index.js +16 -0
- package/lib/integ-tests/index.d.ts +3 -0
- package/lib/integ-tests/index.js +16 -0
- package/lib/integ-tests/schema.d.ts +25 -0
- package/lib/integ-tests/schema.js +3 -0
- package/lib/integ-tests/test-case.d.ts +168 -0
- package/lib/integ-tests/test-case.js +3 -0
- package/lib/manifest.d.ts +14 -0
- package/lib/manifest.js +21 -2
- package/package.json +4 -5
- package/schema/cloud-assembly.version.json +1 -1
- package/schema/integ.schema.json +474 -0
- package/scripts/update-schema.js +2 -1
package/.jsii
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"stability": "stable"
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/aws/aws-cdk",
|
|
19
|
-
"jsiiVersion": "1.
|
|
19
|
+
"jsiiVersion": "1.55.1 (build 07d2d90)",
|
|
20
20
|
"keywords": [
|
|
21
21
|
"aws",
|
|
22
22
|
"cdk"
|
|
@@ -61,8 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"python": {
|
|
63
63
|
"classifiers": [
|
|
64
|
-
"Framework :: AWS CDK"
|
|
65
|
-
"Framework :: AWS CDK :: 1"
|
|
64
|
+
"Framework :: AWS CDK"
|
|
66
65
|
],
|
|
67
66
|
"distName": "aws-cdk.cloud-assembly-schema",
|
|
68
67
|
"module": "aws_cdk.cloud_assembly_schema"
|
|
@@ -1227,6 +1226,140 @@
|
|
|
1227
1226
|
],
|
|
1228
1227
|
"symbolId": "lib/cloud-assembly/artifact-schema:BootstrapRole"
|
|
1229
1228
|
},
|
|
1229
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommand": {
|
|
1230
|
+
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
1231
|
+
"datatype": true,
|
|
1232
|
+
"docs": {
|
|
1233
|
+
"stability": "stable",
|
|
1234
|
+
"summary": "Represents a cdk command i.e. `synth`, `deploy`, & `destroy`.",
|
|
1235
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst cdkCommand: cloud_assembly_schema.CdkCommand = {\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n};",
|
|
1236
|
+
"custom": {
|
|
1237
|
+
"exampleMetadata": "fixture=_generated"
|
|
1238
|
+
}
|
|
1239
|
+
},
|
|
1240
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.CdkCommand",
|
|
1241
|
+
"kind": "interface",
|
|
1242
|
+
"locationInModule": {
|
|
1243
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
1244
|
+
"line": 115
|
|
1245
|
+
},
|
|
1246
|
+
"name": "CdkCommand",
|
|
1247
|
+
"properties": [
|
|
1248
|
+
{
|
|
1249
|
+
"abstract": true,
|
|
1250
|
+
"docs": {
|
|
1251
|
+
"default": "true",
|
|
1252
|
+
"stability": "stable",
|
|
1253
|
+
"summary": "Whether or not to run this command as part of the workflow This can be used if you only want to test some of the workflow for example enable `synth` and disable `deploy` & `destroy` in order to limit the test to synthesis."
|
|
1254
|
+
},
|
|
1255
|
+
"immutable": true,
|
|
1256
|
+
"locationInModule": {
|
|
1257
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
1258
|
+
"line": 124
|
|
1259
|
+
},
|
|
1260
|
+
"name": "enabled",
|
|
1261
|
+
"optional": true,
|
|
1262
|
+
"type": {
|
|
1263
|
+
"primitive": "boolean"
|
|
1264
|
+
}
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
"abstract": true,
|
|
1268
|
+
"docs": {
|
|
1269
|
+
"default": "- do not validate message",
|
|
1270
|
+
"stability": "stable",
|
|
1271
|
+
"summary": "This can be used in combination with `expectedError` to validate that a specific message is returned."
|
|
1272
|
+
},
|
|
1273
|
+
"immutable": true,
|
|
1274
|
+
"locationInModule": {
|
|
1275
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
1276
|
+
"line": 139
|
|
1277
|
+
},
|
|
1278
|
+
"name": "expectedMessage",
|
|
1279
|
+
"optional": true,
|
|
1280
|
+
"type": {
|
|
1281
|
+
"primitive": "string"
|
|
1282
|
+
}
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
"abstract": true,
|
|
1286
|
+
"docs": {
|
|
1287
|
+
"default": "false",
|
|
1288
|
+
"stability": "stable",
|
|
1289
|
+
"summary": "If the runner should expect this command to fail."
|
|
1290
|
+
},
|
|
1291
|
+
"immutable": true,
|
|
1292
|
+
"locationInModule": {
|
|
1293
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
1294
|
+
"line": 131
|
|
1295
|
+
},
|
|
1296
|
+
"name": "expectError",
|
|
1297
|
+
"optional": true,
|
|
1298
|
+
"type": {
|
|
1299
|
+
"primitive": "boolean"
|
|
1300
|
+
}
|
|
1301
|
+
}
|
|
1302
|
+
],
|
|
1303
|
+
"symbolId": "lib/integ-tests/test-case:CdkCommand"
|
|
1304
|
+
},
|
|
1305
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands": {
|
|
1306
|
+
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
1307
|
+
"datatype": true,
|
|
1308
|
+
"docs": {
|
|
1309
|
+
"stability": "stable",
|
|
1310
|
+
"summary": "Options for specific cdk commands that are run as part of the integration test workflow.",
|
|
1311
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst cdkCommands: cloud_assembly_schema.CdkCommands = {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n};",
|
|
1312
|
+
"custom": {
|
|
1313
|
+
"exampleMetadata": "fixture=_generated"
|
|
1314
|
+
}
|
|
1315
|
+
},
|
|
1316
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
1317
|
+
"kind": "interface",
|
|
1318
|
+
"locationInModule": {
|
|
1319
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
1320
|
+
"line": 172
|
|
1321
|
+
},
|
|
1322
|
+
"name": "CdkCommands",
|
|
1323
|
+
"properties": [
|
|
1324
|
+
{
|
|
1325
|
+
"abstract": true,
|
|
1326
|
+
"docs": {
|
|
1327
|
+
"default": "- default deploy options",
|
|
1328
|
+
"stability": "stable",
|
|
1329
|
+
"summary": "Options to for the cdk deploy command."
|
|
1330
|
+
},
|
|
1331
|
+
"immutable": true,
|
|
1332
|
+
"locationInModule": {
|
|
1333
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
1334
|
+
"line": 178
|
|
1335
|
+
},
|
|
1336
|
+
"name": "deploy",
|
|
1337
|
+
"optional": true,
|
|
1338
|
+
"type": {
|
|
1339
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DeployCommand"
|
|
1340
|
+
}
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"abstract": true,
|
|
1344
|
+
"docs": {
|
|
1345
|
+
"default": "- default destroy options",
|
|
1346
|
+
"stability": "stable",
|
|
1347
|
+
"summary": "Options to for the cdk destroy command."
|
|
1348
|
+
},
|
|
1349
|
+
"immutable": true,
|
|
1350
|
+
"locationInModule": {
|
|
1351
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
1352
|
+
"line": 185
|
|
1353
|
+
},
|
|
1354
|
+
"name": "destroy",
|
|
1355
|
+
"optional": true,
|
|
1356
|
+
"type": {
|
|
1357
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DestroyCommand"
|
|
1358
|
+
}
|
|
1359
|
+
}
|
|
1360
|
+
],
|
|
1361
|
+
"symbolId": "lib/integ-tests/test-case:CdkCommands"
|
|
1362
|
+
},
|
|
1230
1363
|
"@aws-cdk/cloud-assembly-schema.ContainerImageAssetMetadataEntry": {
|
|
1231
1364
|
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
1232
1365
|
"datatype": true,
|
|
@@ -1512,34 +1645,908 @@
|
|
|
1512
1645
|
{
|
|
1513
1646
|
"docs": {
|
|
1514
1647
|
"stability": "stable",
|
|
1515
|
-
"summary": "Load balancer listener provider."
|
|
1648
|
+
"summary": "Load balancer listener provider."
|
|
1649
|
+
},
|
|
1650
|
+
"name": "LOAD_BALANCER_LISTENER_PROVIDER"
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
"docs": {
|
|
1654
|
+
"stability": "stable",
|
|
1655
|
+
"summary": "Security group provider."
|
|
1656
|
+
},
|
|
1657
|
+
"name": "SECURITY_GROUP_PROVIDER"
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
"docs": {
|
|
1661
|
+
"stability": "stable",
|
|
1662
|
+
"summary": "KMS Key Provider."
|
|
1663
|
+
},
|
|
1664
|
+
"name": "KEY_PROVIDER"
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
"docs": {
|
|
1668
|
+
"stability": "stable",
|
|
1669
|
+
"summary": "A plugin provider (the actual plugin name will be in the properties)."
|
|
1670
|
+
},
|
|
1671
|
+
"name": "PLUGIN"
|
|
1672
|
+
}
|
|
1673
|
+
],
|
|
1674
|
+
"name": "ContextProvider",
|
|
1675
|
+
"symbolId": "lib/cloud-assembly/context-queries:ContextProvider"
|
|
1676
|
+
},
|
|
1677
|
+
"@aws-cdk/cloud-assembly-schema.DefaultCdkOptions": {
|
|
1678
|
+
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
1679
|
+
"datatype": true,
|
|
1680
|
+
"docs": {
|
|
1681
|
+
"stability": "stable",
|
|
1682
|
+
"summary": "Default CDK CLI options that apply to all commands.",
|
|
1683
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst defaultCdkOptions: cloud_assembly_schema.DefaultCdkOptions = {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n};",
|
|
1684
|
+
"custom": {
|
|
1685
|
+
"exampleMetadata": "fixture=_generated"
|
|
1686
|
+
}
|
|
1687
|
+
},
|
|
1688
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DefaultCdkOptions",
|
|
1689
|
+
"kind": "interface",
|
|
1690
|
+
"locationInModule": {
|
|
1691
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1692
|
+
"line": 24
|
|
1693
|
+
},
|
|
1694
|
+
"name": "DefaultCdkOptions",
|
|
1695
|
+
"properties": [
|
|
1696
|
+
{
|
|
1697
|
+
"abstract": true,
|
|
1698
|
+
"docs": {
|
|
1699
|
+
"default": "- false",
|
|
1700
|
+
"remarks": "Requried if `stacks` is not set",
|
|
1701
|
+
"stability": "stable",
|
|
1702
|
+
"summary": "Deploy all stacks."
|
|
1703
|
+
},
|
|
1704
|
+
"immutable": true,
|
|
1705
|
+
"locationInModule": {
|
|
1706
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1707
|
+
"line": 41
|
|
1708
|
+
},
|
|
1709
|
+
"name": "all",
|
|
1710
|
+
"optional": true,
|
|
1711
|
+
"type": {
|
|
1712
|
+
"primitive": "boolean"
|
|
1713
|
+
}
|
|
1714
|
+
},
|
|
1715
|
+
{
|
|
1716
|
+
"abstract": true,
|
|
1717
|
+
"docs": {
|
|
1718
|
+
"default": "- read from cdk.json",
|
|
1719
|
+
"stability": "stable",
|
|
1720
|
+
"summary": "command-line for executing your app or a cloud assembly directory e.g. \"node bin/my-app.js\" or \"cdk.out\"."
|
|
1721
|
+
},
|
|
1722
|
+
"immutable": true,
|
|
1723
|
+
"locationInModule": {
|
|
1724
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1725
|
+
"line": 51
|
|
1726
|
+
},
|
|
1727
|
+
"name": "app",
|
|
1728
|
+
"optional": true,
|
|
1729
|
+
"type": {
|
|
1730
|
+
"primitive": "string"
|
|
1731
|
+
}
|
|
1732
|
+
},
|
|
1733
|
+
{
|
|
1734
|
+
"abstract": true,
|
|
1735
|
+
"docs": {
|
|
1736
|
+
"default": "true",
|
|
1737
|
+
"stability": "stable",
|
|
1738
|
+
"summary": "Include \"aws:asset:*\" CloudFormation metadata for resources that use assets."
|
|
1739
|
+
},
|
|
1740
|
+
"immutable": true,
|
|
1741
|
+
"locationInModule": {
|
|
1742
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1743
|
+
"line": 171
|
|
1744
|
+
},
|
|
1745
|
+
"name": "assetMetadata",
|
|
1746
|
+
"optional": true,
|
|
1747
|
+
"type": {
|
|
1748
|
+
"primitive": "boolean"
|
|
1749
|
+
}
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
"abstract": true,
|
|
1753
|
+
"docs": {
|
|
1754
|
+
"default": "- read from AWS_CA_BUNDLE environment variable",
|
|
1755
|
+
"stability": "stable",
|
|
1756
|
+
"summary": "Path to CA certificate to use when validating HTTPS requests."
|
|
1757
|
+
},
|
|
1758
|
+
"immutable": true,
|
|
1759
|
+
"locationInModule": {
|
|
1760
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1761
|
+
"line": 143
|
|
1762
|
+
},
|
|
1763
|
+
"name": "caBundlePath",
|
|
1764
|
+
"optional": true,
|
|
1765
|
+
"type": {
|
|
1766
|
+
"primitive": "string"
|
|
1767
|
+
}
|
|
1768
|
+
},
|
|
1769
|
+
{
|
|
1770
|
+
"abstract": true,
|
|
1771
|
+
"docs": {
|
|
1772
|
+
"default": "true",
|
|
1773
|
+
"stability": "stable",
|
|
1774
|
+
"summary": "Show colors and other style from console output."
|
|
1775
|
+
},
|
|
1776
|
+
"immutable": true,
|
|
1777
|
+
"locationInModule": {
|
|
1778
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1779
|
+
"line": 201
|
|
1780
|
+
},
|
|
1781
|
+
"name": "color",
|
|
1782
|
+
"optional": true,
|
|
1783
|
+
"type": {
|
|
1784
|
+
"primitive": "boolean"
|
|
1785
|
+
}
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"abstract": true,
|
|
1789
|
+
"docs": {
|
|
1790
|
+
"default": "- no additional context",
|
|
1791
|
+
"stability": "stable",
|
|
1792
|
+
"summary": "Additional context."
|
|
1793
|
+
},
|
|
1794
|
+
"immutable": true,
|
|
1795
|
+
"locationInModule": {
|
|
1796
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1797
|
+
"line": 66
|
|
1798
|
+
},
|
|
1799
|
+
"name": "context",
|
|
1800
|
+
"optional": true,
|
|
1801
|
+
"type": {
|
|
1802
|
+
"collection": {
|
|
1803
|
+
"elementtype": {
|
|
1804
|
+
"primitive": "string"
|
|
1805
|
+
},
|
|
1806
|
+
"kind": "map"
|
|
1807
|
+
}
|
|
1808
|
+
}
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
"abstract": true,
|
|
1812
|
+
"docs": {
|
|
1813
|
+
"default": "false",
|
|
1814
|
+
"stability": "stable",
|
|
1815
|
+
"summary": "enable emission of additional debugging information, such as creation stack traces of tokens."
|
|
1816
|
+
},
|
|
1817
|
+
"immutable": true,
|
|
1818
|
+
"locationInModule": {
|
|
1819
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1820
|
+
"line": 120
|
|
1821
|
+
},
|
|
1822
|
+
"name": "debug",
|
|
1823
|
+
"optional": true,
|
|
1824
|
+
"type": {
|
|
1825
|
+
"primitive": "boolean"
|
|
1826
|
+
}
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"abstract": true,
|
|
1830
|
+
"docs": {
|
|
1831
|
+
"default": "- guess EC2 instance status",
|
|
1832
|
+
"stability": "stable",
|
|
1833
|
+
"summary": "Force trying to fetch EC2 instance credentials."
|
|
1834
|
+
},
|
|
1835
|
+
"immutable": true,
|
|
1836
|
+
"locationInModule": {
|
|
1837
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1838
|
+
"line": 150
|
|
1839
|
+
},
|
|
1840
|
+
"name": "ec2Creds",
|
|
1841
|
+
"optional": true,
|
|
1842
|
+
"type": {
|
|
1843
|
+
"primitive": "boolean"
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
"abstract": true,
|
|
1848
|
+
"docs": {
|
|
1849
|
+
"default": "false",
|
|
1850
|
+
"stability": "stable",
|
|
1851
|
+
"summary": "Ignores synthesis errors, which will likely produce an invalid output."
|
|
1852
|
+
},
|
|
1853
|
+
"immutable": true,
|
|
1854
|
+
"locationInModule": {
|
|
1855
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1856
|
+
"line": 97
|
|
1857
|
+
},
|
|
1858
|
+
"name": "ignoreErrors",
|
|
1859
|
+
"optional": true,
|
|
1860
|
+
"type": {
|
|
1861
|
+
"primitive": "boolean"
|
|
1862
|
+
}
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"abstract": true,
|
|
1866
|
+
"docs": {
|
|
1867
|
+
"default": "false",
|
|
1868
|
+
"stability": "stable",
|
|
1869
|
+
"summary": "Use JSON output instead of YAML when templates are printed to STDOUT."
|
|
1870
|
+
},
|
|
1871
|
+
"immutable": true,
|
|
1872
|
+
"locationInModule": {
|
|
1873
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1874
|
+
"line": 105
|
|
1875
|
+
},
|
|
1876
|
+
"name": "json",
|
|
1877
|
+
"optional": true,
|
|
1878
|
+
"type": {
|
|
1879
|
+
"primitive": "boolean"
|
|
1880
|
+
}
|
|
1881
|
+
},
|
|
1882
|
+
{
|
|
1883
|
+
"abstract": true,
|
|
1884
|
+
"docs": {
|
|
1885
|
+
"default": "true",
|
|
1886
|
+
"remarks": "Synthesis fails if this is disabled and context lookups need\nto be performed",
|
|
1887
|
+
"stability": "stable",
|
|
1888
|
+
"summary": "Perform context lookups."
|
|
1889
|
+
},
|
|
1890
|
+
"immutable": true,
|
|
1891
|
+
"locationInModule": {
|
|
1892
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1893
|
+
"line": 90
|
|
1894
|
+
},
|
|
1895
|
+
"name": "lookups",
|
|
1896
|
+
"optional": true,
|
|
1897
|
+
"type": {
|
|
1898
|
+
"primitive": "boolean"
|
|
1899
|
+
}
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
"abstract": true,
|
|
1903
|
+
"docs": {
|
|
1904
|
+
"default": "true",
|
|
1905
|
+
"stability": "stable",
|
|
1906
|
+
"summary": "Show relevant notices."
|
|
1907
|
+
},
|
|
1908
|
+
"immutable": true,
|
|
1909
|
+
"locationInModule": {
|
|
1910
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1911
|
+
"line": 194
|
|
1912
|
+
},
|
|
1913
|
+
"name": "notices",
|
|
1914
|
+
"optional": true,
|
|
1915
|
+
"type": {
|
|
1916
|
+
"primitive": "boolean"
|
|
1917
|
+
}
|
|
1918
|
+
},
|
|
1919
|
+
{
|
|
1920
|
+
"abstract": true,
|
|
1921
|
+
"docs": {
|
|
1922
|
+
"default": "cdk.out",
|
|
1923
|
+
"stability": "stable",
|
|
1924
|
+
"summary": "Emits the synthesized cloud assembly into a directory."
|
|
1925
|
+
},
|
|
1926
|
+
"immutable": true,
|
|
1927
|
+
"locationInModule": {
|
|
1928
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1929
|
+
"line": 187
|
|
1930
|
+
},
|
|
1931
|
+
"name": "output",
|
|
1932
|
+
"optional": true,
|
|
1933
|
+
"type": {
|
|
1934
|
+
"primitive": "string"
|
|
1935
|
+
}
|
|
1936
|
+
},
|
|
1937
|
+
{
|
|
1938
|
+
"abstract": true,
|
|
1939
|
+
"docs": {
|
|
1940
|
+
"default": "true",
|
|
1941
|
+
"stability": "stable",
|
|
1942
|
+
"summary": "Include \"aws:cdk:path\" CloudFormation metadata for each resource."
|
|
1943
|
+
},
|
|
1944
|
+
"immutable": true,
|
|
1945
|
+
"locationInModule": {
|
|
1946
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1947
|
+
"line": 164
|
|
1948
|
+
},
|
|
1949
|
+
"name": "pathMetadata",
|
|
1950
|
+
"optional": true,
|
|
1951
|
+
"type": {
|
|
1952
|
+
"primitive": "boolean"
|
|
1953
|
+
}
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
"abstract": true,
|
|
1957
|
+
"docs": {
|
|
1958
|
+
"default": "- no profile is used",
|
|
1959
|
+
"stability": "stable",
|
|
1960
|
+
"summary": "Use the indicated AWS profile as the default environment."
|
|
1961
|
+
},
|
|
1962
|
+
"immutable": true,
|
|
1963
|
+
"locationInModule": {
|
|
1964
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1965
|
+
"line": 127
|
|
1966
|
+
},
|
|
1967
|
+
"name": "profile",
|
|
1968
|
+
"optional": true,
|
|
1969
|
+
"type": {
|
|
1970
|
+
"primitive": "string"
|
|
1971
|
+
}
|
|
1972
|
+
},
|
|
1973
|
+
{
|
|
1974
|
+
"abstract": true,
|
|
1975
|
+
"docs": {
|
|
1976
|
+
"default": "- no proxy",
|
|
1977
|
+
"remarks": "Will read from\nHTTPS_PROXY environment if specified",
|
|
1978
|
+
"stability": "stable",
|
|
1979
|
+
"summary": "Use the indicated proxy."
|
|
1980
|
+
},
|
|
1981
|
+
"immutable": true,
|
|
1982
|
+
"locationInModule": {
|
|
1983
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
1984
|
+
"line": 135
|
|
1985
|
+
},
|
|
1986
|
+
"name": "proxy",
|
|
1987
|
+
"optional": true,
|
|
1988
|
+
"type": {
|
|
1989
|
+
"primitive": "string"
|
|
1990
|
+
}
|
|
1991
|
+
},
|
|
1992
|
+
{
|
|
1993
|
+
"abstract": true,
|
|
1994
|
+
"docs": {
|
|
1995
|
+
"default": "- use the bootstrap cfn-exec role",
|
|
1996
|
+
"stability": "stable",
|
|
1997
|
+
"summary": "Role to pass to CloudFormation for deployment."
|
|
1998
|
+
},
|
|
1999
|
+
"immutable": true,
|
|
2000
|
+
"locationInModule": {
|
|
2001
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
2002
|
+
"line": 59
|
|
2003
|
+
},
|
|
2004
|
+
"name": "roleArn",
|
|
2005
|
+
"optional": true,
|
|
2006
|
+
"type": {
|
|
2007
|
+
"primitive": "string"
|
|
2008
|
+
}
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
"abstract": true,
|
|
2012
|
+
"docs": {
|
|
2013
|
+
"default": "- []",
|
|
2014
|
+
"remarks": "Requried if `all` is not set",
|
|
2015
|
+
"stability": "stable",
|
|
2016
|
+
"summary": "List of stacks to deploy."
|
|
2017
|
+
},
|
|
2018
|
+
"immutable": true,
|
|
2019
|
+
"locationInModule": {
|
|
2020
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
2021
|
+
"line": 32
|
|
2022
|
+
},
|
|
2023
|
+
"name": "stacks",
|
|
2024
|
+
"optional": true,
|
|
2025
|
+
"type": {
|
|
2026
|
+
"collection": {
|
|
2027
|
+
"elementtype": {
|
|
2028
|
+
"primitive": "string"
|
|
2029
|
+
},
|
|
2030
|
+
"kind": "array"
|
|
2031
|
+
}
|
|
2032
|
+
}
|
|
2033
|
+
},
|
|
2034
|
+
{
|
|
2035
|
+
"abstract": true,
|
|
2036
|
+
"docs": {
|
|
2037
|
+
"default": "false",
|
|
2038
|
+
"remarks": "Needed for local debugging the source files with SAM CLI",
|
|
2039
|
+
"stability": "stable",
|
|
2040
|
+
"summary": "Copy assets to the output directory."
|
|
2041
|
+
},
|
|
2042
|
+
"immutable": true,
|
|
2043
|
+
"locationInModule": {
|
|
2044
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
2045
|
+
"line": 180
|
|
2046
|
+
},
|
|
2047
|
+
"name": "staging",
|
|
2048
|
+
"optional": true,
|
|
2049
|
+
"type": {
|
|
2050
|
+
"primitive": "boolean"
|
|
2051
|
+
}
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
"abstract": true,
|
|
2055
|
+
"docs": {
|
|
2056
|
+
"default": "false",
|
|
2057
|
+
"stability": "stable",
|
|
2058
|
+
"summary": "Do not construct stacks with warnings."
|
|
2059
|
+
},
|
|
2060
|
+
"immutable": true,
|
|
2061
|
+
"locationInModule": {
|
|
2062
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
2063
|
+
"line": 80
|
|
2064
|
+
},
|
|
2065
|
+
"name": "strict",
|
|
2066
|
+
"optional": true,
|
|
2067
|
+
"type": {
|
|
2068
|
+
"primitive": "boolean"
|
|
2069
|
+
}
|
|
2070
|
+
},
|
|
2071
|
+
{
|
|
2072
|
+
"abstract": true,
|
|
2073
|
+
"docs": {
|
|
2074
|
+
"default": "false",
|
|
2075
|
+
"stability": "stable",
|
|
2076
|
+
"summary": "Print trace for stack warnings."
|
|
2077
|
+
},
|
|
2078
|
+
"immutable": true,
|
|
2079
|
+
"locationInModule": {
|
|
2080
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
2081
|
+
"line": 73
|
|
2082
|
+
},
|
|
2083
|
+
"name": "trace",
|
|
2084
|
+
"optional": true,
|
|
2085
|
+
"type": {
|
|
2086
|
+
"primitive": "boolean"
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
{
|
|
2090
|
+
"abstract": true,
|
|
2091
|
+
"docs": {
|
|
2092
|
+
"default": "false",
|
|
2093
|
+
"stability": "stable",
|
|
2094
|
+
"summary": "show debug logs."
|
|
2095
|
+
},
|
|
2096
|
+
"immutable": true,
|
|
2097
|
+
"locationInModule": {
|
|
2098
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
2099
|
+
"line": 112
|
|
2100
|
+
},
|
|
2101
|
+
"name": "verbose",
|
|
2102
|
+
"optional": true,
|
|
2103
|
+
"type": {
|
|
2104
|
+
"primitive": "boolean"
|
|
2105
|
+
}
|
|
2106
|
+
},
|
|
2107
|
+
{
|
|
2108
|
+
"abstract": true,
|
|
2109
|
+
"docs": {
|
|
2110
|
+
"default": "true",
|
|
2111
|
+
"stability": "stable",
|
|
2112
|
+
"summary": "Include \"AWS::CDK::Metadata\" resource in synthesized templates."
|
|
2113
|
+
},
|
|
2114
|
+
"immutable": true,
|
|
2115
|
+
"locationInModule": {
|
|
2116
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
2117
|
+
"line": 157
|
|
2118
|
+
},
|
|
2119
|
+
"name": "versionReporting",
|
|
2120
|
+
"optional": true,
|
|
2121
|
+
"type": {
|
|
2122
|
+
"primitive": "boolean"
|
|
2123
|
+
}
|
|
2124
|
+
}
|
|
2125
|
+
],
|
|
2126
|
+
"symbolId": "lib/integ-tests/commands/common:DefaultCdkOptions"
|
|
2127
|
+
},
|
|
2128
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand": {
|
|
2129
|
+
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
2130
|
+
"datatype": true,
|
|
2131
|
+
"docs": {
|
|
2132
|
+
"stability": "stable",
|
|
2133
|
+
"summary": "Represents a cdk deploy command.",
|
|
2134
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst deployCommand: cloud_assembly_schema.DeployCommand = {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n};",
|
|
2135
|
+
"custom": {
|
|
2136
|
+
"exampleMetadata": "fixture=_generated"
|
|
2137
|
+
}
|
|
2138
|
+
},
|
|
2139
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
2140
|
+
"interfaces": [
|
|
2141
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommand"
|
|
2142
|
+
],
|
|
2143
|
+
"kind": "interface",
|
|
2144
|
+
"locationInModule": {
|
|
2145
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
2146
|
+
"line": 145
|
|
2147
|
+
},
|
|
2148
|
+
"name": "DeployCommand",
|
|
2149
|
+
"properties": [
|
|
2150
|
+
{
|
|
2151
|
+
"abstract": true,
|
|
2152
|
+
"docs": {
|
|
2153
|
+
"default": "- only default args are used",
|
|
2154
|
+
"stability": "stable",
|
|
2155
|
+
"summary": "Additional arguments to pass to the command This can be used to test specific CLI functionality."
|
|
2156
|
+
},
|
|
2157
|
+
"immutable": true,
|
|
2158
|
+
"locationInModule": {
|
|
2159
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
2160
|
+
"line": 152
|
|
2161
|
+
},
|
|
2162
|
+
"name": "args",
|
|
2163
|
+
"optional": true,
|
|
2164
|
+
"type": {
|
|
2165
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DeployOptions"
|
|
2166
|
+
}
|
|
2167
|
+
}
|
|
2168
|
+
],
|
|
2169
|
+
"symbolId": "lib/integ-tests/test-case:DeployCommand"
|
|
2170
|
+
},
|
|
2171
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions": {
|
|
2172
|
+
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
2173
|
+
"datatype": true,
|
|
2174
|
+
"docs": {
|
|
2175
|
+
"stability": "stable",
|
|
2176
|
+
"summary": "Options to use with cdk deploy.",
|
|
2177
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst deployOptions: cloud_assembly_schema.DeployOptions = {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n};",
|
|
2178
|
+
"custom": {
|
|
2179
|
+
"exampleMetadata": "fixture=_generated"
|
|
2180
|
+
}
|
|
2181
|
+
},
|
|
2182
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
2183
|
+
"interfaces": [
|
|
2184
|
+
"@aws-cdk/cloud-assembly-schema.DefaultCdkOptions"
|
|
2185
|
+
],
|
|
2186
|
+
"kind": "interface",
|
|
2187
|
+
"locationInModule": {
|
|
2188
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2189
|
+
"line": 6
|
|
2190
|
+
},
|
|
2191
|
+
"name": "DeployOptions",
|
|
2192
|
+
"properties": [
|
|
2193
|
+
{
|
|
2194
|
+
"abstract": true,
|
|
2195
|
+
"docs": {
|
|
2196
|
+
"default": "- auto generate a name",
|
|
2197
|
+
"remarks": "If not provided, a name will be generated automatically.",
|
|
2198
|
+
"stability": "stable",
|
|
2199
|
+
"summary": "Optional name to use for the CloudFormation change set."
|
|
2200
|
+
},
|
|
2201
|
+
"immutable": true,
|
|
2202
|
+
"locationInModule": {
|
|
2203
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2204
|
+
"line": 34
|
|
2205
|
+
},
|
|
2206
|
+
"name": "changeSetName",
|
|
2207
|
+
"optional": true,
|
|
2208
|
+
"type": {
|
|
2209
|
+
"primitive": "string"
|
|
2210
|
+
}
|
|
2211
|
+
},
|
|
2212
|
+
{
|
|
2213
|
+
"abstract": true,
|
|
2214
|
+
"docs": {
|
|
2215
|
+
"default": "false",
|
|
2216
|
+
"stability": "stable",
|
|
2217
|
+
"summary": "Whether we are on a CI system."
|
|
2218
|
+
},
|
|
2219
|
+
"immutable": true,
|
|
2220
|
+
"locationInModule": {
|
|
2221
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2222
|
+
"line": 96
|
|
2223
|
+
},
|
|
2224
|
+
"name": "ci",
|
|
2225
|
+
"optional": true,
|
|
2226
|
+
"type": {
|
|
2227
|
+
"primitive": "boolean"
|
|
2228
|
+
}
|
|
2229
|
+
},
|
|
2230
|
+
{
|
|
2231
|
+
"abstract": true,
|
|
2232
|
+
"docs": {
|
|
2233
|
+
"default": "false",
|
|
2234
|
+
"stability": "stable",
|
|
2235
|
+
"summary": "Only perform action on the given stack."
|
|
2236
|
+
},
|
|
2237
|
+
"immutable": true,
|
|
2238
|
+
"locationInModule": {
|
|
2239
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2240
|
+
"line": 12
|
|
2241
|
+
},
|
|
2242
|
+
"name": "exclusively",
|
|
2243
|
+
"optional": true,
|
|
2244
|
+
"type": {
|
|
2245
|
+
"primitive": "boolean"
|
|
2246
|
+
}
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
"abstract": true,
|
|
2250
|
+
"docs": {
|
|
2251
|
+
"default": "true",
|
|
2252
|
+
"stability": "stable",
|
|
2253
|
+
"summary": "Whether to execute the ChangeSet Not providing `execute` parameter will result in execution of ChangeSet."
|
|
2254
|
+
},
|
|
2255
|
+
"immutable": true,
|
|
2256
|
+
"locationInModule": {
|
|
2257
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2258
|
+
"line": 68
|
|
2259
|
+
},
|
|
2260
|
+
"name": "execute",
|
|
2261
|
+
"optional": true,
|
|
2262
|
+
"type": {
|
|
2263
|
+
"primitive": "boolean"
|
|
2264
|
+
}
|
|
2265
|
+
},
|
|
2266
|
+
{
|
|
2267
|
+
"abstract": true,
|
|
2268
|
+
"docs": {
|
|
2269
|
+
"default": "false",
|
|
2270
|
+
"stability": "stable",
|
|
2271
|
+
"summary": "Always deploy, even if templates are identical."
|
|
2272
|
+
},
|
|
2273
|
+
"immutable": true,
|
|
2274
|
+
"locationInModule": {
|
|
2275
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2276
|
+
"line": 40
|
|
2277
|
+
},
|
|
2278
|
+
"name": "force",
|
|
2279
|
+
"optional": true,
|
|
2280
|
+
"type": {
|
|
2281
|
+
"primitive": "boolean"
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
"abstract": true,
|
|
2286
|
+
"docs": {
|
|
2287
|
+
"default": "- no notifications",
|
|
2288
|
+
"stability": "stable",
|
|
2289
|
+
"summary": "ARNs of SNS topics that CloudFormation will notify with stack related events."
|
|
2290
|
+
},
|
|
2291
|
+
"immutable": true,
|
|
2292
|
+
"locationInModule": {
|
|
2293
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2294
|
+
"line": 54
|
|
2295
|
+
},
|
|
2296
|
+
"name": "notificationArns",
|
|
2297
|
+
"optional": true,
|
|
2298
|
+
"type": {
|
|
2299
|
+
"collection": {
|
|
2300
|
+
"elementtype": {
|
|
2301
|
+
"primitive": "string"
|
|
2302
|
+
},
|
|
2303
|
+
"kind": "array"
|
|
2304
|
+
}
|
|
2305
|
+
}
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
"abstract": true,
|
|
2309
|
+
"docs": {
|
|
2310
|
+
"default": "- Outputs are not written to any file",
|
|
2311
|
+
"stability": "stable",
|
|
2312
|
+
"summary": "Path to file where stack outputs will be written after a successful deploy as JSON."
|
|
2313
|
+
},
|
|
2314
|
+
"immutable": true,
|
|
2315
|
+
"locationInModule": {
|
|
2316
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2317
|
+
"line": 89
|
|
2318
|
+
},
|
|
2319
|
+
"name": "outputsFile",
|
|
2320
|
+
"optional": true,
|
|
2321
|
+
"type": {
|
|
2322
|
+
"primitive": "string"
|
|
2323
|
+
}
|
|
2324
|
+
},
|
|
2325
|
+
{
|
|
2326
|
+
"abstract": true,
|
|
2327
|
+
"docs": {
|
|
2328
|
+
"default": "{}",
|
|
2329
|
+
"stability": "stable",
|
|
2330
|
+
"summary": "Additional parameters for CloudFormation at deploy time."
|
|
2331
|
+
},
|
|
2332
|
+
"immutable": true,
|
|
2333
|
+
"locationInModule": {
|
|
2334
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2335
|
+
"line": 74
|
|
2336
|
+
},
|
|
2337
|
+
"name": "parameters",
|
|
2338
|
+
"optional": true,
|
|
2339
|
+
"type": {
|
|
2340
|
+
"collection": {
|
|
2341
|
+
"elementtype": {
|
|
2342
|
+
"primitive": "string"
|
|
2343
|
+
},
|
|
2344
|
+
"kind": "map"
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2347
|
+
},
|
|
2348
|
+
{
|
|
2349
|
+
"abstract": true,
|
|
2350
|
+
"docs": {
|
|
2351
|
+
"default": "RequireApproval.Never",
|
|
2352
|
+
"stability": "stable",
|
|
2353
|
+
"summary": "What kind of security changes require approval."
|
|
2354
|
+
},
|
|
2355
|
+
"immutable": true,
|
|
2356
|
+
"locationInModule": {
|
|
2357
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2358
|
+
"line": 61
|
|
2359
|
+
},
|
|
2360
|
+
"name": "requireApproval",
|
|
2361
|
+
"optional": true,
|
|
2362
|
+
"type": {
|
|
2363
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.RequireApproval"
|
|
2364
|
+
}
|
|
2365
|
+
},
|
|
2366
|
+
{
|
|
2367
|
+
"abstract": true,
|
|
2368
|
+
"docs": {
|
|
2369
|
+
"default": "- do not reuse assets",
|
|
2370
|
+
"stability": "stable",
|
|
2371
|
+
"summary": "Reuse the assets with the given asset IDs."
|
|
2372
|
+
},
|
|
2373
|
+
"immutable": true,
|
|
2374
|
+
"locationInModule": {
|
|
2375
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2376
|
+
"line": 26
|
|
2377
|
+
},
|
|
2378
|
+
"name": "reuseAssets",
|
|
2379
|
+
"optional": true,
|
|
2380
|
+
"type": {
|
|
2381
|
+
"collection": {
|
|
2382
|
+
"elementtype": {
|
|
2383
|
+
"primitive": "string"
|
|
2384
|
+
},
|
|
2385
|
+
"kind": "array"
|
|
2386
|
+
}
|
|
2387
|
+
}
|
|
2388
|
+
},
|
|
2389
|
+
{
|
|
2390
|
+
"abstract": true,
|
|
2391
|
+
"docs": {
|
|
2392
|
+
"default": "true",
|
|
2393
|
+
"stability": "stable",
|
|
2394
|
+
"summary": "Rollback failed deployments."
|
|
2395
|
+
},
|
|
2396
|
+
"immutable": true,
|
|
2397
|
+
"locationInModule": {
|
|
2398
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2399
|
+
"line": 47
|
|
2400
|
+
},
|
|
2401
|
+
"name": "rollback",
|
|
2402
|
+
"optional": true,
|
|
2403
|
+
"type": {
|
|
2404
|
+
"primitive": "boolean"
|
|
2405
|
+
}
|
|
2406
|
+
},
|
|
2407
|
+
{
|
|
2408
|
+
"abstract": true,
|
|
2409
|
+
"docs": {
|
|
2410
|
+
"default": "CDKToolkit",
|
|
2411
|
+
"stability": "stable",
|
|
2412
|
+
"summary": "Name of the toolkit stack to use/deploy."
|
|
2413
|
+
},
|
|
2414
|
+
"immutable": true,
|
|
2415
|
+
"locationInModule": {
|
|
2416
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2417
|
+
"line": 19
|
|
2418
|
+
},
|
|
2419
|
+
"name": "toolkitStackName",
|
|
2420
|
+
"optional": true,
|
|
2421
|
+
"type": {
|
|
2422
|
+
"primitive": "string"
|
|
2423
|
+
}
|
|
2424
|
+
},
|
|
2425
|
+
{
|
|
2426
|
+
"abstract": true,
|
|
2427
|
+
"docs": {
|
|
2428
|
+
"default": "true",
|
|
2429
|
+
"remarks": "If not set, all parameters must be specified for every deployment.",
|
|
2430
|
+
"stability": "stable",
|
|
2431
|
+
"summary": "Use previous values for unspecified parameters."
|
|
1516
2432
|
},
|
|
1517
|
-
"
|
|
1518
|
-
|
|
2433
|
+
"immutable": true,
|
|
2434
|
+
"locationInModule": {
|
|
2435
|
+
"filename": "lib/integ-tests/commands/deploy.ts",
|
|
2436
|
+
"line": 83
|
|
2437
|
+
},
|
|
2438
|
+
"name": "usePreviousParameters",
|
|
2439
|
+
"optional": true,
|
|
2440
|
+
"type": {
|
|
2441
|
+
"primitive": "boolean"
|
|
2442
|
+
}
|
|
2443
|
+
}
|
|
2444
|
+
],
|
|
2445
|
+
"symbolId": "lib/integ-tests/commands/deploy:DeployOptions"
|
|
2446
|
+
},
|
|
2447
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand": {
|
|
2448
|
+
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
2449
|
+
"datatype": true,
|
|
2450
|
+
"docs": {
|
|
2451
|
+
"stability": "stable",
|
|
2452
|
+
"summary": "Represents a cdk destroy command.",
|
|
2453
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst destroyCommand: cloud_assembly_schema.DestroyCommand = {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n};",
|
|
2454
|
+
"custom": {
|
|
2455
|
+
"exampleMetadata": "fixture=_generated"
|
|
2456
|
+
}
|
|
2457
|
+
},
|
|
2458
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
2459
|
+
"interfaces": [
|
|
2460
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommand"
|
|
2461
|
+
],
|
|
2462
|
+
"kind": "interface",
|
|
2463
|
+
"locationInModule": {
|
|
2464
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
2465
|
+
"line": 158
|
|
2466
|
+
},
|
|
2467
|
+
"name": "DestroyCommand",
|
|
2468
|
+
"properties": [
|
|
1519
2469
|
{
|
|
2470
|
+
"abstract": true,
|
|
1520
2471
|
"docs": {
|
|
2472
|
+
"default": "- only default args are used",
|
|
1521
2473
|
"stability": "stable",
|
|
1522
|
-
"summary": "
|
|
2474
|
+
"summary": "Additional arguments to pass to the command This can be used to test specific CLI functionality."
|
|
1523
2475
|
},
|
|
1524
|
-
"
|
|
1525
|
-
|
|
2476
|
+
"immutable": true,
|
|
2477
|
+
"locationInModule": {
|
|
2478
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
2479
|
+
"line": 165
|
|
2480
|
+
},
|
|
2481
|
+
"name": "args",
|
|
2482
|
+
"optional": true,
|
|
2483
|
+
"type": {
|
|
2484
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DestroyOptions"
|
|
2485
|
+
}
|
|
2486
|
+
}
|
|
2487
|
+
],
|
|
2488
|
+
"symbolId": "lib/integ-tests/test-case:DestroyCommand"
|
|
2489
|
+
},
|
|
2490
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions": {
|
|
2491
|
+
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
2492
|
+
"datatype": true,
|
|
2493
|
+
"docs": {
|
|
2494
|
+
"stability": "stable",
|
|
2495
|
+
"summary": "Options to use with cdk destroy.",
|
|
2496
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst destroyOptions: cloud_assembly_schema.DestroyOptions = {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n};",
|
|
2497
|
+
"custom": {
|
|
2498
|
+
"exampleMetadata": "fixture=_generated"
|
|
2499
|
+
}
|
|
2500
|
+
},
|
|
2501
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
2502
|
+
"interfaces": [
|
|
2503
|
+
"@aws-cdk/cloud-assembly-schema.DefaultCdkOptions"
|
|
2504
|
+
],
|
|
2505
|
+
"kind": "interface",
|
|
2506
|
+
"locationInModule": {
|
|
2507
|
+
"filename": "lib/integ-tests/commands/destroy.ts",
|
|
2508
|
+
"line": 6
|
|
2509
|
+
},
|
|
2510
|
+
"name": "DestroyOptions",
|
|
2511
|
+
"properties": [
|
|
1526
2512
|
{
|
|
2513
|
+
"abstract": true,
|
|
1527
2514
|
"docs": {
|
|
2515
|
+
"default": "false",
|
|
1528
2516
|
"stability": "stable",
|
|
1529
|
-
"summary": "
|
|
2517
|
+
"summary": "Only destroy the given stack."
|
|
1530
2518
|
},
|
|
1531
|
-
"
|
|
2519
|
+
"immutable": true,
|
|
2520
|
+
"locationInModule": {
|
|
2521
|
+
"filename": "lib/integ-tests/commands/destroy.ts",
|
|
2522
|
+
"line": 19
|
|
2523
|
+
},
|
|
2524
|
+
"name": "exclusively",
|
|
2525
|
+
"optional": true,
|
|
2526
|
+
"type": {
|
|
2527
|
+
"primitive": "boolean"
|
|
2528
|
+
}
|
|
1532
2529
|
},
|
|
1533
2530
|
{
|
|
2531
|
+
"abstract": true,
|
|
1534
2532
|
"docs": {
|
|
2533
|
+
"default": "false",
|
|
1535
2534
|
"stability": "stable",
|
|
1536
|
-
"summary": "
|
|
2535
|
+
"summary": "Do not ask for permission before destroying stacks."
|
|
1537
2536
|
},
|
|
1538
|
-
"
|
|
2537
|
+
"immutable": true,
|
|
2538
|
+
"locationInModule": {
|
|
2539
|
+
"filename": "lib/integ-tests/commands/destroy.ts",
|
|
2540
|
+
"line": 12
|
|
2541
|
+
},
|
|
2542
|
+
"name": "force",
|
|
2543
|
+
"optional": true,
|
|
2544
|
+
"type": {
|
|
2545
|
+
"primitive": "boolean"
|
|
2546
|
+
}
|
|
1539
2547
|
}
|
|
1540
2548
|
],
|
|
1541
|
-
"
|
|
1542
|
-
"symbolId": "lib/cloud-assembly/context-queries:ContextProvider"
|
|
2549
|
+
"symbolId": "lib/integ-tests/commands/destroy:DestroyOptions"
|
|
1543
2550
|
},
|
|
1544
2551
|
"@aws-cdk/cloud-assembly-schema.DockerImageAsset": {
|
|
1545
2552
|
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
@@ -2254,6 +3261,120 @@
|
|
|
2254
3261
|
],
|
|
2255
3262
|
"symbolId": "lib/assets/file-asset:FileSource"
|
|
2256
3263
|
},
|
|
3264
|
+
"@aws-cdk/cloud-assembly-schema.Hooks": {
|
|
3265
|
+
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
3266
|
+
"datatype": true,
|
|
3267
|
+
"docs": {
|
|
3268
|
+
"stability": "stable",
|
|
3269
|
+
"summary": "Commands to run at predefined points during the integration test workflow.",
|
|
3270
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst hooks: cloud_assembly_schema.Hooks = {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n};",
|
|
3271
|
+
"custom": {
|
|
3272
|
+
"exampleMetadata": "fixture=_generated"
|
|
3273
|
+
}
|
|
3274
|
+
},
|
|
3275
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.Hooks",
|
|
3276
|
+
"kind": "interface",
|
|
3277
|
+
"locationInModule": {
|
|
3278
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
3279
|
+
"line": 77
|
|
3280
|
+
},
|
|
3281
|
+
"name": "Hooks",
|
|
3282
|
+
"properties": [
|
|
3283
|
+
{
|
|
3284
|
+
"abstract": true,
|
|
3285
|
+
"docs": {
|
|
3286
|
+
"default": "- no commands",
|
|
3287
|
+
"stability": "stable",
|
|
3288
|
+
"summary": "Commands to run prior after deploying the cdk stacks in the integration test."
|
|
3289
|
+
},
|
|
3290
|
+
"immutable": true,
|
|
3291
|
+
"locationInModule": {
|
|
3292
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
3293
|
+
"line": 92
|
|
3294
|
+
},
|
|
3295
|
+
"name": "postDeploy",
|
|
3296
|
+
"optional": true,
|
|
3297
|
+
"type": {
|
|
3298
|
+
"collection": {
|
|
3299
|
+
"elementtype": {
|
|
3300
|
+
"primitive": "string"
|
|
3301
|
+
},
|
|
3302
|
+
"kind": "array"
|
|
3303
|
+
}
|
|
3304
|
+
}
|
|
3305
|
+
},
|
|
3306
|
+
{
|
|
3307
|
+
"abstract": true,
|
|
3308
|
+
"docs": {
|
|
3309
|
+
"default": "- no commands",
|
|
3310
|
+
"stability": "stable",
|
|
3311
|
+
"summary": "Commands to run after destroying the cdk stacks in the integration test."
|
|
3312
|
+
},
|
|
3313
|
+
"immutable": true,
|
|
3314
|
+
"locationInModule": {
|
|
3315
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
3316
|
+
"line": 108
|
|
3317
|
+
},
|
|
3318
|
+
"name": "postDestroy",
|
|
3319
|
+
"optional": true,
|
|
3320
|
+
"type": {
|
|
3321
|
+
"collection": {
|
|
3322
|
+
"elementtype": {
|
|
3323
|
+
"primitive": "string"
|
|
3324
|
+
},
|
|
3325
|
+
"kind": "array"
|
|
3326
|
+
}
|
|
3327
|
+
}
|
|
3328
|
+
},
|
|
3329
|
+
{
|
|
3330
|
+
"abstract": true,
|
|
3331
|
+
"docs": {
|
|
3332
|
+
"default": "- no commands",
|
|
3333
|
+
"stability": "stable",
|
|
3334
|
+
"summary": "Commands to run prior to deploying the cdk stacks in the integration test."
|
|
3335
|
+
},
|
|
3336
|
+
"immutable": true,
|
|
3337
|
+
"locationInModule": {
|
|
3338
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
3339
|
+
"line": 84
|
|
3340
|
+
},
|
|
3341
|
+
"name": "preDeploy",
|
|
3342
|
+
"optional": true,
|
|
3343
|
+
"type": {
|
|
3344
|
+
"collection": {
|
|
3345
|
+
"elementtype": {
|
|
3346
|
+
"primitive": "string"
|
|
3347
|
+
},
|
|
3348
|
+
"kind": "array"
|
|
3349
|
+
}
|
|
3350
|
+
}
|
|
3351
|
+
},
|
|
3352
|
+
{
|
|
3353
|
+
"abstract": true,
|
|
3354
|
+
"docs": {
|
|
3355
|
+
"default": "- no commands",
|
|
3356
|
+
"stability": "stable",
|
|
3357
|
+
"summary": "Commands to run prior to destroying the cdk stacks in the integration test."
|
|
3358
|
+
},
|
|
3359
|
+
"immutable": true,
|
|
3360
|
+
"locationInModule": {
|
|
3361
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
3362
|
+
"line": 100
|
|
3363
|
+
},
|
|
3364
|
+
"name": "preDestroy",
|
|
3365
|
+
"optional": true,
|
|
3366
|
+
"type": {
|
|
3367
|
+
"collection": {
|
|
3368
|
+
"elementtype": {
|
|
3369
|
+
"primitive": "string"
|
|
3370
|
+
},
|
|
3371
|
+
"kind": "array"
|
|
3372
|
+
}
|
|
3373
|
+
}
|
|
3374
|
+
}
|
|
3375
|
+
],
|
|
3376
|
+
"symbolId": "lib/integ-tests/test-case:Hooks"
|
|
3377
|
+
},
|
|
2257
3378
|
"@aws-cdk/cloud-assembly-schema.HostedZoneContextQuery": {
|
|
2258
3379
|
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
2259
3380
|
"datatype": true,
|
|
@@ -2309,32 +3430,128 @@
|
|
|
2309
3430
|
"abstract": true,
|
|
2310
3431
|
"docs": {
|
|
2311
3432
|
"stability": "stable",
|
|
2312
|
-
"summary": "Query region."
|
|
3433
|
+
"summary": "Query region."
|
|
3434
|
+
},
|
|
3435
|
+
"immutable": true,
|
|
3436
|
+
"locationInModule": {
|
|
3437
|
+
"filename": "lib/cloud-assembly/context-queries.ts",
|
|
3438
|
+
"line": 132
|
|
3439
|
+
},
|
|
3440
|
+
"name": "region",
|
|
3441
|
+
"type": {
|
|
3442
|
+
"primitive": "string"
|
|
3443
|
+
}
|
|
3444
|
+
},
|
|
3445
|
+
{
|
|
3446
|
+
"abstract": true,
|
|
3447
|
+
"docs": {
|
|
3448
|
+
"default": "- None",
|
|
3449
|
+
"stability": "stable",
|
|
3450
|
+
"summary": "The ARN of the role that should be used to look up the missing values."
|
|
3451
|
+
},
|
|
3452
|
+
"immutable": true,
|
|
3453
|
+
"locationInModule": {
|
|
3454
|
+
"filename": "lib/cloud-assembly/context-queries.ts",
|
|
3455
|
+
"line": 139
|
|
3456
|
+
},
|
|
3457
|
+
"name": "lookupRoleArn",
|
|
3458
|
+
"optional": true,
|
|
3459
|
+
"type": {
|
|
3460
|
+
"primitive": "string"
|
|
3461
|
+
}
|
|
3462
|
+
},
|
|
3463
|
+
{
|
|
3464
|
+
"abstract": true,
|
|
3465
|
+
"docs": {
|
|
3466
|
+
"default": "false",
|
|
3467
|
+
"stability": "stable",
|
|
3468
|
+
"summary": "True if the zone you want to find is a private hosted zone."
|
|
3469
|
+
},
|
|
3470
|
+
"immutable": true,
|
|
3471
|
+
"locationInModule": {
|
|
3472
|
+
"filename": "lib/cloud-assembly/context-queries.ts",
|
|
3473
|
+
"line": 151
|
|
3474
|
+
},
|
|
3475
|
+
"name": "privateZone",
|
|
3476
|
+
"optional": true,
|
|
3477
|
+
"type": {
|
|
3478
|
+
"primitive": "boolean"
|
|
3479
|
+
}
|
|
3480
|
+
},
|
|
3481
|
+
{
|
|
3482
|
+
"abstract": true,
|
|
3483
|
+
"docs": {
|
|
3484
|
+
"default": "- Required if privateZone=true",
|
|
3485
|
+
"remarks": "If you provide VPC ID and privateZone is false, this will return no results\nand raise an error.",
|
|
3486
|
+
"stability": "stable",
|
|
3487
|
+
"summary": "The VPC ID to that the private zone must be associated with."
|
|
3488
|
+
},
|
|
3489
|
+
"immutable": true,
|
|
3490
|
+
"locationInModule": {
|
|
3491
|
+
"filename": "lib/cloud-assembly/context-queries.ts",
|
|
3492
|
+
"line": 161
|
|
3493
|
+
},
|
|
3494
|
+
"name": "vpcId",
|
|
3495
|
+
"optional": true,
|
|
3496
|
+
"type": {
|
|
3497
|
+
"primitive": "string"
|
|
3498
|
+
}
|
|
3499
|
+
}
|
|
3500
|
+
],
|
|
3501
|
+
"symbolId": "lib/cloud-assembly/context-queries:HostedZoneContextQuery"
|
|
3502
|
+
},
|
|
3503
|
+
"@aws-cdk/cloud-assembly-schema.IntegManifest": {
|
|
3504
|
+
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
3505
|
+
"datatype": true,
|
|
3506
|
+
"docs": {
|
|
3507
|
+
"stability": "stable",
|
|
3508
|
+
"summary": "Definitions for the integration testing manifest.",
|
|
3509
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst integManifest: cloud_assembly_schema.IntegManifest = {\n testCases: {\n testCasesKey: {\n stacks: ['stacks'],\n\n // the properties below are optional\n allowDestroy: ['allowDestroy'],\n cdkCommandOptions: {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n },\n diffAssets: false,\n hooks: {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n },\n regions: ['regions'],\n stackUpdateWorkflow: false,\n },\n },\n version: 'version',\n\n // the properties below are optional\n enableLookups: false,\n};",
|
|
3510
|
+
"custom": {
|
|
3511
|
+
"exampleMetadata": "fixture=_generated"
|
|
3512
|
+
}
|
|
3513
|
+
},
|
|
3514
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.IntegManifest",
|
|
3515
|
+
"kind": "interface",
|
|
3516
|
+
"locationInModule": {
|
|
3517
|
+
"filename": "lib/integ-tests/schema.ts",
|
|
3518
|
+
"line": 5
|
|
3519
|
+
},
|
|
3520
|
+
"name": "IntegManifest",
|
|
3521
|
+
"properties": [
|
|
3522
|
+
{
|
|
3523
|
+
"abstract": true,
|
|
3524
|
+
"docs": {
|
|
3525
|
+
"stability": "stable",
|
|
3526
|
+
"summary": "test cases."
|
|
2313
3527
|
},
|
|
2314
3528
|
"immutable": true,
|
|
2315
3529
|
"locationInModule": {
|
|
2316
|
-
"filename": "lib/
|
|
2317
|
-
"line":
|
|
3530
|
+
"filename": "lib/integ-tests/schema.ts",
|
|
3531
|
+
"line": 24
|
|
2318
3532
|
},
|
|
2319
|
-
"name": "
|
|
3533
|
+
"name": "testCases",
|
|
2320
3534
|
"type": {
|
|
2321
|
-
"
|
|
3535
|
+
"collection": {
|
|
3536
|
+
"elementtype": {
|
|
3537
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.TestCase"
|
|
3538
|
+
},
|
|
3539
|
+
"kind": "map"
|
|
3540
|
+
}
|
|
2322
3541
|
}
|
|
2323
3542
|
},
|
|
2324
3543
|
{
|
|
2325
3544
|
"abstract": true,
|
|
2326
3545
|
"docs": {
|
|
2327
|
-
"default": "- None",
|
|
2328
3546
|
"stability": "stable",
|
|
2329
|
-
"summary": "
|
|
3547
|
+
"summary": "Version of the manifest."
|
|
2330
3548
|
},
|
|
2331
3549
|
"immutable": true,
|
|
2332
3550
|
"locationInModule": {
|
|
2333
|
-
"filename": "lib/
|
|
2334
|
-
"line":
|
|
3551
|
+
"filename": "lib/integ-tests/schema.ts",
|
|
3552
|
+
"line": 9
|
|
2335
3553
|
},
|
|
2336
|
-
"name": "
|
|
2337
|
-
"optional": true,
|
|
3554
|
+
"name": "version",
|
|
2338
3555
|
"type": {
|
|
2339
3556
|
"primitive": "string"
|
|
2340
3557
|
}
|
|
@@ -2343,41 +3560,23 @@
|
|
|
2343
3560
|
"abstract": true,
|
|
2344
3561
|
"docs": {
|
|
2345
3562
|
"default": "false",
|
|
3563
|
+
"remarks": "If lookups are enabled\nthen `stackUpdateWorkflow` must be set to false.\nLookups should only be enabled when you are explicitely testing\nlookups.",
|
|
2346
3564
|
"stability": "stable",
|
|
2347
|
-
"summary": "
|
|
3565
|
+
"summary": "Enable lookups for this test."
|
|
2348
3566
|
},
|
|
2349
3567
|
"immutable": true,
|
|
2350
3568
|
"locationInModule": {
|
|
2351
|
-
"filename": "lib/
|
|
2352
|
-
"line":
|
|
3569
|
+
"filename": "lib/integ-tests/schema.ts",
|
|
3570
|
+
"line": 19
|
|
2353
3571
|
},
|
|
2354
|
-
"name": "
|
|
3572
|
+
"name": "enableLookups",
|
|
2355
3573
|
"optional": true,
|
|
2356
3574
|
"type": {
|
|
2357
3575
|
"primitive": "boolean"
|
|
2358
3576
|
}
|
|
2359
|
-
},
|
|
2360
|
-
{
|
|
2361
|
-
"abstract": true,
|
|
2362
|
-
"docs": {
|
|
2363
|
-
"default": "- Required if privateZone=true",
|
|
2364
|
-
"remarks": "If you provide VPC ID and privateZone is false, this will return no results\nand raise an error.",
|
|
2365
|
-
"stability": "stable",
|
|
2366
|
-
"summary": "The VPC ID to that the private zone must be associated with."
|
|
2367
|
-
},
|
|
2368
|
-
"immutable": true,
|
|
2369
|
-
"locationInModule": {
|
|
2370
|
-
"filename": "lib/cloud-assembly/context-queries.ts",
|
|
2371
|
-
"line": 161
|
|
2372
|
-
},
|
|
2373
|
-
"name": "vpcId",
|
|
2374
|
-
"optional": true,
|
|
2375
|
-
"type": {
|
|
2376
|
-
"primitive": "string"
|
|
2377
|
-
}
|
|
2378
3577
|
}
|
|
2379
3578
|
],
|
|
2380
|
-
"symbolId": "lib/
|
|
3579
|
+
"symbolId": "lib/integ-tests/schema:IntegManifest"
|
|
2381
3580
|
},
|
|
2382
3581
|
"@aws-cdk/cloud-assembly-schema.KeyContextQuery": {
|
|
2383
3582
|
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
@@ -2855,7 +4054,7 @@
|
|
|
2855
4054
|
"kind": "interface",
|
|
2856
4055
|
"locationInModule": {
|
|
2857
4056
|
"filename": "lib/manifest.ts",
|
|
2858
|
-
"line":
|
|
4057
|
+
"line": 30
|
|
2859
4058
|
},
|
|
2860
4059
|
"name": "LoadManifestOptions",
|
|
2861
4060
|
"properties": [
|
|
@@ -2870,7 +4069,7 @@
|
|
|
2870
4069
|
"immutable": true,
|
|
2871
4070
|
"locationInModule": {
|
|
2872
4071
|
"filename": "lib/manifest.ts",
|
|
2873
|
-
"line":
|
|
4072
|
+
"line": 50
|
|
2874
4073
|
},
|
|
2875
4074
|
"name": "skipEnumCheck",
|
|
2876
4075
|
"optional": true,
|
|
@@ -2889,7 +4088,7 @@
|
|
|
2889
4088
|
"immutable": true,
|
|
2890
4089
|
"locationInModule": {
|
|
2891
4090
|
"filename": "lib/manifest.ts",
|
|
2892
|
-
"line":
|
|
4091
|
+
"line": 40
|
|
2893
4092
|
},
|
|
2894
4093
|
"name": "skipVersionCheck",
|
|
2895
4094
|
"optional": true,
|
|
@@ -2910,7 +4109,7 @@
|
|
|
2910
4109
|
"kind": "class",
|
|
2911
4110
|
"locationInModule": {
|
|
2912
4111
|
"filename": "lib/manifest.ts",
|
|
2913
|
-
"line":
|
|
4112
|
+
"line": 56
|
|
2914
4113
|
},
|
|
2915
4114
|
"methods": [
|
|
2916
4115
|
{
|
|
@@ -2921,7 +4120,7 @@
|
|
|
2921
4120
|
},
|
|
2922
4121
|
"locationInModule": {
|
|
2923
4122
|
"filename": "lib/manifest.ts",
|
|
2924
|
-
"line":
|
|
4123
|
+
"line": 131
|
|
2925
4124
|
},
|
|
2926
4125
|
"name": "load",
|
|
2927
4126
|
"parameters": [
|
|
@@ -2946,7 +4145,7 @@
|
|
|
2946
4145
|
},
|
|
2947
4146
|
"locationInModule": {
|
|
2948
4147
|
"filename": "lib/manifest.ts",
|
|
2949
|
-
"line":
|
|
4148
|
+
"line": 72
|
|
2950
4149
|
},
|
|
2951
4150
|
"name": "loadAssemblyManifest",
|
|
2952
4151
|
"parameters": [
|
|
@@ -2981,7 +4180,7 @@
|
|
|
2981
4180
|
},
|
|
2982
4181
|
"locationInModule": {
|
|
2983
4182
|
"filename": "lib/manifest.ts",
|
|
2984
|
-
"line":
|
|
4183
|
+
"line": 91
|
|
2985
4184
|
},
|
|
2986
4185
|
"name": "loadAssetManifest",
|
|
2987
4186
|
"parameters": [
|
|
@@ -3002,6 +4201,34 @@
|
|
|
3002
4201
|
},
|
|
3003
4202
|
"static": true
|
|
3004
4203
|
},
|
|
4204
|
+
{
|
|
4205
|
+
"docs": {
|
|
4206
|
+
"stability": "stable",
|
|
4207
|
+
"summary": "Load and validates the integ manifest from file."
|
|
4208
|
+
},
|
|
4209
|
+
"locationInModule": {
|
|
4210
|
+
"filename": "lib/manifest.ts",
|
|
4211
|
+
"line": 110
|
|
4212
|
+
},
|
|
4213
|
+
"name": "loadIntegManifest",
|
|
4214
|
+
"parameters": [
|
|
4215
|
+
{
|
|
4216
|
+
"docs": {
|
|
4217
|
+
"summary": "- path to the manifest file."
|
|
4218
|
+
},
|
|
4219
|
+
"name": "filePath",
|
|
4220
|
+
"type": {
|
|
4221
|
+
"primitive": "string"
|
|
4222
|
+
}
|
|
4223
|
+
}
|
|
4224
|
+
],
|
|
4225
|
+
"returns": {
|
|
4226
|
+
"type": {
|
|
4227
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.IntegManifest"
|
|
4228
|
+
}
|
|
4229
|
+
},
|
|
4230
|
+
"static": true
|
|
4231
|
+
},
|
|
3005
4232
|
{
|
|
3006
4233
|
"docs": {
|
|
3007
4234
|
"deprecated": "use `saveAssemblyManifest()`",
|
|
@@ -3010,7 +4237,7 @@
|
|
|
3010
4237
|
},
|
|
3011
4238
|
"locationInModule": {
|
|
3012
4239
|
"filename": "lib/manifest.ts",
|
|
3013
|
-
"line":
|
|
4240
|
+
"line": 125
|
|
3014
4241
|
},
|
|
3015
4242
|
"name": "save",
|
|
3016
4243
|
"parameters": [
|
|
@@ -3036,7 +4263,7 @@
|
|
|
3036
4263
|
},
|
|
3037
4264
|
"locationInModule": {
|
|
3038
4265
|
"filename": "lib/manifest.ts",
|
|
3039
|
-
"line":
|
|
4266
|
+
"line": 63
|
|
3040
4267
|
},
|
|
3041
4268
|
"name": "saveAssemblyManifest",
|
|
3042
4269
|
"parameters": [
|
|
@@ -3068,7 +4295,7 @@
|
|
|
3068
4295
|
},
|
|
3069
4296
|
"locationInModule": {
|
|
3070
4297
|
"filename": "lib/manifest.ts",
|
|
3071
|
-
"line":
|
|
4298
|
+
"line": 82
|
|
3072
4299
|
},
|
|
3073
4300
|
"name": "saveAssetManifest",
|
|
3074
4301
|
"parameters": [
|
|
@@ -3093,6 +4320,38 @@
|
|
|
3093
4320
|
],
|
|
3094
4321
|
"static": true
|
|
3095
4322
|
},
|
|
4323
|
+
{
|
|
4324
|
+
"docs": {
|
|
4325
|
+
"stability": "stable",
|
|
4326
|
+
"summary": "Validates and saves the integ manifest to file."
|
|
4327
|
+
},
|
|
4328
|
+
"locationInModule": {
|
|
4329
|
+
"filename": "lib/manifest.ts",
|
|
4330
|
+
"line": 101
|
|
4331
|
+
},
|
|
4332
|
+
"name": "saveIntegManifest",
|
|
4333
|
+
"parameters": [
|
|
4334
|
+
{
|
|
4335
|
+
"docs": {
|
|
4336
|
+
"summary": "- manifest."
|
|
4337
|
+
},
|
|
4338
|
+
"name": "manifest",
|
|
4339
|
+
"type": {
|
|
4340
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.IntegManifest"
|
|
4341
|
+
}
|
|
4342
|
+
},
|
|
4343
|
+
{
|
|
4344
|
+
"docs": {
|
|
4345
|
+
"summary": "- output file path."
|
|
4346
|
+
},
|
|
4347
|
+
"name": "filePath",
|
|
4348
|
+
"type": {
|
|
4349
|
+
"primitive": "string"
|
|
4350
|
+
}
|
|
4351
|
+
}
|
|
4352
|
+
],
|
|
4353
|
+
"static": true
|
|
4354
|
+
},
|
|
3096
4355
|
{
|
|
3097
4356
|
"docs": {
|
|
3098
4357
|
"stability": "stable",
|
|
@@ -3100,7 +4359,7 @@
|
|
|
3100
4359
|
},
|
|
3101
4360
|
"locationInModule": {
|
|
3102
4361
|
"filename": "lib/manifest.ts",
|
|
3103
|
-
"line":
|
|
4362
|
+
"line": 117
|
|
3104
4363
|
},
|
|
3105
4364
|
"name": "version",
|
|
3106
4365
|
"returns": {
|
|
@@ -3414,6 +4673,44 @@
|
|
|
3414
4673
|
],
|
|
3415
4674
|
"symbolId": "lib/cloud-assembly/context-queries:PluginContextQuery"
|
|
3416
4675
|
},
|
|
4676
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval": {
|
|
4677
|
+
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
4678
|
+
"docs": {
|
|
4679
|
+
"stability": "stable",
|
|
4680
|
+
"summary": "In what scenarios should the CLI ask for approval."
|
|
4681
|
+
},
|
|
4682
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
4683
|
+
"kind": "enum",
|
|
4684
|
+
"locationInModule": {
|
|
4685
|
+
"filename": "lib/integ-tests/commands/common.ts",
|
|
4686
|
+
"line": 4
|
|
4687
|
+
},
|
|
4688
|
+
"members": [
|
|
4689
|
+
{
|
|
4690
|
+
"docs": {
|
|
4691
|
+
"stability": "stable",
|
|
4692
|
+
"summary": "Never ask for approval."
|
|
4693
|
+
},
|
|
4694
|
+
"name": "NEVER"
|
|
4695
|
+
},
|
|
4696
|
+
{
|
|
4697
|
+
"docs": {
|
|
4698
|
+
"stability": "stable",
|
|
4699
|
+
"summary": "Prompt for approval for any type of change to the stack."
|
|
4700
|
+
},
|
|
4701
|
+
"name": "ANYCHANGE"
|
|
4702
|
+
},
|
|
4703
|
+
{
|
|
4704
|
+
"docs": {
|
|
4705
|
+
"stability": "stable",
|
|
4706
|
+
"summary": "Only prompt for approval if there are security related changes."
|
|
4707
|
+
},
|
|
4708
|
+
"name": "BROADENING"
|
|
4709
|
+
}
|
|
4710
|
+
],
|
|
4711
|
+
"name": "RequireApproval",
|
|
4712
|
+
"symbolId": "lib/integ-tests/commands/common:RequireApproval"
|
|
4713
|
+
},
|
|
3417
4714
|
"@aws-cdk/cloud-assembly-schema.RuntimeInfo": {
|
|
3418
4715
|
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
3419
4716
|
"datatype": true,
|
|
@@ -3727,6 +5024,170 @@
|
|
|
3727
5024
|
],
|
|
3728
5025
|
"symbolId": "lib/cloud-assembly/metadata-schema:Tag"
|
|
3729
5026
|
},
|
|
5027
|
+
"@aws-cdk/cloud-assembly-schema.TestCase": {
|
|
5028
|
+
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
5029
|
+
"datatype": true,
|
|
5030
|
+
"docs": {
|
|
5031
|
+
"stability": "stable",
|
|
5032
|
+
"summary": "Represents an integration test test case.",
|
|
5033
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst testCase: cloud_assembly_schema.TestCase = {\n stacks: ['stacks'],\n\n // the properties below are optional\n allowDestroy: ['allowDestroy'],\n cdkCommandOptions: {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n },\n diffAssets: false,\n hooks: {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n },\n regions: ['regions'],\n stackUpdateWorkflow: false,\n};",
|
|
5034
|
+
"custom": {
|
|
5035
|
+
"exampleMetadata": "fixture=_generated"
|
|
5036
|
+
}
|
|
5037
|
+
},
|
|
5038
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.TestCase",
|
|
5039
|
+
"kind": "interface",
|
|
5040
|
+
"locationInModule": {
|
|
5041
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
5042
|
+
"line": 6
|
|
5043
|
+
},
|
|
5044
|
+
"name": "TestCase",
|
|
5045
|
+
"properties": [
|
|
5046
|
+
{
|
|
5047
|
+
"abstract": true,
|
|
5048
|
+
"docs": {
|
|
5049
|
+
"stability": "stable",
|
|
5050
|
+
"summary": "Stacks that should be tested as part of this test case The stackNames will be passed as args to the cdk commands so dependent stacks will be automatically deployed unless `exclusively` is passed."
|
|
5051
|
+
},
|
|
5052
|
+
"immutable": true,
|
|
5053
|
+
"locationInModule": {
|
|
5054
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
5055
|
+
"line": 13
|
|
5056
|
+
},
|
|
5057
|
+
"name": "stacks",
|
|
5058
|
+
"type": {
|
|
5059
|
+
"collection": {
|
|
5060
|
+
"elementtype": {
|
|
5061
|
+
"primitive": "string"
|
|
5062
|
+
},
|
|
5063
|
+
"kind": "array"
|
|
5064
|
+
}
|
|
5065
|
+
}
|
|
5066
|
+
},
|
|
5067
|
+
{
|
|
5068
|
+
"abstract": true,
|
|
5069
|
+
"docs": {
|
|
5070
|
+
"default": "- do not allow destruction of any resources on update",
|
|
5071
|
+
"remarks": "This list should only include resources that for this specific\nintegration test we are sure will not cause errors or an outage if\ndestroyed. For example, maybe we know that a new resource will be created\nfirst before the old resource is destroyed which prevents any outage.\n\ne.g. ['AWS::IAM::Role']",
|
|
5072
|
+
"stability": "stable",
|
|
5073
|
+
"summary": "List of CloudFormation resource types in this stack that can be destroyed as part of an update without failing the test."
|
|
5074
|
+
},
|
|
5075
|
+
"immutable": true,
|
|
5076
|
+
"locationInModule": {
|
|
5077
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
5078
|
+
"line": 63
|
|
5079
|
+
},
|
|
5080
|
+
"name": "allowDestroy",
|
|
5081
|
+
"optional": true,
|
|
5082
|
+
"type": {
|
|
5083
|
+
"collection": {
|
|
5084
|
+
"elementtype": {
|
|
5085
|
+
"primitive": "string"
|
|
5086
|
+
},
|
|
5087
|
+
"kind": "array"
|
|
5088
|
+
}
|
|
5089
|
+
}
|
|
5090
|
+
},
|
|
5091
|
+
{
|
|
5092
|
+
"abstract": true,
|
|
5093
|
+
"docs": {
|
|
5094
|
+
"default": "- runner default options",
|
|
5095
|
+
"stability": "stable",
|
|
5096
|
+
"summary": "Additional options to use for each CDK command."
|
|
5097
|
+
},
|
|
5098
|
+
"immutable": true,
|
|
5099
|
+
"locationInModule": {
|
|
5100
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
5101
|
+
"line": 29
|
|
5102
|
+
},
|
|
5103
|
+
"name": "cdkCommandOptions",
|
|
5104
|
+
"optional": true,
|
|
5105
|
+
"type": {
|
|
5106
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.CdkCommands"
|
|
5107
|
+
}
|
|
5108
|
+
},
|
|
5109
|
+
{
|
|
5110
|
+
"abstract": true,
|
|
5111
|
+
"docs": {
|
|
5112
|
+
"default": "false",
|
|
5113
|
+
"remarks": "For example\nany tests involving custom resources or bundling",
|
|
5114
|
+
"stability": "stable",
|
|
5115
|
+
"summary": "Whether or not to include asset hashes in the diff Asset hashes can introduces a lot of unneccessary noise into tests, but there are some cases where asset hashes _should_ be included."
|
|
5116
|
+
},
|
|
5117
|
+
"immutable": true,
|
|
5118
|
+
"locationInModule": {
|
|
5119
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
5120
|
+
"line": 48
|
|
5121
|
+
},
|
|
5122
|
+
"name": "diffAssets",
|
|
5123
|
+
"optional": true,
|
|
5124
|
+
"type": {
|
|
5125
|
+
"primitive": "boolean"
|
|
5126
|
+
}
|
|
5127
|
+
},
|
|
5128
|
+
{
|
|
5129
|
+
"abstract": true,
|
|
5130
|
+
"docs": {
|
|
5131
|
+
"default": "- no hooks",
|
|
5132
|
+
"remarks": "e.g. { postDeploy: ['yarn', 'test'] }",
|
|
5133
|
+
"stability": "stable",
|
|
5134
|
+
"summary": "Additional commands to run at predefined points in the test workflow."
|
|
5135
|
+
},
|
|
5136
|
+
"immutable": true,
|
|
5137
|
+
"locationInModule": {
|
|
5138
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
5139
|
+
"line": 38
|
|
5140
|
+
},
|
|
5141
|
+
"name": "hooks",
|
|
5142
|
+
"optional": true,
|
|
5143
|
+
"type": {
|
|
5144
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.Hooks"
|
|
5145
|
+
}
|
|
5146
|
+
},
|
|
5147
|
+
{
|
|
5148
|
+
"abstract": true,
|
|
5149
|
+
"docs": {
|
|
5150
|
+
"default": "- can run in any region",
|
|
5151
|
+
"stability": "stable",
|
|
5152
|
+
"summary": "Limit deployment to these regions."
|
|
5153
|
+
},
|
|
5154
|
+
"immutable": true,
|
|
5155
|
+
"locationInModule": {
|
|
5156
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
5157
|
+
"line": 70
|
|
5158
|
+
},
|
|
5159
|
+
"name": "regions",
|
|
5160
|
+
"optional": true,
|
|
5161
|
+
"type": {
|
|
5162
|
+
"collection": {
|
|
5163
|
+
"elementtype": {
|
|
5164
|
+
"primitive": "string"
|
|
5165
|
+
},
|
|
5166
|
+
"kind": "array"
|
|
5167
|
+
}
|
|
5168
|
+
}
|
|
5169
|
+
},
|
|
5170
|
+
{
|
|
5171
|
+
"abstract": true,
|
|
5172
|
+
"docs": {
|
|
5173
|
+
"default": "true",
|
|
5174
|
+
"stability": "stable",
|
|
5175
|
+
"summary": "Run update workflow on this test case This should only be set to false to test scenarios that are not possible to test as part of the update workflow."
|
|
5176
|
+
},
|
|
5177
|
+
"immutable": true,
|
|
5178
|
+
"locationInModule": {
|
|
5179
|
+
"filename": "lib/integ-tests/test-case.ts",
|
|
5180
|
+
"line": 22
|
|
5181
|
+
},
|
|
5182
|
+
"name": "stackUpdateWorkflow",
|
|
5183
|
+
"optional": true,
|
|
5184
|
+
"type": {
|
|
5185
|
+
"primitive": "boolean"
|
|
5186
|
+
}
|
|
5187
|
+
}
|
|
5188
|
+
],
|
|
5189
|
+
"symbolId": "lib/integ-tests/test-case:TestCase"
|
|
5190
|
+
},
|
|
3730
5191
|
"@aws-cdk/cloud-assembly-schema.TreeArtifactProperties": {
|
|
3731
5192
|
"assembly": "@aws-cdk/cloud-assembly-schema",
|
|
3732
5193
|
"datatype": true,
|
|
@@ -3898,6 +5359,6 @@
|
|
|
3898
5359
|
"symbolId": "lib/cloud-assembly/context-queries:VpcContextQuery"
|
|
3899
5360
|
}
|
|
3900
5361
|
},
|
|
3901
|
-
"version": "2.
|
|
5362
|
+
"version": "2.20.0",
|
|
3902
5363
|
"fingerprint": "**********"
|
|
3903
5364
|
}
|