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: