/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include
#include
#include
#include
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace S3
{
namespace Model
{
/**
* Specifies the default server-side-encryption configuration.
See
* Also:
AWS
* API Reference
*/
class ServerSideEncryptionConfiguration
{
public:
AWS_S3_API ServerSideEncryptionConfiguration();
AWS_S3_API ServerSideEncryptionConfiguration(const Aws::Utils::Xml::XmlNode& xmlNode);
AWS_S3_API ServerSideEncryptionConfiguration& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
///@{
/**
* Container for information about a particular server-side encryption
* configuration rule.
*/
inline const Aws::Vector& GetRules() const{ return m_rules; }
inline bool RulesHasBeenSet() const { return m_rulesHasBeenSet; }
inline void SetRules(const Aws::Vector& value) { m_rulesHasBeenSet = true; m_rules = value; }
inline void SetRules(Aws::Vector&& value) { m_rulesHasBeenSet = true; m_rules = std::move(value); }
inline ServerSideEncryptionConfiguration& WithRules(const Aws::Vector& value) { SetRules(value); return *this;}
inline ServerSideEncryptionConfiguration& WithRules(Aws::Vector&& value) { SetRules(std::move(value)); return *this;}
inline ServerSideEncryptionConfiguration& AddRules(const ServerSideEncryptionRule& value) { m_rulesHasBeenSet = true; m_rules.push_back(value); return *this; }
inline ServerSideEncryptionConfiguration& AddRules(ServerSideEncryptionRule&& value) { m_rulesHasBeenSet = true; m_rules.push_back(std::move(value)); return *this; }
///@}
private:
Aws::Vector m_rules;
bool m_rulesHasBeenSet = false;
};
} // namespace Model
} // namespace S3
} // namespace Aws