interface KeySigningKeyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Route53.KeySigningKeyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsroute53#KeySigningKeyReference |
Java | software.amazon.awscdk.interfaces.route53.KeySigningKeyReference |
Python | aws_cdk.interfaces.aws_route53.KeySigningKeyReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_route53 } from 'aws-cdk-lib/interfaces';
const keySigningKeyReference: interfaces_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