Interface CfnTestCasePropsMixin.M2ManagedApplicationActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTestCasePropsMixin.M2ManagedApplicationActionProperty.Jsii$Proxy
- Enclosing class:
CfnTestCasePropsMixin
@Stability(Stable)
public static interface CfnTestCasePropsMixin.M2ManagedApplicationActionProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the Mainframe Modernization managed application 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.cfnpropertymixins.services.apptest.*;
M2ManagedApplicationActionProperty m2ManagedApplicationActionProperty = M2ManagedApplicationActionProperty.builder()
.actionType("actionType")
.properties(M2ManagedActionPropertiesProperty.builder()
.forceStop(false)
.importDataSetLocation("importDataSetLocation")
.build())
.resource("resource")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTestCasePropsMixin.M2ManagedApplicationActionPropertystatic final classAn implementation forCfnTestCasePropsMixin.M2ManagedApplicationActionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe action type of the Mainframe Modernization managed application action.default ObjectThe properties of the Mainframe Modernization managed application action.default StringThe resource of the Mainframe Modernization managed application action.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActionType
The action type of the Mainframe Modernization managed application action.- See Also:
-
getProperties
The properties of the Mainframe Modernization managed application action.Returns union: either
IResolvableorCfnTestCasePropsMixin.M2ManagedActionPropertiesProperty- See Also:
-
getResource
The resource of the Mainframe Modernization managed application action.- See Also:
-
builder
@Stability(Stable) static CfnTestCasePropsMixin.M2ManagedApplicationActionProperty.Builder builder()
-