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:
IResource
,IKeySigningKey
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:16.083Z")
@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 classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.route53.IKeySigningKey
IKeySigningKey.Jsii$Default, IKeySigningKey.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default
-
Constructor Summary
ModifierConstructorDescriptionprotected
KeySigningKey
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
KeySigningKey
(software.amazon.jsii.JsiiObjectRef objRef) KeySigningKey
(software.constructs.Construct scope, String id, KeySigningKeyProps props) -
Method Summary
Modifier and TypeMethodDescriptionstatic IKeySigningKey
fromKeySigningKeyAttributes
(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, isResource
Methods inherited from class software.constructs.Construct
getNode, isConstruct, toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.constructs.IConstruct
getNode
Methods inherited from interface software.amazon.awscdk.IResource
applyRemovalPolicy, getEnv, getStack
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
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:
getHostedZone
in interfaceIKeySigningKey
-
getKeySigningKeyId
The ID of the key signing key, derived from the hosted zone ID and its name.- Specified by:
getKeySigningKeyId
in interfaceIKeySigningKey
-
getKeySigningKeyName
The name of the key signing key.- Specified by:
getKeySigningKeyName
in interfaceIKeySigningKey
-