@Stability(value=Stable)
public static interface CfnStreamingDistribution.TrustedSignersProperty
extends software.amazon.jsii.JsiiSerializable
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 List<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.
|
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.
|
@Stability(value=Stable) @NotNull Object getEnabled()
If not, this field is false .
@Stability(value=Stable) @Nullable default List<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 .
@Stability(value=Stable) static CfnStreamingDistribution.TrustedSignersProperty.Builder builder()
Copyright © 2022. All rights reserved.