aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/Encryption.cpp
blob: 83210594d116f1f2d3170c9dbeb6f9e01f1435f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/** 
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 
 * SPDX-License-Identifier: Apache-2.0. 
 */ 
 
#include <aws/s3/model/Encryption.h> 
#include <aws/core/utils/xml/XmlSerializer.h> 
#include <aws/core/utils/StringUtils.h> 
#include <aws/core/utils/memory/stl/AWSStringStream.h> 
 
#include <utility> 
 
using namespace Aws::Utils::Xml; 
using namespace Aws::Utils; 
 
namespace Aws 
{ 
namespace S3 
{ 
namespace Model 
{ 
 
Encryption::Encryption() :  
    m_encryptionType(ServerSideEncryption::NOT_SET), 
    m_encryptionTypeHasBeenSet(false), 
    m_kMSKeyIdHasBeenSet(false), 
    m_kMSContextHasBeenSet(false) 
{ 
} 
 
Encryption::Encryption(const XmlNode& xmlNode) :  
    m_encryptionType(ServerSideEncryption::NOT_SET), 
    m_encryptionTypeHasBeenSet(false), 
    m_kMSKeyIdHasBeenSet(false), 
    m_kMSContextHasBeenSet(false) 
{ 
  *this = xmlNode; 
} 
 
Encryption& Encryption::operator =(const XmlNode& xmlNode) 
{ 
  XmlNode resultNode = xmlNode; 
 
  if(!resultNode.IsNull()) 
  { 
    XmlNode encryptionTypeNode = resultNode.FirstChild("EncryptionType"); 
    if(!encryptionTypeNode.IsNull()) 
    { 
      m_encryptionType = ServerSideEncryptionMapper::GetServerSideEncryptionForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(encryptionTypeNode.GetText()).c_str()).c_str()); 
      m_encryptionTypeHasBeenSet = true; 
    } 
    XmlNode kMSKeyIdNode = resultNode.FirstChild("KMSKeyId"); 
    if(!kMSKeyIdNode.IsNull()) 
    { 
      m_kMSKeyId = Aws::Utils::Xml::DecodeEscapedXmlText(kMSKeyIdNode.GetText()); 
      m_kMSKeyIdHasBeenSet = true; 
    } 
    XmlNode kMSContextNode = resultNode.FirstChild("KMSContext"); 
    if(!kMSContextNode.IsNull()) 
    { 
      m_kMSContext = Aws::Utils::Xml::DecodeEscapedXmlText(kMSContextNode.GetText()); 
      m_kMSContextHasBeenSet = true; 
    } 
  } 
 
  return *this; 
} 
 
void Encryption::AddToNode(XmlNode& parentNode) const 
{ 
  Aws::StringStream ss; 
  if(m_encryptionTypeHasBeenSet) 
  { 
   XmlNode encryptionTypeNode = parentNode.CreateChildElement("EncryptionType"); 
   encryptionTypeNode.SetText(ServerSideEncryptionMapper::GetNameForServerSideEncryption(m_encryptionType)); 
  } 
 
  if(m_kMSKeyIdHasBeenSet) 
  { 
   XmlNode kMSKeyIdNode = parentNode.CreateChildElement("KMSKeyId"); 
   kMSKeyIdNode.SetText(m_kMSKeyId); 
  } 
 
  if(m_kMSContextHasBeenSet) 
  { 
   XmlNode kMSContextNode = parentNode.CreateChildElement("KMSContext"); 
   kMSContextNode.SetText(m_kMSContext); 
  } 
 
} 
 
} // namespace Model 
} // namespace S3 
} // namespace Aws