Show / Hide Table of Contents

Class CfnAnalysis.HeaderFooterSectionConfigurationProperty

The configuration of a header or footer section.

Inheritance
System.Object
CfnAnalysis.HeaderFooterSectionConfigurationProperty
Implements
CfnAnalysis.IHeaderFooterSectionConfigurationProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class HeaderFooterSectionConfigurationProperty : Object, CfnAnalysis.IHeaderFooterSectionConfigurationProperty
Syntax (vb)
Public Class HeaderFooterSectionConfigurationProperty
    Inherits Object
    Implements CfnAnalysis.IHeaderFooterSectionConfigurationProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-headerfootersectionconfiguration.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 headerFooterSectionConfigurationProperty = new HeaderFooterSectionConfigurationProperty {
    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"
            } }
        }
    },
    SectionId = "sectionId",

    // the properties below are optional
    Style = new SectionStyleProperty {
        Height = "height",
        Padding = new SpacingProperty {
            Bottom = "bottom",
            Left = "left",
            Right = "right",
            Top = "top"
        }
    }
};

Synopsis

Constructors

HeaderFooterSectionConfigurationProperty()

Properties

Layout

The layout configuration of the header or footer section.

SectionId

The unique identifier of the header or footer section.

Style

The style options of a header or footer section.

Constructors

HeaderFooterSectionConfigurationProperty()

public HeaderFooterSectionConfigurationProperty()

Properties

Layout

The layout configuration of the header or footer section.

public object Layout { get; set; }
Property Value

System.Object

Remarks

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

SectionId

The unique identifier of the header or footer section.

public string SectionId { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-headerfootersectionconfiguration.html#cfn-quicksight-analysis-headerfootersectionconfiguration-sectionid

Style

The style options of a header or footer section.

public object Style { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-headerfootersectionconfiguration.html#cfn-quicksight-analysis-headerfootersectionconfiguration-style

Implements

CfnAnalysis.IHeaderFooterSectionConfigurationProperty
Back to top Generated by DocFX