Interface PublicKeyProps

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

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-08-20T12:34:39.403Z") @Stability(Stable) public interface PublicKeyProps extends software.amazon.jsii.JsiiSerializable
Properties for creating a Public Key.

Example:

 // Create a key group to use with CloudFront signed URLs and signed cookies.
 // Create a key group to use with CloudFront signed URLs and signed cookies.
 KeyGroup.Builder.create(this, "MyKeyGroup")
         .items(List.of(
             PublicKey.Builder.create(this, "MyPublicKey")
                     .encodedKey("...")
                     .build()))
         .build();