AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DynamoDBTarget.h
1
6#pragma once
7#include <aws/glue/Glue_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 Glue
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_GLUE_API DynamoDBTarget() = default;
38
39
41
44 inline const Aws::String& GetPath() const { return m_path; }
45 inline bool PathHasBeenSet() const { return m_pathHasBeenSet; }
46 template<typename PathT = Aws::String>
47 void SetPath(PathT&& value) { m_pathHasBeenSet = true; m_path = std::forward<PathT>(value); }
48 template<typename PathT = Aws::String>
49 DynamoDBTarget& WithPath(PathT&& value) { SetPath(std::forward<PathT>(value)); return *this;}
51
53
60 inline bool GetScanAll() const { return m_scanAll; }
61 inline bool ScanAllHasBeenSet() const { return m_scanAllHasBeenSet; }
62 inline void SetScanAll(bool value) { m_scanAllHasBeenSet = true; m_scanAll = value; }
63 inline DynamoDBTarget& WithScanAll(bool value) { SetScanAll(value); return *this;}
65
67
76 inline double GetScanRate() const { return m_scanRate; }
77 inline bool ScanRateHasBeenSet() const { return m_scanRateHasBeenSet; }
78 inline void SetScanRate(double value) { m_scanRateHasBeenSet = true; m_scanRate = value; }
79 inline DynamoDBTarget& WithScanRate(double value) { SetScanRate(value); return *this;}
81 private:
82
83 Aws::String m_path;
84 bool m_pathHasBeenSet = false;
85
86 bool m_scanAll{false};
87 bool m_scanAllHasBeenSet = false;
88
89 double m_scanRate{0.0};
90 bool m_scanRateHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace Glue
95} // namespace Aws
AWS_GLUE_API DynamoDBTarget()=default
AWS_GLUE_API DynamoDBTarget(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetPath() const
DynamoDBTarget & WithScanRate(double value)
DynamoDBTarget & WithScanAll(bool value)
AWS_GLUE_API DynamoDBTarget & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
DynamoDBTarget & WithPath(PathT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue