interface SectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cases.Mixins.CfnLayoutPropsMixin.SectionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscases/mixins#CfnLayoutPropsMixin_SectionProperty |
Java | software.amazon.awscdk.mixins.preview.services.cases.mixins.CfnLayoutPropsMixin.SectionProperty |
Python | aws_cdk.mixins_preview.aws_cases.mixins.CfnLayoutPropsMixin.SectionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cases » mixins » CfnLayoutPropsMixin » 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 { mixins as cases_mixins } from '@aws-cdk/mixins-preview/aws-cases';
const sectionProperty: cases_mixins.CfnLayoutPropsMixin.SectionProperty = {
fieldGroup: {
fields: [{
id: 'id',
}],
name: 'name',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| field | IResolvable | Field | Consists of a group of fields and associated properties. |
fieldGroup?
Type:
IResolvable | Field
(optional)
Consists of a group of fields and associated properties.

.NET
Go
Java
Python
TypeScript