aws.connect.QuickConnect
Explore with Pulumi AI
Provides an Amazon Connect Quick Connect resource. For more information see Amazon Connect: Getting Started
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.connect.QuickConnect("test", {
instanceId: "aaaaaaaa-bbbb-cccc-dddd-111111111111",
name: "Example Name",
description: "quick connect phone number",
quickConnectConfig: {
quickConnectType: "PHONE_NUMBER",
phoneConfigs: [{
phoneNumber: "+12345678912",
}],
},
tags: {
Name: "Example Quick Connect",
},
});
import pulumi
import pulumi_aws as aws
test = aws.connect.QuickConnect("test",
instance_id="aaaaaaaa-bbbb-cccc-dddd-111111111111",
name="Example Name",
description="quick connect phone number",
quick_connect_config={
"quick_connect_type": "PHONE_NUMBER",
"phone_configs": [{
"phone_number": "+12345678912",
}],
},
tags={
"Name": "Example Quick Connect",
})
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.NewQuickConnect(ctx, "test", &connect.QuickConnectArgs{
InstanceId: pulumi.String("aaaaaaaa-bbbb-cccc-dddd-111111111111"),
Name: pulumi.String("Example Name"),
Description: pulumi.String("quick connect phone number"),
QuickConnectConfig: &connect.QuickConnectQuickConnectConfigArgs{
QuickConnectType: pulumi.String("PHONE_NUMBER"),
PhoneConfigs: connect.QuickConnectQuickConnectConfigPhoneConfigArray{
&connect.QuickConnectQuickConnectConfigPhoneConfigArgs{
PhoneNumber: pulumi.String("+12345678912"),
},
},
},
Tags: pulumi.StringMap{
"Name": pulumi.String("Example Quick Connect"),
},
})
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 test = new Aws.Connect.QuickConnect("test", new()
{
InstanceId = "aaaaaaaa-bbbb-cccc-dddd-111111111111",
Name = "Example Name",
Description = "quick connect phone number",
QuickConnectConfig = new Aws.Connect.Inputs.QuickConnectQuickConnectConfigArgs
{
QuickConnectType = "PHONE_NUMBER",
PhoneConfigs = new[]
{
new Aws.Connect.Inputs.QuickConnectQuickConnectConfigPhoneConfigArgs
{
PhoneNumber = "+12345678912",
},
},
},
Tags =
{
{ "Name", "Example Quick Connect" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.connect.QuickConnect;
import com.pulumi.aws.connect.QuickConnectArgs;
import com.pulumi.aws.connect.inputs.QuickConnectQuickConnectConfigArgs;
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 test = new QuickConnect("test", QuickConnectArgs.builder()
.instanceId("aaaaaaaa-bbbb-cccc-dddd-111111111111")
.name("Example Name")
.description("quick connect phone number")
.quickConnectConfig(QuickConnectQuickConnectConfigArgs.builder()
.quickConnectType("PHONE_NUMBER")
.phoneConfigs(QuickConnectQuickConnectConfigPhoneConfigArgs.builder()
.phoneNumber("+12345678912")
.build())
.build())
.tags(Map.of("Name", "Example Quick Connect"))
.build());
}
}
resources:
test:
type: aws:connect:QuickConnect
properties:
instanceId: aaaaaaaa-bbbb-cccc-dddd-111111111111
name: Example Name
description: quick connect phone number
quickConnectConfig:
quickConnectType: PHONE_NUMBER
phoneConfigs:
- phoneNumber: '+12345678912'
tags:
Name: Example Quick Connect
Create QuickConnect Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new QuickConnect(name: string, args: QuickConnectArgs, opts?: CustomResourceOptions);
@overload
def QuickConnect(resource_name: str,
args: QuickConnectArgs,
opts: Optional[ResourceOptions] = None)
@overload
def QuickConnect(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
quick_connect_config: Optional[QuickConnectQuickConnectConfigArgs] = None,
description: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewQuickConnect(ctx *Context, name string, args QuickConnectArgs, opts ...ResourceOption) (*QuickConnect, error)
public QuickConnect(string name, QuickConnectArgs args, CustomResourceOptions? opts = null)
public QuickConnect(String name, QuickConnectArgs args)
public QuickConnect(String name, QuickConnectArgs args, CustomResourceOptions options)
type: aws:connect:QuickConnect
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 QuickConnectArgs
- 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 QuickConnectArgs
- 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 QuickConnectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args QuickConnectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args QuickConnectArgs
- 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 quickConnectResource = new Aws.Connect.QuickConnect("quickConnectResource", new()
{
InstanceId = "string",
QuickConnectConfig = new Aws.Connect.Inputs.QuickConnectQuickConnectConfigArgs
{
QuickConnectType = "string",
PhoneConfigs = new[]
{
new Aws.Connect.Inputs.QuickConnectQuickConnectConfigPhoneConfigArgs
{
PhoneNumber = "string",
},
},
QueueConfigs = new[]
{
new Aws.Connect.Inputs.QuickConnectQuickConnectConfigQueueConfigArgs
{
ContactFlowId = "string",
QueueId = "string",
},
},
UserConfigs = new[]
{
new Aws.Connect.Inputs.QuickConnectQuickConnectConfigUserConfigArgs
{
ContactFlowId = "string",
UserId = "string",
},
},
},
Description = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := connect.NewQuickConnect(ctx, "quickConnectResource", &connect.QuickConnectArgs{
InstanceId: pulumi.String("string"),
QuickConnectConfig: &connect.QuickConnectQuickConnectConfigArgs{
QuickConnectType: pulumi.String("string"),
PhoneConfigs: connect.QuickConnectQuickConnectConfigPhoneConfigArray{
&connect.QuickConnectQuickConnectConfigPhoneConfigArgs{
PhoneNumber: pulumi.String("string"),
},
},
QueueConfigs: connect.QuickConnectQuickConnectConfigQueueConfigArray{
&connect.QuickConnectQuickConnectConfigQueueConfigArgs{
ContactFlowId: pulumi.String("string"),
QueueId: pulumi.String("string"),
},
},
UserConfigs: connect.QuickConnectQuickConnectConfigUserConfigArray{
&connect.QuickConnectQuickConnectConfigUserConfigArgs{
ContactFlowId: pulumi.String("string"),
UserId: pulumi.String("string"),
},
},
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var quickConnectResource = new QuickConnect("quickConnectResource", QuickConnectArgs.builder()
.instanceId("string")
.quickConnectConfig(QuickConnectQuickConnectConfigArgs.builder()
.quickConnectType("string")
.phoneConfigs(QuickConnectQuickConnectConfigPhoneConfigArgs.builder()
.phoneNumber("string")
.build())
.queueConfigs(QuickConnectQuickConnectConfigQueueConfigArgs.builder()
.contactFlowId("string")
.queueId("string")
.build())
.userConfigs(QuickConnectQuickConnectConfigUserConfigArgs.builder()
.contactFlowId("string")
.userId("string")
.build())
.build())
.description("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
quick_connect_resource = aws.connect.QuickConnect("quickConnectResource",
instance_id="string",
quick_connect_config={
"quick_connect_type": "string",
"phone_configs": [{
"phone_number": "string",
}],
"queue_configs": [{
"contact_flow_id": "string",
"queue_id": "string",
}],
"user_configs": [{
"contact_flow_id": "string",
"user_id": "string",
}],
},
description="string",
name="string",
tags={
"string": "string",
})
const quickConnectResource = new aws.connect.QuickConnect("quickConnectResource", {
instanceId: "string",
quickConnectConfig: {
quickConnectType: "string",
phoneConfigs: [{
phoneNumber: "string",
}],
queueConfigs: [{
contactFlowId: "string",
queueId: "string",
}],
userConfigs: [{
contactFlowId: "string",
userId: "string",
}],
},
description: "string",
name: "string",
tags: {
string: "string",
},
});
type: aws:connect:QuickConnect
properties:
description: string
instanceId: string
name: string
quickConnectConfig:
phoneConfigs:
- phoneNumber: string
queueConfigs:
- contactFlowId: string
queueId: string
quickConnectType: string
userConfigs:
- contactFlowId: string
userId: string
tags:
string: string
QuickConnect 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 QuickConnect resource accepts the following input properties:
- Instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- Quick
Connect QuickConfig Connect Quick Connect Config - A block that defines the configuration information for the Quick Connect:
quick_connect_type
and one ofphone_config
,queue_config
,user_config
. The Quick Connect Config block is documented below. - Description string
- Specifies the description of the Quick Connect.
- Name string
- Specifies the name of the Quick Connect.
- Dictionary<string, string>
- Tags to apply to the Quick Connect. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- Quick
Connect QuickConfig Connect Quick Connect Config Args - A block that defines the configuration information for the Quick Connect:
quick_connect_type
and one ofphone_config
,queue_config
,user_config
. The Quick Connect Config block is documented below. - Description string
- Specifies the description of the Quick Connect.
- Name string
- Specifies the name of the Quick Connect.
- map[string]string
- Tags to apply to the Quick Connect. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- instance
Id String - Specifies the identifier of the hosting Amazon Connect Instance.
- quick
Connect QuickConfig Connect Quick Connect Config - A block that defines the configuration information for the Quick Connect:
quick_connect_type
and one ofphone_config
,queue_config
,user_config
. The Quick Connect Config block is documented below. - description String
- Specifies the description of the Quick Connect.
- name String
- Specifies the name of the Quick Connect.
- Map<String,String>
- Tags to apply to the Quick Connect. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- quick
Connect QuickConfig Connect Quick Connect Config - A block that defines the configuration information for the Quick Connect:
quick_connect_type
and one ofphone_config
,queue_config
,user_config
. The Quick Connect Config block is documented below. - description string
- Specifies the description of the Quick Connect.
- name string
- Specifies the name of the Quick Connect.
- {[key: string]: string}
- Tags to apply to the Quick Connect. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- instance_
id str - Specifies the identifier of the hosting Amazon Connect Instance.
- quick_
connect_ Quickconfig Connect Quick Connect Config Args - A block that defines the configuration information for the Quick Connect:
quick_connect_type
and one ofphone_config
,queue_config
,user_config
. The Quick Connect Config block is documented below. - description str
- Specifies the description of the Quick Connect.
- name str
- Specifies the name of the Quick Connect.
- Mapping[str, str]
- Tags to apply to the Quick Connect. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- instance
Id String - Specifies the identifier of the hosting Amazon Connect Instance.
- quick
Connect Property MapConfig - A block that defines the configuration information for the Quick Connect:
quick_connect_type
and one ofphone_config
,queue_config
,user_config
. The Quick Connect Config block is documented below. - description String
- Specifies the description of the Quick Connect.
- name String
- Specifies the name of the Quick Connect.
- Map<String>
- Tags to apply to the Quick Connect. If configured with a provider
default_tags
configuration 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 QuickConnect resource produces the following output properties:
- Arn string
- The Amazon Resource Name (ARN) of the Quick Connect.
- Id string
- The provider-assigned unique ID for this managed resource.
- Quick
Connect stringId - The identifier for the Quick Connect.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- The Amazon Resource Name (ARN) of the Quick Connect.
- Id string
- The provider-assigned unique ID for this managed resource.
- Quick
Connect stringId - The identifier for the Quick Connect.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The Amazon Resource Name (ARN) of the Quick Connect.
- id String
- The provider-assigned unique ID for this managed resource.
- quick
Connect StringId - The identifier for the Quick Connect.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- The Amazon Resource Name (ARN) of the Quick Connect.
- id string
- The provider-assigned unique ID for this managed resource.
- quick
Connect stringId - The identifier for the Quick Connect.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- The Amazon Resource Name (ARN) of the Quick Connect.
- id str
- The provider-assigned unique ID for this managed resource.
- quick_
connect_ strid - The identifier for the Quick Connect.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The Amazon Resource Name (ARN) of the Quick Connect.
- id String
- The provider-assigned unique ID for this managed resource.
- quick
Connect StringId - The identifier for the Quick Connect.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing QuickConnect Resource
Get an existing QuickConnect 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?: QuickConnectState, opts?: CustomResourceOptions): QuickConnect
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
description: Optional[str] = None,
instance_id: Optional[str] = None,
name: Optional[str] = None,
quick_connect_config: Optional[QuickConnectQuickConnectConfigArgs] = None,
quick_connect_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> QuickConnect
func GetQuickConnect(ctx *Context, name string, id IDInput, state *QuickConnectState, opts ...ResourceOption) (*QuickConnect, error)
public static QuickConnect Get(string name, Input<string> id, QuickConnectState? state, CustomResourceOptions? opts = null)
public static QuickConnect get(String name, Output<String> id, QuickConnectState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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 Quick Connect.
- Description string
- Specifies the description of the Quick Connect.
- Instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- Name string
- Specifies the name of the Quick Connect.
- Quick
Connect QuickConfig Connect Quick Connect Config - A block that defines the configuration information for the Quick Connect:
quick_connect_type
and one ofphone_config
,queue_config
,user_config
. The Quick Connect Config block is documented below. - Quick
Connect stringId - The identifier for the Quick Connect.
- Dictionary<string, string>
- Tags to apply to the Quick Connect. If configured with a provider
default_tags
configuration 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_tags
configuration block.
- Arn string
- The Amazon Resource Name (ARN) of the Quick Connect.
- Description string
- Specifies the description of the Quick Connect.
- Instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- Name string
- Specifies the name of the Quick Connect.
- Quick
Connect QuickConfig Connect Quick Connect Config Args - A block that defines the configuration information for the Quick Connect:
quick_connect_type
and one ofphone_config
,queue_config
,user_config
. The Quick Connect Config block is documented below. - Quick
Connect stringId - The identifier for the Quick Connect.
- map[string]string
- Tags to apply to the Quick Connect. If configured with a provider
default_tags
configuration 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_tags
configuration block.
- arn String
- The Amazon Resource Name (ARN) of the Quick Connect.
- description String
- Specifies the description of the Quick Connect.
- instance
Id String - Specifies the identifier of the hosting Amazon Connect Instance.
- name String
- Specifies the name of the Quick Connect.
- quick
Connect QuickConfig Connect Quick Connect Config - A block that defines the configuration information for the Quick Connect:
quick_connect_type
and one ofphone_config
,queue_config
,user_config
. The Quick Connect Config block is documented below. - quick
Connect StringId - The identifier for the Quick Connect.
- Map<String,String>
- Tags to apply to the Quick Connect. If configured with a provider
default_tags
configuration 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_tags
configuration block.
- arn string
- The Amazon Resource Name (ARN) of the Quick Connect.
- description string
- Specifies the description of the Quick Connect.
- instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- name string
- Specifies the name of the Quick Connect.
- quick
Connect QuickConfig Connect Quick Connect Config - A block that defines the configuration information for the Quick Connect:
quick_connect_type
and one ofphone_config
,queue_config
,user_config
. The Quick Connect Config block is documented below. - quick
Connect stringId - The identifier for the Quick Connect.
- {[key: string]: string}
- Tags to apply to the Quick Connect. If configured with a provider
default_tags
configuration 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_tags
configuration block.
- arn str
- The Amazon Resource Name (ARN) of the Quick Connect.
- description str
- Specifies the description of the Quick Connect.
- instance_
id str - Specifies the identifier of the hosting Amazon Connect Instance.
- name str
- Specifies the name of the Quick Connect.
- quick_
connect_ Quickconfig Connect Quick Connect Config Args - A block that defines the configuration information for the Quick Connect:
quick_connect_type
and one ofphone_config
,queue_config
,user_config
. The Quick Connect Config block is documented below. - quick_
connect_ strid - The identifier for the Quick Connect.
- Mapping[str, str]
- Tags to apply to the Quick Connect. If configured with a provider
default_tags
configuration 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_tags
configuration block.
- arn String
- The Amazon Resource Name (ARN) of the Quick Connect.
- description String
- Specifies the description of the Quick Connect.
- instance
Id String - Specifies the identifier of the hosting Amazon Connect Instance.
- name String
- Specifies the name of the Quick Connect.
- quick
Connect Property MapConfig - A block that defines the configuration information for the Quick Connect:
quick_connect_type
and one ofphone_config
,queue_config
,user_config
. The Quick Connect Config block is documented below. - quick
Connect StringId - The identifier for the Quick Connect.
- Map<String>
- Tags to apply to the Quick Connect. If configured with a provider
default_tags
configuration 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_tags
configuration block.
Supporting Types
QuickConnectQuickConnectConfig, QuickConnectQuickConnectConfigArgs
- Quick
Connect stringType - Specifies the configuration type of the quick connect. valid values are
PHONE_NUMBER
,QUEUE
,USER
. - Phone
Configs List<QuickConnect Quick Connect Config Phone Config> - Specifies the phone configuration of the Quick Connect. This is required only if
quick_connect_type
isPHONE_NUMBER
. Thephone_config
block is documented below. - Queue
Configs List<QuickConnect Quick Connect Config Queue Config> - Specifies the queue configuration of the Quick Connect. This is required only if
quick_connect_type
isQUEUE
. Thequeue_config
block is documented below. - User
Configs List<QuickConnect Quick Connect Config User Config> - Specifies the user configuration of the Quick Connect. This is required only if
quick_connect_type
isUSER
. Theuser_config
block is documented below.
- Quick
Connect stringType - Specifies the configuration type of the quick connect. valid values are
PHONE_NUMBER
,QUEUE
,USER
. - Phone
Configs []QuickConnect Quick Connect Config Phone Config - Specifies the phone configuration of the Quick Connect. This is required only if
quick_connect_type
isPHONE_NUMBER
. Thephone_config
block is documented below. - Queue
Configs []QuickConnect Quick Connect Config Queue Config - Specifies the queue configuration of the Quick Connect. This is required only if
quick_connect_type
isQUEUE
. Thequeue_config
block is documented below. - User
Configs []QuickConnect Quick Connect Config User Config - Specifies the user configuration of the Quick Connect. This is required only if
quick_connect_type
isUSER
. Theuser_config
block is documented below.
- quick
Connect StringType - Specifies the configuration type of the quick connect. valid values are
PHONE_NUMBER
,QUEUE
,USER
. - phone
Configs List<QuickConnect Quick Connect Config Phone Config> - Specifies the phone configuration of the Quick Connect. This is required only if
quick_connect_type
isPHONE_NUMBER
. Thephone_config
block is documented below. - queue
Configs List<QuickConnect Quick Connect Config Queue Config> - Specifies the queue configuration of the Quick Connect. This is required only if
quick_connect_type
isQUEUE
. Thequeue_config
block is documented below. - user
Configs List<QuickConnect Quick Connect Config User Config> - Specifies the user configuration of the Quick Connect. This is required only if
quick_connect_type
isUSER
. Theuser_config
block is documented below.
- quick
Connect stringType - Specifies the configuration type of the quick connect. valid values are
PHONE_NUMBER
,QUEUE
,USER
. - phone
Configs QuickConnect Quick Connect Config Phone Config[] - Specifies the phone configuration of the Quick Connect. This is required only if
quick_connect_type
isPHONE_NUMBER
. Thephone_config
block is documented below. - queue
Configs QuickConnect Quick Connect Config Queue Config[] - Specifies the queue configuration of the Quick Connect. This is required only if
quick_connect_type
isQUEUE
. Thequeue_config
block is documented below. - user
Configs QuickConnect Quick Connect Config User Config[] - Specifies the user configuration of the Quick Connect. This is required only if
quick_connect_type
isUSER
. Theuser_config
block is documented below.
- quick_
connect_ strtype - Specifies the configuration type of the quick connect. valid values are
PHONE_NUMBER
,QUEUE
,USER
. - phone_
configs Sequence[QuickConnect Quick Connect Config Phone Config] - Specifies the phone configuration of the Quick Connect. This is required only if
quick_connect_type
isPHONE_NUMBER
. Thephone_config
block is documented below. - queue_
configs Sequence[QuickConnect Quick Connect Config Queue Config] - Specifies the queue configuration of the Quick Connect. This is required only if
quick_connect_type
isQUEUE
. Thequeue_config
block is documented below. - user_
configs Sequence[QuickConnect Quick Connect Config User Config] - Specifies the user configuration of the Quick Connect. This is required only if
quick_connect_type
isUSER
. Theuser_config
block is documented below.
- quick
Connect StringType - Specifies the configuration type of the quick connect. valid values are
PHONE_NUMBER
,QUEUE
,USER
. - phone
Configs List<Property Map> - Specifies the phone configuration of the Quick Connect. This is required only if
quick_connect_type
isPHONE_NUMBER
. Thephone_config
block is documented below. - queue
Configs List<Property Map> - Specifies the queue configuration of the Quick Connect. This is required only if
quick_connect_type
isQUEUE
. Thequeue_config
block is documented below. - user
Configs List<Property Map> - Specifies the user configuration of the Quick Connect. This is required only if
quick_connect_type
isUSER
. Theuser_config
block is documented below.
QuickConnectQuickConnectConfigPhoneConfig, QuickConnectQuickConnectConfigPhoneConfigArgs
- Phone
Number string - Specifies the phone number in in E.164 format.
- Phone
Number string - Specifies the phone number in in E.164 format.
- phone
Number String - Specifies the phone number in in E.164 format.
- phone
Number string - Specifies the phone number in in E.164 format.
- phone_
number str - Specifies the phone number in in E.164 format.
- phone
Number String - Specifies the phone number in in E.164 format.
QuickConnectQuickConnectConfigQueueConfig, QuickConnectQuickConnectConfigQueueConfigArgs
- Contact
Flow stringId - Specifies the identifier of the contact flow.
- Queue
Id string - Specifies the identifier for the queue.
- Contact
Flow stringId - Specifies the identifier of the contact flow.
- Queue
Id string - Specifies the identifier for the queue.
- contact
Flow StringId - Specifies the identifier of the contact flow.
- queue
Id String - Specifies the identifier for the queue.
- contact
Flow stringId - Specifies the identifier of the contact flow.
- queue
Id string - Specifies the identifier for the queue.
- contact_
flow_ strid - Specifies the identifier of the contact flow.
- queue_
id str - Specifies the identifier for the queue.
- contact
Flow StringId - Specifies the identifier of the contact flow.
- queue
Id String - Specifies the identifier for the queue.
QuickConnectQuickConnectConfigUserConfig, QuickConnectQuickConnectConfigUserConfigArgs
- Contact
Flow stringId - Specifies the identifier of the contact flow.
- User
Id string - Specifies the identifier for the user.
- Contact
Flow stringId - Specifies the identifier of the contact flow.
- User
Id string - Specifies the identifier for the user.
- contact
Flow StringId - Specifies the identifier of the contact flow.
- user
Id String - Specifies the identifier for the user.
- contact
Flow stringId - Specifies the identifier of the contact flow.
- user
Id string - Specifies the identifier for the user.
- contact_
flow_ strid - Specifies the identifier of the contact flow.
- user_
id str - Specifies the identifier for the user.
- contact
Flow StringId - Specifies the identifier of the contact flow.
- user
Id String - Specifies the identifier for the user.
Import
Using pulumi import
, import Amazon Connect Quick Connects using the instance_id
and quick_connect_id
separated by a colon (:
). For example:
$ pulumi import aws:connect/quickConnect:QuickConnect 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
aws
Terraform Provider.