AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetSyncBlockerSummaryRequest.h
1
6#pragma once
7#include <aws/codestar-connections/CodeStarconnections_EXPORTS.h>
8#include <aws/codestar-connections/CodeStarconnectionsRequest.h>
9#include <aws/codestar-connections/model/SyncConfigurationType.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CodeStarconnections
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CODESTARCONNECTIONS_API GetSyncBlockerSummaryRequest();
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "GetSyncBlockerSummary"; }
32
33 AWS_CODESTARCONNECTIONS_API Aws::String SerializePayload() const override;
34
35 AWS_CODESTARCONNECTIONS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
42 inline const SyncConfigurationType& GetSyncType() const{ return m_syncType; }
43 inline bool SyncTypeHasBeenSet() const { return m_syncTypeHasBeenSet; }
44 inline void SetSyncType(const SyncConfigurationType& value) { m_syncTypeHasBeenSet = true; m_syncType = value; }
45 inline void SetSyncType(SyncConfigurationType&& value) { m_syncTypeHasBeenSet = true; m_syncType = std::move(value); }
46 inline GetSyncBlockerSummaryRequest& WithSyncType(const SyncConfigurationType& value) { SetSyncType(value); return *this;}
47 inline GetSyncBlockerSummaryRequest& WithSyncType(SyncConfigurationType&& value) { SetSyncType(std::move(value)); return *this;}
49
51
55 inline const Aws::String& GetResourceName() const{ return m_resourceName; }
56 inline bool ResourceNameHasBeenSet() const { return m_resourceNameHasBeenSet; }
57 inline void SetResourceName(const Aws::String& value) { m_resourceNameHasBeenSet = true; m_resourceName = value; }
58 inline void SetResourceName(Aws::String&& value) { m_resourceNameHasBeenSet = true; m_resourceName = std::move(value); }
59 inline void SetResourceName(const char* value) { m_resourceNameHasBeenSet = true; m_resourceName.assign(value); }
60 inline GetSyncBlockerSummaryRequest& WithResourceName(const Aws::String& value) { SetResourceName(value); return *this;}
61 inline GetSyncBlockerSummaryRequest& WithResourceName(Aws::String&& value) { SetResourceName(std::move(value)); return *this;}
62 inline GetSyncBlockerSummaryRequest& WithResourceName(const char* value) { SetResourceName(value); return *this;}
64 private:
65
66 SyncConfigurationType m_syncType;
67 bool m_syncTypeHasBeenSet = false;
68
69 Aws::String m_resourceName;
70 bool m_resourceNameHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace CodeStarconnections
75} // namespace Aws
GetSyncBlockerSummaryRequest & WithResourceName(Aws::String &&value)
GetSyncBlockerSummaryRequest & WithResourceName(const Aws::String &value)
GetSyncBlockerSummaryRequest & WithResourceName(const char *value)
GetSyncBlockerSummaryRequest & WithSyncType(SyncConfigurationType &&value)
GetSyncBlockerSummaryRequest & WithSyncType(const SyncConfigurationType &value)
AWS_CODESTARCONNECTIONS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_CODESTARCONNECTIONS_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String