Show / Hide Table of Contents

Interface CfnAnalysis.IBodySectionContentProperty

The configuration of content in a body section.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAnalysis.IBodySectionContentProperty
Syntax (vb)
Public Interface CfnAnalysis.IBodySectionContentProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectioncontent.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.QuickSight;

             var bodySectionContentProperty = new BodySectionContentProperty {
                 Layout = new SectionLayoutConfigurationProperty {
                     FreeFormLayout = new FreeFormSectionLayoutConfigurationProperty {
                         Elements = new [] { new FreeFormLayoutElementProperty {
                             ElementId = "elementId",
                             ElementType = "elementType",
                             Height = "height",
                             Width = "width",
                             XAxisLocation = "xAxisLocation",
                             YAxisLocation = "yAxisLocation",

                             // the properties below are optional
                             BackgroundStyle = new FreeFormLayoutElementBackgroundStyleProperty {
                                 Color = "color",
                                 Visibility = "visibility"
                             },
                             BorderStyle = new FreeFormLayoutElementBorderStyleProperty {
                                 Color = "color",
                                 Visibility = "visibility"
                             },
                             LoadingAnimation = new LoadingAnimationProperty {
                                 Visibility = "visibility"
                             },
                             RenderingRules = new [] { new SheetElementRenderingRuleProperty {
                                 ConfigurationOverrides = new SheetElementConfigurationOverridesProperty {
                                     Visibility = "visibility"
                                 },
                                 Expression = "expression"
                             } },
                             SelectedBorderStyle = new FreeFormLayoutElementBorderStyleProperty {
                                 Color = "color",
                                 Visibility = "visibility"
                             },
                             Visibility = "visibility"
                         } }
                     }
                 }
             };

Synopsis

Properties

Layout

The layout configuration of a body section.

Properties

Layout

The layout configuration of a body section.

object? Layout { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectioncontent.html#cfn-quicksight-analysis-bodysectioncontent-layout

Back to top Generated by DocFX