interface FieldGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cases.Mixins.CfnLayoutPropsMixin.FieldGroupProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscases/mixins#CfnLayoutPropsMixin_FieldGroupProperty |
Java | software.amazon.awscdk.mixins.preview.services.cases.mixins.CfnLayoutPropsMixin.FieldGroupProperty |
Python | aws_cdk.mixins_preview.aws_cases.mixins.CfnLayoutPropsMixin.FieldGroupProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cases » mixins » CfnLayoutPropsMixin » FieldGroupProperty |
Object for a group of fields and associated properties.
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 fieldGroupProperty: cases_mixins.CfnLayoutPropsMixin.FieldGroupProperty = {
fields: [{
id: 'id',
}],
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| fields? | IResolvable | (IResolvable | Field)[] | Represents an ordered list containing field related information. |
| name? | string | Name of the field group. |
fields?
Type:
IResolvable | (IResolvable | Field)[]
(optional)
Represents an ordered list containing field related information.
name?
Type:
string
(optional)
Name of the field group.

.NET
Go
Java
Python
TypeScript