Class KeySigningKeyReference
A reference to a KeySigningKey resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class KeySigningKeyReference : IKeySigningKeyReference
Syntax (vb)
Public Class KeySigningKeyReference Implements IKeySigningKeyReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.Route53;
var keySigningKeyReference = new KeySigningKeyReference {
HostedZoneId = "hostedZoneId",
KeySigningKeyName = "keySigningKeyName"
};
Synopsis
Constructors
| KeySigningKeyReference() | A reference to a KeySigningKey resource. |
Properties
| HostedZoneId | The HostedZoneId of the KeySigningKey resource. |
| KeySigningKeyName | The Name of the KeySigningKey resource. |
Constructors
KeySigningKeyReference()
A reference to a KeySigningKey resource.
public KeySigningKeyReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.Route53;
var keySigningKeyReference = new KeySigningKeyReference {
HostedZoneId = "hostedZoneId",
KeySigningKeyName = "keySigningKeyName"
};
Properties
HostedZoneId
The HostedZoneId of the KeySigningKey resource.
public string HostedZoneId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
KeySigningKeyName
The Name of the KeySigningKey resource.
public string KeySigningKeyName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated