/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies how job bookmark data should be encrypted.See Also:
* AWS
* API Reference
The encryption mode to use for job bookmarks data.
*/ inline const JobBookmarksEncryptionMode& GetJobBookmarksEncryptionMode() const{ return m_jobBookmarksEncryptionMode; } /** *The encryption mode to use for job bookmarks data.
*/ inline bool JobBookmarksEncryptionModeHasBeenSet() const { return m_jobBookmarksEncryptionModeHasBeenSet; } /** *The encryption mode to use for job bookmarks data.
*/ inline void SetJobBookmarksEncryptionMode(const JobBookmarksEncryptionMode& value) { m_jobBookmarksEncryptionModeHasBeenSet = true; m_jobBookmarksEncryptionMode = value; } /** *The encryption mode to use for job bookmarks data.
*/ inline void SetJobBookmarksEncryptionMode(JobBookmarksEncryptionMode&& value) { m_jobBookmarksEncryptionModeHasBeenSet = true; m_jobBookmarksEncryptionMode = std::move(value); } /** *The encryption mode to use for job bookmarks data.
*/ inline JobBookmarksEncryption& WithJobBookmarksEncryptionMode(const JobBookmarksEncryptionMode& value) { SetJobBookmarksEncryptionMode(value); return *this;} /** *The encryption mode to use for job bookmarks data.
*/ inline JobBookmarksEncryption& WithJobBookmarksEncryptionMode(JobBookmarksEncryptionMode&& value) { SetJobBookmarksEncryptionMode(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the * data.
*/ inline const Aws::String& GetKmsKeyArn() const{ return m_kmsKeyArn; } /** *The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the * data.
*/ inline bool KmsKeyArnHasBeenSet() const { return m_kmsKeyArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the * data.
*/ inline void SetKmsKeyArn(const Aws::String& value) { m_kmsKeyArnHasBeenSet = true; m_kmsKeyArn = value; } /** *The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the * data.
*/ inline void SetKmsKeyArn(Aws::String&& value) { m_kmsKeyArnHasBeenSet = true; m_kmsKeyArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the * data.
*/ inline void SetKmsKeyArn(const char* value) { m_kmsKeyArnHasBeenSet = true; m_kmsKeyArn.assign(value); } /** *The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the * data.
*/ inline JobBookmarksEncryption& WithKmsKeyArn(const Aws::String& value) { SetKmsKeyArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the * data.
*/ inline JobBookmarksEncryption& WithKmsKeyArn(Aws::String&& value) { SetKmsKeyArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the * data.
*/ inline JobBookmarksEncryption& WithKmsKeyArn(const char* value) { SetKmsKeyArn(value); return *this;} private: JobBookmarksEncryptionMode m_jobBookmarksEncryptionMode; bool m_jobBookmarksEncryptionModeHasBeenSet = false; Aws::String m_kmsKeyArn; bool m_kmsKeyArnHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws