AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AssetBundleImportSourceDescription.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace QuickSight
22{
23namespace Model
24{
25
35 {
36 public:
40 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
50 inline const Aws::String& GetBody() const{ return m_body; }
51 inline bool BodyHasBeenSet() const { return m_bodyHasBeenSet; }
52 inline void SetBody(const Aws::String& value) { m_bodyHasBeenSet = true; m_body = value; }
53 inline void SetBody(Aws::String&& value) { m_bodyHasBeenSet = true; m_body = std::move(value); }
54 inline void SetBody(const char* value) { m_bodyHasBeenSet = true; m_body.assign(value); }
55 inline AssetBundleImportSourceDescription& WithBody(const Aws::String& value) { SetBody(value); return *this;}
56 inline AssetBundleImportSourceDescription& WithBody(Aws::String&& value) { SetBody(std::move(value)); return *this;}
57 inline AssetBundleImportSourceDescription& WithBody(const char* value) { SetBody(value); return *this;}
59
61
64 inline const Aws::String& GetS3Uri() const{ return m_s3Uri; }
65 inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; }
66 inline void SetS3Uri(const Aws::String& value) { m_s3UriHasBeenSet = true; m_s3Uri = value; }
67 inline void SetS3Uri(Aws::String&& value) { m_s3UriHasBeenSet = true; m_s3Uri = std::move(value); }
68 inline void SetS3Uri(const char* value) { m_s3UriHasBeenSet = true; m_s3Uri.assign(value); }
69 inline AssetBundleImportSourceDescription& WithS3Uri(const Aws::String& value) { SetS3Uri(value); return *this;}
70 inline AssetBundleImportSourceDescription& WithS3Uri(Aws::String&& value) { SetS3Uri(std::move(value)); return *this;}
71 inline AssetBundleImportSourceDescription& WithS3Uri(const char* value) { SetS3Uri(value); return *this;}
73 private:
74
75 Aws::String m_body;
76 bool m_bodyHasBeenSet = false;
77
78 Aws::String m_s3Uri;
79 bool m_s3UriHasBeenSet = false;
80 };
81
82} // namespace Model
83} // namespace QuickSight
84} // namespace Aws
AWS_QUICKSIGHT_API AssetBundleImportSourceDescription(Aws::Utils::Json::JsonView jsonValue)
AssetBundleImportSourceDescription & WithS3Uri(Aws::String &&value)
AssetBundleImportSourceDescription & WithBody(Aws::String &&value)
AssetBundleImportSourceDescription & WithS3Uri(const Aws::String &value)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
AssetBundleImportSourceDescription & WithBody(const char *value)
AssetBundleImportSourceDescription & WithBody(const Aws::String &value)
AssetBundleImportSourceDescription & WithS3Uri(const char *value)
AWS_QUICKSIGHT_API AssetBundleImportSourceDescription & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue