AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetAttributeNames(const Aws::Vector<AccountAttributeName>& value) { m_attributeNamesHasBeenSet = true; m_attributeNames = value; }
60 inline void SetAttributeNames(Aws::Vector<AccountAttributeName>&& value) { m_attributeNamesHasBeenSet = true; m_attributeNames = std::move(value); }
63 inline DescribeAccountAttributesRequest& AddAttributeNames(const AccountAttributeName& value) { m_attributeNamesHasBeenSet = true; m_attributeNames.push_back(value); return *this; }
64 inline DescribeAccountAttributesRequest& AddAttributeNames(AccountAttributeName&& value) { m_attributeNamesHasBeenSet = true; m_attributeNames.push_back(std::move(value)); return *this; }
66 private:
67
68 bool m_dryRun;
69 bool m_dryRunHasBeenSet = false;
70
71 Aws::Vector<AccountAttributeName> m_attributeNames;
72 bool m_attributeNamesHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace EC2
77} // namespace Aws
const Aws::Vector< AccountAttributeName > & GetAttributeNames() const
DescribeAccountAttributesRequest & WithAttributeNames(Aws::Vector< 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(const Aws::Vector< AccountAttributeName > &value)
void SetAttributeNames(Aws::Vector< AccountAttributeName > &&value)
DescribeAccountAttributesRequest & AddAttributeNames(AccountAttributeName &&value)
DescribeAccountAttributesRequest & AddAttributeNames(const AccountAttributeName &value)
void SetAttributeNames(const Aws::Vector< AccountAttributeName > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector