@aws-cdk/cloud-assembly-schema 1.156.1 → 1.157.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 CHANGED
@@ -1242,7 +1242,7 @@
1242
1242
  "kind": "interface",
1243
1243
  "locationInModule": {
1244
1244
  "filename": "lib/integ-tests/test-case.ts",
1245
- "line": 120
1245
+ "line": 127
1246
1246
  },
1247
1247
  "name": "CdkCommand",
1248
1248
  "properties": [
@@ -1256,7 +1256,7 @@
1256
1256
  "immutable": true,
1257
1257
  "locationInModule": {
1258
1258
  "filename": "lib/integ-tests/test-case.ts",
1259
- "line": 129
1259
+ "line": 136
1260
1260
  },
1261
1261
  "name": "enabled",
1262
1262
  "optional": true,
@@ -1274,7 +1274,7 @@
1274
1274
  "immutable": true,
1275
1275
  "locationInModule": {
1276
1276
  "filename": "lib/integ-tests/test-case.ts",
1277
- "line": 144
1277
+ "line": 151
1278
1278
  },
1279
1279
  "name": "expectedMessage",
1280
1280
  "optional": true,
@@ -1292,7 +1292,7 @@
1292
1292
  "immutable": true,
1293
1293
  "locationInModule": {
1294
1294
  "filename": "lib/integ-tests/test-case.ts",
1295
- "line": 136
1295
+ "line": 143
1296
1296
  },
1297
1297
  "name": "expectError",
1298
1298
  "optional": true,
@@ -1310,7 +1310,7 @@
1310
1310
  "custom": {
1311
1311
  "exampleMetadata": "infused"
1312
1312
  },
1313
- "example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTestCase(stack, 'CustomizedDeploymentWorkflow', {\n stacks: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});\n\nnew IntegTest(app, 'integ-test', {\n testCases: [testCase],\n});",
1313
+ "example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTest(app, 'CustomizedDeploymentWorkflow', {\n testCases: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});",
1314
1314
  "stability": "stable",
1315
1315
  "summary": "Options for specific cdk commands that are run as part of the integration test workflow."
1316
1316
  },
@@ -1318,7 +1318,7 @@
1318
1318
  "kind": "interface",
1319
1319
  "locationInModule": {
1320
1320
  "filename": "lib/integ-tests/test-case.ts",
1321
- "line": 177
1321
+ "line": 184
1322
1322
  },
1323
1323
  "name": "CdkCommands",
1324
1324
  "properties": [
@@ -1332,7 +1332,7 @@
1332
1332
  "immutable": true,
1333
1333
  "locationInModule": {
1334
1334
  "filename": "lib/integ-tests/test-case.ts",
1335
- "line": 183
1335
+ "line": 190
1336
1336
  },
1337
1337
  "name": "deploy",
1338
1338
  "optional": true,
@@ -1350,7 +1350,7 @@
1350
1350
  "immutable": true,
1351
1351
  "locationInModule": {
1352
1352
  "filename": "lib/integ-tests/test-case.ts",
1353
- "line": 190
1353
+ "line": 197
1354
1354
  },
1355
1355
  "name": "destroy",
1356
1356
  "optional": true,
@@ -2133,7 +2133,7 @@
2133
2133
  "custom": {
2134
2134
  "exampleMetadata": "infused"
2135
2135
  },
2136
- "example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTestCase(stack, 'CustomizedDeploymentWorkflow', {\n stacks: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});\n\nnew IntegTest(app, 'integ-test', {\n testCases: [testCase],\n});",
2136
+ "example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTest(app, 'CustomizedDeploymentWorkflow', {\n testCases: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});",
2137
2137
  "stability": "stable",
2138
2138
  "summary": "Represents a cdk deploy command."
2139
2139
  },
@@ -2144,7 +2144,7 @@
2144
2144
  "kind": "interface",
2145
2145
  "locationInModule": {
2146
2146
  "filename": "lib/integ-tests/test-case.ts",
2147
- "line": 150
2147
+ "line": 157
2148
2148
  },
2149
2149
  "name": "DeployCommand",
2150
2150
  "properties": [
@@ -2158,7 +2158,7 @@
2158
2158
  "immutable": true,
2159
2159
  "locationInModule": {
2160
2160
  "filename": "lib/integ-tests/test-case.ts",
2161
- "line": 157
2161
+ "line": 164
2162
2162
  },
2163
2163
  "name": "args",
2164
2164
  "optional": true,
@@ -2176,7 +2176,7 @@
2176
2176
  "custom": {
2177
2177
  "exampleMetadata": "infused"
2178
2178
  },
2179
- "example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTestCase(stack, 'CustomizedDeploymentWorkflow', {\n stacks: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});\n\nnew IntegTest(app, 'integ-test', {\n testCases: [testCase],\n});",
2179
+ "example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTest(app, 'CustomizedDeploymentWorkflow', {\n testCases: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});",
2180
2180
  "stability": "stable",
2181
2181
  "summary": "Options to use with cdk deploy."
2182
2182
  },
@@ -2452,7 +2452,7 @@
2452
2452
  "custom": {
2453
2453
  "exampleMetadata": "infused"
2454
2454
  },
2455
- "example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTestCase(stack, 'CustomizedDeploymentWorkflow', {\n stacks: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});\n\nnew IntegTest(app, 'integ-test', {\n testCases: [testCase],\n});",
2455
+ "example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTest(app, 'CustomizedDeploymentWorkflow', {\n testCases: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});",
2456
2456
  "stability": "stable",
2457
2457
  "summary": "Represents a cdk destroy command."
2458
2458
  },
@@ -2463,7 +2463,7 @@
2463
2463
  "kind": "interface",
