Interface CfnTestCase.ResourceActionProperty

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

@Stability(Stable) public static interface CfnTestCase.ResourceActionProperty extends software.amazon.jsii.JsiiSerializable
Specifies a resource 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.*;
 ResourceActionProperty resourceActionProperty = ResourceActionProperty.builder()
         .cloudFormationAction(CloudFormationActionProperty.builder()
                 .resource("resource")
                 // the properties below are optional
                 .actionType("actionType")
                 .build())
         .m2ManagedApplicationAction(M2ManagedApplicationActionProperty.builder()
                 .actionType("actionType")
                 .resource("resource")
                 // the properties below are optional
                 .properties(M2ManagedActionPropertiesProperty.builder()
                         .forceStop(false)
                         .importDataSetLocation("importDataSetLocation")
                         .build())
                 .build())
         .m2NonManagedApplicationAction(M2NonManagedApplicationActionProperty.builder()
                 .actionType("actionType")
                 .resource("resource")
                 .build())
         .build();
 

See Also: