AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeAccountAttributesRequest.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/AWSVector.h>
10#include <aws/ec2/model/AccountAttributeName.h>
11#include <utility>
12
13namespace Aws
14{
15namespace EC2
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_EC2_API DescribeAccountAttributesRequest() = 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 "DescribeAccountAttributes"; }
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 DescribeAccountAttributesRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
52
54
57 inline const Aws::Vector<AccountAttributeName>& GetAttributeNames() const { return m_attributeNames; }
58 inline bool AttributeNamesHasBeenSet() const { return m_attributeNamesHasBeenSet; }
59 template<typename AttributeNamesT = Aws::Vector<AccountAttributeName>>
60 void SetAttributeNames(AttributeNamesT&& value) { m_attributeNamesHasBeenSet = true; m_attributeNames = std::forward<AttributeNamesT>(value); }
61 template<typename AttributeNamesT = Aws::Vector<AccountAttributeName>>
62 DescribeAccountAttributesRequest& WithAttributeNames(AttributeNamesT&& value) { SetAttributeNames(std::forward<AttributeNamesT>(value)); return *this;}
63 inline DescribeAccountAttributesRequest& AddAttributeNames(AccountAttributeName value) { m_attributeNamesHasBeenSet = true; m_attributeNames.push_back(value); return *this; }
65 private:
66
67 bool m_dryRun{false};
68 bool m_dryRunHasBeenSet = false;
69
70 Aws::Vector<AccountAttributeName> m_attributeNames;
71 bool m_attributeNamesHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace EC2
76} // namespace Aws
const Aws::Vector< AccountAttributeName > & GetAttributeNames() const
DescribeAccountAttributesRequest & AddAttributeNames(AccountAttributeName value)
AWS_EC2_API Aws::String SerializePayload() const override
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeAccountAttributesRequest & WithDryRun(bool value)
DescribeAccountAttributesRequest & WithAttributeNames(AttributeNamesT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector