aws-cdk-lib.aws_mediapackage.CfnPackagingGroupProps

interface CfnPackagingGroupProps

LanguageType name
.NETAmazon.CDK.AWS.MediaPackage.CfnPackagingGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmediapackage#CfnPackagingGroupProps
Javasoftware.amazon.awscdk.services.mediapackage.CfnPackagingGroupProps
Pythonaws_cdk.aws_mediapackage.CfnPackagingGroupProps
TypeScript aws-cdk-lib » aws_mediapackage » CfnPackagingGroupProps

Properties for defining a CfnPackagingGroup.

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-lib';
const cfnPackagingGroupProps: mediapackage.CfnPackagingGroupProps = {
  id: 'id',

  // the properties below are optional
  authorization: {
    cdnIdentifierSecret: 'cdnIdentifierSecret',
    secretsRoleArn: 'secretsRoleArn',
  },
  egressAccessLogs: {
    logGroupName: 'logGroupName',
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
idstringUnique identifier that you assign to the packaging group.
authorization?IResolvable | AuthorizationPropertyParameters for CDN authorization.
egressAccessLogs?IResolvable | LogConfigurationPropertyThe configuration parameters for egress access logging.
tags?CfnTag[]The tags to assign to the packaging group.

id

Type: string

Unique identifier that you assign to the packaging group.


authorization?

Type: IResolvable | AuthorizationProperty (optional)

Parameters for CDN authorization.


egressAccessLogs?

Type: IResolvable | LogConfigurationProperty (optional)

The configuration parameters for egress access logging.


tags?

Type: CfnTag[] (optional)

The tags to assign to the packaging group.