Interface CfnTestCaseProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTestCaseProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:23.427Z")
@Stability(Stable)
public interface CfnTestCaseProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnTestCase.
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.connect.*;
CfnTestCaseProps cfnTestCaseProps = CfnTestCaseProps.builder()
.content("content")
.instanceArn("instanceArn")
.name("name")
// the properties below are optional
.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")
.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 forCfnTestCasePropsstatic final classAn implementation forCfnTestCaseProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTestCaseProps.Builderbuilder()The 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.The identifier of the Amazon Connect instance.getName()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:
-
getInstanceArn
The identifier of the Amazon Connect instance.- See Also:
-
getName
The name 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
IResolvableorCfnTestCase.EntryPointProperty- See Also:
-
getInitializationData
The initialization data 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
CfnTestCaseProps.BuilderofCfnTestCaseProps
-