/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the KMS key that is used to encrypt the user's data stores in
* Athena. This setting does not apply to Athena SQL workgroups.See
* Also:
AWS
* API Reference
The KMS key that is used to encrypt the user's data stores in Athena.
*/ inline const Aws::String& GetKmsKey() const{ return m_kmsKey; } /** *The KMS key that is used to encrypt the user's data stores in Athena.
*/ inline bool KmsKeyHasBeenSet() const { return m_kmsKeyHasBeenSet; } /** *The KMS key that is used to encrypt the user's data stores in Athena.
*/ inline void SetKmsKey(const Aws::String& value) { m_kmsKeyHasBeenSet = true; m_kmsKey = value; } /** *The KMS key that is used to encrypt the user's data stores in Athena.
*/ inline void SetKmsKey(Aws::String&& value) { m_kmsKeyHasBeenSet = true; m_kmsKey = std::move(value); } /** *The KMS key that is used to encrypt the user's data stores in Athena.
*/ inline void SetKmsKey(const char* value) { m_kmsKeyHasBeenSet = true; m_kmsKey.assign(value); } /** *The KMS key that is used to encrypt the user's data stores in Athena.
*/ inline CustomerContentEncryptionConfiguration& WithKmsKey(const Aws::String& value) { SetKmsKey(value); return *this;} /** *The KMS key that is used to encrypt the user's data stores in Athena.
*/ inline CustomerContentEncryptionConfiguration& WithKmsKey(Aws::String&& value) { SetKmsKey(std::move(value)); return *this;} /** *The KMS key that is used to encrypt the user's data stores in Athena.
*/ inline CustomerContentEncryptionConfiguration& WithKmsKey(const char* value) { SetKmsKey(value); return *this;} private: Aws::String m_kmsKey; bool m_kmsKeyHasBeenSet = false; }; } // namespace Model } // namespace Athena } // namespace Aws