AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
S3Parameters.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/quicksight/QuickSight_EXPORTS.h>
9#include <aws/quicksight/model/ManifestFileLocation.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace QuickSight {
21namespace Model {
22
29 public:
30 AWS_QUICKSIGHT_API S3Parameters() = default;
31 AWS_QUICKSIGHT_API S3Parameters(Aws::Utils::Json::JsonView jsonValue);
32 AWS_QUICKSIGHT_API S3Parameters& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const ManifestFileLocation& GetManifestFileLocation() const { return m_manifestFileLocation; }
41 inline bool ManifestFileLocationHasBeenSet() const { return m_manifestFileLocationHasBeenSet; }
42 template <typename ManifestFileLocationT = ManifestFileLocation>
43 void SetManifestFileLocation(ManifestFileLocationT&& value) {
44 m_manifestFileLocationHasBeenSet = true;
45 m_manifestFileLocation = std::forward<ManifestFileLocationT>(value);
46 }
47 template <typename ManifestFileLocationT = ManifestFileLocation>
48 S3Parameters& WithManifestFileLocation(ManifestFileLocationT&& value) {
49 SetManifestFileLocation(std::forward<ManifestFileLocationT>(value));
50 return *this;
51 }
53
55
63 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
64 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
65 template <typename RoleArnT = Aws::String>
66 void SetRoleArn(RoleArnT&& value) {
67 m_roleArnHasBeenSet = true;
68 m_roleArn = std::forward<RoleArnT>(value);
69 }
70 template <typename RoleArnT = Aws::String>
71 S3Parameters& WithRoleArn(RoleArnT&& value) {
72 SetRoleArn(std::forward<RoleArnT>(value));
73 return *this;
74 }
76 private:
77 ManifestFileLocation m_manifestFileLocation;
78
79 Aws::String m_roleArn;
80 bool m_manifestFileLocationHasBeenSet = false;
81 bool m_roleArnHasBeenSet = false;
82};
83
84} // namespace Model
85} // namespace QuickSight
86} // namespace Aws
S3Parameters & WithManifestFileLocation(ManifestFileLocationT &&value)
S3Parameters & WithRoleArn(RoleArnT &&value)
void SetManifestFileLocation(ManifestFileLocationT &&value)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_QUICKSIGHT_API S3Parameters()=default
const Aws::String & GetRoleArn() const
AWS_QUICKSIGHT_API S3Parameters(Aws::Utils::Json::JsonView jsonValue)
const ManifestFileLocation & GetManifestFileLocation() const
void SetRoleArn(RoleArnT &&value)
AWS_QUICKSIGHT_API S3Parameters & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue