Interface CfnTestCaseMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTestCaseMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:40.576Z")
@Stability(Stable)
public interface CfnTestCaseMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnTestCasePropsMixin.
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.*;
CfnTestCaseMixinProps cfnTestCaseMixinProps = CfnTestCaseMixinProps.builder()
.content("content")
.description("description")
.entryPoint(EntryPointProperty.builder()
.chatEntryPointParameters(ChatEntryPointParametersProperty.builder()
.flowId("flowId")
.build())
.type("type")
.voiceCallEntryPointParameters(VoiceCallEntryPointParametersProperty.builder()
.destinationPhoneNumber("destinationPhoneNumber")
.flowId("flowId")
.sourcePhoneNumber("sourcePhoneNumber")
.build())
.build())
.initializationData("initializationData")
.instanceArn("instanceArn")
.name("name")
.status("status")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTestCaseMixinPropsstatic final classAn implementation forCfnTestCaseMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe content of the test case.default StringThe description of the test case.default ObjectThe Entry Point associated with the test case.default StringThe initialization data of the test case.default StringThe identifier of the Amazon Connect instance.default StringgetName()The name of the test case.default StringThe status of the test case.getTags()One or more tags.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContent
The content of the test case.- See Also:
-
getDescription
The description of the test case.- See Also:
-
getEntryPoint
The Entry Point associated with the test case.Returns union: either
IResolvableorCfnTestCasePropsMixin.EntryPointProperty- See Also:
-
getInitializationData
The initialization data of the test case.- See Also:
-
getInstanceArn
The identifier of the Amazon Connect instance.- See Also:
-
getName
The name of the test case.- See Also:
-
getStatus
The status of the test case.- See Also:
-
getTags
One or more tags.- See Also:
-
builder
- Returns:
- a
CfnTestCaseMixinProps.BuilderofCfnTestCaseMixinProps
-