interface LayoutSectionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cases.CfnLayout.LayoutSectionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscases#CfnLayout_LayoutSectionsProperty |
Java | software.amazon.awscdk.services.cases.CfnLayout.LayoutSectionsProperty |
Python | aws_cdk.aws_cases.CfnLayout.LayoutSectionsProperty |
TypeScript | aws-cdk-lib » aws_cases » CfnLayout » 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 { aws_cases as cases } from 'aws-cdk-lib';
const layoutSectionsProperty: cases.CfnLayout.LayoutSectionsProperty = {
sections: [{
fieldGroup: {
fields: [{
id: 'id',
}],
// the properties below are optional
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