Class: Aws::QuickSight::Types::SnapshotFile
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::SnapshotFile
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
A structure that contains the information for the snapshot that you want to generate. This information is provided by you when you start a new snapshot job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#format_type ⇒ String
The format of the snapshot file to be generated.
-
#sheet_selections ⇒ Array<Types::SnapshotFileSheetSelection>
A list of ‘SnapshotFileSheetSelection` objects that contain information on the dashboard sheet that is exported.
Instance Attribute Details
#format_type ⇒ String
The format of the snapshot file to be generated. You can choose between ‘CSV`, `Excel`, or `PDF`.
28645 28646 28647 28648 28649 28650 |
# File 'lib/aws-sdk-quicksight/types.rb', line 28645 class SnapshotFile < Struct.new( :sheet_selections, :format_type) SENSITIVE = [] include Aws::Structure end |
#sheet_selections ⇒ Array<Types::SnapshotFileSheetSelection>
A list of ‘SnapshotFileSheetSelection` objects that contain information on the dashboard sheet that is exported. These objects provide information about the snapshot artifacts that are generated during the job. This structure can hold a maximum of 5 CSV configurations, 5 Excel configurations, or 1 configuration for PDF.
28645 28646 28647 28648 28649 28650 |
# File 'lib/aws-sdk-quicksight/types.rb', line 28645 class SnapshotFile < Struct.new( :sheet_selections, :format_type) SENSITIVE = [] include Aws::Structure end |