Class CfnDataSet.FieldFolderProperty
A FieldFolder element is a folder that contains fields and nested subfolders.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSet.FieldFolderProperty : CfnDataSet.IFieldFolderProperty
Syntax (vb)
Public Class CfnDataSet.FieldFolderProperty Implements CfnDataSet.IFieldFolderProperty
Remarks
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 fieldFolderProperty = new FieldFolderProperty {
Columns = new [] { "columns" },
Description = "description"
};
Synopsis
Constructors
FieldFolderProperty() | A FieldFolder element is a folder that contains fields and nested subfolders. |
Properties
Columns | A folder has a list of columns. |
Description | The description for a field folder. |
Constructors
FieldFolderProperty()
A FieldFolder element is a folder that contains fields and nested subfolders.
public FieldFolderProperty()
Remarks
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 fieldFolderProperty = new FieldFolderProperty {
Columns = new [] { "columns" },
Description = "description"
};
Properties
Columns
A folder has a list of columns.
public string[]? Columns { get; set; }
Property Value
string[]
Remarks
A column can only be in one folder.
Description
The description for a field folder.
public string? Description { get; set; }