Learn R Programming

paws.customer.engagement (version 0.1.12)

connect_create_instance: This API is in preview release for Amazon Connect and is subject to change

Description

This API is in preview release for Amazon Connect and is subject to change.

Initiates an Amazon Connect instance with all the supported channels enabled. It does not attach any storage (such as Amazon S3, or Kinesis) or allow for any configurations on features such as Contact Lens for Amazon Connect.

Usage

connect_create_instance(ClientToken, IdentityManagementType,
  InstanceAlias, DirectoryId, InboundCallsEnabled, OutboundCallsEnabled)

Value

A list with the following syntax:

list(
  Id = "string",
  Arn = "string"
)

Arguments

ClientToken

The idempotency token.

IdentityManagementType

[required] The type of identity management for your Amazon Connect users.

InstanceAlias

The name for your instance.

DirectoryId

The identifier for the directory.

InboundCallsEnabled

[required] Whether your contact center handles incoming contacts.

OutboundCallsEnabled

[required] Whether your contact center allows outbound calls.

Request syntax

svc$create_instance(
  ClientToken = "string",
  IdentityManagementType = "SAML"|"CONNECT_MANAGED"|"EXISTING_DIRECTORY",
  InstanceAlias = "string",
  DirectoryId = "string",
  InboundCallsEnabled = TRUE|FALSE,
  OutboundCallsEnabled = TRUE|FALSE
)