@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.575Z") @Stability(value=Stable) public interface CfnSecurityConfigurationProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSecurityConfigurationProps.Builder
A builder for
CfnSecurityConfigurationProps |
static class |
CfnSecurityConfigurationProps.Jsii$Proxy
An implementation for
CfnSecurityConfigurationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnSecurityConfigurationProps.Builder |
builder() |
Object |
getEncryptionConfiguration()
The encryption configuration associated with this security configuration.
|
String |
getName()
The name of the security configuration.
|
@Stability(value=Stable) @NotNull Object getEncryptionConfiguration()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) static CfnSecurityConfigurationProps.Builder builder()
Copyright © 2022. All rights reserved.