interface CfnLayoutProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cases.CfnLayoutProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscases#CfnLayoutProps |
Java | software.amazon.awscdk.services.cases.CfnLayoutProps |
Python | aws_cdk.aws_cases.CfnLayoutProps |
TypeScript | aws-cdk-lib » aws_cases » CfnLayoutProps |
Properties for defining a CfnLayout.
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-lib';
const cfnLayoutProps: cases.CfnLayoutProps = {
content: {
basic: {
moreInfo: {
sections: [{
fieldGroup: {
fields: [{
id: 'id',
}],
// the properties below are optional
name: 'name',
},
}],
},
topPanel: {
sections: [{
fieldGroup: {
fields: [{
id: 'id',
}],
// the properties below are optional
name: 'name',
},
}],
},
},
},
name: 'name',
// the properties below are optional
domainId: 'domainId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| content | IResolvable | Layout | Object to store union of different versions of layout content. |
| name | string | The name of the layout. |
| domain | string | The unique identifier of the Cases domain. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
content
Type:
IResolvable | Layout
Object to store union of different versions of layout content.
name
Type:
string
The name of the layout.
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