AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ResetFpgaImageAttributeRequest.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/ec2/EC2Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/ec2/model/ResetFpgaImageAttributeName.h>
11#include <utility>
12
13namespace Aws
14{
15namespace EC2
16{
17namespace Model
18{
19
23 {
24 public:
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 "ResetFpgaImageAttribute"; }
32
33 AWS_EC2_API Aws::String SerializePayload() const override;
34
35 protected:
36 AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
37
38 public:
39
41
47 inline bool GetDryRun() const{ return m_dryRun; }
48 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
49 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
50 inline ResetFpgaImageAttributeRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
52
54
57 inline const Aws::String& GetFpgaImageId() const{ return m_fpgaImageId; }
58 inline bool FpgaImageIdHasBeenSet() const { return m_fpgaImageIdHasBeenSet; }
59 inline void SetFpgaImageId(const Aws::String& value) { m_fpgaImageIdHasBeenSet = true; m_fpgaImageId = value; }
60 inline void SetFpgaImageId(Aws::String&& value) { m_fpgaImageIdHasBeenSet = true; m_fpgaImageId = std::move(value); }
61 inline void SetFpgaImageId(const char* value) { m_fpgaImageIdHasBeenSet = true; m_fpgaImageId.assign(value); }
62 inline ResetFpgaImageAttributeRequest& WithFpgaImageId(const Aws::String& value) { SetFpgaImageId(value); return *this;}
63 inline ResetFpgaImageAttributeRequest& WithFpgaImageId(Aws::String&& value) { SetFpgaImageId(std::move(value)); return *this;}
64 inline ResetFpgaImageAttributeRequest& WithFpgaImageId(const char* value) { SetFpgaImageId(value); return *this;}
66
68
71 inline const ResetFpgaImageAttributeName& GetAttribute() const{ return m_attribute; }
72 inline bool AttributeHasBeenSet() const { return m_attributeHasBeenSet; }
73 inline void SetAttribute(const ResetFpgaImageAttributeName& value) { m_attributeHasBeenSet = true; m_attribute = value; }
74 inline void SetAttribute(ResetFpgaImageAttributeName&& value) { m_attributeHasBeenSet = true; m_attribute = std::move(value); }
76 inline ResetFpgaImageAttributeRequest& WithAttribute(ResetFpgaImageAttributeName&& value) { SetAttribute(std::move(value)); return *this;}
78 private:
79
80 bool m_dryRun;
81 bool m_dryRunHasBeenSet = false;
82
83 Aws::String m_fpgaImageId;
84 bool m_fpgaImageIdHasBeenSet = false;
85
87 bool m_attributeHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace EC2
92} // namespace Aws
virtual const char * GetServiceRequestName() const override
ResetFpgaImageAttributeRequest & WithAttribute(const ResetFpgaImageAttributeName &value)
ResetFpgaImageAttributeRequest & WithAttribute(ResetFpgaImageAttributeName &&value)
ResetFpgaImageAttributeRequest & WithDryRun(bool value)
const ResetFpgaImageAttributeName & GetAttribute() const
void SetAttribute(ResetFpgaImageAttributeName &&value)
ResetFpgaImageAttributeRequest & WithFpgaImageId(Aws::String &&value)
AWS_EC2_API Aws::String SerializePayload() const override
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
void SetAttribute(const ResetFpgaImageAttributeName &value)
ResetFpgaImageAttributeRequest & WithFpgaImageId(const char *value)
ResetFpgaImageAttributeRequest & WithFpgaImageId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String