interface StepActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCasePropsMixin.StepActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCasePropsMixin_StepActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCasePropsMixin.StepActionProperty |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin.StepActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » 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 { mixins as apptest_mixins } from '@aws-cdk/mixins-preview/aws-apptest';
const stepActionProperty: apptest_mixins.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