Interface CfnTestCase.M2ManagedApplicationActionProperty

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

@Stability(Stable) public static interface CfnTestCase.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.services.apptest.*;
 M2ManagedApplicationActionProperty m2ManagedApplicationActionProperty = M2ManagedApplicationActionProperty.builder()
         .actionType("actionType")
         .resource("resource")
         // the properties below are optional
         .properties(M2ManagedActionPropertiesProperty.builder()
                 .forceStop(false)
                 .importDataSetLocation("importDataSetLocation")
                 .build())
         .build();
 

See Also: