Interface CfnTestCasePropsMixin.ResourceActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTestCasePropsMixin.ResourceActionProperty.Jsii$Proxy
- Enclosing class:
CfnTestCasePropsMixin
@Stability(Stable)
public static interface CfnTestCasePropsMixin.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.mixins.preview.services.apptest.mixins.*;
ResourceActionProperty resourceActionProperty = ResourceActionProperty.builder()
.cloudFormationAction(CloudFormationActionProperty.builder()
.actionType("actionType")
.resource("resource")
.build())
.m2ManagedApplicationAction(M2ManagedApplicationActionProperty.builder()
.actionType("actionType")
.properties(M2ManagedActionPropertiesProperty.builder()
.forceStop(false)
.importDataSetLocation("importDataSetLocation")
.build())
.resource("resource")
.build())
.m2NonManagedApplicationAction(M2NonManagedApplicationActionProperty.builder()
.actionType("actionType")
.resource("resource")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTestCasePropsMixin.ResourceActionPropertystatic final classAn implementation forCfnTestCasePropsMixin.ResourceActionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe CloudFormation action of the resource action.default ObjectThe Mainframe Modernization managed application action of the resource action.default ObjectThe Mainframe Modernization non-managed application action of the resource action.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudFormationAction
The CloudFormation action of the resource action.Returns union: either
IResolvableorCfnTestCasePropsMixin.CloudFormationActionProperty- See Also:
-
getM2ManagedApplicationAction
The Mainframe Modernization managed application action of the resource action.Returns union: either
IResolvableorCfnTestCasePropsMixin.M2ManagedApplicationActionProperty- See Also:
-
getM2NonManagedApplicationAction
The Mainframe Modernization non-managed application action of the resource action.Returns union: either
IResolvableorCfnTestCasePropsMixin.M2NonManagedApplicationActionProperty- See Also:
-
builder
-