Interface CfnTestCase.TN3270Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTestCase.TN3270Property.Jsii$Proxy
- Enclosing class:
CfnTestCase
@Stability(Stable)
public static interface CfnTestCase.TN3270Property
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.apptest.*; TN3270Property tN3270Property = TN3270Property.builder() .script(ScriptProperty.builder() .scriptLocation("scriptLocation") .type("type") .build()) // the properties below are optional .exportDataSetNames(List.of("exportDataSetNames")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTestCase.TN3270Property
static final class
An implementation forCfnTestCase.TN3270Property
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The data set names of the TN3270 protocol.The script of the TN3270 protocol.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getScript
The script of the TN3270 protocol.- See Also:
-
getExportDataSetNames
The data set names of the TN3270 protocol.- See Also:
-
builder
- Returns:
- a
CfnTestCase.TN3270Property.Builder
ofCfnTestCase.TN3270Property
-