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