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: