Interface CfnTestCasePropsMixin.EntryPointProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTestCasePropsMixin.EntryPointProperty.Jsii$Proxy
Enclosing class:
CfnTestCasePropsMixin

@Stability(Stable) public static interface CfnTestCasePropsMixin.EntryPointProperty extends software.amazon.jsii.JsiiSerializable
The Entry Point associated with the test case.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.connect.*;
 EntryPointProperty entryPointProperty = EntryPointProperty.builder()
         .chatEntryPointParameters(ChatEntryPointParametersProperty.builder()
                 .flowId("flowId")
                 .build())
         .type("type")
         .voiceCallEntryPointParameters(VoiceCallEntryPointParametersProperty.builder()
                 .destinationPhoneNumber("destinationPhoneNumber")
                 .flowId("flowId")
                 .sourcePhoneNumber("sourcePhoneNumber")
                 .build())
         .build();
 

See Also: