Interface CfnTestCase.BatchProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTestCase.BatchProperty.Jsii$Proxy
Enclosing class:
CfnTestCase

@Stability(Stable) public static interface CfnTestCase.BatchProperty extends software.amazon.jsii.JsiiSerializable
Defines a batch.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.apptest.*;
 BatchProperty batchProperty = BatchProperty.builder()
         .batchJobName("batchJobName")
         // the properties below are optional
         .batchJobParameters(Map.of(
                 "batchJobParametersKey", "batchJobParameters"))
         .exportDataSetNames(List.of("exportDataSetNames"))
         .build();
 

See Also: