Show / Hide Table of Contents

Class CfnAnalysis.AnalysisDefaultsProperty

The configuration for default analysis settings.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-analysisdefaults.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 analysisDefaultsProperty = new AnalysisDefaultsProperty {
    DefaultNewSheetConfiguration = new DefaultNewSheetConfigurationProperty {
        InteractiveLayoutConfiguration = new DefaultInteractiveLayoutConfigurationProperty {
            FreeForm = new DefaultFreeFormLayoutConfigurationProperty {
                CanvasSizeOptions = new FreeFormLayoutCanvasSizeOptionsProperty {
                    ScreenCanvasSizeOptions = new FreeFormLayoutScreenCanvasSizeOptionsProperty {
                        OptimizedViewPortWidth = "optimizedViewPortWidth"
                    }
                }
            },
            Grid = new DefaultGridLayoutConfigurationProperty {
                CanvasSizeOptions = new GridLayoutCanvasSizeOptionsProperty {
                    ScreenCanvasSizeOptions = new GridLayoutScreenCanvasSizeOptionsProperty {
                        ResizeOption = "resizeOption",

                        // the properties below are optional
                        OptimizedViewPortWidth = "optimizedViewPortWidth"
                    }
                }
            }
        },
        PaginatedLayoutConfiguration = new DefaultPaginatedLayoutConfigurationProperty {
            SectionBased = new DefaultSectionBasedLayoutConfigurationProperty {
                CanvasSizeOptions = new SectionBasedLayoutCanvasSizeOptionsProperty {
                    PaperCanvasSizeOptions = new SectionBasedLayoutPaperCanvasSizeOptionsProperty {
                        PaperMargin = new SpacingProperty {
                            Bottom = "bottom",
                            Left = "left",
                            Right = "right",
                            Top = "top"
                        },
                        PaperOrientation = "paperOrientation",
                        PaperSize = "paperSize"
                    }
                }
            }
        },
        SheetContentType = "sheetContentType"
    }
};

Synopsis

Constructors

AnalysisDefaultsProperty()

Properties

DefaultNewSheetConfiguration

The configuration for default new sheet settings.

Constructors

AnalysisDefaultsProperty()

public AnalysisDefaultsProperty()

Properties

DefaultNewSheetConfiguration

The configuration for default new sheet settings.

public object DefaultNewSheetConfiguration { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnAnalysis.IAnalysisDefaultsProperty
Back to top Generated by DocFX