interface MainframeActionTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppTest.CfnTestCasePropsMixin.MainframeActionTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapptest#CfnTestCasePropsMixin_MainframeActionTypeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apptest.CfnTestCasePropsMixin.MainframeActionTypeProperty |
Python | aws_cdk.cfn_property_mixins.aws_apptest.CfnTestCasePropsMixin.MainframeActionTypeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apptest » 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 { aws_apptest as apptest } from '@aws-cdk/cfn-property-mixins';
const mainframeActionTypeProperty: apptest.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