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

.NET
Go
Java
Python
TypeScript