@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:09.558Z") @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.