interface HostKeyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Transfer.HostKeyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awstransfer#HostKeyReference |
Java | software.amazon.awscdk.interfaces.transfer.HostKeyReference |
Python | aws_cdk.interfaces.aws_transfer.HostKeyReference |
TypeScript | aws-cdk-lib » interfaces » aws_transfer » HostKeyReference |
A reference to a HostKey resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_transfer as interfaces_transfer } from 'aws-cdk-lib/interfaces';
const hostKeyReference: interfaces_transfer.HostKeyReference = {
hostKeyArn: 'hostKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| host | string | The Arn of the HostKey resource. |
hostKeyArn
Type:
string
The Arn of the HostKey resource.

.NET
Go
Java
Python
TypeScript