interface ResourceActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCasePropsMixin.ResourceActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCasePropsMixin_ResourceActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCasePropsMixin.ResourceActionProperty |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin.ResourceActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » CfnTestCasePropsMixin » ResourceActionProperty |
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 { mixins as apptest_mixins } from '@aws-cdk/mixins-preview/aws-apptest';
const resourceActionProperty: apptest_mixins.CfnTestCasePropsMixin.ResourceActionProperty = {
cloudFormationAction: {
actionType: 'actionType',
resource: 'resource',
},
m2ManagedApplicationAction: {
actionType: 'actionType',
properties: {
forceStop: false,
importDataSetLocation: 'importDataSetLocation',
},
resource: 'resource',
},
m2NonManagedApplicationAction: {
actionType: 'actionType',
resource: 'resource',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | IResolvable | Cloud | The CloudFormation action of the resource action. |
| m2 | IResolvable | M2 | The Mainframe Modernization managed application action of the resource action. |
| m2 | IResolvable | M2 | The Mainframe Modernization non-managed application action of the resource action. |
cloudFormationAction?
Type:
IResolvable | Cloud
(optional)
The CloudFormation action of the resource action.
m2ManagedApplicationAction?
Type:
IResolvable | M2
(optional)
The Mainframe Modernization managed application action of the resource action.
m2NonManagedApplicationAction?
Type:
IResolvable | M2
(optional)
The Mainframe Modernization non-managed application action of the resource action.

.NET
Go
Java
Python
TypeScript