interface BasicLayoutProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cases.Mixins.CfnLayoutPropsMixin.BasicLayoutProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscases/mixins#CfnLayoutPropsMixin_BasicLayoutProperty |
Java | software.amazon.awscdk.mixins.preview.services.cases.mixins.CfnLayoutPropsMixin.BasicLayoutProperty |
Python | aws_cdk.mixins_preview.aws_cases.mixins.CfnLayoutPropsMixin.BasicLayoutProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cases » mixins » CfnLayoutPropsMixin » 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 { mixins as cases_mixins } from '@aws-cdk/mixins-preview/aws-cases';
const basicLayoutProperty: cases_mixins.CfnLayoutPropsMixin.BasicLayoutProperty = {
moreInfo: {
sections: [{
fieldGroup: {
fields: [{
id: 'id',
}],
name: 'name',
},
}],
},
topPanel: {
sections: [{
fieldGroup: {
fields: [{
id: 'id',
}],
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