AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetBucketLifecycleConfigurationResult.h
1
6#pragma once
7#include <aws/s3control/S3Control_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/s3control/model/LifecycleRule.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Xml
21{
22 class XmlDocument;
23} // namespace Xml
24} // namespace Utils
25namespace S3Control
26{
27namespace Model
28{
30 {
31 public:
35
36
38
41 inline const Aws::Vector<LifecycleRule>& GetRules() const{ return m_rules; }
42 inline void SetRules(const Aws::Vector<LifecycleRule>& value) { m_rules = value; }
43 inline void SetRules(Aws::Vector<LifecycleRule>&& value) { m_rules = std::move(value); }
45 inline GetBucketLifecycleConfigurationResult& WithRules(Aws::Vector<LifecycleRule>&& value) { SetRules(std::move(value)); return *this;}
46 inline GetBucketLifecycleConfigurationResult& AddRules(const LifecycleRule& value) { m_rules.push_back(value); return *this; }
47 inline GetBucketLifecycleConfigurationResult& AddRules(LifecycleRule&& value) { m_rules.push_back(std::move(value)); return *this; }
49
51
52 inline const Aws::String& GetRequestId() const{ return m_requestId; }
53 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
54 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
55 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
56 inline GetBucketLifecycleConfigurationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
57 inline GetBucketLifecycleConfigurationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
58 inline GetBucketLifecycleConfigurationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
60 private:
61
63
64 Aws::String m_requestId;
65 };
66
67} // namespace Model
68} // namespace S3Control
69} // namespace Aws
GetBucketLifecycleConfigurationResult & AddRules(const LifecycleRule &value)
GetBucketLifecycleConfigurationResult & AddRules(LifecycleRule &&value)
GetBucketLifecycleConfigurationResult & WithRequestId(const char *value)
GetBucketLifecycleConfigurationResult & WithRequestId(const Aws::String &value)
GetBucketLifecycleConfigurationResult & WithRequestId(Aws::String &&value)
GetBucketLifecycleConfigurationResult & WithRules(Aws::Vector< LifecycleRule > &&value)
AWS_S3CONTROL_API GetBucketLifecycleConfigurationResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
AWS_S3CONTROL_API GetBucketLifecycleConfigurationResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
GetBucketLifecycleConfigurationResult & WithRules(const Aws::Vector< LifecycleRule > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Xml::XmlDocument XmlDocument