Interface CfnRoutingProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRoutingProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:35.688Z")
@Stability(Stable)
public interface CfnRoutingProfileProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnRoutingProfile.
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.*;
CfnRoutingProfileProps cfnRoutingProfileProps = CfnRoutingProfileProps.builder()
.defaultOutboundQueueArn("defaultOutboundQueueArn")
.description("description")
.instanceArn("instanceArn")
.mediaConcurrencies(List.of(MediaConcurrencyProperty.builder()
.channel("channel")
.concurrency(123)
// the properties below are optional
.crossChannelBehavior(CrossChannelBehaviorProperty.builder()
.behaviorType("behaviorType")
.build())
.build()))
.name("name")
// the properties below are optional
.agentAvailabilityTimer("agentAvailabilityTimer")
.manualAssignmentQueueConfigs(List.of(RoutingProfileManualAssignmentQueueConfigProperty.builder()
.queueReference(RoutingProfileQueueReferenceProperty.builder()
.channel("channel")
.queueArn("queueArn")
.build())
.build()))
.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 forCfnRoutingProfilePropsstatic final classAn implementation forCfnRoutingProfileProps -
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 .The Amazon Resource Name (ARN) of the default outbound queue for the routing profile.The description of the routing profile.The identifier of the Amazon Connect instance.default ObjectContains information about the queue and channel for manual assignment behaviour can be enabled.The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.getName()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
-
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.- See Also:
-
getMediaConcurrencies
The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRoutingProfile.MediaConcurrencyProperty>- See Also:
-
getName
The name of the routing profile.- See Also:
-
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:
-
getManualAssignmentQueueConfigs
Contains information about the queue and channel for manual assignment behaviour can be enabled.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRoutingProfile.RoutingProfileManualAssignmentQueueConfigProperty>- 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: '<'eitherIResolvableorCfnRoutingProfile.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
- Returns:
- a
CfnRoutingProfileProps.BuilderofCfnRoutingProfileProps
-