Interface CfnQueueProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnQueueProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:13.863Z") @Stability(Stable) public interface CfnQueueProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnQueue.

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.*;
 CfnQueueProps cfnQueueProps = CfnQueueProps.builder()
         .hoursOfOperationArn("hoursOfOperationArn")
         .instanceArn("instanceArn")
         .name("name")
         // the properties below are optional
         .description("description")
         .maxContacts(123)
         .outboundCallerConfig(OutboundCallerConfigProperty.builder()
                 .outboundCallerIdName("outboundCallerIdName")
                 .outboundCallerIdNumberArn("outboundCallerIdNumberArn")
                 .outboundFlowArn("outboundFlowArn")
                 .build())
         .quickConnectArns(List.of("quickConnectArns"))
         .status("status")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: