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