AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StartInstanceOnboardingJobRequest.h
1
6#pragma once
7#include <aws/connectcampaigns/ConnectCampaigns_EXPORTS.h>
8#include <aws/connectcampaigns/ConnectCampaignsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/connectcampaigns/model/EncryptionConfig.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ConnectCampaigns
16{
17namespace Model
18{
19
26 {
27 public:
28 AWS_CONNECTCAMPAIGNS_API StartInstanceOnboardingJobRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "StartInstanceOnboardingJob"; }
35
36 AWS_CONNECTCAMPAIGNS_API Aws::String SerializePayload() const override;
37
38
40
41 inline const Aws::String& GetConnectInstanceId() const{ return m_connectInstanceId; }
42 inline bool ConnectInstanceIdHasBeenSet() const { return m_connectInstanceIdHasBeenSet; }
43 inline void SetConnectInstanceId(const Aws::String& value) { m_connectInstanceIdHasBeenSet = true; m_connectInstanceId = value; }
44 inline void SetConnectInstanceId(Aws::String&& value) { m_connectInstanceIdHasBeenSet = true; m_connectInstanceId = std::move(value); }
45 inline void SetConnectInstanceId(const char* value) { m_connectInstanceIdHasBeenSet = true; m_connectInstanceId.assign(value); }
48 inline StartInstanceOnboardingJobRequest& WithConnectInstanceId(const char* value) { SetConnectInstanceId(value); return *this;}
50
52
53 inline const EncryptionConfig& GetEncryptionConfig() const{ return m_encryptionConfig; }
54 inline bool EncryptionConfigHasBeenSet() const { return m_encryptionConfigHasBeenSet; }
55 inline void SetEncryptionConfig(const EncryptionConfig& value) { m_encryptionConfigHasBeenSet = true; m_encryptionConfig = value; }
56 inline void SetEncryptionConfig(EncryptionConfig&& value) { m_encryptionConfigHasBeenSet = true; m_encryptionConfig = std::move(value); }
60 private:
61
62 Aws::String m_connectInstanceId;
63 bool m_connectInstanceIdHasBeenSet = false;
64
65 EncryptionConfig m_encryptionConfig;
66 bool m_encryptionConfigHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace ConnectCampaigns
71} // namespace Aws
StartInstanceOnboardingJobRequest & WithEncryptionConfig(const EncryptionConfig &value)
StartInstanceOnboardingJobRequest & WithEncryptionConfig(EncryptionConfig &&value)
StartInstanceOnboardingJobRequest & WithConnectInstanceId(const char *value)
StartInstanceOnboardingJobRequest & WithConnectInstanceId(Aws::String &&value)
StartInstanceOnboardingJobRequest & WithConnectInstanceId(const Aws::String &value)
AWS_CONNECTCAMPAIGNS_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String