AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeRetentionConfigurationsRequest.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/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ConfigService
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CONFIGSERVICE_API DescribeRetentionConfigurationsRequest() = 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 "DescribeRetentionConfigurations"; }
32
33 AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override;
34
35 AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
45 inline const Aws::Vector<Aws::String>& GetRetentionConfigurationNames() const { return m_retentionConfigurationNames; }
46 inline bool RetentionConfigurationNamesHasBeenSet() const { return m_retentionConfigurationNamesHasBeenSet; }
47 template<typename RetentionConfigurationNamesT = Aws::Vector<Aws::String>>
48 void SetRetentionConfigurationNames(RetentionConfigurationNamesT&& value) { m_retentionConfigurationNamesHasBeenSet = true; m_retentionConfigurationNames = std::forward<RetentionConfigurationNamesT>(value); }
49 template<typename RetentionConfigurationNamesT = Aws::Vector<Aws::String>>
50 DescribeRetentionConfigurationsRequest& WithRetentionConfigurationNames(RetentionConfigurationNamesT&& value) { SetRetentionConfigurationNames(std::forward<RetentionConfigurationNamesT>(value)); return *this;}
51 template<typename RetentionConfigurationNamesT = Aws::String>
52 DescribeRetentionConfigurationsRequest& AddRetentionConfigurationNames(RetentionConfigurationNamesT&& value) { m_retentionConfigurationNamesHasBeenSet = true; m_retentionConfigurationNames.emplace_back(std::forward<RetentionConfigurationNamesT>(value)); return *this; }
54
56
60 inline const Aws::String& GetNextToken() const { return m_nextToken; }
61 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
62 template<typename NextTokenT = Aws::String>
63 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
64 template<typename NextTokenT = Aws::String>
65 DescribeRetentionConfigurationsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
67 private:
68
69 Aws::Vector<Aws::String> m_retentionConfigurationNames;
70 bool m_retentionConfigurationNamesHasBeenSet = false;
71
72 Aws::String m_nextToken;
73 bool m_nextTokenHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace ConfigService
78} // namespace Aws
DescribeRetentionConfigurationsRequest & WithNextToken(NextTokenT &&value)
AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeRetentionConfigurationsRequest & AddRetentionConfigurationNames(RetentionConfigurationNamesT &&value)
AWS_CONFIGSERVICE_API DescribeRetentionConfigurationsRequest()=default
AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override
DescribeRetentionConfigurationsRequest & WithRetentionConfigurationNames(RetentionConfigurationNamesT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector