interface CfnSecurityConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnSecurityConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnSecurityConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnSecurityConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnSecurityConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnSecurityConfigurationMixinProps |
Properties for CfnSecurityConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const cfnSecurityConfigurationMixinProps: glue_mixins.CfnSecurityConfigurationMixinProps = {
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
(optional)
The encryption configuration associated with this security configuration.
name?
Type:
string
(optional)
The name of the security configuration.

.NET
Go
Java
Python
TypeScript