interface MainframeActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCasePropsMixin.MainframeActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCasePropsMixin_MainframeActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCasePropsMixin.MainframeActionProperty |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin.MainframeActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » CfnTestCasePropsMixin » MainframeActionProperty |
Specifies the mainframe 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 mainframeActionProperty: apptest_mixins.CfnTestCasePropsMixin.MainframeActionProperty = {
actionType: {
batch: {
batchJobName: 'batchJobName',
batchJobParameters: {
batchJobParametersKey: 'batchJobParameters',
},
exportDataSetNames: ['exportDataSetNames'],
},
tn3270: {
exportDataSetNames: ['exportDataSetNames'],
script: {
scriptLocation: 'scriptLocation',
type: 'type',
},
},
},
properties: {
dmsTaskArn: 'dmsTaskArn',
},
resource: 'resource',
};
Properties
| Name | Type | Description |
|---|---|---|
| action | IResolvable | Mainframe | The action type of the mainframe action. |
| properties? | IResolvable | Mainframe | The properties of the mainframe action. |
| resource? | string | The resource of the mainframe action. |
actionType?
Type:
IResolvable | Mainframe
(optional)
The action type of the mainframe action.
properties?
Type:
IResolvable | Mainframe
(optional)
The properties of the mainframe action.
resource?
Type:
string
(optional)
The resource of the mainframe action.

.NET
Go
Java
Python
TypeScript