Interface ICfnSecurityConfigurationProps
Properties for defining a CfnSecurityConfiguration.
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnSecurityConfigurationProps
Syntax (vb)
Public Interface ICfnSecurityConfigurationProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Glue;
var cfnSecurityConfigurationProps = new CfnSecurityConfigurationProps {
EncryptionConfiguration = new EncryptionConfigurationProperty {
CloudWatchEncryption = new CloudWatchEncryptionProperty {
CloudWatchEncryptionMode = "cloudWatchEncryptionMode",
KmsKeyArn = "kmsKeyArn"
},
JobBookmarksEncryption = new JobBookmarksEncryptionProperty {
JobBookmarksEncryptionMode = "jobBookmarksEncryptionMode",
KmsKeyArn = "kmsKeyArn"
},
S3Encryptions = new [] { new S3EncryptionProperty {
KmsKeyArn = "kmsKeyArn",
S3EncryptionMode = "s3EncryptionMode"
} }
},
Name = "name"
};
Synopsis
Properties
| EncryptionConfiguration | The encryption configuration associated with this security configuration. |
| Name | The name of the security configuration. |
Properties
EncryptionConfiguration
The encryption configuration associated with this security configuration.
object EncryptionConfiguration { get; }
Property Value
Remarks
Name
The name of the security configuration.
string Name { get; }