interface ResourceActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppTest.CfnTestCasePropsMixin.ResourceActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapptest#CfnTestCasePropsMixin_ResourceActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apptest.CfnTestCasePropsMixin.ResourceActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_apptest.CfnTestCasePropsMixin.ResourceActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apptest » 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 { aws_apptest as apptest } from '@aws-cdk/cfn-property-mixins';
const resourceActionProperty: apptest.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