Show / Hide Table of Contents

Enum KeyPairType

The type of the key pair.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum KeyPairType
Syntax (vb)
Public Enum KeyPairType
Remarks

ExampleMetadata: infused

Examples
Vpc vpc;
            InstanceType instanceType;


            var keyPair = new KeyPair(this, "KeyPair", new KeyPairProps {
                Type = KeyPairType.ED25519,
                Format = KeyPairFormat.PEM
            });
            var instance = new Instance(this, "Instance", new InstanceProps {
                Vpc = vpc,
                InstanceType = instanceType,
                MachineImage = MachineImage.LatestAmazonLinux2023(),
                // Use the custom key pair
                KeyPair = keyPair
            });

Synopsis

Fields

ED25519

An ED25519 key.

RSA

An RSA key.

Fields

Name Description
ED25519

An ED25519 key.

RSA

An RSA key.

Back to top Generated by DocFX