Show / Hide Table of Contents

Class KeySigningKeyReference

A reference to a KeySigningKey resource.

Inheritance
object
KeySigningKeyReference
Implements
IKeySigningKeyReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

KeySigningKeyName

The Name of the KeySigningKey resource.

public string KeySigningKeyName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IKeySigningKeyReference
Back to top Generated by DocFX