Skip to content

Create Domain

connectcases_create_domain R Documentation

Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts

Description

Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain.

This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect CreateIntegrationAssociation API. You need specific IAM permissions to successfully associate the Cases domain. For more information, see Onboard to Cases.

 </important>

Usage

connectcases_create_domain(name)

Arguments

name

[required] The name for your Cases domain. It must be unique for your Amazon Web Services account.

Value

A list with the following syntax:

list(
  domainArn = "string",
  domainId = "string",
  domainStatus = "Active"|"CreationInProgress"|"CreationFailed"
)

Request syntax

svc$create_domain(
  name = "string"
)