Interface CfnRoutingProfileMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRoutingProfileMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.623Z")
@Stability(Stable)
public interface CfnRoutingProfileMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnRoutingProfilePropsMixin.
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.*;
CfnRoutingProfileMixinProps cfnRoutingProfileMixinProps = CfnRoutingProfileMixinProps.builder()
.agentAvailabilityTimer("agentAvailabilityTimer")
.defaultOutboundQueueArn("defaultOutboundQueueArn")
.description("description")
.instanceArn("instanceArn")
.manualAssignmentQueueConfigs(List.of(RoutingProfileManualAssignmentQueueConfigProperty.builder()
.queueReference(RoutingProfileQueueReferenceProperty.builder()
.channel("channel")
.queueArn("queueArn")
.build())
.build()))
.mediaConcurrencies(List.of(MediaConcurrencyProperty.builder()
.channel("channel")
.concurrency(123)
.crossChannelBehavior(CrossChannelBehaviorProperty.builder()
.behaviorType("behaviorType")
.build())
.build()))
.name("name")
.queueConfigs(List.of(RoutingProfileQueueConfigProperty.builder()
.delay(123)
.priority(123)
.queueReference(RoutingProfileQueueReferenceProperty.builder()
.channel("channel")
.queueArn("queueArn")
.build())
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRoutingProfileMixinPropsstatic final classAn implementation forCfnRoutingProfileMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringWhether agents with this routing profile will have their routing order calculated based on time since their last inbound contact or longest idle time .default StringThe Amazon Resource Name (ARN) of the default outbound queue for the routing profile.default StringThe description of the routing profile.default ObjectThe identifier of the Amazon Connect instance.default ObjectContains information about the queue and channel for manual assignment behaviour can be enabled.default ObjectThe channels agents can handle in the Contact Control Panel (CCP) for this routing profile.default StringgetName()The name of the routing profile.default ObjectThe inbound queues associated with the routing profile.getTags()The tags used to organize, track, or control access for this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentAvailabilityTimer
Whether agents with this routing profile will have their routing order calculated based on time since their last inbound contact or longest idle time .- See Also:
-
getDefaultOutboundQueueArn
The Amazon Resource Name (ARN) of the default outbound queue for the routing profile.- See Also:
-
getDescription
The description of the routing profile.- See Also:
-
getInstanceArn
The identifier of the Amazon Connect instance.Returns union: either
StringorIInstanceRef- See Also:
-
getManualAssignmentQueueConfigs
Contains information about the queue and channel for manual assignment behaviour can be enabled.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRoutingProfilePropsMixin.RoutingProfileManualAssignmentQueueConfigProperty>- See Also:
-
getMediaConcurrencies
The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRoutingProfilePropsMixin.MediaConcurrencyProperty>- See Also:
-
getName
The name of the routing profile.- See Also:
-
getQueueConfigs
The inbound queues associated with the routing profile.If no queue is added, the agent can make only outbound calls.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRoutingProfilePropsMixin.RoutingProfileQueueConfigProperty>- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
- See Also:
-
builder
-