interface CfnLayoutMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cases.CfnLayoutMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscases#CfnLayoutMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cases.CfnLayoutMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cases.CfnLayoutMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cases » CfnLayoutMixinProps |
Properties for CfnLayoutPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-layout.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 cfnLayoutMixinProps: cases.CfnLayoutMixinProps = {
content: {
basic: {
moreInfo: {
sections: [{
fieldGroup: {
fields: [{
id: 'id',
}],
name: 'name',
},
}],
},
topPanel: {
sections: [{
fieldGroup: {
fields: [{
id: 'id',
}],
name: 'name',
},
}],
},
},
},
domainId: 'domainId',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| content? | IResolvable | Layout | Object to store union of different versions of layout content. |
| domain | string | The unique identifier of the Cases domain. |
| name? | string | The name of the layout. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
content?
Type:
IResolvable | Layout
(optional)
Object to store union of different versions of layout content.
domainId?
Type:
string
(optional)
The unique identifier of the Cases domain.
name?
Type:
string
(optional)
The name of the layout.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript