AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DatasetContentDeliveryRule.h
1
6#pragma once
7#include <aws/iotanalytics/IoTAnalytics_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/iotanalytics/model/DatasetContentDeliveryDestination.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace IoTAnalytics
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_IOTANALYTICS_API DatasetContentDeliveryRule();
39 AWS_IOTANALYTICS_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetEntryName() const{ return m_entryName; }
47 inline bool EntryNameHasBeenSet() const { return m_entryNameHasBeenSet; }
48 inline void SetEntryName(const Aws::String& value) { m_entryNameHasBeenSet = true; m_entryName = value; }
49 inline void SetEntryName(Aws::String&& value) { m_entryNameHasBeenSet = true; m_entryName = std::move(value); }
50 inline void SetEntryName(const char* value) { m_entryNameHasBeenSet = true; m_entryName.assign(value); }
51 inline DatasetContentDeliveryRule& WithEntryName(const Aws::String& value) { SetEntryName(value); return *this;}
52 inline DatasetContentDeliveryRule& WithEntryName(Aws::String&& value) { SetEntryName(std::move(value)); return *this;}
53 inline DatasetContentDeliveryRule& WithEntryName(const char* value) { SetEntryName(value); return *this;}
55
57
60 inline const DatasetContentDeliveryDestination& GetDestination() const{ return m_destination; }
61 inline bool DestinationHasBeenSet() const { return m_destinationHasBeenSet; }
62 inline void SetDestination(const DatasetContentDeliveryDestination& value) { m_destinationHasBeenSet = true; m_destination = value; }
63 inline void SetDestination(DatasetContentDeliveryDestination&& value) { m_destinationHasBeenSet = true; m_destination = std::move(value); }
67 private:
68
69 Aws::String m_entryName;
70 bool m_entryNameHasBeenSet = false;
71
73 bool m_destinationHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace IoTAnalytics
78} // namespace Aws
DatasetContentDeliveryRule & WithDestination(const DatasetContentDeliveryDestination &value)
void SetDestination(const DatasetContentDeliveryDestination &value)
DatasetContentDeliveryRule & WithEntryName(const Aws::String &value)
AWS_IOTANALYTICS_API DatasetContentDeliveryRule & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_IOTANALYTICS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_IOTANALYTICS_API DatasetContentDeliveryRule(Aws::Utils::Json::JsonView jsonValue)
DatasetContentDeliveryRule & WithEntryName(const char *value)
void SetDestination(DatasetContentDeliveryDestination &&value)
DatasetContentDeliveryRule & WithEntryName(Aws::String &&value)
DatasetContentDeliveryRule & WithDestination(DatasetContentDeliveryDestination &&value)
const DatasetContentDeliveryDestination & GetDestination() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue