Interface CfnKeyGroup.KeyGroupConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnKeyGroup.KeyGroupConfigProperty.Jsii$Proxy
Enclosing class:
CfnKeyGroup

@Stability(Stable) public static interface CfnKeyGroup.KeyGroupConfigProperty extends software.amazon.jsii.JsiiSerializable
A key group configuration.

A key group contains a list of public keys that you can use with CloudFront signed URLs and signed cookies .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cloudfront.*;
 KeyGroupConfigProperty keyGroupConfigProperty = KeyGroupConfigProperty.builder()
         .items(List.of("items"))
         .name("name")
         // the properties below are optional
         .comment("comment")
         .build();