AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CustomContentConfiguration.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/quicksight/model/CustomContentType.h>
10#include <aws/quicksight/model/CustomContentImageScalingConfiguration.h>
11#include <aws/quicksight/model/VisualInteractionOptions.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace QuickSight
25{
26namespace Model
27{
28
36 {
37 public:
38 AWS_QUICKSIGHT_API CustomContentConfiguration();
41 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
49 inline const Aws::String& GetContentUrl() const{ return m_contentUrl; }
50 inline bool ContentUrlHasBeenSet() const { return m_contentUrlHasBeenSet; }
51 inline void SetContentUrl(const Aws::String& value) { m_contentUrlHasBeenSet = true; m_contentUrl = value; }
52 inline void SetContentUrl(Aws::String&& value) { m_contentUrlHasBeenSet = true; m_contentUrl = std::move(value); }
53 inline void SetContentUrl(const char* value) { m_contentUrlHasBeenSet = true; m_contentUrl.assign(value); }
54 inline CustomContentConfiguration& WithContentUrl(const Aws::String& value) { SetContentUrl(value); return *this;}
55 inline CustomContentConfiguration& WithContentUrl(Aws::String&& value) { SetContentUrl(std::move(value)); return *this;}
56 inline CustomContentConfiguration& WithContentUrl(const char* value) { SetContentUrl(value); return *this;}
58
60
64 inline const CustomContentType& GetContentType() const{ return m_contentType; }
65 inline bool ContentTypeHasBeenSet() const { return m_contentTypeHasBeenSet; }
66 inline void SetContentType(const CustomContentType& value) { m_contentTypeHasBeenSet = true; m_contentType = value; }
67 inline void SetContentType(CustomContentType&& value) { m_contentTypeHasBeenSet = true; m_contentType = std::move(value); }
68 inline CustomContentConfiguration& WithContentType(const CustomContentType& value) { SetContentType(value); return *this;}
69 inline CustomContentConfiguration& WithContentType(CustomContentType&& value) { SetContentType(std::move(value)); return *this;}
71
73
78 inline const CustomContentImageScalingConfiguration& GetImageScaling() const{ return m_imageScaling; }
79 inline bool ImageScalingHasBeenSet() const { return m_imageScalingHasBeenSet; }
80 inline void SetImageScaling(const CustomContentImageScalingConfiguration& value) { m_imageScalingHasBeenSet = true; m_imageScaling = value; }
81 inline void SetImageScaling(CustomContentImageScalingConfiguration&& value) { m_imageScalingHasBeenSet = true; m_imageScaling = std::move(value); }
85
87
90 inline const VisualInteractionOptions& GetInteractions() const{ return m_interactions; }
91 inline bool InteractionsHasBeenSet() const { return m_interactionsHasBeenSet; }
92 inline void SetInteractions(const VisualInteractionOptions& value) { m_interactionsHasBeenSet = true; m_interactions = value; }
93 inline void SetInteractions(VisualInteractionOptions&& value) { m_interactionsHasBeenSet = true; m_interactions = std::move(value); }
95 inline CustomContentConfiguration& WithInteractions(VisualInteractionOptions&& value) { SetInteractions(std::move(value)); return *this;}
97 private:
98
99 Aws::String m_contentUrl;
100 bool m_contentUrlHasBeenSet = false;
101
102 CustomContentType m_contentType;
103 bool m_contentTypeHasBeenSet = false;
104
106 bool m_imageScalingHasBeenSet = false;
107
108 VisualInteractionOptions m_interactions;
109 bool m_interactionsHasBeenSet = false;
110 };
111
112} // namespace Model
113} // namespace QuickSight
114} // namespace Aws
CustomContentConfiguration & WithContentUrl(const Aws::String &value)
CustomContentConfiguration & WithContentUrl(Aws::String &&value)
CustomContentConfiguration & WithContentType(const CustomContentType &value)
const CustomContentImageScalingConfiguration & GetImageScaling() const
void SetImageScaling(CustomContentImageScalingConfiguration &&value)
void SetImageScaling(const CustomContentImageScalingConfiguration &value)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_QUICKSIGHT_API CustomContentConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
CustomContentConfiguration & WithImageScaling(CustomContentImageScalingConfiguration &&value)
CustomContentConfiguration & WithInteractions(VisualInteractionOptions &&value)
void SetInteractions(const VisualInteractionOptions &value)
CustomContentConfiguration & WithImageScaling(const CustomContentImageScalingConfiguration &value)
CustomContentConfiguration & WithContentType(CustomContentType &&value)
AWS_QUICKSIGHT_API CustomContentConfiguration(Aws::Utils::Json::JsonView jsonValue)
CustomContentConfiguration & WithContentUrl(const char *value)
CustomContentConfiguration & WithInteractions(const VisualInteractionOptions &value)
const VisualInteractionOptions & GetInteractions() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue