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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTestCase.MainframeActionTypePropertystatic final classAn implementation forCfnTestCase.MainframeActionTypeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBatch
The batch of the mainframe action type.Returns union: either
IResolvableorCfnTestCase.BatchProperty- See Also:
-
getTn3270
The tn3270 port of the mainframe action type.Returns union: either
IResolvableorCfnTestCase.TN3270Property- See Also:
-
builder
-