/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A visual that contains custom content. For more information, see Using
* custom visual content in the Amazon QuickSight User
* Guide.See Also:
AWS
* API Reference
The unique identifier of a visual. This identifier must be unique within the * context of a dashboard, template, or analysis. Two dashboards, analyses, or * templates can have visuals with the same identifiers.
*/ inline const Aws::String& GetVisualId() const{ return m_visualId; } /** *The unique identifier of a visual. This identifier must be unique within the * context of a dashboard, template, or analysis. Two dashboards, analyses, or * templates can have visuals with the same identifiers.
*/ inline bool VisualIdHasBeenSet() const { return m_visualIdHasBeenSet; } /** *The unique identifier of a visual. This identifier must be unique within the * context of a dashboard, template, or analysis. Two dashboards, analyses, or * templates can have visuals with the same identifiers.
*/ inline void SetVisualId(const Aws::String& value) { m_visualIdHasBeenSet = true; m_visualId = value; } /** *The unique identifier of a visual. This identifier must be unique within the * context of a dashboard, template, or analysis. Two dashboards, analyses, or * templates can have visuals with the same identifiers.
*/ inline void SetVisualId(Aws::String&& value) { m_visualIdHasBeenSet = true; m_visualId = std::move(value); } /** *The unique identifier of a visual. This identifier must be unique within the * context of a dashboard, template, or analysis. Two dashboards, analyses, or * templates can have visuals with the same identifiers.
*/ inline void SetVisualId(const char* value) { m_visualIdHasBeenSet = true; m_visualId.assign(value); } /** *The unique identifier of a visual. This identifier must be unique within the * context of a dashboard, template, or analysis. Two dashboards, analyses, or * templates can have visuals with the same identifiers.
*/ inline CustomContentVisual& WithVisualId(const Aws::String& value) { SetVisualId(value); return *this;} /** *The unique identifier of a visual. This identifier must be unique within the * context of a dashboard, template, or analysis. Two dashboards, analyses, or * templates can have visuals with the same identifiers.
*/ inline CustomContentVisual& WithVisualId(Aws::String&& value) { SetVisualId(std::move(value)); return *this;} /** *The unique identifier of a visual. This identifier must be unique within the * context of a dashboard, template, or analysis. Two dashboards, analyses, or * templates can have visuals with the same identifiers.
*/ inline CustomContentVisual& WithVisualId(const char* value) { SetVisualId(value); return *this;} /** *The title that is displayed on the visual.
*/ inline const VisualTitleLabelOptions& GetTitle() const{ return m_title; } /** *The title that is displayed on the visual.
*/ inline bool TitleHasBeenSet() const { return m_titleHasBeenSet; } /** *The title that is displayed on the visual.
*/ inline void SetTitle(const VisualTitleLabelOptions& value) { m_titleHasBeenSet = true; m_title = value; } /** *The title that is displayed on the visual.
*/ inline void SetTitle(VisualTitleLabelOptions&& value) { m_titleHasBeenSet = true; m_title = std::move(value); } /** *The title that is displayed on the visual.
*/ inline CustomContentVisual& WithTitle(const VisualTitleLabelOptions& value) { SetTitle(value); return *this;} /** *The title that is displayed on the visual.
*/ inline CustomContentVisual& WithTitle(VisualTitleLabelOptions&& value) { SetTitle(std::move(value)); return *this;} /** *The subtitle that is displayed on the visual.
*/ inline const VisualSubtitleLabelOptions& GetSubtitle() const{ return m_subtitle; } /** *The subtitle that is displayed on the visual.
*/ inline bool SubtitleHasBeenSet() const { return m_subtitleHasBeenSet; } /** *The subtitle that is displayed on the visual.
*/ inline void SetSubtitle(const VisualSubtitleLabelOptions& value) { m_subtitleHasBeenSet = true; m_subtitle = value; } /** *The subtitle that is displayed on the visual.
*/ inline void SetSubtitle(VisualSubtitleLabelOptions&& value) { m_subtitleHasBeenSet = true; m_subtitle = std::move(value); } /** *The subtitle that is displayed on the visual.
*/ inline CustomContentVisual& WithSubtitle(const VisualSubtitleLabelOptions& value) { SetSubtitle(value); return *this;} /** *The subtitle that is displayed on the visual.
*/ inline CustomContentVisual& WithSubtitle(VisualSubtitleLabelOptions&& value) { SetSubtitle(std::move(value)); return *this;} /** *The configuration of a CustomContentVisual
.
The configuration of a CustomContentVisual
.
The configuration of a CustomContentVisual
.
The configuration of a CustomContentVisual
.
The configuration of a CustomContentVisual
.
The configuration of a CustomContentVisual
.
The list of custom actions that are configured for a visual.
*/ inline const Aws::VectorThe list of custom actions that are configured for a visual.
*/ inline bool ActionsHasBeenSet() const { return m_actionsHasBeenSet; } /** *The list of custom actions that are configured for a visual.
*/ inline void SetActions(const Aws::VectorThe list of custom actions that are configured for a visual.
*/ inline void SetActions(Aws::VectorThe list of custom actions that are configured for a visual.
*/ inline CustomContentVisual& WithActions(const Aws::VectorThe list of custom actions that are configured for a visual.
*/ inline CustomContentVisual& WithActions(Aws::VectorThe list of custom actions that are configured for a visual.
*/ inline CustomContentVisual& AddActions(const VisualCustomAction& value) { m_actionsHasBeenSet = true; m_actions.push_back(value); return *this; } /** *The list of custom actions that are configured for a visual.
*/ inline CustomContentVisual& AddActions(VisualCustomAction&& value) { m_actionsHasBeenSet = true; m_actions.push_back(std::move(value)); return *this; } /** *The dataset that is used to create the custom content visual. You can't * create a visual without a dataset.
*/ inline const Aws::String& GetDataSetIdentifier() const{ return m_dataSetIdentifier; } /** *The dataset that is used to create the custom content visual. You can't * create a visual without a dataset.
*/ inline bool DataSetIdentifierHasBeenSet() const { return m_dataSetIdentifierHasBeenSet; } /** *The dataset that is used to create the custom content visual. You can't * create a visual without a dataset.
*/ inline void SetDataSetIdentifier(const Aws::String& value) { m_dataSetIdentifierHasBeenSet = true; m_dataSetIdentifier = value; } /** *The dataset that is used to create the custom content visual. You can't * create a visual without a dataset.
*/ inline void SetDataSetIdentifier(Aws::String&& value) { m_dataSetIdentifierHasBeenSet = true; m_dataSetIdentifier = std::move(value); } /** *The dataset that is used to create the custom content visual. You can't * create a visual without a dataset.
*/ inline void SetDataSetIdentifier(const char* value) { m_dataSetIdentifierHasBeenSet = true; m_dataSetIdentifier.assign(value); } /** *The dataset that is used to create the custom content visual. You can't * create a visual without a dataset.
*/ inline CustomContentVisual& WithDataSetIdentifier(const Aws::String& value) { SetDataSetIdentifier(value); return *this;} /** *The dataset that is used to create the custom content visual. You can't * create a visual without a dataset.
*/ inline CustomContentVisual& WithDataSetIdentifier(Aws::String&& value) { SetDataSetIdentifier(std::move(value)); return *this;} /** *The dataset that is used to create the custom content visual. You can't * create a visual without a dataset.
*/ inline CustomContentVisual& WithDataSetIdentifier(const char* value) { SetDataSetIdentifier(value); return *this;} private: Aws::String m_visualId; bool m_visualIdHasBeenSet = false; VisualTitleLabelOptions m_title; bool m_titleHasBeenSet = false; VisualSubtitleLabelOptions m_subtitle; bool m_subtitleHasBeenSet = false; CustomContentConfiguration m_chartConfiguration; bool m_chartConfigurationHasBeenSet = false; Aws::Vector