AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
RegisterContainerImageRequest.h
1
6#pragma once
7#include <aws/lightsail/Lightsail_EXPORTS.h>
8#include <aws/lightsail/LightsailRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Lightsail
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_LIGHTSAIL_API RegisterContainerImageRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "RegisterContainerImage"; }
31
32 AWS_LIGHTSAIL_API Aws::String SerializePayload() const override;
33
35
36
38
42 inline const Aws::String& GetServiceName() const{ return m_serviceName; }
43 inline bool ServiceNameHasBeenSet() const { return m_serviceNameHasBeenSet; }
44 inline void SetServiceName(const Aws::String& value) { m_serviceNameHasBeenSet = true; m_serviceName = value; }
45 inline void SetServiceName(Aws::String&& value) { m_serviceNameHasBeenSet = true; m_serviceName = std::move(value); }
46 inline void SetServiceName(const char* value) { m_serviceNameHasBeenSet = true; m_serviceName.assign(value); }
47 inline RegisterContainerImageRequest& WithServiceName(const Aws::String& value) { SetServiceName(value); return *this;}
48 inline RegisterContainerImageRequest& WithServiceName(Aws::String&& value) { SetServiceName(std::move(value)); return *this;}
49 inline RegisterContainerImageRequest& WithServiceName(const char* value) { SetServiceName(value); return *this;}
51
53
72 inline const Aws::String& GetLabel() const{ return m_label; }
73 inline bool LabelHasBeenSet() const { return m_labelHasBeenSet; }
74 inline void SetLabel(const Aws::String& value) { m_labelHasBeenSet = true; m_label = value; }
75 inline void SetLabel(Aws::String&& value) { m_labelHasBeenSet = true; m_label = std::move(value); }
76 inline void SetLabel(const char* value) { m_labelHasBeenSet = true; m_label.assign(value); }
77 inline RegisterContainerImageRequest& WithLabel(const Aws::String& value) { SetLabel(value); return *this;}
78 inline RegisterContainerImageRequest& WithLabel(Aws::String&& value) { SetLabel(std::move(value)); return *this;}
79 inline RegisterContainerImageRequest& WithLabel(const char* value) { SetLabel(value); return *this;}
81
83
86 inline const Aws::String& GetDigest() const{ return m_digest; }
87 inline bool DigestHasBeenSet() const { return m_digestHasBeenSet; }
88 inline void SetDigest(const Aws::String& value) { m_digestHasBeenSet = true; m_digest = value; }
89 inline void SetDigest(Aws::String&& value) { m_digestHasBeenSet = true; m_digest = std::move(value); }
90 inline void SetDigest(const char* value) { m_digestHasBeenSet = true; m_digest.assign(value); }
91 inline RegisterContainerImageRequest& WithDigest(const Aws::String& value) { SetDigest(value); return *this;}
92 inline RegisterContainerImageRequest& WithDigest(Aws::String&& value) { SetDigest(std::move(value)); return *this;}
93 inline RegisterContainerImageRequest& WithDigest(const char* value) { SetDigest(value); return *this;}
95 private:
96
97 Aws::String m_serviceName;
98 bool m_serviceNameHasBeenSet = false;
99
100 Aws::String m_label;
101 bool m_labelHasBeenSet = false;
102
103 Aws::String m_digest;
104 bool m_digestHasBeenSet = false;
105 };
106
107} // namespace Model
108} // namespace Lightsail
109} // namespace Aws
RegisterContainerImageRequest & WithLabel(const char *value)
RegisterContainerImageRequest & WithDigest(const Aws::String &value)
RegisterContainerImageRequest & WithLabel(const Aws::String &value)
RegisterContainerImageRequest & WithLabel(Aws::String &&value)
RegisterContainerImageRequest & WithServiceName(Aws::String &&value)
AWS_LIGHTSAIL_API Aws::String SerializePayload() const override
RegisterContainerImageRequest & WithDigest(const char *value)
RegisterContainerImageRequest & WithDigest(Aws::String &&value)
RegisterContainerImageRequest & WithServiceName(const char *value)
RegisterContainerImageRequest & WithServiceName(const Aws::String &value)
AWS_LIGHTSAIL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String