Interface CfnStreamingDistribution.TrustedSignersProperty

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

@Stability(Stable) public static interface CfnStreamingDistribution.TrustedSignersProperty extends software.amazon.jsii.JsiiSerializable
A list of AWS accounts whose public keys CloudFront can use to verify the signatures of 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.*;
 TrustedSignersProperty trustedSignersProperty = TrustedSignersProperty.builder()
         .enabled(false)
         // the properties below are optional
         .awsAccountNumbers(List.of("awsAccountNumbers"))
         .build();