Interface CfnTestCase.MainframeActionProperty

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

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

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.*;
 MainframeActionProperty mainframeActionProperty = MainframeActionProperty.builder()
         .actionType(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())
         .resource("resource")
         // the properties below are optional
         .properties(MainframeActionPropertiesProperty.builder()
                 .dmsTaskArn("dmsTaskArn")
                 .build())
         .build();
 

See Also: