/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Server-side encryption (SSE) settings for a store.See Also:
* AWS
* API Reference
The encryption type.
*/ inline const EncryptionType& GetType() const{ return m_type; } /** *The encryption type.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The encryption type.
*/ inline void SetType(const EncryptionType& value) { m_typeHasBeenSet = true; m_type = value; } /** *The encryption type.
*/ inline void SetType(EncryptionType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The encryption type.
*/ inline SseConfig& WithType(const EncryptionType& value) { SetType(value); return *this;} /** *The encryption type.
*/ inline SseConfig& WithType(EncryptionType&& value) { SetType(std::move(value)); return *this;} /** *An encryption key ARN.
*/ inline const Aws::String& GetKeyArn() const{ return m_keyArn; } /** *An encryption key ARN.
*/ inline bool KeyArnHasBeenSet() const { return m_keyArnHasBeenSet; } /** *An encryption key ARN.
*/ inline void SetKeyArn(const Aws::String& value) { m_keyArnHasBeenSet = true; m_keyArn = value; } /** *An encryption key ARN.
*/ inline void SetKeyArn(Aws::String&& value) { m_keyArnHasBeenSet = true; m_keyArn = std::move(value); } /** *An encryption key ARN.
*/ inline void SetKeyArn(const char* value) { m_keyArnHasBeenSet = true; m_keyArn.assign(value); } /** *An encryption key ARN.
*/ inline SseConfig& WithKeyArn(const Aws::String& value) { SetKeyArn(value); return *this;} /** *An encryption key ARN.
*/ inline SseConfig& WithKeyArn(Aws::String&& value) { SetKeyArn(std::move(value)); return *this;} /** *An encryption key ARN.
*/ inline SseConfig& WithKeyArn(const char* value) { SetKeyArn(value); return *this;} private: EncryptionType m_type; bool m_typeHasBeenSet = false; Aws::String m_keyArn; bool m_keyArnHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws