AWS Fundamentals Logo
AWS Fundamentals
AWS::Cases::Domain

Cases Domain

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.

Properties

2 configurable properties. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
Name
string
RequiredCreate-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
CreatedTimestringThe time at which the domain was created.
DomainArnstringThe Amazon Resource Name (ARN) for the Cases domain.
DomainIdstringThe unique identifier of the Cases domain.
DomainStatusstring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Cases::Domain

Resources:
  MyResource:
    Type: AWS::Cases::Domain
    Properties:
      Name: "my-name"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

cases:CreateDomaincases:GetDomaincases:TagResource

read

cases:GetDomain

delete

cases:DeleteDomaincases:UntagResource

list

cases:ListDomains

update

cases:TagResourcecases:UntagResourcecases:GetDomain

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceCases
Properties6
Required1
TaggingSupported
Primary IDDomainArn

Supported Operations

CreateReadDeleteListUpdate

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

Name

External Links