interface BasicLayoutProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cases.CfnLayout.BasicLayoutProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscases#CfnLayout_BasicLayoutProperty |
Java | software.amazon.awscdk.services.cases.CfnLayout.BasicLayoutProperty |
Python | aws_cdk.aws_cases.CfnLayout.BasicLayoutProperty |
TypeScript | aws-cdk-lib » aws_cases » CfnLayout » BasicLayoutProperty |
Content specific to BasicLayout type.
It configures fields in the top panel and More Info tab of agent application.
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 basicLayoutProperty: cases.CfnLayout.BasicLayoutProperty = {
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',
},
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| more | IResolvable | Layout | This represents sections in a tab of the page layout. |
| top | IResolvable | Layout | This represents sections in a panel of the page layout. |
moreInfo?
Type:
IResolvable | Layout
(optional)
This represents sections in a tab of the page layout.
topPanel?
Type:
IResolvable | Layout
(optional)
This represents sections in a panel of the page layout.

.NET
Go
Java
Python
TypeScript