AWS Fundamentals Logo
AWS Fundamentals
AWS::Cases::Field

Cases Field

A field in the Cases domain. This field is used to define the case object model (that is, defines what data can be captured on cases) in a Cases domain.

Properties

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

Filter:
PropertyTypeFlags
Name
string
Required
Type
string
RequiredCreate-only
Attributes
FieldAttributes
Description
string
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 field was created.
FieldArnstringThe Amazon Resource Name (ARN) of the field.
FieldIdstringThe unique identifier of a field.
LastModifiedTimestringThe time at which the field was created or last modified.
NamespacestringIndicates whether this is a System field (predefined by AWS) or a Custom field (created by your organization). System fields cannot be modified or deleted.

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

Resources:
  MyResource:
    Type: AWS::Cases::Field
    Properties:
      Name: "my-name"
      Type: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

cases:CreateFieldcases:BatchGetFieldcases:TagResource

update

cases:UpdateFieldcases:TagResourcecases:UntagResourcecases:BatchGetField

delete

cases:DeleteFieldcases:UntagResource

list

cases:ListFields

read

cases:BatchGetField

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
Properties11
Required2
TaggingSupported
Primary IDFieldArn

Supported Operations

CreateUpdateDeleteListRead

Immutable After Creation

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

DomainIdType

External Links