Class KeySigningKey
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.route53.KeySigningKey
- All Implemented Interfaces:
IEnvironmentAware,IResource,IKeySigningKey,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-12T17:54:21.362Z")
@Stability(Stable)
public class KeySigningKey
extends Resource
implements IKeySigningKey
A Key Signing Key for a Route 53 Hosted Zone.
Example:
HostedZone hostedZone;
Key kmsKey;
KeySigningKey.Builder.create(this, "KeySigningKey")
.hostedZone(hostedZone)
.kmsKey(kmsKey)
.keySigningKeyName("ksk")
.status(KeySigningKeyStatus.ACTIVE)
.build();
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.services.route53.IKeySigningKey
IKeySigningKey.Jsii$Default, IKeySigningKey.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedKeySigningKey(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedKeySigningKey(software.amazon.jsii.JsiiObjectRef objRef) KeySigningKey(software.constructs.Construct scope, String id, KeySigningKeyProps props) -
Method Summary
Modifier and TypeMethodDescriptionstatic IKeySigningKeyfromKeySigningKeyAttributes(software.constructs.Construct scope, String id, KeySigningKeyAttributes attrs) Imports a key signing key from its attributes.The hosted zone that the key signing key signs.The ID of the key signing key, derived from the hosted zone ID and its name.The name of the key signing key.Methods inherited from class software.amazon.awscdk.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isOwnedResource, isResourceMethods inherited from class software.constructs.Construct
getNode, isConstruct, toStringMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.awscdk.IResource
applyRemovalPolicy, getStackMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
PROPERTY_INJECTION_ID
Uniquely identifies this class.
-
-
Constructor Details
-
KeySigningKey
protected KeySigningKey(software.amazon.jsii.JsiiObjectRef objRef) -
KeySigningKey
protected KeySigningKey(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
KeySigningKey
@Stability(Stable) public KeySigningKey(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull KeySigningKeyProps props) - Parameters:
scope- This parameter is required.id- This parameter is required.props- This parameter is required.
-
-
Method Details
-
fromKeySigningKeyAttributes
@Stability(Stable) @NotNull public static IKeySigningKey fromKeySigningKeyAttributes(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull KeySigningKeyAttributes attrs) Imports a key signing key from its attributes.- Parameters:
scope- This parameter is required.id- This parameter is required.attrs- This parameter is required.
-
getHostedZone
The hosted zone that the key signing key signs.- Specified by:
getHostedZonein interfaceIKeySigningKey
-
getKeySigningKeyId
The ID of the key signing key, derived from the hosted zone ID and its name.- Specified by:
getKeySigningKeyIdin interfaceIKeySigningKey
-
getKeySigningKeyName
The name of the key signing key.- Specified by:
getKeySigningKeyNamein interfaceIKeySigningKey
-