interface AuthorizationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage.CfnOriginEndpointPropsMixin.AuthorizationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackage#CfnOriginEndpointPropsMixin_AuthorizationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackage.CfnOriginEndpointPropsMixin.AuthorizationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediapackage.CfnOriginEndpointPropsMixin.AuthorizationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackage » CfnOriginEndpointPropsMixin » AuthorizationProperty |
Parameters for enabling CDN authorization on the endpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackage as mediapackage } from '@aws-cdk/cfn-property-mixins';
const authorizationProperty: mediapackage.CfnOriginEndpointPropsMixin.AuthorizationProperty = {
cdnIdentifierSecret: 'cdnIdentifierSecret',
secretsRoleArn: 'secretsRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| cdn | string | The Amazon Resource Name (ARN) for the secret in AWS Secrets Manager that your Content Delivery Network (CDN) uses for authorization to access your endpoint. |
| secrets | string | The Amazon Resource Name (ARN) for the IAM role that allows AWS Elemental MediaPackage to communicate with AWS Secrets Manager . |
cdnIdentifierSecret?
Type:
string
(optional)
The Amazon Resource Name (ARN) for the secret in AWS Secrets Manager that your Content Delivery Network (CDN) uses for authorization to access your endpoint.
secretsRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for the IAM role that allows AWS Elemental MediaPackage to communicate with AWS Secrets Manager .

.NET
Go
Java
Python
TypeScript