AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
FieldLevelEncryptionSummary.h
1
6#pragma once
7#include <aws/cloudfront/CloudFront_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/cloudfront/model/QueryArgProfileConfig.h>
11#include <aws/cloudfront/model/ContentTypeProfileConfig.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Xml
19{
20 class XmlNode;
21} // namespace Xml
22} // namespace Utils
23namespace CloudFront
24{
25namespace Model
26{
27
34 {
35 public:
36 AWS_CLOUDFRONT_API FieldLevelEncryptionSummary() = default;
37 AWS_CLOUDFRONT_API FieldLevelEncryptionSummary(const Aws::Utils::Xml::XmlNode& xmlNode);
39
40 AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
41
42
44
47 inline const Aws::String& GetId() const { return m_id; }
48 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
49 template<typename IdT = Aws::String>
50 void SetId(IdT&& value) { m_idHasBeenSet = true; m_id = std::forward<IdT>(value); }
51 template<typename IdT = Aws::String>
52 FieldLevelEncryptionSummary& WithId(IdT&& value) { SetId(std::forward<IdT>(value)); return *this;}
54
56
60 inline const Aws::Utils::DateTime& GetLastModifiedTime() const { return m_lastModifiedTime; }
61 inline bool LastModifiedTimeHasBeenSet() const { return m_lastModifiedTimeHasBeenSet; }
62 template<typename LastModifiedTimeT = Aws::Utils::DateTime>
63 void SetLastModifiedTime(LastModifiedTimeT&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::forward<LastModifiedTimeT>(value); }
64 template<typename LastModifiedTimeT = Aws::Utils::DateTime>
65 FieldLevelEncryptionSummary& WithLastModifiedTime(LastModifiedTimeT&& value) { SetLastModifiedTime(std::forward<LastModifiedTimeT>(value)); return *this;}
67
69
73 inline const Aws::String& GetComment() const { return m_comment; }
74 inline bool CommentHasBeenSet() const { return m_commentHasBeenSet; }
75 template<typename CommentT = Aws::String>
76 void SetComment(CommentT&& value) { m_commentHasBeenSet = true; m_comment = std::forward<CommentT>(value); }
77 template<typename CommentT = Aws::String>
78 FieldLevelEncryptionSummary& WithComment(CommentT&& value) { SetComment(std::forward<CommentT>(value)); return *this;}
80
82
85 inline const QueryArgProfileConfig& GetQueryArgProfileConfig() const { return m_queryArgProfileConfig; }
86 inline bool QueryArgProfileConfigHasBeenSet() const { return m_queryArgProfileConfigHasBeenSet; }
87 template<typename QueryArgProfileConfigT = QueryArgProfileConfig>
88 void SetQueryArgProfileConfig(QueryArgProfileConfigT&& value) { m_queryArgProfileConfigHasBeenSet = true; m_queryArgProfileConfig = std::forward<QueryArgProfileConfigT>(value); }
89 template<typename QueryArgProfileConfigT = QueryArgProfileConfig>
90 FieldLevelEncryptionSummary& WithQueryArgProfileConfig(QueryArgProfileConfigT&& value) { SetQueryArgProfileConfig(std::forward<QueryArgProfileConfigT>(value)); return *this;}
92
94
97 inline const ContentTypeProfileConfig& GetContentTypeProfileConfig() const { return m_contentTypeProfileConfig; }
98 inline bool ContentTypeProfileConfigHasBeenSet() const { return m_contentTypeProfileConfigHasBeenSet; }
99 template<typename ContentTypeProfileConfigT = ContentTypeProfileConfig>
100 void SetContentTypeProfileConfig(ContentTypeProfileConfigT&& value) { m_contentTypeProfileConfigHasBeenSet = true; m_contentTypeProfileConfig = std::forward<ContentTypeProfileConfigT>(value); }
101 template<typename ContentTypeProfileConfigT = ContentTypeProfileConfig>
102 FieldLevelEncryptionSummary& WithContentTypeProfileConfig(ContentTypeProfileConfigT&& value) { SetContentTypeProfileConfig(std::forward<ContentTypeProfileConfigT>(value)); return *this;}
104 private:
105
106 Aws::String m_id;
107 bool m_idHasBeenSet = false;
108
109 Aws::Utils::DateTime m_lastModifiedTime{};
110 bool m_lastModifiedTimeHasBeenSet = false;
111
112 Aws::String m_comment;
113 bool m_commentHasBeenSet = false;
114
115 QueryArgProfileConfig m_queryArgProfileConfig;
116 bool m_queryArgProfileConfigHasBeenSet = false;
117
118 ContentTypeProfileConfig m_contentTypeProfileConfig;
119 bool m_contentTypeProfileConfigHasBeenSet = false;
120 };
121
122} // namespace Model
123} // namespace CloudFront
124} // namespace Aws
AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
AWS_CLOUDFRONT_API FieldLevelEncryptionSummary & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
FieldLevelEncryptionSummary & WithComment(CommentT &&value)
FieldLevelEncryptionSummary & WithContentTypeProfileConfig(ContentTypeProfileConfigT &&value)
const QueryArgProfileConfig & GetQueryArgProfileConfig() const
FieldLevelEncryptionSummary & WithQueryArgProfileConfig(QueryArgProfileConfigT &&value)
FieldLevelEncryptionSummary & WithLastModifiedTime(LastModifiedTimeT &&value)
AWS_CLOUDFRONT_API FieldLevelEncryptionSummary()=default
AWS_CLOUDFRONT_API FieldLevelEncryptionSummary(const Aws::Utils::Xml::XmlNode &xmlNode)
const ContentTypeProfileConfig & GetContentTypeProfileConfig() const
void SetContentTypeProfileConfig(ContentTypeProfileConfigT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String