Interface CfnTestCase.MainframeActionTypeProperty

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

@Stability(Stable) public static interface CfnTestCase.MainframeActionTypeProperty extends software.amazon.jsii.JsiiSerializable
Specifies the mainframe action type.

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.*;
 MainframeActionTypeProperty mainframeActionTypeProperty = MainframeActionTypeProperty.builder()
         .batch(BatchProperty.builder()
                 .batchJobName("batchJobName")
                 // the properties below are optional
                 .batchJobParameters(Map.of(
                         "batchJobParametersKey", "batchJobParameters"))
                 .exportDataSetNames(List.of("exportDataSetNames"))
                 .build())
         .tn3270(TN3270Property.builder()
                 .script(ScriptProperty.builder()
                         .scriptLocation("scriptLocation")
                         .type("type")
                         .build())
                 // the properties below are optional
                 .exportDataSetNames(List.of("exportDataSetNames"))
                 .build())
         .build();
 

See Also: