Interface KeyPairAttributes

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

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-12T19:34:00.959Z") @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());