AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeFpgaImageAttributeRequest.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/FpgaImageAttributeName.h>
11#include <utility>
12
13namespace Aws
14{
15namespace EC2
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_EC2_API DescribeFpgaImageAttributeRequest() = default;
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 "DescribeFpgaImageAttribute"; }
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 DescribeFpgaImageAttributeRequest& 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 template<typename FpgaImageIdT = Aws::String>
60 void SetFpgaImageId(FpgaImageIdT&& value) { m_fpgaImageIdHasBeenSet = true; m_fpgaImageId = std::forward<FpgaImageIdT>(value); }
61 template<typename FpgaImageIdT = Aws::String>
62 DescribeFpgaImageAttributeRequest& WithFpgaImageId(FpgaImageIdT&& value) { SetFpgaImageId(std::forward<FpgaImageIdT>(value)); return *this;}
64
66
69 inline FpgaImageAttributeName GetAttribute() const { return m_attribute; }
70 inline bool AttributeHasBeenSet() const { return m_attributeHasBeenSet; }
71 inline void SetAttribute(FpgaImageAttributeName value) { m_attributeHasBeenSet = true; m_attribute = value; }
74 private:
75
76 bool m_dryRun{false};
77 bool m_dryRunHasBeenSet = false;
78
79 Aws::String m_fpgaImageId;
80 bool m_fpgaImageIdHasBeenSet = false;
81
83 bool m_attributeHasBeenSet = false;
84 };
85
86} // namespace Model
87} // namespace EC2
88} // namespace Aws
DescribeFpgaImageAttributeRequest & WithAttribute(FpgaImageAttributeName value)
DescribeFpgaImageAttributeRequest & WithFpgaImageId(FpgaImageIdT &&value)
AWS_EC2_API Aws::String SerializePayload() const override
DescribeFpgaImageAttributeRequest & WithDryRun(bool value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String