interface KeySigningKeyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53.KeySigningKeyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53#KeySigningKeyReference |
Java | software.amazon.awscdk.services.route53.KeySigningKeyReference |
Python | aws_cdk.aws_route53.KeySigningKeyReference |
TypeScript | aws-cdk-lib » aws_route53 » KeySigningKeyReference |
A reference to a KeySigningKey resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53 as route53 } from 'aws-cdk-lib';
const keySigningKeyReference: route53.KeySigningKeyReference = {
hostedZoneId: 'hostedZoneId',
keySigningKeyName: 'keySigningKeyName',
};
Properties
| Name | Type | Description |
|---|---|---|
| hosted | string | The HostedZoneId of the KeySigningKey resource. |
| key | string | The Name of the KeySigningKey resource. |
hostedZoneId
Type:
string
The HostedZoneId of the KeySigningKey resource.
keySigningKeyName
Type:
string
The Name of the KeySigningKey resource.

.NET
Go
Java
Python
TypeScript