Interface CfnSecurityConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:37.550Z")
@Stability(Stable)
public interface CfnSecurityConfigurationProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.glue.*;
CfnSecurityConfigurationProps cfnSecurityConfigurationProps = CfnSecurityConfigurationProps.builder()
.encryptionConfiguration(EncryptionConfigurationProperty.builder()
.cloudWatchEncryption(CloudWatchEncryptionProperty.builder()
.cloudWatchEncryptionMode("cloudWatchEncryptionMode")
.kmsKeyArn("kmsKeyArn")
.build())
.jobBookmarksEncryption(JobBookmarksEncryptionProperty.builder()
.jobBookmarksEncryptionMode("jobBookmarksEncryptionMode")
.kmsKeyArn("kmsKeyArn")
.build())
.s3Encryptions(List.of(S3EncryptionProperty.builder()
.kmsKeyArn("kmsKeyArn")
.s3EncryptionMode("s3EncryptionMode")
.build()))
.build())
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecurityConfigurationPropsstatic final classAn implementation forCfnSecurityConfigurationProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionConfiguration
The encryption configuration associated with this security configuration.Returns union: either
IResolvableorCfnSecurityConfiguration.EncryptionConfigurationProperty- See Also:
-
getName
The name of the security configuration.- See Also:
-
builder
-