Interface IntegManifest
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
IntegManifest.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)", date="2025-11-06T20:25:05.790Z") @Stability(Stable) public interface IntegManifest extends software.amazon.jsii.JsiiSerializable
Definitions for the integration testing manifest.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIntegManifest.BuilderA builder forIntegManifeststatic classIntegManifest.Jsii$ProxyAn implementation forIntegManifest
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static IntegManifest.Builderbuilder()default BooleangetEnableLookups()Enable lookups for this test.default Map<String,String>getSynthContext()Additional context to use when performing a synth.Map<String,TestCase>getTestCases()test cases.StringgetVersion()Version of the manifest.
-
-
-
Method Detail
-
getVersion
@Stability(Stable) @NotNull String getVersion()
Version of the manifest.
-
getEnableLookups
@Stability(Stable) @Nullable default Boolean getEnableLookups()
Enable lookups for this test.If lookups are enabled then
stackUpdateWorkflowmust be set to false. Lookups should only be enabled when you are explicitly testing lookups.Default: false
-
getSynthContext
@Stability(Stable) @Nullable default Map<String,String> getSynthContext()
Additional context to use when performing a synth.Any context provided here will override any default context
Default: - no additional context
-
builder
@Stability(Stable) static IntegManifest.Builder builder()
- Returns:
- a
IntegManifest.BuilderofIntegManifest
-
-