/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure that contains information that identifies the snapshot that needs
* to be generated.See Also:
AWS
* API Reference
The sheet ID of the dashboard to generate the snapshot artifact from. This * value is required for CSV or PDF format types.
*/ inline const Aws::String& GetSheetId() const{ return m_sheetId; } /** *The sheet ID of the dashboard to generate the snapshot artifact from. This * value is required for CSV or PDF format types.
*/ inline bool SheetIdHasBeenSet() const { return m_sheetIdHasBeenSet; } /** *The sheet ID of the dashboard to generate the snapshot artifact from. This * value is required for CSV or PDF format types.
*/ inline void SetSheetId(const Aws::String& value) { m_sheetIdHasBeenSet = true; m_sheetId = value; } /** *The sheet ID of the dashboard to generate the snapshot artifact from. This * value is required for CSV or PDF format types.
*/ inline void SetSheetId(Aws::String&& value) { m_sheetIdHasBeenSet = true; m_sheetId = std::move(value); } /** *The sheet ID of the dashboard to generate the snapshot artifact from. This * value is required for CSV or PDF format types.
*/ inline void SetSheetId(const char* value) { m_sheetIdHasBeenSet = true; m_sheetId.assign(value); } /** *The sheet ID of the dashboard to generate the snapshot artifact from. This * value is required for CSV or PDF format types.
*/ inline SnapshotFileSheetSelection& WithSheetId(const Aws::String& value) { SetSheetId(value); return *this;} /** *The sheet ID of the dashboard to generate the snapshot artifact from. This * value is required for CSV or PDF format types.
*/ inline SnapshotFileSheetSelection& WithSheetId(Aws::String&& value) { SetSheetId(std::move(value)); return *this;} /** *The sheet ID of the dashboard to generate the snapshot artifact from. This * value is required for CSV or PDF format types.
*/ inline SnapshotFileSheetSelection& WithSheetId(const char* value) { SetSheetId(value); return *this;} /** *The selection scope of the visuals on a sheet of a dashboard that you are * generating a snapthot of. You can choose one of the following options.
ALL_VISUALS
- Selects all visuals that are on the sheet.
* This value is required if the snapshot is a PDF.
* SELECTED_VISUALS
- Select the visual that you want to add to the
* snapshot. This value is required if the snapshot is a CSV.
The selection scope of the visuals on a sheet of a dashboard that you are * generating a snapthot of. You can choose one of the following options.
ALL_VISUALS
- Selects all visuals that are on the sheet.
* This value is required if the snapshot is a PDF.
* SELECTED_VISUALS
- Select the visual that you want to add to the
* snapshot. This value is required if the snapshot is a CSV.
The selection scope of the visuals on a sheet of a dashboard that you are * generating a snapthot of. You can choose one of the following options.
ALL_VISUALS
- Selects all visuals that are on the sheet.
* This value is required if the snapshot is a PDF.
* SELECTED_VISUALS
- Select the visual that you want to add to the
* snapshot. This value is required if the snapshot is a CSV.
The selection scope of the visuals on a sheet of a dashboard that you are * generating a snapthot of. You can choose one of the following options.
ALL_VISUALS
- Selects all visuals that are on the sheet.
* This value is required if the snapshot is a PDF.
* SELECTED_VISUALS
- Select the visual that you want to add to the
* snapshot. This value is required if the snapshot is a CSV.
The selection scope of the visuals on a sheet of a dashboard that you are * generating a snapthot of. You can choose one of the following options.
ALL_VISUALS
- Selects all visuals that are on the sheet.
* This value is required if the snapshot is a PDF.
* SELECTED_VISUALS
- Select the visual that you want to add to the
* snapshot. This value is required if the snapshot is a CSV.
The selection scope of the visuals on a sheet of a dashboard that you are * generating a snapthot of. You can choose one of the following options.
ALL_VISUALS
- Selects all visuals that are on the sheet.
* This value is required if the snapshot is a PDF.
* SELECTED_VISUALS
- Select the visual that you want to add to the
* snapshot. This value is required if the snapshot is a CSV.
A structure that lists the IDs of the visuals in the selected sheet. * Supported visual types are table, pivot table visuals. This value is required if * you are generating a CSV. This value supports a maximum of 1 visual ID.
*/ inline const Aws::VectorA structure that lists the IDs of the visuals in the selected sheet. * Supported visual types are table, pivot table visuals. This value is required if * you are generating a CSV. This value supports a maximum of 1 visual ID.
*/ inline bool VisualIdsHasBeenSet() const { return m_visualIdsHasBeenSet; } /** *A structure that lists the IDs of the visuals in the selected sheet. * Supported visual types are table, pivot table visuals. This value is required if * you are generating a CSV. This value supports a maximum of 1 visual ID.
*/ inline void SetVisualIds(const Aws::VectorA structure that lists the IDs of the visuals in the selected sheet. * Supported visual types are table, pivot table visuals. This value is required if * you are generating a CSV. This value supports a maximum of 1 visual ID.
*/ inline void SetVisualIds(Aws::VectorA structure that lists the IDs of the visuals in the selected sheet. * Supported visual types are table, pivot table visuals. This value is required if * you are generating a CSV. This value supports a maximum of 1 visual ID.
*/ inline SnapshotFileSheetSelection& WithVisualIds(const Aws::VectorA structure that lists the IDs of the visuals in the selected sheet. * Supported visual types are table, pivot table visuals. This value is required if * you are generating a CSV. This value supports a maximum of 1 visual ID.
*/ inline SnapshotFileSheetSelection& WithVisualIds(Aws::VectorA structure that lists the IDs of the visuals in the selected sheet. * Supported visual types are table, pivot table visuals. This value is required if * you are generating a CSV. This value supports a maximum of 1 visual ID.
*/ inline SnapshotFileSheetSelection& AddVisualIds(const Aws::String& value) { m_visualIdsHasBeenSet = true; m_visualIds.push_back(value); return *this; } /** *A structure that lists the IDs of the visuals in the selected sheet. * Supported visual types are table, pivot table visuals. This value is required if * you are generating a CSV. This value supports a maximum of 1 visual ID.
*/ inline SnapshotFileSheetSelection& AddVisualIds(Aws::String&& value) { m_visualIdsHasBeenSet = true; m_visualIds.push_back(std::move(value)); return *this; } /** *A structure that lists the IDs of the visuals in the selected sheet. * Supported visual types are table, pivot table visuals. This value is required if * you are generating a CSV. This value supports a maximum of 1 visual ID.
*/ inline SnapshotFileSheetSelection& AddVisualIds(const char* value) { m_visualIdsHasBeenSet = true; m_visualIds.push_back(value); return *this; } private: Aws::String m_sheetId; bool m_sheetIdHasBeenSet = false; SnapshotFileSheetSelectionScope m_selectionScope; bool m_selectionScopeHasBeenSet = false; Aws::Vector