AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
50 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
51 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
52 inline FieldLevelEncryptionSummary& WithId(const Aws::String& value) { SetId(value); return *this;}
53 inline FieldLevelEncryptionSummary& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
54 inline FieldLevelEncryptionSummary& WithId(const char* value) { SetId(value); return *this;}
56
58
62 inline const Aws::Utils::DateTime& GetLastModifiedTime() const{ return m_lastModifiedTime; }
63 inline bool LastModifiedTimeHasBeenSet() const { return m_lastModifiedTimeHasBeenSet; }
64 inline void SetLastModifiedTime(const Aws::Utils::DateTime& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = value; }
65 inline void SetLastModifiedTime(Aws::Utils::DateTime&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::move(value); }
69
71
75 inline const Aws::String& GetComment() const{ return m_comment; }
76 inline bool CommentHasBeenSet() const { return m_commentHasBeenSet; }
77 inline void SetComment(const Aws::String& value) { m_commentHasBeenSet = true; m_comment = value; }
78 inline void SetComment(Aws::String&& value) { m_commentHasBeenSet = true; m_comment = std::move(value); }
79 inline void SetComment(const char* value) { m_commentHasBeenSet = true; m_comment.assign(value); }
80 inline FieldLevelEncryptionSummary& WithComment(const Aws::String& value) { SetComment(value); return *this;}
81 inline FieldLevelEncryptionSummary& WithComment(Aws::String&& value) { SetComment(std::move(value)); return *this;}
82 inline FieldLevelEncryptionSummary& WithComment(const char* value) { SetComment(value); return *this;}
84
86
89 inline const QueryArgProfileConfig& GetQueryArgProfileConfig() const{ return m_queryArgProfileConfig; }
90 inline bool QueryArgProfileConfigHasBeenSet() const { return m_queryArgProfileConfigHasBeenSet; }
91 inline void SetQueryArgProfileConfig(const QueryArgProfileConfig& value) { m_queryArgProfileConfigHasBeenSet = true; m_queryArgProfileConfig = value; }
92 inline void SetQueryArgProfileConfig(QueryArgProfileConfig&& value) { m_queryArgProfileConfigHasBeenSet = true; m_queryArgProfileConfig = std::move(value); }
96
98
101 inline const ContentTypeProfileConfig& GetContentTypeProfileConfig() const{ return m_contentTypeProfileConfig; }
102 inline bool ContentTypeProfileConfigHasBeenSet() const { return m_contentTypeProfileConfigHasBeenSet; }
103 inline void SetContentTypeProfileConfig(const ContentTypeProfileConfig& value) { m_contentTypeProfileConfigHasBeenSet = true; m_contentTypeProfileConfig = value; }
104 inline void SetContentTypeProfileConfig(ContentTypeProfileConfig&& value) { m_contentTypeProfileConfigHasBeenSet = true; m_contentTypeProfileConfig = std::move(value); }
108 private:
109
110 Aws::String m_id;
111 bool m_idHasBeenSet = false;
112
113 Aws::Utils::DateTime m_lastModifiedTime;
114 bool m_lastModifiedTimeHasBeenSet = false;
115
116 Aws::String m_comment;
117 bool m_commentHasBeenSet = false;
118
119 QueryArgProfileConfig m_queryArgProfileConfig;
120 bool m_queryArgProfileConfigHasBeenSet = false;
121
122 ContentTypeProfileConfig m_contentTypeProfileConfig;
123 bool m_contentTypeProfileConfigHasBeenSet = false;
124 };
125
126} // namespace Model
127} // namespace CloudFront
128} // namespace Aws
AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
FieldLevelEncryptionSummary & WithLastModifiedTime(Aws::Utils::DateTime &&value)
FieldLevelEncryptionSummary & WithLastModifiedTime(const Aws::Utils::DateTime &value)
AWS_CLOUDFRONT_API FieldLevelEncryptionSummary & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
const QueryArgProfileConfig & GetQueryArgProfileConfig() const
FieldLevelEncryptionSummary & WithContentTypeProfileConfig(const ContentTypeProfileConfig &value)
void SetContentTypeProfileConfig(const ContentTypeProfileConfig &value)
FieldLevelEncryptionSummary & WithComment(const Aws::String &value)
FieldLevelEncryptionSummary & WithComment(Aws::String &&value)
FieldLevelEncryptionSummary & WithQueryArgProfileConfig(const QueryArgProfileConfig &value)
void SetQueryArgProfileConfig(const QueryArgProfileConfig &value)
FieldLevelEncryptionSummary & WithId(Aws::String &&value)
FieldLevelEncryptionSummary & WithContentTypeProfileConfig(ContentTypeProfileConfig &&value)
FieldLevelEncryptionSummary & WithQueryArgProfileConfig(QueryArgProfileConfig &&value)
FieldLevelEncryptionSummary & WithComment(const char *value)
FieldLevelEncryptionSummary & WithId(const Aws::String &value)
AWS_CLOUDFRONT_API FieldLevelEncryptionSummary(const Aws::Utils::Xml::XmlNode &xmlNode)
const ContentTypeProfileConfig & GetContentTypeProfileConfig() const
FieldLevelEncryptionSummary & WithId(const char *value)
void SetLastModifiedTime(const Aws::Utils::DateTime &value)
void SetContentTypeProfileConfig(ContentTypeProfileConfig &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String