KeyPairType
- class aws_cdk.aws_ec2.KeyPairType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)
Bases:
Enum
The type of the key pair.
- ExampleMetadata:
infused
Example:
# vpc: ec2.Vpc # instance_type: ec2.InstanceType key_pair = ec2.KeyPair(self, "KeyPair", type=ec2.KeyPairType.ED25519, format=ec2.KeyPairFormat.PEM ) instance = ec2.Instance(self, "Instance", vpc=vpc, instance_type=instance_type, machine_image=ec2.MachineImage.latest_amazon_linux2023(), # Use the custom key pair key_pair=key_pair )
Attributes
- ED25519
An ED25519 key.
Note that ED25519 keys are not supported for Windows instances.
- RSA
An RSA key.