Class: Aws::QuickSight::Types::FieldFolder
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::FieldFolder
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass FieldFolder data as a hash:
{
description: "FieldFolderDescription",
columns: ["String"],
}
A FieldFolder element is a folder that contains fields and nested subfolders.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#columns ⇒ Array<String>
A folder has a list of columns.
-
#description ⇒ String
The description for a field folder.
Instance Attribute Details
#columns ⇒ Array<String>
A folder has a list of columns. A column can only be in one folder.
6916 6917 6918 6919 6920 6921 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 6916 class FieldFolder < Struct.new( :description, :columns) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The description for a field folder.
6916 6917 6918 6919 6920 6921 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 6916 class FieldFolder < Struct.new( :description, :columns) SENSITIVE = [] include Aws::Structure end |