interface CfnSecurityConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnSecurityConfigurationProps |
Java | software.amazon.awscdk.services.glue.CfnSecurityConfigurationProps |
Python | aws_cdk.aws_glue.CfnSecurityConfigurationProps |
TypeScript | @aws-cdk/aws-glue » CfnSecurityConfigurationProps |
Properties for defining a CfnSecurityConfiguration.
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 cfnSecurityConfigurationProps: glue.CfnSecurityConfigurationProps = {
encryptionConfiguration: {
cloudWatchEncryption: {
cloudWatchEncryptionMode: 'cloudWatchEncryptionMode',
kmsKeyArn: 'kmsKeyArn',
},
jobBookmarksEncryption: {
jobBookmarksEncryptionMode: 'jobBookmarksEncryptionMode',
kmsKeyArn: 'kmsKeyArn',
},
s3Encryptions: [{
kmsKeyArn: 'kmsKeyArn',
s3EncryptionMode: 's3EncryptionMode',
}],
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Encryption | The encryption configuration associated with this security configuration. |
| name | string | The name of the security configuration. |
encryptionConfiguration
Type:
IResolvable | Encryption
The encryption configuration associated with this security configuration.
name
Type:
string
The name of the security configuration.

.NET
Java
Python
TypeScript