AWS Fundamentals Logo
AWS Fundamentals
AWS::Cases::Layout

Cases Layout

A layout in the Cases domain. Layouts define the following configuration in the top section and More Info tab of the Cases user interface: Fields to display to the users and Field ordering.

Properties

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

Filter:
PropertyTypeFlags
Content
LayoutContent
Required
Name
string
Required
DomainId
string
Create-only
Tags
array

Return Values

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

AttributeTypeDescription
CreatedTimestringThe time at which the layout was created.
LastModifiedTimestringThe time at which the layout was created or last modified.
LayoutArnstringThe Amazon Resource Name (ARN) of the layout.
LayoutIdstringThe unique identifier of the layout.

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::Layout

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

Required IAM Permissions

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

create

cases:CreateLayoutcases:GetLayoutcases:TagResource

read

cases:GetLayout

update

cases:UpdateLayoutcases:TagResourcecases:UntagResourcecases:GetLayout

delete

cases:DeleteLayoutcases:UntagResource

list

cases:ListLayouts

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
Properties8
Required2
TaggingSupported
Primary IDLayoutArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

DomainId

External Links