interface SectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cases.CfnLayout.SectionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscases#CfnLayout_SectionProperty |
Java | software.amazon.awscdk.services.cases.CfnLayout.SectionProperty |
Python | aws_cdk.aws_cases.CfnLayout.SectionProperty |
TypeScript | aws-cdk-lib » aws_cases » CfnLayout » SectionProperty |
This represents a sections within a panel or tab of the page layout.
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 sectionProperty: cases.CfnLayout.SectionProperty = {
fieldGroup: {
fields: [{
id: 'id',
}],
// the properties below are optional
name: 'name',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| field | IResolvable | Field | Consists of a group of fields and associated properties. |
fieldGroup
Type:
IResolvable | Field
Consists of a group of fields and associated properties.

.NET
Go
Java
Python
TypeScript