interface TN3270Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCasePropsMixin.TN3270Property |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCasePropsMixin_TN3270Property |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCasePropsMixin.TN3270Property |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin.TN3270Property |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » CfnTestCasePropsMixin » TN3270Property |
Specifies the TN3270 protocol.
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 tN3270Property: apptest_mixins.CfnTestCasePropsMixin.TN3270Property = {
exportDataSetNames: ['exportDataSetNames'],
script: {
scriptLocation: 'scriptLocation',
type: 'type',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| export | string[] | The data set names of the TN3270 protocol. |
| script? | IResolvable | Script | The script of the TN3270 protocol. |
exportDataSetNames?
Type:
string[]
(optional)
The data set names of the TN3270 protocol.
script?
Type:
IResolvable | Script
(optional)
The script of the TN3270 protocol.

.NET
Go
Java
Python
TypeScript