interface CdnAuthConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackageV2.CfnOriginEndpointPolicyPropsMixin.CdnAuthConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackagev2#CfnOriginEndpointPolicyPropsMixin_CdnAuthConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackagev2.CfnOriginEndpointPolicyPropsMixin.CdnAuthConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediapackagev2.CfnOriginEndpointPolicyPropsMixin.CdnAuthConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackagev2 » CfnOriginEndpointPolicyPropsMixin » CdnAuthConfigurationProperty |
The settings to enable CDN authorization headers in MediaPackage.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackagev2 as mediapackagev2 } from '@aws-cdk/cfn-property-mixins';
const cdnAuthConfigurationProperty: mediapackagev2.CfnOriginEndpointPolicyPropsMixin.CdnAuthConfigurationProperty = {
cdnIdentifierSecretArns: ['cdnIdentifierSecretArns'],
secretsRoleArn: 'secretsRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| cdn | string[] | The ARN for the secret in Secrets Manager that your CDN uses for authorization to access the endpoint. |
| secrets | string | The ARN for the IAM role that gives MediaPackage read access to Secrets Manager and AWS for CDN authorization. |
cdnIdentifierSecretArns?
Type:
string[]
(optional)
The ARN for the secret in Secrets Manager that your CDN uses for authorization to access the endpoint.
secretsRoleArn?
Type:
string
(optional)
The ARN for the IAM role that gives MediaPackage read access to Secrets Manager and AWS for CDN authorization.

.NET
Go
Java
Python
TypeScript