Interface CfnSecurityConfiguration.S3EncryptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityConfiguration.S3EncryptionProperty.Jsii$Proxy
- Enclosing class:
CfnSecurityConfiguration
@Stability(Stable)
public static interface CfnSecurityConfiguration.S3EncryptionProperty
extends software.amazon.jsii.JsiiSerializable
Specifies how Amazon Simple Storage Service (Amazon S3) data should be encrypted.
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.*;
S3EncryptionProperty s3EncryptionProperty = S3EncryptionProperty.builder()
.kmsKeyArn("kmsKeyArn")
.s3EncryptionMode("s3EncryptionMode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecurityConfiguration.S3EncryptionPropertystatic final classAn implementation forCfnSecurityConfiguration.S3EncryptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsKeyArn
The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.- See Also:
-
getS3EncryptionMode
The encryption mode to use for Amazon S3 data.- See Also:
-
builder
-