public static interface CfnStreamingDistribution.TrustedSignersProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnStreamingDistribution.TrustedSignersProperty.Builder
A builder for
CfnStreamingDistribution.TrustedSignersProperty |
static class |
CfnStreamingDistribution.TrustedSignersProperty.Jsii$Proxy
An implementation for
CfnStreamingDistribution.TrustedSignersProperty |
Modifier and Type | Method and Description |
---|---|
static CfnStreamingDistribution.TrustedSignersProperty.Builder |
builder() |
default java.util.List<java.lang.String> |
getAwsAccountNumbers()
An AWS account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies.
|
java.lang.Object |
getEnabled()
This field is `true` if any of the AWS accounts have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies.
|
java.lang.Object getEnabled()
If not, this field is false
.
default java.util.List<java.lang.String> getAwsAccountNumbers()
If the AWS account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self
.
static CfnStreamingDistribution.TrustedSignersProperty.Builder builder()