@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:18.218Z") @Stability(value=Stable) public interface CfnReplicaKeyProps 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.kms.*;
Object keyPolicy;
CfnReplicaKeyProps cfnReplicaKeyProps = CfnReplicaKeyProps.builder()
.keyPolicy(keyPolicy)
.primaryKeyArn("primaryKeyArn")
// the properties below are optional
.description("description")
.enabled(false)
.pendingWindowInDays(123)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnReplicaKeyProps.Builder
A builder for
CfnReplicaKeyProps |
static class |
CfnReplicaKeyProps.Jsii$Proxy
An implementation for
CfnReplicaKeyProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnReplicaKeyProps.Builder |
builder() |
default String |
getDescription()
`AWS::KMS::ReplicaKey.Description`.
|
default Object |
getEnabled()
`AWS::KMS::ReplicaKey.Enabled`.
|
Object |
getKeyPolicy()
`AWS::KMS::ReplicaKey.KeyPolicy`.
|
default Number |
getPendingWindowInDays()
`AWS::KMS::ReplicaKey.PendingWindowInDays`.
|
String |
getPrimaryKeyArn()
`AWS::KMS::ReplicaKey.PrimaryKeyArn`.
|
default List<CfnTag> |
getTags()
`AWS::KMS::ReplicaKey.Tags`.
|
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getEnabled()
@Stability(value=Stable) @NotNull Object getKeyPolicy()
@Stability(value=Stable) @Nullable default Number getPendingWindowInDays()
@Stability(value=Stable) @NotNull String getPrimaryKeyArn()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnReplicaKeyProps.Builder builder()
CfnReplicaKeyProps.Builder of CfnReplicaKeyPropsCopyright © 2021. All rights reserved.