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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTestCasePropsMixin.EntryPointPropertystatic final classAn implementation forCfnTestCasePropsMixin.EntryPointProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChatEntryPointParameters
The chat entry point parameters for the test case.Returns union: either
IResolvableorCfnTestCasePropsMixin.ChatEntryPointParametersProperty- See Also:
-
getType
The type of the Entry Point.- See Also:
-
getVoiceCallEntryPointParameters
The voice call entry point parameters for the test case.Returns union: either
IResolvableorCfnTestCasePropsMixin.VoiceCallEntryPointParametersProperty- See Also:
-
builder
-