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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTestCase.TN3270Propertystatic final classAn 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.Returns union: either
IResolvableorCfnTestCase.ScriptProperty- See Also:
-
getExportDataSetNames
The data set names of the TN3270 protocol.- See Also:
-
builder
- Returns:
- a
CfnTestCase.TN3270Property.BuilderofCfnTestCase.TN3270Property
-