AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteAppVersionAppComponentRequest.h
1
6#pragma once
7#include <aws/resiliencehub/ResilienceHub_EXPORTS.h>
8#include <aws/resiliencehub/ResilienceHubRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11#include <aws/core/utils/UUID.h>
12
13namespace Aws
14{
15namespace ResilienceHub
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_RESILIENCEHUB_API DeleteAppVersionAppComponentRequest();
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 "DeleteAppVersionAppComponent"; }
32
33 AWS_RESILIENCEHUB_API Aws::String SerializePayload() const override;
34
35
37
46 inline const Aws::String& GetAppArn() const{ return m_appArn; }
47 inline bool AppArnHasBeenSet() const { return m_appArnHasBeenSet; }
48 inline void SetAppArn(const Aws::String& value) { m_appArnHasBeenSet = true; m_appArn = value; }
49 inline void SetAppArn(Aws::String&& value) { m_appArnHasBeenSet = true; m_appArn = std::move(value); }
50 inline void SetAppArn(const char* value) { m_appArnHasBeenSet = true; m_appArn.assign(value); }
51 inline DeleteAppVersionAppComponentRequest& WithAppArn(const Aws::String& value) { SetAppArn(value); return *this;}
52 inline DeleteAppVersionAppComponentRequest& WithAppArn(Aws::String&& value) { SetAppArn(std::move(value)); return *this;}
53 inline DeleteAppVersionAppComponentRequest& WithAppArn(const char* value) { SetAppArn(value); return *this;}
55
57
62 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
63 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
64 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
65 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
66 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
68 inline DeleteAppVersionAppComponentRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
69 inline DeleteAppVersionAppComponentRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
71
73
76 inline const Aws::String& GetId() const{ return m_id; }
77 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
78 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
79 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
80 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
81 inline DeleteAppVersionAppComponentRequest& WithId(const Aws::String& value) { SetId(value); return *this;}
82 inline DeleteAppVersionAppComponentRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
83 inline DeleteAppVersionAppComponentRequest& WithId(const char* value) { SetId(value); return *this;}
85 private:
86
87 Aws::String m_appArn;
88 bool m_appArnHasBeenSet = false;
89
90 Aws::String m_clientToken;
91 bool m_clientTokenHasBeenSet = false;
92
93 Aws::String m_id;
94 bool m_idHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace ResilienceHub
99} // namespace Aws
DeleteAppVersionAppComponentRequest & WithClientToken(const Aws::String &value)
DeleteAppVersionAppComponentRequest & WithClientToken(const char *value)
DeleteAppVersionAppComponentRequest & WithId(Aws::String &&value)
DeleteAppVersionAppComponentRequest & WithAppArn(const char *value)
DeleteAppVersionAppComponentRequest & WithAppArn(Aws::String &&value)
AWS_RESILIENCEHUB_API Aws::String SerializePayload() const override
DeleteAppVersionAppComponentRequest & WithId(const Aws::String &value)
DeleteAppVersionAppComponentRequest & WithAppArn(const Aws::String &value)
DeleteAppVersionAppComponentRequest & WithClientToken(Aws::String &&value)
DeleteAppVersionAppComponentRequest & WithId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String