interface TrustedSignersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnStreamingDistributionPropsMixin.TrustedSignersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnStreamingDistributionPropsMixin_TrustedSignersProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnStreamingDistributionPropsMixin.TrustedSignersProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnStreamingDistributionPropsMixin.TrustedSignersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnStreamingDistributionPropsMixin » TrustedSignersProperty |
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 { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const trustedSignersProperty: cloudfront_mixins.CfnStreamingDistributionPropsMixin.TrustedSignersProperty = {
awsAccountNumbers: ['awsAccountNumbers'],
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string[] | An AWS account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. |
| enabled? | boolean | IResolvable | This field is true if any of the AWS accounts in the list are configured as trusted signers. |
awsAccountNumbers?
Type:
string[]
(optional)
An AWS account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies.
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 .
enabled?
Type:
boolean | IResolvable
(optional)
This field is true if any of the AWS accounts in the list are configured as trusted signers.
If not, this field is false .

.NET
Go
Java
Python
TypeScript