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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnKeyGroup.KeyGroupConfigProperty
static final class
An implementation forCfnKeyGroup.KeyGroupConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getItems
A list of the identifiers of the public keys in the key group. -
getName
A name to identify the key group. -
getComment
A comment to describe the key group.The comment cannot be longer than 128 characters.
-
builder
-