Interface CfnRoutingProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRoutingProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-04T09:06:20.048Z")
@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") .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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRoutingProfileProps
static final class
An implementation forCfnRoutingProfileProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Whether 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.The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.getName()
The name of the routing profile.default Object
The 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.- 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:
-
getQueueConfigs
The inbound queues associated with the routing profile.If no queue is added, the agent can make only outbound calls.
- 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.Builder
ofCfnRoutingProfileProps
-