interface LayoutContentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cases.Mixins.CfnLayoutPropsMixin.LayoutContentProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscases/mixins#CfnLayoutPropsMixin_LayoutContentProperty |
Java | software.amazon.awscdk.mixins.preview.services.cases.mixins.CfnLayoutPropsMixin.LayoutContentProperty |
Python | aws_cdk.mixins_preview.aws_cases.mixins.CfnLayoutPropsMixin.LayoutContentProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cases » mixins » CfnLayoutPropsMixin » LayoutContentProperty |
Object to store union of different versions of layout content.
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 layoutContentProperty: cases_mixins.CfnLayoutPropsMixin.LayoutContentProperty = {
basic: {
moreInfo: {
sections: [{
fieldGroup: {
fields: [{
id: 'id',
}],
name: 'name',
},
}],
},
topPanel: {
sections: [{
fieldGroup: {
fields: [{
id: 'id',
}],
name: 'name',
},
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| basic? | IResolvable | Basic | Content specific to BasicLayout type. |
basic?
Type:
IResolvable | Basic
(optional)
Content specific to BasicLayout type.
It configures fields in the top panel and More Info tab of agent application.

.NET
Go
Java
Python
TypeScript