Show / Hide Table of Contents

Class CfnDataSet.FieldFolderProperty

A FieldFolder element is a folder that contains fields and nested subfolders.

Inheritance
object
CfnDataSet.FieldFolderProperty
Implements
CfnDataSet.IFieldFolderProperty
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.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSet.FieldFolderProperty : CfnDataSet.IFieldFolderProperty
Syntax (vb)
Public Class CfnDataSet.FieldFolderProperty Implements CfnDataSet.IFieldFolderProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fieldfolder.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 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fieldfolder.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 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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fieldfolder.html#cfn-quicksight-dataset-fieldfolder-columns

Description

The description for a field folder.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fieldfolder.html#cfn-quicksight-dataset-fieldfolder-description

Implements

CfnDataSet.IFieldFolderProperty
Back to top Generated by DocFX