aws.connect.RoutingProfile
Explore with Pulumi AI
Provides an Amazon Connect Routing Profile resource. For more information see Amazon Connect: Getting Started
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.connect.RoutingProfile("example", {
    instanceId: "aaaaaaaa-bbbb-cccc-dddd-111111111111",
    name: "example",
    defaultOutboundQueueId: "12345678-1234-1234-1234-123456789012",
    description: "example description",
    mediaConcurrencies: [{
        channel: "VOICE",
        concurrency: 1,
    }],
    queueConfigs: [{
        channel: "VOICE",
        delay: 2,
        priority: 1,
        queueId: "12345678-1234-1234-1234-123456789012",
    }],
    tags: {
        Name: "Example Routing Profile",
    },
});
import pulumi
import pulumi_aws as aws
example = aws.connect.RoutingProfile("example",
    instance_id="aaaaaaaa-bbbb-cccc-dddd-111111111111",
    name="example",
    default_outbound_queue_id="12345678-1234-1234-1234-123456789012",
    description="example description",
    media_concurrencies=[{
        "channel": "VOICE",
        "concurrency": 1,
    }],
    queue_configs=[{
        "channel": "VOICE",
        "delay": 2,
        "priority": 1,
        "queue_id": "12345678-1234-1234-1234-123456789012",
    }],
    tags={
        "Name": "Example Routing Profile",
    })
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/connect"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := connect.NewRoutingProfile(ctx, "example", &connect.RoutingProfileArgs{
			InstanceId:             pulumi.String("aaaaaaaa-bbbb-cccc-dddd-111111111111"),
			Name:                   pulumi.String("example"),
			DefaultOutboundQueueId: pulumi.String("12345678-1234-1234-1234-123456789012"),
			Description:            pulumi.String("example description"),
			MediaConcurrencies: connect.RoutingProfileMediaConcurrencyArray{
				&connect.RoutingProfileMediaConcurrencyArgs{
					Channel:     pulumi.String("VOICE"),
					Concurrency: pulumi.Int(1),
				},
			},
			QueueConfigs: connect.RoutingProfileQueueConfigArray{
				&connect.RoutingProfileQueueConfigArgs{
					Channel:  pulumi.String("VOICE"),
					Delay:    pulumi.Int(2),
					Priority: pulumi.Int(1),
					QueueId:  pulumi.String("12345678-1234-1234-1234-123456789012"),
				},
			},
			Tags: pulumi.StringMap{
				"Name": pulumi.String("Example Routing Profile"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() => 
{
    var example = new Aws.Connect.RoutingProfile("example", new()
    {
        InstanceId = "aaaaaaaa-bbbb-cccc-dddd-111111111111",
        Name = "example",
        DefaultOutboundQueueId = "12345678-1234-1234-1234-123456789012",
        Description = "example description",
        MediaConcurrencies = new[]
        {
            new Aws.Connect.Inputs.RoutingProfileMediaConcurrencyArgs
            {
                Channel = "VOICE",
                Concurrency = 1,
            },
        },
        QueueConfigs = new[]
        {
            new Aws.Connect.Inputs.RoutingProfileQueueConfigArgs
            {
                Channel = "VOICE",
                Delay = 2,
                Priority = 1,
                QueueId = "12345678-1234-1234-1234-123456789012",
            },
        },
        Tags = 
        {
            { "Name", "Example Routing Profile" },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.connect.RoutingProfile;
import com.pulumi.aws.connect.RoutingProfileArgs;
import com.pulumi.aws.connect.inputs.RoutingProfileMediaConcurrencyArgs;
import com.pulumi.aws.connect.inputs.RoutingProfileQueueConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var example = new RoutingProfile("example", RoutingProfileArgs.builder()
            .instanceId("aaaaaaaa-bbbb-cccc-dddd-111111111111")
            .name("example")
            .defaultOutboundQueueId("12345678-1234-1234-1234-123456789012")
            .description("example description")
            .mediaConcurrencies(RoutingProfileMediaConcurrencyArgs.builder()
                .channel("VOICE")
                .concurrency(1)
                .build())
            .queueConfigs(RoutingProfileQueueConfigArgs.builder()
                .channel("VOICE")
                .delay(2)
                .priority(1)
                .queueId("12345678-1234-1234-1234-123456789012")
                .build())
            .tags(Map.of("Name", "Example Routing Profile"))
            .build());
    }
}
resources:
  example:
    type: aws:connect:RoutingProfile
    properties:
      instanceId: aaaaaaaa-bbbb-cccc-dddd-111111111111
      name: example
      defaultOutboundQueueId: 12345678-1234-1234-1234-123456789012
      description: example description
      mediaConcurrencies:
        - channel: VOICE
          concurrency: 1
      queueConfigs:
        - channel: VOICE
          delay: 2
          priority: 1
          queueId: 12345678-1234-1234-1234-123456789012
      tags:
        Name: Example Routing Profile
Create RoutingProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RoutingProfile(name: string, args: RoutingProfileArgs, opts?: CustomResourceOptions);@overload
def RoutingProfile(resource_name: str,
                   args: RoutingProfileArgs,
                   opts: Optional[ResourceOptions] = None)
@overload
def RoutingProfile(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   default_outbound_queue_id: Optional[str] = None,
                   description: Optional[str] = None,
                   instance_id: Optional[str] = None,
                   media_concurrencies: Optional[Sequence[RoutingProfileMediaConcurrencyArgs]] = None,
                   name: Optional[str] = None,
                   queue_configs: Optional[Sequence[RoutingProfileQueueConfigArgs]] = None,
                   tags: Optional[Mapping[str, str]] = None)func NewRoutingProfile(ctx *Context, name string, args RoutingProfileArgs, opts ...ResourceOption) (*RoutingProfile, error)public RoutingProfile(string name, RoutingProfileArgs args, CustomResourceOptions? opts = null)
public RoutingProfile(String name, RoutingProfileArgs args)
public RoutingProfile(String name, RoutingProfileArgs args, CustomResourceOptions options)
type: aws:connect:RoutingProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RoutingProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RoutingProfileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RoutingProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RoutingProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RoutingProfileArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var routingProfileResource = new Aws.Connect.RoutingProfile("routingProfileResource", new()
{
    DefaultOutboundQueueId = "string",
    Description = "string",
    InstanceId = "string",
    MediaConcurrencies = new[]
    {
        new Aws.Connect.Inputs.RoutingProfileMediaConcurrencyArgs
        {
            Channel = "string",
            Concurrency = 0,
        },
    },
    Name = "string",
    QueueConfigs = new[]
    {
        new Aws.Connect.Inputs.RoutingProfileQueueConfigArgs
        {
            Channel = "string",
            Delay = 0,
            Priority = 0,
            QueueId = "string",
            QueueArn = "string",
            QueueName = "string",
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := connect.NewRoutingProfile(ctx, "routingProfileResource", &connect.RoutingProfileArgs{
	DefaultOutboundQueueId: pulumi.String("string"),
	Description:            pulumi.String("string"),
	InstanceId:             pulumi.String("string"),
	MediaConcurrencies: connect.RoutingProfileMediaConcurrencyArray{
		&connect.RoutingProfileMediaConcurrencyArgs{
			Channel:     pulumi.String("string"),
			Concurrency: pulumi.Int(0),
		},
	},
	Name: pulumi.String("string"),
	QueueConfigs: connect.RoutingProfileQueueConfigArray{
		&connect.RoutingProfileQueueConfigArgs{
			Channel:   pulumi.String("string"),
			Delay:     pulumi.Int(0),
			Priority:  pulumi.Int(0),
			QueueId:   pulumi.String("string"),
			QueueArn:  pulumi.String("string"),
			QueueName: pulumi.String("string"),
		},
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var routingProfileResource = new RoutingProfile("routingProfileResource", RoutingProfileArgs.builder()
    .defaultOutboundQueueId("string")
    .description("string")
    .instanceId("string")
    .mediaConcurrencies(RoutingProfileMediaConcurrencyArgs.builder()
        .channel("string")
        .concurrency(0)
        .build())
    .name("string")
    .queueConfigs(RoutingProfileQueueConfigArgs.builder()
        .channel("string")
        .delay(0)
        .priority(0)
        .queueId("string")
        .queueArn("string")
        .queueName("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
routing_profile_resource = aws.connect.RoutingProfile("routingProfileResource",
    default_outbound_queue_id="string",
    description="string",
    instance_id="string",
    media_concurrencies=[{
        "channel": "string",
        "concurrency": 0,
    }],
    name="string",
    queue_configs=[{
        "channel": "string",
        "delay": 0,
        "priority": 0,
        "queue_id": "string",
        "queue_arn": "string",
        "queue_name": "string",
    }],
    tags={
        "string": "string",
    })
const routingProfileResource = new aws.connect.RoutingProfile("routingProfileResource", {
    defaultOutboundQueueId: "string",
    description: "string",
    instanceId: "string",
    mediaConcurrencies: [{
        channel: "string",
        concurrency: 0,
    }],
    name: "string",
    queueConfigs: [{
        channel: "string",
        delay: 0,
        priority: 0,
        queueId: "string",
        queueArn: "string",
        queueName: "string",
    }],
    tags: {
        string: "string",
    },
});
type: aws:connect:RoutingProfile
properties:
    defaultOutboundQueueId: string
    description: string
    instanceId: string
    mediaConcurrencies:
        - channel: string
          concurrency: 0
    name: string
    queueConfigs:
        - channel: string
          delay: 0
          priority: 0
          queueArn: string
          queueId: string
          queueName: string
    tags:
        string: string
RoutingProfile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The RoutingProfile resource accepts the following input properties:
- DefaultOutbound stringQueue Id 
- Specifies the default outbound queue for the Routing Profile.
- Description string
- Specifies the description of the Routing Profile.
- InstanceId string
- Specifies the identifier of the hosting Amazon Connect Instance.
- MediaConcurrencies List<RoutingProfile Media Concurrency> 
- One or more media_concurrenciesblocks that specify the channels that agents can handle in the Contact Control Panel (CCP) for this Routing Profile. Themedia_concurrenciesblock is documented below.
- Name string
- Specifies the name of the Routing Profile.
- QueueConfigs List<RoutingProfile Queue Config> 
- One or more queue_configsblocks that specify the inbound queues associated with the routing profile. If no queue is added, the agent only can make outbound calls. Thequeue_configsblock is documented below.
- Dictionary<string, string>
- Tags to apply to the Routing Profile. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- DefaultOutbound stringQueue Id 
- Specifies the default outbound queue for the Routing Profile.
- Description string
- Specifies the description of the Routing Profile.
- InstanceId string
- Specifies the identifier of the hosting Amazon Connect Instance.
- MediaConcurrencies []RoutingProfile Media Concurrency Args 
- One or more media_concurrenciesblocks that specify the channels that agents can handle in the Contact Control Panel (CCP) for this Routing Profile. Themedia_concurrenciesblock is documented below.
- Name string
- Specifies the name of the Routing Profile.
- QueueConfigs []RoutingProfile Queue Config Args 
- One or more queue_configsblocks that specify the inbound queues associated with the routing profile. If no queue is added, the agent only can make outbound calls. Thequeue_configsblock is documented below.
- map[string]string
- Tags to apply to the Routing Profile. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- defaultOutbound StringQueue Id 
- Specifies the default outbound queue for the Routing Profile.
- description String
- Specifies the description of the Routing Profile.
- instanceId String
- Specifies the identifier of the hosting Amazon Connect Instance.
- mediaConcurrencies List<RoutingProfile Media Concurrency> 
- One or more media_concurrenciesblocks that specify the channels that agents can handle in the Contact Control Panel (CCP) for this Routing Profile. Themedia_concurrenciesblock is documented below.
- name String
- Specifies the name of the Routing Profile.
- queueConfigs List<RoutingProfile Queue Config> 
- One or more queue_configsblocks that specify the inbound queues associated with the routing profile. If no queue is added, the agent only can make outbound calls. Thequeue_configsblock is documented below.
- Map<String,String>
- Tags to apply to the Routing Profile. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- defaultOutbound stringQueue Id 
- Specifies the default outbound queue for the Routing Profile.
- description string
- Specifies the description of the Routing Profile.
- instanceId string
- Specifies the identifier of the hosting Amazon Connect Instance.
- mediaConcurrencies RoutingProfile Media Concurrency[] 
- One or more media_concurrenciesblocks that specify the channels that agents can handle in the Contact Control Panel (CCP) for this Routing Profile. Themedia_concurrenciesblock is documented below.
- name string
- Specifies the name of the Routing Profile.
- queueConfigs RoutingProfile Queue Config[] 
- One or more queue_configsblocks that specify the inbound queues associated with the routing profile. If no queue is added, the agent only can make outbound calls. Thequeue_configsblock is documented below.
- {[key: string]: string}
- Tags to apply to the Routing Profile. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- default_outbound_ strqueue_ id 
- Specifies the default outbound queue for the Routing Profile.
- description str
- Specifies the description of the Routing Profile.
- instance_id str
- Specifies the identifier of the hosting Amazon Connect Instance.
- media_concurrencies Sequence[RoutingProfile Media Concurrency Args] 
- One or more media_concurrenciesblocks that specify the channels that agents can handle in the Contact Control Panel (CCP) for this Routing Profile. Themedia_concurrenciesblock is documented below.
- name str
- Specifies the name of the Routing Profile.
- queue_configs Sequence[RoutingProfile Queue Config Args] 
- One or more queue_configsblocks that specify the inbound queues associated with the routing profile. If no queue is added, the agent only can make outbound calls. Thequeue_configsblock is documented below.
- Mapping[str, str]
- Tags to apply to the Routing Profile. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- defaultOutbound StringQueue Id 
- Specifies the default outbound queue for the Routing Profile.
- description String
- Specifies the description of the Routing Profile.
- instanceId String
- Specifies the identifier of the hosting Amazon Connect Instance.
- mediaConcurrencies List<Property Map>
- One or more media_concurrenciesblocks that specify the channels that agents can handle in the Contact Control Panel (CCP) for this Routing Profile. Themedia_concurrenciesblock is documented below.
- name String
- Specifies the name of the Routing Profile.
- queueConfigs List<Property Map>
- One or more queue_configsblocks that specify the inbound queues associated with the routing profile. If no queue is added, the agent only can make outbound calls. Thequeue_configsblock is documented below.
- Map<String>
- Tags to apply to the Routing Profile. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the RoutingProfile resource produces the following output properties:
- Arn string
- The Amazon Resource Name (ARN) of the Routing Profile.
- Id string
- The provider-assigned unique ID for this managed resource.
- RoutingProfile stringId 
- The identifier for the Routing Profile.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Arn string
- The Amazon Resource Name (ARN) of the Routing Profile.
- Id string
- The provider-assigned unique ID for this managed resource.
- RoutingProfile stringId 
- The identifier for the Routing Profile.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The Amazon Resource Name (ARN) of the Routing Profile.
- id String
- The provider-assigned unique ID for this managed resource.
- routingProfile StringId 
- The identifier for the Routing Profile.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn string
- The Amazon Resource Name (ARN) of the Routing Profile.
- id string
- The provider-assigned unique ID for this managed resource.
- routingProfile stringId 
- The identifier for the Routing Profile.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn str
- The Amazon Resource Name (ARN) of the Routing Profile.
- id str
- The provider-assigned unique ID for this managed resource.
- routing_profile_ strid 
- The identifier for the Routing Profile.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The Amazon Resource Name (ARN) of the Routing Profile.
- id String
- The provider-assigned unique ID for this managed resource.
- routingProfile StringId 
- The identifier for the Routing Profile.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
Look up Existing RoutingProfile Resource
Get an existing RoutingProfile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: RoutingProfileState, opts?: CustomResourceOptions): RoutingProfile@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        default_outbound_queue_id: Optional[str] = None,
        description: Optional[str] = None,
        instance_id: Optional[str] = None,
        media_concurrencies: Optional[Sequence[RoutingProfileMediaConcurrencyArgs]] = None,
        name: Optional[str] = None,
        queue_configs: Optional[Sequence[RoutingProfileQueueConfigArgs]] = None,
        routing_profile_id: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> RoutingProfilefunc GetRoutingProfile(ctx *Context, name string, id IDInput, state *RoutingProfileState, opts ...ResourceOption) (*RoutingProfile, error)public static RoutingProfile Get(string name, Input<string> id, RoutingProfileState? state, CustomResourceOptions? opts = null)public static RoutingProfile get(String name, Output<String> id, RoutingProfileState state, CustomResourceOptions options)resources:  _:    type: aws:connect:RoutingProfile    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- The Amazon Resource Name (ARN) of the Routing Profile.
- DefaultOutbound stringQueue Id 
- Specifies the default outbound queue for the Routing Profile.
- Description string
- Specifies the description of the Routing Profile.
- InstanceId string
- Specifies the identifier of the hosting Amazon Connect Instance.
- MediaConcurrencies List<RoutingProfile Media Concurrency> 
- One or more media_concurrenciesblocks that specify the channels that agents can handle in the Contact Control Panel (CCP) for this Routing Profile. Themedia_concurrenciesblock is documented below.
- Name string
- Specifies the name of the Routing Profile.
- QueueConfigs List<RoutingProfile Queue Config> 
- One or more queue_configsblocks that specify the inbound queues associated with the routing profile. If no queue is added, the agent only can make outbound calls. Thequeue_configsblock is documented below.
- RoutingProfile stringId 
- The identifier for the Routing Profile.
- Dictionary<string, string>
- Tags to apply to the Routing Profile. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Arn string
- The Amazon Resource Name (ARN) of the Routing Profile.
- DefaultOutbound stringQueue Id 
- Specifies the default outbound queue for the Routing Profile.
- Description string
- Specifies the description of the Routing Profile.
- InstanceId string
- Specifies the identifier of the hosting Amazon Connect Instance.
- MediaConcurrencies []RoutingProfile Media Concurrency Args 
- One or more media_concurrenciesblocks that specify the channels that agents can handle in the Contact Control Panel (CCP) for this Routing Profile. Themedia_concurrenciesblock is documented below.
- Name string
- Specifies the name of the Routing Profile.
- QueueConfigs []RoutingProfile Queue Config Args 
- One or more queue_configsblocks that specify the inbound queues associated with the routing profile. If no queue is added, the agent only can make outbound calls. Thequeue_configsblock is documented below.
- RoutingProfile stringId 
- The identifier for the Routing Profile.
- map[string]string
- Tags to apply to the Routing Profile. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The Amazon Resource Name (ARN) of the Routing Profile.
- defaultOutbound StringQueue Id 
- Specifies the default outbound queue for the Routing Profile.
- description String
- Specifies the description of the Routing Profile.
- instanceId String
- Specifies the identifier of the hosting Amazon Connect Instance.
- mediaConcurrencies List<RoutingProfile Media Concurrency> 
- One or more media_concurrenciesblocks that specify the channels that agents can handle in the Contact Control Panel (CCP) for this Routing Profile. Themedia_concurrenciesblock is documented below.
- name String
- Specifies the name of the Routing Profile.
- queueConfigs List<RoutingProfile Queue Config> 
- One or more queue_configsblocks that specify the inbound queues associated with the routing profile. If no queue is added, the agent only can make outbound calls. Thequeue_configsblock is documented below.
- routingProfile StringId 
- The identifier for the Routing Profile.
- Map<String,String>
- Tags to apply to the Routing Profile. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn string
- The Amazon Resource Name (ARN) of the Routing Profile.
- defaultOutbound stringQueue Id 
- Specifies the default outbound queue for the Routing Profile.
- description string
- Specifies the description of the Routing Profile.
- instanceId string
- Specifies the identifier of the hosting Amazon Connect Instance.
- mediaConcurrencies RoutingProfile Media Concurrency[] 
- One or more media_concurrenciesblocks that specify the channels that agents can handle in the Contact Control Panel (CCP) for this Routing Profile. Themedia_concurrenciesblock is documented below.
- name string
- Specifies the name of the Routing Profile.
- queueConfigs RoutingProfile Queue Config[] 
- One or more queue_configsblocks that specify the inbound queues associated with the routing profile. If no queue is added, the agent only can make outbound calls. Thequeue_configsblock is documented below.
- routingProfile stringId 
- The identifier for the Routing Profile.
- {[key: string]: string}
- Tags to apply to the Routing Profile. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn str
- The Amazon Resource Name (ARN) of the Routing Profile.
- default_outbound_ strqueue_ id 
- Specifies the default outbound queue for the Routing Profile.
- description str
- Specifies the description of the Routing Profile.
- instance_id str
- Specifies the identifier of the hosting Amazon Connect Instance.
- media_concurrencies Sequence[RoutingProfile Media Concurrency Args] 
- One or more media_concurrenciesblocks that specify the channels that agents can handle in the Contact Control Panel (CCP) for this Routing Profile. Themedia_concurrenciesblock is documented below.
- name str
- Specifies the name of the Routing Profile.
- queue_configs Sequence[RoutingProfile Queue Config Args] 
- One or more queue_configsblocks that specify the inbound queues associated with the routing profile. If no queue is added, the agent only can make outbound calls. Thequeue_configsblock is documented below.
- routing_profile_ strid 
- The identifier for the Routing Profile.
- Mapping[str, str]
- Tags to apply to the Routing Profile. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The Amazon Resource Name (ARN) of the Routing Profile.
- defaultOutbound StringQueue Id 
- Specifies the default outbound queue for the Routing Profile.
- description String
- Specifies the description of the Routing Profile.
- instanceId String
- Specifies the identifier of the hosting Amazon Connect Instance.
- mediaConcurrencies List<Property Map>
- One or more media_concurrenciesblocks that specify the channels that agents can handle in the Contact Control Panel (CCP) for this Routing Profile. Themedia_concurrenciesblock is documented below.
- name String
- Specifies the name of the Routing Profile.
- queueConfigs List<Property Map>
- One or more queue_configsblocks that specify the inbound queues associated with the routing profile. If no queue is added, the agent only can make outbound calls. Thequeue_configsblock is documented below.
- routingProfile StringId 
- The identifier for the Routing Profile.
- Map<String>
- Tags to apply to the Routing Profile. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
Supporting Types
RoutingProfileMediaConcurrency, RoutingProfileMediaConcurrencyArgs        
- Channel string
- Specifies the channels that agents can handle in the Contact Control Panel (CCP). Valid values are VOICE,CHAT,TASK.
- Concurrency int
- Specifies the number of contacts an agent can have on a channel simultaneously. Valid Range for VOICE: Minimum value of 1. Maximum value of 1. Valid Range forCHAT: Minimum value of 1. Maximum value of 10. Valid Range forTASK: Minimum value of 1. Maximum value of 10.
- Channel string
- Specifies the channels that agents can handle in the Contact Control Panel (CCP). Valid values are VOICE,CHAT,TASK.
- Concurrency int
- Specifies the number of contacts an agent can have on a channel simultaneously. Valid Range for VOICE: Minimum value of 1. Maximum value of 1. Valid Range forCHAT: Minimum value of 1. Maximum value of 10. Valid Range forTASK: Minimum value of 1. Maximum value of 10.
- channel String
- Specifies the channels that agents can handle in the Contact Control Panel (CCP). Valid values are VOICE,CHAT,TASK.
- concurrency Integer
- Specifies the number of contacts an agent can have on a channel simultaneously. Valid Range for VOICE: Minimum value of 1. Maximum value of 1. Valid Range forCHAT: Minimum value of 1. Maximum value of 10. Valid Range forTASK: Minimum value of 1. Maximum value of 10.
- channel string
- Specifies the channels that agents can handle in the Contact Control Panel (CCP). Valid values are VOICE,CHAT,TASK.
- concurrency number
- Specifies the number of contacts an agent can have on a channel simultaneously. Valid Range for VOICE: Minimum value of 1. Maximum value of 1. Valid Range forCHAT: Minimum value of 1. Maximum value of 10. Valid Range forTASK: Minimum value of 1. Maximum value of 10.
- channel str
- Specifies the channels that agents can handle in the Contact Control Panel (CCP). Valid values are VOICE,CHAT,TASK.
- concurrency int
- Specifies the number of contacts an agent can have on a channel simultaneously. Valid Range for VOICE: Minimum value of 1. Maximum value of 1. Valid Range forCHAT: Minimum value of 1. Maximum value of 10. Valid Range forTASK: Minimum value of 1. Maximum value of 10.
- channel String
- Specifies the channels that agents can handle in the Contact Control Panel (CCP). Valid values are VOICE,CHAT,TASK.
- concurrency Number
- Specifies the number of contacts an agent can have on a channel simultaneously. Valid Range for VOICE: Minimum value of 1. Maximum value of 1. Valid Range forCHAT: Minimum value of 1. Maximum value of 10. Valid Range forTASK: Minimum value of 1. Maximum value of 10.
RoutingProfileQueueConfig, RoutingProfileQueueConfigArgs        
- Channel string
- Specifies the channels agents can handle in the Contact Control Panel (CCP) for this routing profile. Valid values are VOICE,CHAT,TASK.
- Delay int
- Specifies the delay, in seconds, that a contact should be in the queue before they are routed to an available agent
- Priority int
- Specifies the order in which contacts are to be handled for the queue.
- QueueId string
- Specifies the identifier for the queue.
- QueueArn string
- ARN for the queue.
- QueueName string
- Name for the queue.
- Channel string
- Specifies the channels agents can handle in the Contact Control Panel (CCP) for this routing profile. Valid values are VOICE,CHAT,TASK.
- Delay int
- Specifies the delay, in seconds, that a contact should be in the queue before they are routed to an available agent
- Priority int
- Specifies the order in which contacts are to be handled for the queue.
- QueueId string
- Specifies the identifier for the queue.
- QueueArn string
- ARN for the queue.
- QueueName string
- Name for the queue.
- channel String
- Specifies the channels agents can handle in the Contact Control Panel (CCP) for this routing profile. Valid values are VOICE,CHAT,TASK.
- delay Integer
- Specifies the delay, in seconds, that a contact should be in the queue before they are routed to an available agent
- priority Integer
- Specifies the order in which contacts are to be handled for the queue.
- queueId String
- Specifies the identifier for the queue.
- queueArn String
- ARN for the queue.
- queueName String
- Name for the queue.
- channel string
- Specifies the channels agents can handle in the Contact Control Panel (CCP) for this routing profile. Valid values are VOICE,CHAT,TASK.
- delay number
- Specifies the delay, in seconds, that a contact should be in the queue before they are routed to an available agent
- priority number
- Specifies the order in which contacts are to be handled for the queue.
- queueId string
- Specifies the identifier for the queue.
- queueArn string
- ARN for the queue.
- queueName string
- Name for the queue.
- channel str
- Specifies the channels agents can handle in the Contact Control Panel (CCP) for this routing profile. Valid values are VOICE,CHAT,TASK.
- delay int
- Specifies the delay, in seconds, that a contact should be in the queue before they are routed to an available agent
- priority int
- Specifies the order in which contacts are to be handled for the queue.
- queue_id str
- Specifies the identifier for the queue.
- queue_arn str
- ARN for the queue.
- queue_name str
- Name for the queue.
- channel String
- Specifies the channels agents can handle in the Contact Control Panel (CCP) for this routing profile. Valid values are VOICE,CHAT,TASK.
- delay Number
- Specifies the delay, in seconds, that a contact should be in the queue before they are routed to an available agent
- priority Number
- Specifies the order in which contacts are to be handled for the queue.
- queueId String
- Specifies the identifier for the queue.
- queueArn String
- ARN for the queue.
- queueName String
- Name for the queue.
Import
Using pulumi import, import Amazon Connect Routing Profiles using the instance_id and routing_profile_id separated by a colon (:). For example:
$ pulumi import aws:connect/routingProfile:RoutingProfile example f1288a1f-6193-445a-b47e-af739b2:c1d4e5f6-1b3c-1b3c-1b3c-c1d4e5f6c1d4e5
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the awsTerraform Provider.