interface LayoutSectionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cases.Mixins.CfnLayoutPropsMixin.LayoutSectionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscases/mixins#CfnLayoutPropsMixin_LayoutSectionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.cases.mixins.CfnLayoutPropsMixin.LayoutSectionsProperty |
Python | aws_cdk.mixins_preview.aws_cases.mixins.CfnLayoutPropsMixin.LayoutSectionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cases » mixins » CfnLayoutPropsMixin » LayoutSectionsProperty |
Ordered list containing different kinds of sections that can be added.
A LayoutSections object can only contain one section.
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 layoutSectionsProperty: cases_mixins.CfnLayoutPropsMixin.LayoutSectionsProperty = {
sections: [{
fieldGroup: {
fields: [{
id: 'id',
}],
name: 'name',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| sections? | IResolvable | (IResolvable | Section)[] | Ordered list containing different kinds of sections that can be added. |
sections?
Type:
IResolvable | (IResolvable | Section)[]
(optional)
Ordered list containing different kinds of sections that can be added.
A LayoutSections object can only contain one section.

.NET
Go
Java
Python
TypeScript