@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:17.804Z") @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()
`AWS::Glue::SecurityConfiguration.EncryptionConfiguration`.
|
String |
getName()
`AWS::Glue::SecurityConfiguration.Name`.
|
@Stability(value=Stable) @NotNull Object getEncryptionConfiguration()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) static CfnSecurityConfigurationProps.Builder builder()
Copyright © 2021. All rights reserved.