interface CfnTemplateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cases.CfnTemplateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscases#CfnTemplateMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cases.CfnTemplateMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cases.CfnTemplateMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cases » CfnTemplateMixinProps |
Properties for CfnTemplatePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.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/cfn-property-mixins';
const cfnTemplateMixinProps: cases.CfnTemplateMixinProps = {
description: 'description',
domainId: 'domainId',
layoutConfiguration: {
defaultLayout: 'defaultLayout',
},
name: 'name',
requiredFields: [{
fieldId: 'fieldId',
}],
rules: [{
caseRuleId: 'caseRuleId',
fieldId: 'fieldId',
}],
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A brief description of the template. |
| domain | string | The unique identifier of the Cases domain. |
| layout | IResolvable | Layout | Object to store configuration of layouts associated to the template. |
| name? | string | The template name. |
| required | IResolvable | (IResolvable | Required)[] | A list of fields that must contain a value for a case to be successfully created with this template. |
| rules? | IResolvable | (IResolvable | Template)[] | A list of case rules (also known as case field conditions ) on a template. |
| status? | string | The status of the template. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
description?
Type:
string
(optional)
A brief description of the template.
domainId?
Type:
string
(optional)
The unique identifier of the Cases domain.
layoutConfiguration?
Type:
IResolvable | Layout
(optional)
Object to store configuration of layouts associated to the template.
name?
Type:
string
(optional)
The template name.
requiredFields?
Type:
IResolvable | (IResolvable | Required)[]
(optional)
A list of fields that must contain a value for a case to be successfully created with this template.
rules?
Type:
IResolvable | (IResolvable | Template)[]
(optional)
A list of case rules (also known as case field conditions ) on a template.
status?
Type:
string
(optional)
The status of the template.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript