interface JobBookmarksEncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnSecurityConfiguration.JobBookmarksEncryptionProperty |
Java | software.amazon.awscdk.services.glue.CfnSecurityConfiguration.JobBookmarksEncryptionProperty |
Python | aws_cdk.aws_glue.CfnSecurityConfiguration.JobBookmarksEncryptionProperty |
TypeScript | @aws-cdk/aws-glue » CfnSecurityConfiguration » JobBookmarksEncryptionProperty |
Specifies how job bookmark data should be encrypted.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue from '@aws-cdk/aws-glue';
const jobBookmarksEncryptionProperty: glue.CfnSecurityConfiguration.JobBookmarksEncryptionProperty = {
jobBookmarksEncryptionMode: 'jobBookmarksEncryptionMode',
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| job | string | The encryption mode to use for job bookmarks data. |
| kms | string | The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data. |
jobBookmarksEncryptionMode?
Type:
string
(optional)
The encryption mode to use for job bookmarks data.
kmsKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

.NET
Java
Python
TypeScript