Skip to content

SSHKeyPairProps

Properties for defining a SSHKeyPair.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-ecs-sshkeypair

Initializer

using AlibabaCloud.SDK.ROS.CDK.Ecs;
new SSHKeyPairProps {
    object KeyPairName,
    object PublicKeyBody = null,
    object ResourceGroupId = null,
    TagsProperty[] Tags = null
};

Properties

Name Type Description
KeyPairName object Property keyPairName: The name of the key pair.
PublicKeyBody object Property publicKeyBody: SSH Public key.
ResourceGroupId object Property resourceGroupId: Resource group id.
Tags TagsProperty[] Property tags: Tags to attach to instance.

KeyPairNameRequired

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

Property keyPairName: The name of the key pair.

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


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.


ResourceGroupIdOptional

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

Property resourceGroupId: Resource group id.


TagsOptional

public TagsProperty[] Tags { get; set; }

Property tags: Tags to attach to instance.

Max support 20 tags to add during create instance. Each tag with two properties Key and Value, and Key is required.