AWS SDK for C++

AWS SDK for C++ Version 1.11.683

Loading...
Searching...
No Matches
DisassociateResourceRequest.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 DisassociateResourceRequest() = 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 "DisassociateResource"; }
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>
45 SetGroupIdentifier(std::forward<GroupIdentifierT>(value));
46 return *this;
47 }
49
51
54 inline const Aws::String& GetResourceArn() const { return m_resourceArn; }
55 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
56 template <typename ResourceArnT = Aws::String>
57 void SetResourceArn(ResourceArnT&& value) {
58 m_resourceArnHasBeenSet = true;
59 m_resourceArn = std::forward<ResourceArnT>(value);
60 }
61 template <typename ResourceArnT = Aws::String>
63 SetResourceArn(std::forward<ResourceArnT>(value));
64 return *this;
65 }
67 private:
68 Aws::String m_groupIdentifier;
69 bool m_groupIdentifierHasBeenSet = false;
70
71 Aws::String m_resourceArn;
72 bool m_resourceArnHasBeenSet = false;
73};
74
75} // namespace Model
76} // namespace Synthetics
77} // namespace Aws
AWS_SYNTHETICS_API DisassociateResourceRequest()=default
DisassociateResourceRequest & WithResourceArn(ResourceArnT &&value)
AWS_SYNTHETICS_API Aws::String SerializePayload() const override
DisassociateResourceRequest & WithGroupIdentifier(GroupIdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String