Class: Aws::QuickSight::Types::SnapshotFile
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::SnapshotFile
- Defined in:
- gems/aws-sdk-quicksight/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
SnapshotFileSheetSelectionobjects 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.
33996 33997 33998 33999 34000 34001 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 33996 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.
33996 33997 33998 33999 34000 34001 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 33996 class SnapshotFile < Struct.new( :sheet_selections, :format_type) SENSITIVE = [] include Aws::Structure end |