AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AppflowIntegrationWorkflowAttributes.h
1
6#pragma once
7#include <aws/customer-profiles/CustomerProfiles_EXPORTS.h>
8#include <aws/customer-profiles/model/SourceConnectorType.h>
9#include <aws/core/utils/memory/stl/AWSString.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 CustomerProfiles
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_CUSTOMERPROFILES_API AppflowIntegrationWorkflowAttributes();
39 AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const SourceConnectorType& GetSourceConnectorType() const{ return m_sourceConnectorType; }
48 inline bool SourceConnectorTypeHasBeenSet() const { return m_sourceConnectorTypeHasBeenSet; }
49 inline void SetSourceConnectorType(const SourceConnectorType& value) { m_sourceConnectorTypeHasBeenSet = true; m_sourceConnectorType = value; }
50 inline void SetSourceConnectorType(SourceConnectorType&& value) { m_sourceConnectorTypeHasBeenSet = true; m_sourceConnectorType = std::move(value); }
54
56
59 inline const Aws::String& GetConnectorProfileName() const{ return m_connectorProfileName; }
60 inline bool ConnectorProfileNameHasBeenSet() const { return m_connectorProfileNameHasBeenSet; }
61 inline void SetConnectorProfileName(const Aws::String& value) { m_connectorProfileNameHasBeenSet = true; m_connectorProfileName = value; }
62 inline void SetConnectorProfileName(Aws::String&& value) { m_connectorProfileNameHasBeenSet = true; m_connectorProfileName = std::move(value); }
63 inline void SetConnectorProfileName(const char* value) { m_connectorProfileNameHasBeenSet = true; m_connectorProfileName.assign(value); }
68
70
74 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
75 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
76 inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
77 inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
78 inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
79 inline AppflowIntegrationWorkflowAttributes& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
80 inline AppflowIntegrationWorkflowAttributes& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
81 inline AppflowIntegrationWorkflowAttributes& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
83 private:
84
85 SourceConnectorType m_sourceConnectorType;
86 bool m_sourceConnectorTypeHasBeenSet = false;
87
88 Aws::String m_connectorProfileName;
89 bool m_connectorProfileNameHasBeenSet = false;
90
91 Aws::String m_roleArn;
92 bool m_roleArnHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace CustomerProfiles
97} // namespace Aws
AWS_CUSTOMERPROFILES_API AppflowIntegrationWorkflowAttributes(Aws::Utils::Json::JsonView jsonValue)
AppflowIntegrationWorkflowAttributes & WithSourceConnectorType(SourceConnectorType &&value)
AppflowIntegrationWorkflowAttributes & WithRoleArn(const Aws::String &value)
AppflowIntegrationWorkflowAttributes & WithConnectorProfileName(Aws::String &&value)
AWS_CUSTOMERPROFILES_API AppflowIntegrationWorkflowAttributes & operator=(Aws::Utils::Json::JsonView jsonValue)
AppflowIntegrationWorkflowAttributes & WithConnectorProfileName(const Aws::String &value)
AppflowIntegrationWorkflowAttributes & WithSourceConnectorType(const SourceConnectorType &value)
AppflowIntegrationWorkflowAttributes & WithConnectorProfileName(const char *value)
AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const
AppflowIntegrationWorkflowAttributes & WithRoleArn(const char *value)
AppflowIntegrationWorkflowAttributes & WithRoleArn(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue