interface AuthorizationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackage.Mixins.CfnPackagingGroupPropsMixin.AuthorizationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackage/mixins#CfnPackagingGroupPropsMixin_AuthorizationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediapackage.mixins.CfnPackagingGroupPropsMixin.AuthorizationProperty |
Python | aws_cdk.mixins_preview.aws_mediapackage.mixins.CfnPackagingGroupPropsMixin.AuthorizationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackage » mixins » CfnPackagingGroupPropsMixin » AuthorizationProperty |
Parameters for enabling CDN authorization.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediapackage_mixins } from '@aws-cdk/mixins-preview/aws-mediapackage';
const authorizationProperty: mediapackage_mixins.CfnPackagingGroupPropsMixin.AuthorizationProperty = {
cdnIdentifierSecret: 'cdnIdentifierSecret',
secretsRoleArn: 'secretsRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| cdn | string | The Amazon Resource Name (ARN) for the secret in AWS Secrets Manager that is used for CDN authorization. |
| 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 is used for CDN authorization.
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