Interface KeyPairAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
KeyPairAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.129.0 (build eaca441)", date="2026-05-13T16:55:08.118Z") @Stability(Stable) public interface KeyPairAttributes extends software.amazon.jsii.JsiiSerializable
Attributes of a Key Pair.

Example:

 IKeyPair keyPair = KeyPair.fromKeyPairAttributes(this, "KeyPair", KeyPairAttributes.builder()
         .keyPairName("the-keypair-name")
         .type(KeyPairType.RSA)
         .build());