AWS Classic v5.41.0, May 15 23
AWS Classic v5.41.0, May 15 23
aws.connect.QuickConnect
Explore with Pulumi AI
Provides an Amazon Connect Quick Connect resource. For more information see Amazon Connect: Getting Started
Example Usage
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()
{
Description = "quick connect phone number",
InstanceId = "aaaaaaaa-bbbb-cccc-dddd-111111111111",
QuickConnectConfig = new Aws.Connect.Inputs.QuickConnectQuickConnectConfigArgs
{
PhoneConfigs = new[]
{
new Aws.Connect.Inputs.QuickConnectQuickConnectConfigPhoneConfigArgs
{
PhoneNumber = "+12345678912",
},
},
QuickConnectType = "PHONE_NUMBER",
},
Tags =
{
{ "Name", "Example Quick Connect" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/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{
Description: pulumi.String("quick connect phone number"),
InstanceId: pulumi.String("aaaaaaaa-bbbb-cccc-dddd-111111111111"),
QuickConnectConfig: &connect.QuickConnectQuickConnectConfigArgs{
PhoneConfigs: connect.QuickConnectQuickConnectConfigPhoneConfigArray{
&connect.QuickConnectQuickConnectConfigPhoneConfigArgs{
PhoneNumber: pulumi.String("+12345678912"),
},
},
QuickConnectType: pulumi.String("PHONE_NUMBER"),
},
Tags: pulumi.StringMap{
"Name": pulumi.String("Example Quick Connect"),
},
})
if err != nil {
return err
}
return nil
})
}
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()
.description("quick connect phone number")
.instanceId("aaaaaaaa-bbbb-cccc-dddd-111111111111")
.quickConnectConfig(QuickConnectQuickConnectConfigArgs.builder()
.phoneConfigs(QuickConnectQuickConnectConfigPhoneConfigArgs.builder()
.phoneNumber("+12345678912")
.build())
.quickConnectType("PHONE_NUMBER")
.build())
.tags(Map.of("Name", "Example Quick Connect"))
.build());
}
}
import pulumi
import pulumi_aws as aws
test = aws.connect.QuickConnect("test",
description="quick connect phone number",
instance_id="aaaaaaaa-bbbb-cccc-dddd-111111111111",
quick_connect_config=aws.connect.QuickConnectQuickConnectConfigArgs(
phone_configs=[aws.connect.QuickConnectQuickConnectConfigPhoneConfigArgs(
phone_number="+12345678912",
)],
quick_connect_type="PHONE_NUMBER",
),
tags={
"Name": "Example Quick Connect",
})
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.connect.QuickConnect("test", {
description: "quick connect phone number",
instanceId: "aaaaaaaa-bbbb-cccc-dddd-111111111111",
quickConnectConfig: {
phoneConfigs: [{
phoneNumber: "+12345678912",
}],
quickConnectType: "PHONE_NUMBER",
},
tags: {
Name: "Example Quick Connect",
},
});
resources:
test:
type: aws:connect:QuickConnect
properties:
description: quick connect phone number
instanceId: aaaaaaaa-bbbb-cccc-dddd-111111111111
quickConnectConfig:
phoneConfigs:
- phoneNumber: '+12345678912'
quickConnectType: PHONE_NUMBER
tags:
Name: Example Quick Connect
Create QuickConnect Resource
new QuickConnect(name: string, args: QuickConnectArgs, opts?: CustomResourceOptions);
@overload
def QuickConnect(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
instance_id: Optional[str] = None,
name: Optional[str] = None,
quick_connect_config: Optional[QuickConnectQuickConnectConfigArgs] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def QuickConnect(resource_name: str,
args: QuickConnectArgs,
opts: Optional[ResourceOptions] = 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.
- 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.
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
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 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.
- 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 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 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.
- {[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 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.
- 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 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 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.
- {[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
- 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
- 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
- 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
- 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
Amazon Connect Quick Connects can be imported using the instance_id
and quick_connect_id
separated by a colon (:
), e.g.,
$ pulumi import aws:connect/quickConnect:QuickConnect example f1288a1f-6193-445a-b47e-af739b2:c1d4e5f6-1b3c-1b3c-1b3c-c1d4e5f6c1d4e5
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.