interface StepActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppTest.CfnTestCasePropsMixin.StepActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapptest#CfnTestCasePropsMixin_StepActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apptest.CfnTestCasePropsMixin.StepActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_apptest.CfnTestCasePropsMixin.StepActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apptest » CfnTestCasePropsMixin » StepActionProperty |
Specifies a step 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 stepActionProperty: apptest.CfnTestCasePropsMixin.StepActionProperty = {
compareAction: {
input: {
file: {
fileMetadata: {
databaseCdc: {
sourceMetadata: {
captureTool: 'captureTool',
type: 'type',
},
targetMetadata: {
captureTool: 'captureTool',
type: 'type',
},
},
dataSets: [{
ccsid: 'ccsid',
format: 'format',
length: 123,
name: 'name',
type: 'type',
}],
},
sourceLocation: 'sourceLocation',
targetLocation: 'targetLocation',
},
},
output: {
file: {
fileLocation: 'fileLocation',
},
},
},
mainframeAction: {
actionType: {
batch: {
batchJobName: 'batchJobName',
batchJobParameters: {
batchJobParametersKey: 'batchJobParameters',
},
exportDataSetNames: ['exportDataSetNames'],
},
tn3270: {
exportDataSetNames: ['exportDataSetNames'],
script: {
scriptLocation: 'scriptLocation',
type: 'type',
},
},
},
properties: {
dmsTaskArn: 'dmsTaskArn',
},
resource: 'resource',
},
resourceAction: {
cloudFormationAction: {
actionType: 'actionType',
resource: 'resource',
},
m2ManagedApplicationAction: {
actionType: 'actionType',
properties: {
forceStop: false,
importDataSetLocation: 'importDataSetLocation',
},
resource: 'resource',
},
m2NonManagedApplicationAction: {
actionType: 'actionType',
resource: 'resource',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| compare | IResolvable | Compare | The compare action of the step action. |
| mainframe | IResolvable | Mainframe | The mainframe action of the step action. |
| resource | IResolvable | Resource | The resource action of the step action. |
compareAction?
Type:
IResolvable | Compare
(optional)
The compare action of the step action.
mainframeAction?
Type:
IResolvable | Mainframe
(optional)
The mainframe action of the step action.
resourceAction?
Type:
IResolvable | Resource
(optional)
The resource action of the step action.

.NET
Go
Java
Python
TypeScript