AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DisassociateSbomFromPackageVersionRequest.h
1
6#pragma once
7#include <aws/iot/IoT_EXPORTS.h>
8#include <aws/iot/IoTRequest.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 Http
16{
17 class URI;
18} //namespace Http
19namespace IoT
20{
21namespace Model
22{
23
27 {
28 public:
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "DisassociateSbomFromPackageVersion"; }
36
37 AWS_IOT_API Aws::String SerializePayload() const override;
38
39 AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
46 inline const Aws::String& GetPackageName() const{ return m_packageName; }
47 inline bool PackageNameHasBeenSet() const { return m_packageNameHasBeenSet; }
48 inline void SetPackageName(const Aws::String& value) { m_packageNameHasBeenSet = true; m_packageName = value; }
49 inline void SetPackageName(Aws::String&& value) { m_packageNameHasBeenSet = true; m_packageName = std::move(value); }
50 inline void SetPackageName(const char* value) { m_packageNameHasBeenSet = true; m_packageName.assign(value); }
52 inline DisassociateSbomFromPackageVersionRequest& WithPackageName(Aws::String&& value) { SetPackageName(std::move(value)); return *this;}
53 inline DisassociateSbomFromPackageVersionRequest& WithPackageName(const char* value) { SetPackageName(value); return *this;}
55
57
60 inline const Aws::String& GetVersionName() const{ return m_versionName; }
61 inline bool VersionNameHasBeenSet() const { return m_versionNameHasBeenSet; }
62 inline void SetVersionName(const Aws::String& value) { m_versionNameHasBeenSet = true; m_versionName = value; }
63 inline void SetVersionName(Aws::String&& value) { m_versionNameHasBeenSet = true; m_versionName = std::move(value); }
64 inline void SetVersionName(const char* value) { m_versionNameHasBeenSet = true; m_versionName.assign(value); }
66 inline DisassociateSbomFromPackageVersionRequest& WithVersionName(Aws::String&& value) { SetVersionName(std::move(value)); return *this;}
67 inline DisassociateSbomFromPackageVersionRequest& WithVersionName(const char* value) { SetVersionName(value); return *this;}
69
71
76 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
77 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
78 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
79 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
80 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
82 inline DisassociateSbomFromPackageVersionRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
83 inline DisassociateSbomFromPackageVersionRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
85 private:
86
87 Aws::String m_packageName;
88 bool m_packageNameHasBeenSet = false;
89
90 Aws::String m_versionName;
91 bool m_versionNameHasBeenSet = false;
92
93 Aws::String m_clientToken;
94 bool m_clientTokenHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace IoT
99} // namespace Aws
DisassociateSbomFromPackageVersionRequest & WithPackageName(const Aws::String &value)
DisassociateSbomFromPackageVersionRequest & WithClientToken(Aws::String &&value)
DisassociateSbomFromPackageVersionRequest & WithPackageName(Aws::String &&value)
DisassociateSbomFromPackageVersionRequest & WithVersionName(Aws::String &&value)
AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DisassociateSbomFromPackageVersionRequest & WithPackageName(const char *value)
AWS_IOT_API Aws::String SerializePayload() const override
DisassociateSbomFromPackageVersionRequest & WithClientToken(const char *value)
DisassociateSbomFromPackageVersionRequest & WithVersionName(const char *value)
DisassociateSbomFromPackageVersionRequest & WithClientToken(const Aws::String &value)
DisassociateSbomFromPackageVersionRequest & WithVersionName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String