interface MainframeActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_apptest.CfnTestCase.MainframeActionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapptest#CfnTestCase_MainframeActionProperty |
Java | software.amazon.awscdk.services.apptest.CfnTestCase.MainframeActionProperty |
Python | aws_cdk.aws_apptest.CfnTestCase.MainframeActionProperty |
TypeScript | aws-cdk-lib » aws_apptest » CfnTestCase » 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 { aws_apptest as apptest } from 'aws-cdk-lib';
const mainframeActionProperty: apptest.CfnTestCase.MainframeActionProperty = {
actionType: {
batch: {
batchJobName: 'batchJobName',
// the properties below are optional
batchJobParameters: {
batchJobParametersKey: 'batchJobParameters',
},
exportDataSetNames: ['exportDataSetNames'],
},
tn3270: {
script: {
scriptLocation: 'scriptLocation',
type: 'type',
},
// the properties below are optional
exportDataSetNames: ['exportDataSetNames'],
},
},
resource: 'resource',
// the properties below are optional
properties: {
dmsTaskArn: 'dmsTaskArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| action | IResolvable | Mainframe | The action type of the mainframe action. |
| resource | string | The resource of the mainframe action. |
| properties? | IResolvable | Mainframe | The properties of the mainframe action. |
actionType
Type:
IResolvable | Mainframe
The action type of the mainframe action.
resource
Type:
string
The resource of the mainframe action.
properties?
Type:
IResolvable | Mainframe
(optional)
The properties of the mainframe action.

.NET
Go
Java
Python
TypeScript