Interface PublicKeyProps

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

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-16T11:43:11.126Z") @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();