AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
AssociateResourceRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/synthetics/SyntheticsRequest.h>
9#include <aws/synthetics/Synthetics_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Synthetics {
15namespace Model {
16
20 public:
21 AWS_SYNTHETICS_API AssociateResourceRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "AssociateResource"; }
28
29 AWS_SYNTHETICS_API Aws::String SerializePayload() const override;
30
32
36 inline const Aws::String& GetGroupIdentifier() const { return m_groupIdentifier; }
37 inline bool GroupIdentifierHasBeenSet() const { return m_groupIdentifierHasBeenSet; }
38 template <typename GroupIdentifierT = Aws::String>
39 void SetGroupIdentifier(GroupIdentifierT&& value) {
40 m_groupIdentifierHasBeenSet = true;
41 m_groupIdentifier = std::forward<GroupIdentifierT>(value);
42 }
43 template <typename GroupIdentifierT = Aws::String>
44 AssociateResourceRequest& WithGroupIdentifier(GroupIdentifierT&& value) {
45 SetGroupIdentifier(std::forward<GroupIdentifierT>(value));
46 return *this;
47 }
49
51
55 inline const Aws::String& GetResourceArn() const { return m_resourceArn; }
56 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
57 template <typename ResourceArnT = Aws::String>
58 void SetResourceArn(ResourceArnT&& value) {
59 m_resourceArnHasBeenSet = true;
60 m_resourceArn = std::forward<ResourceArnT>(value);
61 }
62 template <typename ResourceArnT = Aws::String>
64 SetResourceArn(std::forward<ResourceArnT>(value));
65 return *this;
66 }
68 private:
69 Aws::String m_groupIdentifier;
70
71 Aws::String m_resourceArn;
72 bool m_groupIdentifierHasBeenSet = false;
73 bool m_resourceArnHasBeenSet = false;
74};
75
76} // namespace Model
77} // namespace Synthetics
78} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_SYNTHETICS_API Aws::String SerializePayload() const override
AssociateResourceRequest & WithGroupIdentifier(GroupIdentifierT &&value)
AWS_SYNTHETICS_API AssociateResourceRequest()=default
AssociateResourceRequest & WithResourceArn(ResourceArnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String