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