You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Connect::Types::CreateRoutingProfileRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateRoutingProfileRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  instance_id: "InstanceId", # required
  name: "RoutingProfileName", # required
  description: "RoutingProfileDescription", # required
  default_outbound_queue_id: "QueueId", # required
  queue_configs: [
    {
      queue_reference: { # required
        queue_id: "QueueId", # required
        channel: "VOICE", # required, accepts VOICE, CHAT
      },
      priority: 1, # required
      delay: 1, # required
    },
  ],
  media_concurrencies: [ # required
    {
      channel: "VOICE", # required, accepts VOICE, CHAT
      concurrency: 1, # required
    },
  ],
  tags: {
    "TagKey" => "TagValue",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#default_outbound_queue_idString

The default outbound queue for the routing profile.

Returns:

  • (String)

    The default outbound queue for the routing profile.

#descriptionString

Description of the routing profile. Must not be more than 250 characters.

Returns:

  • (String)

    Description of the routing profile.

#instance_idString

The identifier of the Amazon Connect instance.

Returns:

  • (String)

    The identifier of the Amazon Connect instance.

#media_concurrenciesArray<Types::MediaConcurrency>

The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.

Returns:

  • (Array<Types::MediaConcurrency>)

    The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.

#nameString

The name of the routing profile. Must not be more than 127 characters.

Returns:

  • (String)

    The name of the routing profile.

#queue_configsArray<Types::RoutingProfileQueueConfig>

The inbound queues associated with the routing profile. If no queue is added, the agent can only make outbound calls.

Returns:

#tagsHash<String,String>

One or more tags.

Returns:

  • (Hash<String,String>)

    One or more tags.