interface BasicLayoutProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cases.CfnLayoutPropsMixin.BasicLayoutProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscases#CfnLayoutPropsMixin_BasicLayoutProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cases.CfnLayoutPropsMixin.BasicLayoutProperty |
Python | aws_cdk.cfn_property_mixins.aws_cases.CfnLayoutPropsMixin.BasicLayoutProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cases » 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 { aws_cases as cases } from '@aws-cdk/cfn-property-mixins';
const basicLayoutProperty: cases.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