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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTestCase.MainframeActionPropertystatic final classAn implementation forCfnTestCase.MainframeActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActionType
The action type of the mainframe action.Returns union: either
IResolvableorCfnTestCase.MainframeActionTypeProperty- See Also:
-
getResource
The resource of the mainframe action.- See Also:
-
getProperties
The properties of the mainframe action.Returns union: either
IResolvableorCfnTestCase.MainframeActionPropertiesProperty- See Also:
-
builder
-