Show / Hide Table of Contents

Class CfnLayout.LayoutSectionsProperty

Ordered list containing different kinds of sections that can be added.

Inheritance
object
CfnLayout.LayoutSectionsProperty
Implements
CfnLayout.ILayoutSectionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-layoutsections.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-layoutsections.html

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

object

Remarks

A LayoutSections object can only contain one section.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-layoutsections.html#cfn-cases-layout-layoutsections-sections

Type union: either IResolvable or (either IResolvable or CfnLayout.ISectionProperty)[]

Implements

CfnLayout.ILayoutSectionsProperty
Back to top Generated by DocFX