interface LayoutContentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cases.CfnLayout.LayoutContentProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscases#CfnLayout_LayoutContentProperty |
Java | software.amazon.awscdk.services.cases.CfnLayout.LayoutContentProperty |
Python | aws_cdk.aws_cases.CfnLayout.LayoutContentProperty |
TypeScript | aws-cdk-lib » aws_cases » CfnLayout » 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 { aws_cases as cases } from 'aws-cdk-lib';
const layoutContentProperty: cases.CfnLayout.LayoutContentProperty = {
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',
},
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| basic | IResolvable | Basic | Content specific to BasicLayout type. |
basic
Type:
IResolvable | Basic
Content specific to BasicLayout type.
It configures fields in the top panel and More Info tab of agent application.

.NET
Go
Java
Python
TypeScript