2464
2464
  "locationInModule": {
2465
2465
  "filename": "lib/integ-tests/test-case.ts",
2466
- "line": 163
2466
+ "line": 170
2467
2467
  },
2468
2468
  "name": "DestroyCommand",
2469
2469
  "properties": [
@@ -2477,7 +2477,7 @@
2477
2477
  "immutable": true,
2478
2478
  "locationInModule": {
2479
2479
  "filename": "lib/integ-tests/test-case.ts",
2480
- "line": 170
2480
+ "line": 177
2481
2481
  },
2482
2482
  "name": "args",
2483
2483
  "optional": true,
@@ -2495,7 +2495,7 @@
2495
2495
  "custom": {
2496
2496
  "exampleMetadata": "infused"
2497
2497
  },
2498
- "example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTestCase(stack, 'CustomizedDeploymentWorkflow', {\n stacks: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});\n\nnew IntegTest(app, 'integ-test', {\n testCases: [testCase],\n});",
2498
+ "example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTest(app, 'CustomizedDeploymentWorkflow', {\n testCases: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});",
2499
2499
  "stability": "stable",
2500
2500
  "summary": "Options to use with cdk destroy."
2501
2501
  },
@@ -3277,7 +3277,7 @@
3277
3277
  "kind": "interface",
3278
3278
  "locationInModule": {
3279
3279
  "filename": "lib/integ-tests/test-case.ts",
3280
- "line": 82
3280
+ "line": 89
3281
3281
  },
3282
3282
  "name": "Hooks",
3283
3283
  "properties": [
@@ -3291,7 +3291,7 @@
3291
3291
  "immutable": true,
3292
3292
  "locationInModule": {
3293
3293
  "filename": "lib/integ-tests/test-case.ts",
3294
- "line": 97
3294
+ "line": 104
3295
3295
  },
3296
3296
  "name": "postDeploy",
3297
3297
  "optional": true,
@@ -3314,7 +3314,7 @@
3314
3314
  "immutable": true,
3315
3315
  "locationInModule": {
3316
3316
  "filename": "lib/integ-tests/test-case.ts",
3317
- "line": 113
3317
+ "line": 120
3318
3318
  },
3319
3319
  "name": "postDestroy",
3320
3320
  "optional": true,
@@ -3337,7 +3337,7 @@
3337
3337
  "immutable": true,
3338
3338
  "locationInModule": {
3339
3339
  "filename": "lib/integ-tests/test-case.ts",
3340
- "line": 89
3340
+ "line": 96
3341
3341
  },
3342
3342
  "name": "preDeploy",
3343
3343
  "optional": true,
@@ -3360,7 +3360,7 @@
3360
3360
  "immutable": true,
3361
3361
  "locationInModule": {
3362
3362
  "filename": "lib/integ-tests/test-case.ts",
3363
- "line": 105
3363
+ "line": 112
3364
3364
  },
3365
3365
  "name": "preDestroy",
3366
3366
  "optional": true,
@@ -3507,7 +3507,7 @@
3507
3507
  "docs": {
3508
3508
  "stability": "stable",
3509
3509
  "summary": "Definitions for the integration testing manifest.",
3510
- "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 synthContext: {\n synthContextKey: 'synthContext',\n },\n};",
3510
+ "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 assertionStack: 'assertionStack',\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 synthContext: {\n synthContextKey: 'synthContext',\n },\n};",
3511
3511
  "custom": {
3512
3512
  "exampleMetadata": "fixture=_generated"
3513
3513
  }
@@ -4704,7 +4704,7 @@
4704
4704
  "custom": {
4705
4705
  "exampleMetadata": "infused"
4706
4706
  },
4707
- "example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTestCase(stack, 'CustomizedDeploymentWorkflow', {\n stacks: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});\n\nnew IntegTest(app, 'integ-test', {\n testCases: [testCase],\n});",
4707
+ "example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTest(app, 'CustomizedDeploymentWorkflow', {\n testCases: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});",
4708
4708
  "stability": "stable",
4709
4709
  "summary": "In what scenarios should the CLI ask for approval."
4710
4710
  },
@@ -5059,7 +5059,7 @@
5059
5059
  "docs": {
5060
5060
  "stability": "stable",
5061
5061
  "summary": "Represents an integration test case.",
5062
- "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};",
5062
+ "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 assertionStack: 'assertionStack',\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};",
5063
5063
  "custom": {
5064
5064
  "exampleMetadata": "fixture=_generated"
5065
5065
  }
@@ -5095,6 +5095,24 @@
5095
5095
  "kind": "array"
5096
5096
  }
5097
5097
  }
5098
+ },
5099
+ {
5100
+ "abstract": true,
5101
+ "docs": {
5102
+ "default": "- no assertion stack",
5103
+ "stability": "stable",
5104
+ "summary": "The name of the stack that contains assertions."
5105
+ },
5106
+ "immutable": true,
5107
+ "locationInModule": {
5108
+ "filename": "lib/integ-tests/test-case.ts",
5109
+ "line": 82
5110
+ },
5111
+ "name": "assertionStack",
5112
+ "optional": true,
5113
+ "type": {
5114
+ "primitive": "string"
5115
+ }
5098
5116
  }
5099
5117
  ],
5100
5118
  "symbolId": "lib/integ-tests/test-case:TestCase"
@@ -5413,6 +5431,6 @@
5413
5431
  "symbolId": "lib/cloud-assembly/context-queries:VpcContextQuery"
5414
5432
  }
5415
5433
  },
5416
- "version": "1.156.1",
5434
+ "version": "1.157.0",
5417
5435
  "fingerprint": "**********"
5418
5436
  }