AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetFlowAssociationRequest.h
1
6#pragma once
7#include <aws/connect/Connect_EXPORTS.h>
8#include <aws/connect/ConnectRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/connect/model/FlowAssociationResourceType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Connect
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CONNECT_API GetFlowAssociationRequest();
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 "GetFlowAssociation"; }
32
33 AWS_CONNECT_API Aws::String SerializePayload() const override;
34
35
37
42 inline const Aws::String& GetInstanceId() const{ return m_instanceId; }
43 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
44 inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; }
45 inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); }
46 inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); }
47 inline GetFlowAssociationRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
48 inline GetFlowAssociationRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
49 inline GetFlowAssociationRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
51
53
56 inline const Aws::String& GetResourceId() const{ return m_resourceId; }
57 inline bool ResourceIdHasBeenSet() const { return m_resourceIdHasBeenSet; }
58 inline void SetResourceId(const Aws::String& value) { m_resourceIdHasBeenSet = true; m_resourceId = value; }
59 inline void SetResourceId(Aws::String&& value) { m_resourceIdHasBeenSet = true; m_resourceId = std::move(value); }
60 inline void SetResourceId(const char* value) { m_resourceIdHasBeenSet = true; m_resourceId.assign(value); }
61 inline GetFlowAssociationRequest& WithResourceId(const Aws::String& value) { SetResourceId(value); return *this;}
62 inline GetFlowAssociationRequest& WithResourceId(Aws::String&& value) { SetResourceId(std::move(value)); return *this;}
63 inline GetFlowAssociationRequest& WithResourceId(const char* value) { SetResourceId(value); return *this;}
65
67
70 inline const FlowAssociationResourceType& GetResourceType() const{ return m_resourceType; }
71 inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; }
72 inline void SetResourceType(const FlowAssociationResourceType& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; }
73 inline void SetResourceType(FlowAssociationResourceType&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); }
77 private:
78
79 Aws::String m_instanceId;
80 bool m_instanceIdHasBeenSet = false;
81
82 Aws::String m_resourceId;
83 bool m_resourceIdHasBeenSet = false;
84
85 FlowAssociationResourceType m_resourceType;
86 bool m_resourceTypeHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace Connect
91} // namespace Aws
GetFlowAssociationRequest & WithResourceType(FlowAssociationResourceType &&value)
GetFlowAssociationRequest & WithInstanceId(const char *value)
GetFlowAssociationRequest & WithResourceId(const Aws::String &value)
const FlowAssociationResourceType & GetResourceType() const
void SetResourceType(FlowAssociationResourceType &&value)
virtual const char * GetServiceRequestName() const override
AWS_CONNECT_API Aws::String SerializePayload() const override
void SetResourceType(const FlowAssociationResourceType &value)
GetFlowAssociationRequest & WithResourceId(const char *value)
GetFlowAssociationRequest & WithInstanceId(Aws::String &&value)
GetFlowAssociationRequest & WithResourceId(Aws::String &&value)
GetFlowAssociationRequest & WithResourceType(const FlowAssociationResourceType &value)
GetFlowAssociationRequest & WithInstanceId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String