AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetAggregateResourceConfigRequest.h
1
6#pragma once
7#include <aws/config/ConfigService_EXPORTS.h>
8#include <aws/config/ConfigServiceRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/config/model/AggregateResourceIdentifier.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ConfigService
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CONFIGSERVICE_API GetAggregateResourceConfigRequest();
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 "GetAggregateResourceConfig"; }
32
33 AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override;
34
35 AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
42 inline const Aws::String& GetConfigurationAggregatorName() const{ return m_configurationAggregatorName; }
43 inline bool ConfigurationAggregatorNameHasBeenSet() const { return m_configurationAggregatorNameHasBeenSet; }
44 inline void SetConfigurationAggregatorName(const Aws::String& value) { m_configurationAggregatorNameHasBeenSet = true; m_configurationAggregatorName = value; }
45 inline void SetConfigurationAggregatorName(Aws::String&& value) { m_configurationAggregatorNameHasBeenSet = true; m_configurationAggregatorName = std::move(value); }
46 inline void SetConfigurationAggregatorName(const char* value) { m_configurationAggregatorNameHasBeenSet = true; m_configurationAggregatorName.assign(value); }
51
53
56 inline const AggregateResourceIdentifier& GetResourceIdentifier() const{ return m_resourceIdentifier; }
57 inline bool ResourceIdentifierHasBeenSet() const { return m_resourceIdentifierHasBeenSet; }
58 inline void SetResourceIdentifier(const AggregateResourceIdentifier& value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier = value; }
59 inline void SetResourceIdentifier(AggregateResourceIdentifier&& value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier = std::move(value); }
63 private:
64
65 Aws::String m_configurationAggregatorName;
66 bool m_configurationAggregatorNameHasBeenSet = false;
67
68 AggregateResourceIdentifier m_resourceIdentifier;
69 bool m_resourceIdentifierHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace ConfigService
74} // namespace Aws
GetAggregateResourceConfigRequest & WithConfigurationAggregatorName(Aws::String &&value)
GetAggregateResourceConfigRequest & WithResourceIdentifier(AggregateResourceIdentifier &&value)
GetAggregateResourceConfigRequest & WithConfigurationAggregatorName(const Aws::String &value)
GetAggregateResourceConfigRequest & WithResourceIdentifier(const AggregateResourceIdentifier &value)
AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override
AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
GetAggregateResourceConfigRequest & WithConfigurationAggregatorName(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String