AWS SDK for C++

AWS SDK for C++ Version 1.11.817

Loading...
Searching...
No Matches
DeleteUserJourneyRequest.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 DeleteUserJourneyRequest() = 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 "DeleteUserJourney"; }
28
29 AWS_RESILIENCEHUBV2_API Aws::String SerializePayload() const override;
30
32
33 inline const Aws::String& GetSystemArn() const { return m_systemArn; }
34 inline bool SystemArnHasBeenSet() const { return m_systemArnHasBeenSet; }
35 template <typename SystemArnT = Aws::String>
36 void SetSystemArn(SystemArnT&& value) {
37 m_systemArnHasBeenSet = true;
38 m_systemArn = std::forward<SystemArnT>(value);
39 }
40 template <typename SystemArnT = Aws::String>
42 SetSystemArn(std::forward<SystemArnT>(value));
43 return *this;
44 }
46
48
51 inline const Aws::String& GetUserJourneyId() const { return m_userJourneyId; }
52 inline bool UserJourneyIdHasBeenSet() const { return m_userJourneyIdHasBeenSet; }
53 template <typename UserJourneyIdT = Aws::String>
54 void SetUserJourneyId(UserJourneyIdT&& value) {
55 m_userJourneyIdHasBeenSet = true;
56 m_userJourneyId = std::forward<UserJourneyIdT>(value);
57 }
58 template <typename UserJourneyIdT = Aws::String>
60 SetUserJourneyId(std::forward<UserJourneyIdT>(value));
61 return *this;
62 }
64 private:
65 Aws::String m_systemArn;
66
67 Aws::String m_userJourneyId;
68 bool m_systemArnHasBeenSet = false;
69 bool m_userJourneyIdHasBeenSet = false;
70};
71
72} // namespace Model
73} // namespace resiliencehubv2
74} // namespace Aws
DeleteUserJourneyRequest & WithUserJourneyId(UserJourneyIdT &&value)
virtual const char * GetServiceRequestName() const override
AWS_RESILIENCEHUBV2_API Aws::String SerializePayload() const override
DeleteUserJourneyRequest & WithSystemArn(SystemArnT &&value)
AWS_RESILIENCEHUBV2_API DeleteUserJourneyRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String