aws-cdk-lib.aws_glue.CfnSecurityConfigurationProps

interface CfnSecurityConfigurationProps

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnSecurityConfigurationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnSecurityConfigurationProps
Javasoftware.amazon.awscdk.services.glue.CfnSecurityConfigurationProps
Pythonaws_cdk.aws_glue.CfnSecurityConfigurationProps
TypeScript aws-cdk-lib » 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 { aws_glue as glue } from 'aws-cdk-lib';
const cfnSecurityConfigurationProps: glue.CfnSecurityConfigurationProps = {
  encryptionConfiguration: {
    cloudWatchEncryption: {
      cloudWatchEncryptionMode: 'cloudWatchEncryptionMode',
      kmsKeyArn: 'kmsKeyArn',
    },
    jobBookmarksEncryption: {
      jobBookmarksEncryptionMode: 'jobBookmarksEncryptionMode',
      kmsKeyArn: 'kmsKeyArn',
    },
    s3Encryptions: [{
      kmsKeyArn: 'kmsKeyArn',
      s3EncryptionMode: 's3EncryptionMode',
    }],
  },
  name: 'name',
};

Properties

NameTypeDescription
encryptionConfigurationIResolvable | EncryptionConfigurationPropertyThe encryption configuration associated with this security configuration.
namestringThe name of the security configuration.

encryptionConfiguration

Type: IResolvable | EncryptionConfigurationProperty

The encryption configuration associated with this security configuration.


name

Type: string

The name of the security configuration.