Try AWS Native preview for resources not in the classic version.
aws.connect.Instance
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides an Amazon Connect instance resource. For more information see Amazon Connect: Getting Started
!> WARN: Amazon Connect enforces a limit of 100 combined instance creation and deletions every 30 days. For example, if you create 80 instances and delete 20 of them, you must wait 30 days to create or delete another instance. Use care when creating or deleting instances.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var test = new Aws.Connect.Instance("test", new()
{
IdentityManagementType = "CONNECT_MANAGED",
InboundCallsEnabled = true,
InstanceAlias = "friendly-name-connect",
OutboundCallsEnabled = true,
});
});
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.NewInstance(ctx, "test", &connect.InstanceArgs{
IdentityManagementType: pulumi.String("CONNECT_MANAGED"),
InboundCallsEnabled: pulumi.Bool(true),
InstanceAlias: pulumi.String("friendly-name-connect"),
OutboundCallsEnabled: pulumi.Bool(true),
})
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.Instance;
import com.pulumi.aws.connect.InstanceArgs;
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 Instance("test", InstanceArgs.builder()
.identityManagementType("CONNECT_MANAGED")
.inboundCallsEnabled(true)
.instanceAlias("friendly-name-connect")
.outboundCallsEnabled(true)
.build());
}
}
import pulumi
import pulumi_aws as aws
test = aws.connect.Instance("test",
identity_management_type="CONNECT_MANAGED",
inbound_calls_enabled=True,
instance_alias="friendly-name-connect",
outbound_calls_enabled=True)
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.connect.Instance("test", {
identityManagementType: "CONNECT_MANAGED",
inboundCallsEnabled: true,
instanceAlias: "friendly-name-connect",
outboundCallsEnabled: true,
});
resources:
test:
type: aws:connect:Instance
properties:
identityManagementType: CONNECT_MANAGED
inboundCallsEnabled: true
instanceAlias: friendly-name-connect
outboundCallsEnabled: true
With Existing Active Directory
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var test = new Aws.Connect.Instance("test", new()
{
DirectoryId = aws_directory_service_directory.Test.Id,
IdentityManagementType = "EXISTING_DIRECTORY",
InboundCallsEnabled = true,
InstanceAlias = "friendly-name-connect",
OutboundCallsEnabled = true,
});
});
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.NewInstance(ctx, "test", &connect.InstanceArgs{
DirectoryId: pulumi.Any(aws_directory_service_directory.Test.Id),
IdentityManagementType: pulumi.String("EXISTING_DIRECTORY"),
InboundCallsEnabled: pulumi.Bool(true),
InstanceAlias: pulumi.String("friendly-name-connect"),
OutboundCallsEnabled: pulumi.Bool(true),
})
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.Instance;
import com.pulumi.aws.connect.InstanceArgs;
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 Instance("test", InstanceArgs.builder()
.directoryId(aws_directory_service_directory.test().id())
.identityManagementType("EXISTING_DIRECTORY")
.inboundCallsEnabled(true)
.instanceAlias("friendly-name-connect")
.outboundCallsEnabled(true)
.build());
}
}
import pulumi
import pulumi_aws as aws
test = aws.connect.Instance("test",
directory_id=aws_directory_service_directory["test"]["id"],
identity_management_type="EXISTING_DIRECTORY",
inbound_calls_enabled=True,
instance_alias="friendly-name-connect",
outbound_calls_enabled=True)
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.connect.Instance("test", {
directoryId: aws_directory_service_directory.test.id,
identityManagementType: "EXISTING_DIRECTORY",
inboundCallsEnabled: true,
instanceAlias: "friendly-name-connect",
outboundCallsEnabled: true,
});
resources:
test:
type: aws:connect:Instance
properties:
directoryId: ${aws_directory_service_directory.test.id}
identityManagementType: EXISTING_DIRECTORY
inboundCallsEnabled: true
instanceAlias: friendly-name-connect
outboundCallsEnabled: true
With SAML
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var test = new Aws.Connect.Instance("test", new()
{
IdentityManagementType = "SAML",
InboundCallsEnabled = true,
InstanceAlias = "friendly-name-connect",
OutboundCallsEnabled = true,
});
});
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.NewInstance(ctx, "test", &connect.InstanceArgs{
IdentityManagementType: pulumi.String("SAML"),
InboundCallsEnabled: pulumi.Bool(true),
InstanceAlias: pulumi.String("friendly-name-connect"),
OutboundCallsEnabled: pulumi.Bool(true),
})
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.Instance;
import com.pulumi.aws.connect.InstanceArgs;
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 Instance("test", InstanceArgs.builder()
.identityManagementType("SAML")
.inboundCallsEnabled(true)
.instanceAlias("friendly-name-connect")
.outboundCallsEnabled(true)
.build());
}
}
import pulumi
import pulumi_aws as aws
test = aws.connect.Instance("test",
identity_management_type="SAML",
inbound_calls_enabled=True,
instance_alias="friendly-name-connect",
outbound_calls_enabled=True)
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.connect.Instance("test", {
identityManagementType: "SAML",
inboundCallsEnabled: true,
instanceAlias: "friendly-name-connect",
outboundCallsEnabled: true,
});
resources:
test:
type: aws:connect:Instance
properties:
identityManagementType: SAML
inboundCallsEnabled: true
instanceAlias: friendly-name-connect
outboundCallsEnabled: true
Create Instance Resource
new Instance(name: string, args: InstanceArgs, opts?: CustomResourceOptions);
@overload
def Instance(resource_name: str,
opts: Optional[ResourceOptions] = None,
auto_resolve_best_voices_enabled: Optional[bool] = None,
contact_flow_logs_enabled: Optional[bool] = None,
contact_lens_enabled: Optional[bool] = None,
directory_id: Optional[str] = None,
early_media_enabled: Optional[bool] = None,
identity_management_type: Optional[str] = None,
inbound_calls_enabled: Optional[bool] = None,
instance_alias: Optional[str] = None,
multi_party_conference_enabled: Optional[bool] = None,
outbound_calls_enabled: Optional[bool] = None)
@overload
def Instance(resource_name: str,
args: InstanceArgs,
opts: Optional[ResourceOptions] = None)
func NewInstance(ctx *Context, name string, args InstanceArgs, opts ...ResourceOption) (*Instance, error)
public Instance(string name, InstanceArgs args, CustomResourceOptions? opts = null)
public Instance(String name, InstanceArgs args)
public Instance(String name, InstanceArgs args, CustomResourceOptions options)
type: aws:connect:Instance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InstanceArgs
- 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 InstanceArgs
- 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 InstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Instance 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 Instance resource accepts the following input properties:
- Identity
Management stringType Specifies the identity management type attached to the instance. Allowed Values are:
SAML
,CONNECT_MANAGED
,EXISTING_DIRECTORY
.- Inbound
Calls boolEnabled Specifies whether inbound calls are enabled.
- Outbound
Calls boolEnabled Specifies whether outbound calls are enabled.
- Auto
Resolve boolBest Voices Enabled Specifies whether auto resolve best voices is enabled. Defaults to
true
.- Contact
Flow boolLogs Enabled Specifies whether contact flow logs are enabled. Defaults to
false
.- Contact
Lens boolEnabled Specifies whether contact lens is enabled. Defaults to
true
.- Directory
Id string The identifier for the directory if identity_management_type is
EXISTING_DIRECTORY
.- Early
Media boolEnabled Specifies whether early media for outbound calls is enabled . Defaults to
true
if outbound calls is enabled.- Instance
Alias string Specifies the name of the instance. Required if
directory_id
not specified.- Multi
Party boolConference Enabled Specifies whether multi-party calls/conference is enabled. Defaults to
false
.
- Identity
Management stringType Specifies the identity management type attached to the instance. Allowed Values are:
SAML
,CONNECT_MANAGED
,EXISTING_DIRECTORY
.- Inbound
Calls boolEnabled Specifies whether inbound calls are enabled.
- Outbound
Calls boolEnabled Specifies whether outbound calls are enabled.
- Auto
Resolve boolBest Voices Enabled Specifies whether auto resolve best voices is enabled. Defaults to
true
.- Contact
Flow boolLogs Enabled Specifies whether contact flow logs are enabled. Defaults to
false
.- Contact
Lens boolEnabled Specifies whether contact lens is enabled. Defaults to
true
.- Directory
Id string The identifier for the directory if identity_management_type is
EXISTING_DIRECTORY
.- Early
Media boolEnabled Specifies whether early media for outbound calls is enabled . Defaults to
true
if outbound calls is enabled.- Instance
Alias string Specifies the name of the instance. Required if
directory_id
not specified.- Multi
Party boolConference Enabled Specifies whether multi-party calls/conference is enabled. Defaults to
false
.
- identity
Management StringType Specifies the identity management type attached to the instance. Allowed Values are:
SAML
,CONNECT_MANAGED
,EXISTING_DIRECTORY
.- inbound
Calls BooleanEnabled Specifies whether inbound calls are enabled.
- outbound
Calls BooleanEnabled Specifies whether outbound calls are enabled.
- auto
Resolve BooleanBest Voices Enabled Specifies whether auto resolve best voices is enabled. Defaults to
true
.- contact
Flow BooleanLogs Enabled Specifies whether contact flow logs are enabled. Defaults to
false
.- contact
Lens BooleanEnabled Specifies whether contact lens is enabled. Defaults to
true
.- directory
Id String The identifier for the directory if identity_management_type is
EXISTING_DIRECTORY
.- early
Media BooleanEnabled Specifies whether early media for outbound calls is enabled . Defaults to
true
if outbound calls is enabled.- instance
Alias String Specifies the name of the instance. Required if
directory_id
not specified.- multi
Party BooleanConference Enabled Specifies whether multi-party calls/conference is enabled. Defaults to
false
.
- identity
Management stringType Specifies the identity management type attached to the instance. Allowed Values are:
SAML
,CONNECT_MANAGED
,EXISTING_DIRECTORY
.- inbound
Calls booleanEnabled Specifies whether inbound calls are enabled.
- outbound
Calls booleanEnabled Specifies whether outbound calls are enabled.
- auto
Resolve booleanBest Voices Enabled Specifies whether auto resolve best voices is enabled. Defaults to
true
.- contact
Flow booleanLogs Enabled Specifies whether contact flow logs are enabled. Defaults to
false
.- contact
Lens booleanEnabled Specifies whether contact lens is enabled. Defaults to
true
.- directory
Id string The identifier for the directory if identity_management_type is
EXISTING_DIRECTORY
.- early
Media booleanEnabled Specifies whether early media for outbound calls is enabled . Defaults to
true
if outbound calls is enabled.- instance
Alias string Specifies the name of the instance. Required if
directory_id
not specified.- multi
Party booleanConference Enabled Specifies whether multi-party calls/conference is enabled. Defaults to
false
.
- identity_
management_ strtype Specifies the identity management type attached to the instance. Allowed Values are:
SAML
,CONNECT_MANAGED
,EXISTING_DIRECTORY
.- inbound_
calls_ boolenabled Specifies whether inbound calls are enabled.
- outbound_
calls_ boolenabled Specifies whether outbound calls are enabled.
- auto_
resolve_ boolbest_ voices_ enabled Specifies whether auto resolve best voices is enabled. Defaults to
true
.- contact_
flow_ boollogs_ enabled Specifies whether contact flow logs are enabled. Defaults to
false
.- contact_
lens_ boolenabled Specifies whether contact lens is enabled. Defaults to
true
.- directory_
id str The identifier for the directory if identity_management_type is
EXISTING_DIRECTORY
.- early_
media_ boolenabled Specifies whether early media for outbound calls is enabled . Defaults to
true
if outbound calls is enabled.- instance_
alias str Specifies the name of the instance. Required if
directory_id
not specified.- multi_
party_ boolconference_ enabled Specifies whether multi-party calls/conference is enabled. Defaults to
false
.
- identity
Management StringType Specifies the identity management type attached to the instance. Allowed Values are:
SAML
,CONNECT_MANAGED
,EXISTING_DIRECTORY
.- inbound
Calls BooleanEnabled Specifies whether inbound calls are enabled.
- outbound
Calls BooleanEnabled Specifies whether outbound calls are enabled.
- auto
Resolve BooleanBest Voices Enabled Specifies whether auto resolve best voices is enabled. Defaults to
true
.- contact
Flow BooleanLogs Enabled Specifies whether contact flow logs are enabled. Defaults to
false
.- contact
Lens BooleanEnabled Specifies whether contact lens is enabled. Defaults to
true
.- directory
Id String The identifier for the directory if identity_management_type is
EXISTING_DIRECTORY
.- early
Media BooleanEnabled Specifies whether early media for outbound calls is enabled . Defaults to
true
if outbound calls is enabled.- instance
Alias String Specifies the name of the instance. Required if
directory_id
not specified.- multi
Party BooleanConference Enabled Specifies whether multi-party calls/conference is enabled. Defaults to
false
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Instance resource produces the following output properties:
- Arn string
Amazon Resource Name (ARN) of the instance.
- Created
Time string When the instance was created.
- Id string
The provider-assigned unique ID for this managed resource.
- Service
Role string The service role of the instance.
- Status string
The state of the instance.
- Arn string
Amazon Resource Name (ARN) of the instance.
- Created
Time string When the instance was created.
- Id string
The provider-assigned unique ID for this managed resource.
- Service
Role string The service role of the instance.
- Status string
The state of the instance.
- arn String
Amazon Resource Name (ARN) of the instance.
- created
Time String When the instance was created.
- id String
The provider-assigned unique ID for this managed resource.
- service
Role String The service role of the instance.
- status String
The state of the instance.
- arn string
Amazon Resource Name (ARN) of the instance.
- created
Time string When the instance was created.
- id string
The provider-assigned unique ID for this managed resource.
- service
Role string The service role of the instance.
- status string
The state of the instance.
- arn str
Amazon Resource Name (ARN) of the instance.
- created_
time str When the instance was created.
- id str
The provider-assigned unique ID for this managed resource.
- service_
role str The service role of the instance.
- status str
The state of the instance.
- arn String
Amazon Resource Name (ARN) of the instance.
- created
Time String When the instance was created.
- id String
The provider-assigned unique ID for this managed resource.
- service
Role String The service role of the instance.
- status String
The state of the instance.
Look up Existing Instance Resource
Get an existing Instance 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?: InstanceState, opts?: CustomResourceOptions): Instance
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
auto_resolve_best_voices_enabled: Optional[bool] = None,
contact_flow_logs_enabled: Optional[bool] = None,
contact_lens_enabled: Optional[bool] = None,
created_time: Optional[str] = None,
directory_id: Optional[str] = None,
early_media_enabled: Optional[bool] = None,
identity_management_type: Optional[str] = None,
inbound_calls_enabled: Optional[bool] = None,
instance_alias: Optional[str] = None,
multi_party_conference_enabled: Optional[bool] = None,
outbound_calls_enabled: Optional[bool] = None,
service_role: Optional[str] = None,
status: Optional[str] = None) -> Instance
func GetInstance(ctx *Context, name string, id IDInput, state *InstanceState, opts ...ResourceOption) (*Instance, error)
public static Instance Get(string name, Input<string> id, InstanceState? state, CustomResourceOptions? opts = null)
public static Instance get(String name, Output<String> id, InstanceState 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
Amazon Resource Name (ARN) of the instance.
- Auto
Resolve boolBest Voices Enabled Specifies whether auto resolve best voices is enabled. Defaults to
true
.- Contact
Flow boolLogs Enabled Specifies whether contact flow logs are enabled. Defaults to
false
.- Contact
Lens boolEnabled Specifies whether contact lens is enabled. Defaults to
true
.- Created
Time string When the instance was created.
- Directory
Id string The identifier for the directory if identity_management_type is
EXISTING_DIRECTORY
.- Early
Media boolEnabled Specifies whether early media for outbound calls is enabled . Defaults to
true
if outbound calls is enabled.- Identity
Management stringType Specifies the identity management type attached to the instance. Allowed Values are:
SAML
,CONNECT_MANAGED
,EXISTING_DIRECTORY
.- Inbound
Calls boolEnabled Specifies whether inbound calls are enabled.
- Instance
Alias string Specifies the name of the instance. Required if
directory_id
not specified.- Multi
Party boolConference Enabled Specifies whether multi-party calls/conference is enabled. Defaults to
false
.- Outbound
Calls boolEnabled Specifies whether outbound calls are enabled.
- Service
Role string The service role of the instance.
- Status string
The state of the instance.
- Arn string
Amazon Resource Name (ARN) of the instance.
- Auto
Resolve boolBest Voices Enabled Specifies whether auto resolve best voices is enabled. Defaults to
true
.- Contact
Flow boolLogs Enabled Specifies whether contact flow logs are enabled. Defaults to
false
.- Contact
Lens boolEnabled Specifies whether contact lens is enabled. Defaults to
true
.- Created
Time string When the instance was created.
- Directory
Id string The identifier for the directory if identity_management_type is
EXISTING_DIRECTORY
.- Early
Media boolEnabled Specifies whether early media for outbound calls is enabled . Defaults to
true
if outbound calls is enabled.- Identity
Management stringType Specifies the identity management type attached to the instance. Allowed Values are:
SAML
,CONNECT_MANAGED
,EXISTING_DIRECTORY
.- Inbound
Calls boolEnabled Specifies whether inbound calls are enabled.
- Instance
Alias string Specifies the name of the instance. Required if
directory_id
not specified.- Multi
Party boolConference Enabled Specifies whether multi-party calls/conference is enabled. Defaults to
false
.- Outbound
Calls boolEnabled Specifies whether outbound calls are enabled.
- Service
Role string The service role of the instance.
- Status string
The state of the instance.
- arn String
Amazon Resource Name (ARN) of the instance.
- auto
Resolve BooleanBest Voices Enabled Specifies whether auto resolve best voices is enabled. Defaults to
true
.- contact
Flow BooleanLogs Enabled Specifies whether contact flow logs are enabled. Defaults to
false
.- contact
Lens BooleanEnabled Specifies whether contact lens is enabled. Defaults to
true
.- created
Time String When the instance was created.
- directory
Id String The identifier for the directory if identity_management_type is
EXISTING_DIRECTORY
.- early
Media BooleanEnabled Specifies whether early media for outbound calls is enabled . Defaults to
true
if outbound calls is enabled.- identity
Management StringType Specifies the identity management type attached to the instance. Allowed Values are:
SAML
,CONNECT_MANAGED
,EXISTING_DIRECTORY
.- inbound
Calls BooleanEnabled Specifies whether inbound calls are enabled.
- instance
Alias String Specifies the name of the instance. Required if
directory_id
not specified.- multi
Party BooleanConference Enabled Specifies whether multi-party calls/conference is enabled. Defaults to
false
.- outbound
Calls BooleanEnabled Specifies whether outbound calls are enabled.
- service
Role String The service role of the instance.
- status String
The state of the instance.
- arn string
Amazon Resource Name (ARN) of the instance.
- auto
Resolve booleanBest Voices Enabled Specifies whether auto resolve best voices is enabled. Defaults to
true
.- contact
Flow booleanLogs Enabled Specifies whether contact flow logs are enabled. Defaults to
false
.- contact
Lens booleanEnabled Specifies whether contact lens is enabled. Defaults to
true
.- created
Time string When the instance was created.
- directory
Id string The identifier for the directory if identity_management_type is
EXISTING_DIRECTORY
.- early
Media booleanEnabled Specifies whether early media for outbound calls is enabled . Defaults to
true
if outbound calls is enabled.- identity
Management stringType Specifies the identity management type attached to the instance. Allowed Values are:
SAML
,CONNECT_MANAGED
,EXISTING_DIRECTORY
.- inbound
Calls booleanEnabled Specifies whether inbound calls are enabled.
- instance
Alias string Specifies the name of the instance. Required if
directory_id
not specified.- multi
Party booleanConference Enabled Specifies whether multi-party calls/conference is enabled. Defaults to
false
.- outbound
Calls booleanEnabled Specifies whether outbound calls are enabled.
- service
Role string The service role of the instance.
- status string
The state of the instance.
- arn str
Amazon Resource Name (ARN) of the instance.
- auto_
resolve_ boolbest_ voices_ enabled Specifies whether auto resolve best voices is enabled. Defaults to
true
.- contact_
flow_ boollogs_ enabled Specifies whether contact flow logs are enabled. Defaults to
false
.- contact_
lens_ boolenabled Specifies whether contact lens is enabled. Defaults to
true
.- created_
time str When the instance was created.
- directory_
id str The identifier for the directory if identity_management_type is
EXISTING_DIRECTORY
.- early_
media_ boolenabled Specifies whether early media for outbound calls is enabled . Defaults to
true
if outbound calls is enabled.- identity_
management_ strtype Specifies the identity management type attached to the instance. Allowed Values are:
SAML
,CONNECT_MANAGED
,EXISTING_DIRECTORY
.- inbound_
calls_ boolenabled Specifies whether inbound calls are enabled.
- instance_
alias str Specifies the name of the instance. Required if
directory_id
not specified.- multi_
party_ boolconference_ enabled Specifies whether multi-party calls/conference is enabled. Defaults to
false
.- outbound_
calls_ boolenabled Specifies whether outbound calls are enabled.
- service_
role str The service role of the instance.
- status str
The state of the instance.
- arn String
Amazon Resource Name (ARN) of the instance.
- auto
Resolve BooleanBest Voices Enabled Specifies whether auto resolve best voices is enabled. Defaults to
true
.- contact
Flow BooleanLogs Enabled Specifies whether contact flow logs are enabled. Defaults to
false
.- contact
Lens BooleanEnabled Specifies whether contact lens is enabled. Defaults to
true
.- created
Time String When the instance was created.
- directory
Id String The identifier for the directory if identity_management_type is
EXISTING_DIRECTORY
.- early
Media BooleanEnabled Specifies whether early media for outbound calls is enabled . Defaults to
true
if outbound calls is enabled.- identity
Management StringType Specifies the identity management type attached to the instance. Allowed Values are:
SAML
,CONNECT_MANAGED
,EXISTING_DIRECTORY
.- inbound
Calls BooleanEnabled Specifies whether inbound calls are enabled.
- instance
Alias String Specifies the name of the instance. Required if
directory_id
not specified.- multi
Party BooleanConference Enabled Specifies whether multi-party calls/conference is enabled. Defaults to
false
.- outbound
Calls BooleanEnabled Specifies whether outbound calls are enabled.
- service
Role String The service role of the instance.
- status String
The state of the instance.
Import
Using pulumi import
, import Connect instances using the id
. For example:
$ pulumi import aws:connect/instance:Instance example f1288a1f-6193-445a-b47e-af739b2
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.