AWS SDK for C++

AWS SDK for C++ Version 1.11.607

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() = default;
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 template<typename ServiceNameT = Aws::String>
45 void SetServiceName(ServiceNameT&& value) { m_serviceNameHasBeenSet = true; m_serviceName = std::forward<ServiceNameT>(value); }
46 template<typename ServiceNameT = Aws::String>
47 RegisterContainerImageRequest& WithServiceName(ServiceNameT&& value) { SetServiceName(std::forward<ServiceNameT>(value)); return *this;}
49
51
70 inline const Aws::String& GetLabel() const { return m_label; }
71 inline bool LabelHasBeenSet() const { return m_labelHasBeenSet; }
72 template<typename LabelT = Aws::String>
73 void SetLabel(LabelT&& value) { m_labelHasBeenSet = true; m_label = std::forward<LabelT>(value); }
74 template<typename LabelT = Aws::String>
75 RegisterContainerImageRequest& WithLabel(LabelT&& value) { SetLabel(std::forward<LabelT>(value)); return *this;}
77
79
82 inline const Aws::String& GetDigest() const { return m_digest; }
83 inline bool DigestHasBeenSet() const { return m_digestHasBeenSet; }
84 template<typename DigestT = Aws::String>
85 void SetDigest(DigestT&& value) { m_digestHasBeenSet = true; m_digest = std::forward<DigestT>(value); }
86 template<typename DigestT = Aws::String>
87 RegisterContainerImageRequest& WithDigest(DigestT&& value) { SetDigest(std::forward<DigestT>(value)); return *this;}
89 private:
90
91 Aws::String m_serviceName;
92 bool m_serviceNameHasBeenSet = false;
93
94 Aws::String m_label;
95 bool m_labelHasBeenSet = false;
96
97 Aws::String m_digest;
98 bool m_digestHasBeenSet = false;
99 };
100
101} // namespace Model
102} // namespace Lightsail
103} // namespace Aws
RegisterContainerImageRequest & WithServiceName(ServiceNameT &&value)
AWS_LIGHTSAIL_API Aws::String SerializePayload() const override
RegisterContainerImageRequest & WithDigest(DigestT &&value)
RegisterContainerImageRequest & WithLabel(LabelT &&value)
AWS_LIGHTSAIL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_LIGHTSAIL_API RegisterContainerImageRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String