This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-firehose/include/aws/firehose/model/EncryptionConfiguration.h

121 lines
3.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/firehose/Firehose_EXPORTS.h>
#include <aws/firehose/model/NoEncryptionConfig.h>
#include <aws/firehose/model/KMSEncryptionConfig.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Firehose
{
namespace Model
{
/**
* <p>Describes the encryption for a destination in Amazon S3.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/EncryptionConfiguration">AWS
* API Reference</a></p>
*/
class AWS_FIREHOSE_API EncryptionConfiguration
{
public:
EncryptionConfiguration();
EncryptionConfiguration(Aws::Utils::Json::JsonView jsonValue);
EncryptionConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Specifically override existing encryption information to ensure that no
* encryption is used.</p>
*/
inline const NoEncryptionConfig& GetNoEncryptionConfig() const{ return m_noEncryptionConfig; }
/**
* <p>Specifically override existing encryption information to ensure that no
* encryption is used.</p>
*/
inline bool NoEncryptionConfigHasBeenSet() const { return m_noEncryptionConfigHasBeenSet; }
/**
* <p>Specifically override existing encryption information to ensure that no
* encryption is used.</p>
*/
inline void SetNoEncryptionConfig(const NoEncryptionConfig& value) { m_noEncryptionConfigHasBeenSet = true; m_noEncryptionConfig = value; }
/**
* <p>Specifically override existing encryption information to ensure that no
* encryption is used.</p>
*/
inline void SetNoEncryptionConfig(NoEncryptionConfig&& value) { m_noEncryptionConfigHasBeenSet = true; m_noEncryptionConfig = std::move(value); }
/**
* <p>Specifically override existing encryption information to ensure that no
* encryption is used.</p>
*/
inline EncryptionConfiguration& WithNoEncryptionConfig(const NoEncryptionConfig& value) { SetNoEncryptionConfig(value); return *this;}
/**
* <p>Specifically override existing encryption information to ensure that no
* encryption is used.</p>
*/
inline EncryptionConfiguration& WithNoEncryptionConfig(NoEncryptionConfig&& value) { SetNoEncryptionConfig(std::move(value)); return *this;}
/**
* <p>The encryption key.</p>
*/
inline const KMSEncryptionConfig& GetKMSEncryptionConfig() const{ return m_kMSEncryptionConfig; }
/**
* <p>The encryption key.</p>
*/
inline bool KMSEncryptionConfigHasBeenSet() const { return m_kMSEncryptionConfigHasBeenSet; }
/**
* <p>The encryption key.</p>
*/
inline void SetKMSEncryptionConfig(const KMSEncryptionConfig& value) { m_kMSEncryptionConfigHasBeenSet = true; m_kMSEncryptionConfig = value; }
/**
* <p>The encryption key.</p>
*/
inline void SetKMSEncryptionConfig(KMSEncryptionConfig&& value) { m_kMSEncryptionConfigHasBeenSet = true; m_kMSEncryptionConfig = std::move(value); }
/**
* <p>The encryption key.</p>
*/
inline EncryptionConfiguration& WithKMSEncryptionConfig(const KMSEncryptionConfig& value) { SetKMSEncryptionConfig(value); return *this;}
/**
* <p>The encryption key.</p>
*/
inline EncryptionConfiguration& WithKMSEncryptionConfig(KMSEncryptionConfig&& value) { SetKMSEncryptionConfig(std::move(value)); return *this;}
private:
NoEncryptionConfig m_noEncryptionConfig;
bool m_noEncryptionConfigHasBeenSet;
KMSEncryptionConfig m_kMSEncryptionConfig;
bool m_kMSEncryptionConfigHasBeenSet;
};
} // namespace Model
} // namespace Firehose
} // namespace Aws