Class CfnLayout.LayoutSectionsProperty
Ordered list containing different kinds of sections that can be added.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Cases
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLayout.LayoutSectionsProperty : CfnLayout.ILayoutSectionsProperty
Syntax (vb)
Public Class CfnLayout.LayoutSectionsProperty Implements CfnLayout.ILayoutSectionsProperty
Remarks
A LayoutSections object can only contain one section.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Cases;
var layoutSectionsProperty = new LayoutSectionsProperty {
Sections = new [] { new SectionProperty {
FieldGroup = new FieldGroupProperty {
Fields = new [] { new FieldItemProperty {
Id = "id"
} },
// the properties below are optional
Name = "name"
}
} }
};
Synopsis
Constructors
| LayoutSectionsProperty() | Ordered list containing different kinds of sections that can be added. |
Properties
| Sections | Ordered list containing different kinds of sections that can be added. |
Constructors
LayoutSectionsProperty()
Ordered list containing different kinds of sections that can be added.
public LayoutSectionsProperty()
Remarks
A LayoutSections object can only contain one section.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Cases;
var layoutSectionsProperty = new LayoutSectionsProperty {
Sections = new [] { new SectionProperty {
FieldGroup = new FieldGroupProperty {
Fields = new [] { new FieldItemProperty {
Id = "id"
} },
// the properties below are optional
Name = "name"
}
} }
};
Properties
Sections
Ordered list containing different kinds of sections that can be added.
public object? Sections { get; set; }
Property Value
Remarks
A LayoutSections object can only contain one section.
Type union: either IResolvable or (either IResolvable or CfnLayout.ISectionProperty)[]