interface CfnFieldProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cases.CfnFieldProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscases#CfnFieldProps |
Java | software.amazon.awscdk.services.cases.CfnFieldProps |
Python | aws_cdk.aws_cases.CfnFieldProps |
TypeScript | aws-cdk-lib » aws_cases » CfnFieldProps |
Properties for defining a CfnField.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-field.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cases as cases } from 'aws-cdk-lib';
const cfnFieldProps: cases.CfnFieldProps = {
name: 'name',
type: 'type',
// the properties below are optional
description: 'description',
domainId: 'domainId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the field. |
| type | string | Type of the field. |
| description? | string | Description of the field. |
| domain | string | The unique identifier of the Cases domain. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
name
Type:
string
Name of the field.
type
Type:
string
Type of the field.
description?
Type:
string
(optional)
Description of the field.
domainId?
Type:
string
(optional)
The unique identifier of the Cases domain.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript