interface IntegManifest
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CloudAssembly.Schema.IntegManifest |
Java | software.amazon.awscdk.cloudassembly.schema.IntegManifest |
Python | aws_cdk.cloud_assembly_schema.IntegManifest |
TypeScript | @aws-cdk/cloud-assembly-schema » IntegManifest |
Obtainable from
Manifest.loadIntegManifest()
Definitions for the integration testing manifest.
Properties
| Name | Type | Description |
|---|---|---|
| test | { [string]: Test } | test cases. |
| version | string | Version of the manifest. |
| enable | boolean | Enable lookups for this test. |
| synth | { [string]: string } | Additional context to use when performing a synth. |
testCases
Type:
{ [string]: Test }
test cases.
version
Type:
string
Version of the manifest.
enableLookups?
Type:
boolean
(optional, default: false)
Enable lookups for this test.
If lookups are enabled
then stackUpdateWorkflow must be set to false.
Lookups should only be enabled when you are explicitly testing
lookups.
synthContext?
Type:
{ [string]: string }
(optional, default: no additional context)
Additional context to use when performing a synth.
Any context provided here will override any default context

.NET
Java
Python
TypeScript