Skip to content

KeyPairProps

Properties for defining a KeyPair.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-ens-keypair

Initializer

using AlibabaCloud.SDK.ROS.CDK.Ens;
new KeyPairProps {
    object KeyPairName,
    object PublicKeyBody = null
};

Properties

Name Type Description
KeyPairName object Property keyPairName: The name of the key pair.
PublicKeyBody object Property publicKeyBody: SSH Public key.

KeyPairNameRequired

public object KeyPairName { get; set; }
  • Type: object

Property keyPairName: The name of the key pair.

The name must conform to the following naming conventions: The name must be 2 to 128 characters in length, and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter but cannot start with http:// or https://.


PublicKeyBodyOptional

public object PublicKeyBody { get; set; }
  • Type: object

Property publicKeyBody: SSH Public key.

If PublicKeyBody is specified, existed public key body will be imported instead of creating new SSH key pair.