interface CfnLayoutMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cases.Mixins.CfnLayoutMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscases/mixins#CfnLayoutMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cases.mixins.CfnLayoutMixinProps |
Python | aws_cdk.mixins_preview.aws_cases.mixins.CfnLayoutMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cases » mixins » 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 { mixins as cases_mixins } from '@aws-cdk/mixins-preview/aws-cases';
const cfnLayoutMixinProps: cases_mixins.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