interface AuthorizationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage.CfnPackagingGroupPropsMixin.AuthorizationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackage#CfnPackagingGroupPropsMixin_AuthorizationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackage.CfnPackagingGroupPropsMixin.AuthorizationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediapackage.CfnPackagingGroupPropsMixin.AuthorizationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackage » 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 { aws_mediapackage as mediapackage } from '@aws-cdk/cfn-property-mixins';
const authorizationProperty: mediapackage.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