114 lines
3.6 KiB
C++
114 lines
3.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/quicksight/QuickSight_EXPORTS.h>
|
|
#include <aws/quicksight/model/TemplateSourceAnalysis.h>
|
|
#include <aws/quicksight/model/TemplateSourceTemplate.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace QuickSight
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>The source entity of the template.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TemplateSourceEntity">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_QUICKSIGHT_API TemplateSourceEntity
|
|
{
|
|
public:
|
|
TemplateSourceEntity();
|
|
TemplateSourceEntity(Aws::Utils::Json::JsonView jsonValue);
|
|
TemplateSourceEntity& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The source analysis, if it is based on an analysis.</p>
|
|
*/
|
|
inline const TemplateSourceAnalysis& GetSourceAnalysis() const{ return m_sourceAnalysis; }
|
|
|
|
/**
|
|
* <p>The source analysis, if it is based on an analysis.</p>
|
|
*/
|
|
inline bool SourceAnalysisHasBeenSet() const { return m_sourceAnalysisHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The source analysis, if it is based on an analysis.</p>
|
|
*/
|
|
inline void SetSourceAnalysis(const TemplateSourceAnalysis& value) { m_sourceAnalysisHasBeenSet = true; m_sourceAnalysis = value; }
|
|
|
|
/**
|
|
* <p>The source analysis, if it is based on an analysis.</p>
|
|
*/
|
|
inline void SetSourceAnalysis(TemplateSourceAnalysis&& value) { m_sourceAnalysisHasBeenSet = true; m_sourceAnalysis = std::move(value); }
|
|
|
|
/**
|
|
* <p>The source analysis, if it is based on an analysis.</p>
|
|
*/
|
|
inline TemplateSourceEntity& WithSourceAnalysis(const TemplateSourceAnalysis& value) { SetSourceAnalysis(value); return *this;}
|
|
|
|
/**
|
|
* <p>The source analysis, if it is based on an analysis.</p>
|
|
*/
|
|
inline TemplateSourceEntity& WithSourceAnalysis(TemplateSourceAnalysis&& value) { SetSourceAnalysis(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The source template, if it is based on an template.</p>
|
|
*/
|
|
inline const TemplateSourceTemplate& GetSourceTemplate() const{ return m_sourceTemplate; }
|
|
|
|
/**
|
|
* <p>The source template, if it is based on an template.</p>
|
|
*/
|
|
inline bool SourceTemplateHasBeenSet() const { return m_sourceTemplateHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The source template, if it is based on an template.</p>
|
|
*/
|
|
inline void SetSourceTemplate(const TemplateSourceTemplate& value) { m_sourceTemplateHasBeenSet = true; m_sourceTemplate = value; }
|
|
|
|
/**
|
|
* <p>The source template, if it is based on an template.</p>
|
|
*/
|
|
inline void SetSourceTemplate(TemplateSourceTemplate&& value) { m_sourceTemplateHasBeenSet = true; m_sourceTemplate = std::move(value); }
|
|
|
|
/**
|
|
* <p>The source template, if it is based on an template.</p>
|
|
*/
|
|
inline TemplateSourceEntity& WithSourceTemplate(const TemplateSourceTemplate& value) { SetSourceTemplate(value); return *this;}
|
|
|
|
/**
|
|
* <p>The source template, if it is based on an template.</p>
|
|
*/
|
|
inline TemplateSourceEntity& WithSourceTemplate(TemplateSourceTemplate&& value) { SetSourceTemplate(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
TemplateSourceAnalysis m_sourceAnalysis;
|
|
bool m_sourceAnalysisHasBeenSet;
|
|
|
|
TemplateSourceTemplate m_sourceTemplate;
|
|
bool m_sourceTemplateHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace QuickSight
|
|
} // namespace Aws
|