AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AppflowIntegration.h
1
6#pragma once
7#include <aws/customer-profiles/CustomerProfiles_EXPORTS.h>
8#include <aws/customer-profiles/model/FlowDefinition.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/customer-profiles/model/Batch.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace CustomerProfiles
24{
25namespace Model
26{
27
35 {
36 public:
37 AWS_CUSTOMERPROFILES_API AppflowIntegration();
38 AWS_CUSTOMERPROFILES_API AppflowIntegration(Aws::Utils::Json::JsonView jsonValue);
39 AWS_CUSTOMERPROFILES_API AppflowIntegration& operator=(Aws::Utils::Json::JsonView jsonValue);
40 AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
45 inline const FlowDefinition& GetFlowDefinition() const{ return m_flowDefinition; }
46 inline bool FlowDefinitionHasBeenSet() const { return m_flowDefinitionHasBeenSet; }
47 inline void SetFlowDefinition(const FlowDefinition& value) { m_flowDefinitionHasBeenSet = true; m_flowDefinition = value; }
48 inline void SetFlowDefinition(FlowDefinition&& value) { m_flowDefinitionHasBeenSet = true; m_flowDefinition = std::move(value); }
49 inline AppflowIntegration& WithFlowDefinition(const FlowDefinition& value) { SetFlowDefinition(value); return *this;}
50 inline AppflowIntegration& WithFlowDefinition(FlowDefinition&& value) { SetFlowDefinition(std::move(value)); return *this;}
52
54
57 inline const Aws::Vector<Batch>& GetBatches() const{ return m_batches; }
58 inline bool BatchesHasBeenSet() const { return m_batchesHasBeenSet; }
59 inline void SetBatches(const Aws::Vector<Batch>& value) { m_batchesHasBeenSet = true; m_batches = value; }
60 inline void SetBatches(Aws::Vector<Batch>&& value) { m_batchesHasBeenSet = true; m_batches = std::move(value); }
61 inline AppflowIntegration& WithBatches(const Aws::Vector<Batch>& value) { SetBatches(value); return *this;}
62 inline AppflowIntegration& WithBatches(Aws::Vector<Batch>&& value) { SetBatches(std::move(value)); return *this;}
63 inline AppflowIntegration& AddBatches(const Batch& value) { m_batchesHasBeenSet = true; m_batches.push_back(value); return *this; }
64 inline AppflowIntegration& AddBatches(Batch&& value) { m_batchesHasBeenSet = true; m_batches.push_back(std::move(value)); return *this; }
66 private:
67
68 FlowDefinition m_flowDefinition;
69 bool m_flowDefinitionHasBeenSet = false;
70
71 Aws::Vector<Batch> m_batches;
72 bool m_batchesHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace CustomerProfiles
77} // namespace Aws
AppflowIntegration & WithBatches(const Aws::Vector< Batch > &value)
void SetFlowDefinition(const FlowDefinition &value)
AppflowIntegration & WithFlowDefinition(const FlowDefinition &value)
void SetBatches(Aws::Vector< Batch > &&value)
AppflowIntegration & WithBatches(Aws::Vector< Batch > &&value)
AWS_CUSTOMERPROFILES_API AppflowIntegration & operator=(Aws::Utils::Json::JsonView jsonValue)
AppflowIntegration & AddBatches(Batch &&value)
AppflowIntegration & WithFlowDefinition(FlowDefinition &&value)
void SetBatches(const Aws::Vector< Batch > &value)
AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CUSTOMERPROFILES_API AppflowIntegration(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Batch > & GetBatches() const
AppflowIntegration & AddBatches(const Batch &value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue