interface CfnHostKeyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Transfer.CfnHostKeyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstransfer#CfnHostKeyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.transfer.CfnHostKeyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_transfer.CfnHostKeyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_transfer » CfnHostKeyMixinProps |
Properties for CfnHostKeyPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-hostkey.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_transfer as transfer } from '@aws-cdk/cfn-property-mixins';
const cfnHostKeyMixinProps: transfer.CfnHostKeyMixinProps = {
description: 'description',
hostKeyBody: 'hostKeyBody',
serverId: 'serverId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The text description for this host key. |
| host | string | The private key portion of an SSH key pair. |
| server | string | The identifier of the server that contains the host key. |
| tags? | Cfn[] | Key-value pairs that can be used to group and search for host keys. |
description?
Type:
string
(optional)
The text description for this host key.
hostKeyBody?
Type:
string
(optional)
The private key portion of an SSH key pair.
Transfer Family accepts RSA, ECDSA, and ED25519 keys.
serverId?
Type:
string
(optional)
The identifier of the server that contains the host key.
tags?
Type:
Cfn[]
(optional)
Key-value pairs that can be used to group and search for host keys.

.NET
Go
Java
Python
TypeScript