AWS SDK for C++

AWS SDK for C++ Version 1.11.817

Loading...
Searching...
No Matches
DeleteServiceFunctionRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/resiliencehubv2/Resiliencehubv2Request.h>
9#include <aws/resiliencehubv2/Resiliencehubv2_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace resiliencehubv2 {
15namespace Model {
16
20 public:
21 AWS_RESILIENCEHUBV2_API DeleteServiceFunctionRequest() = 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 "DeleteServiceFunction"; }
28
29 AWS_RESILIENCEHUBV2_API Aws::String SerializePayload() const override;
30
32
33 inline const Aws::String& GetServiceArn() const { return m_serviceArn; }
34 inline bool ServiceArnHasBeenSet() const { return m_serviceArnHasBeenSet; }
35 template <typename ServiceArnT = Aws::String>
36 void SetServiceArn(ServiceArnT&& value) {
37 m_serviceArnHasBeenSet = true;
38 m_serviceArn = std::forward<ServiceArnT>(value);
39 }
40 template <typename ServiceArnT = Aws::String>
42 SetServiceArn(std::forward<ServiceArnT>(value));
43 return *this;
44 }
46
48
51 inline const Aws::String& GetServiceFunctionId() const { return m_serviceFunctionId; }
52 inline bool ServiceFunctionIdHasBeenSet() const { return m_serviceFunctionIdHasBeenSet; }
53 template <typename ServiceFunctionIdT = Aws::String>
54 void SetServiceFunctionId(ServiceFunctionIdT&& value) {
55 m_serviceFunctionIdHasBeenSet = true;
56 m_serviceFunctionId = std::forward<ServiceFunctionIdT>(value);
57 }
58 template <typename ServiceFunctionIdT = Aws::String>
60 SetServiceFunctionId(std::forward<ServiceFunctionIdT>(value));
61 return *this;
62 }
64 private:
65 Aws::String m_serviceArn;
66
67 Aws::String m_serviceFunctionId;
68 bool m_serviceArnHasBeenSet = false;
69 bool m_serviceFunctionIdHasBeenSet = false;
70};
71
72} // namespace Model
73} // namespace resiliencehubv2
74} // namespace Aws
DeleteServiceFunctionRequest & WithServiceFunctionId(ServiceFunctionIdT &&value)
AWS_RESILIENCEHUBV2_API DeleteServiceFunctionRequest()=default
DeleteServiceFunctionRequest & WithServiceArn(ServiceArnT &&value)
AWS_RESILIENCEHUBV2_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String