interface CfnFieldMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cases.Mixins.CfnFieldMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscases/mixins#CfnFieldMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cases.mixins.CfnFieldMixinProps |
Python | aws_cdk.mixins_preview.aws_cases.mixins.CfnFieldMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cases » mixins » CfnFieldMixinProps |
Properties for CfnFieldPropsMixin.
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 { mixins as cases_mixins } from '@aws-cdk/mixins-preview/aws-cases';
const cfnFieldMixinProps: cases_mixins.CfnFieldMixinProps = {
description: 'description',
domainId: 'domainId',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | Description of the field. |
| domain | string | The unique identifier of the Cases domain. |
| name? | string | Name of the field. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| 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.
name?
Type:
string
(optional)
Name of the field.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
type?
Type:
string
(optional)
Type of the field.

.NET
Go
Java
Python
TypeScript