interface MediaPackageV2GroupSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.MediaPackageV2GroupSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_MediaPackageV2GroupSettingsProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.MediaPackageV2GroupSettingsProperty |
Python | aws_cdk.aws_medialive.CfnChannel.MediaPackageV2GroupSettingsProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnChannel » MediaPackageV2GroupSettingsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const mediaPackageV2GroupSettingsProperty: medialive.CfnChannel.MediaPackageV2GroupSettingsProperty = {
additionalDestinations: [{
destination: {
destinationRefId: 'destinationRefId',
},
}],
captionLanguageMappings: [{
captionChannel: 123,
languageCode: 'languageCode',
languageDescription: 'languageDescription',
}],
id3Behavior: 'id3Behavior',
klvBehavior: 'klvBehavior',
nielsenId3Behavior: 'nielsenId3Behavior',
scte35Type: 'scte35Type',
segmentLength: 123,
segmentLengthUnits: 'segmentLengthUnits',
timedMetadataId3Frame: 'timedMetadataId3Frame',
timedMetadataId3Period: 123,
timedMetadataPassthrough: 'timedMetadataPassthrough',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | IResolvable | (IResolvable | Media)[] | |
| caption | IResolvable | (IResolvable | Caption)[] | |
| id3 | string | |
| klv | string | |
| nielsen | string | |
| scte35 | string | |
| segment | number | |
| segment | string | |
| timed | string | |
| timed | number | |
| timed | string |
additionalDestinations?
Type:
IResolvable | (IResolvable | Media)[]
(optional)
captionLanguageMappings?
Type:
IResolvable | (IResolvable | Caption)[]
(optional)
id3Behavior?
Type:
string
(optional)
klvBehavior?
Type:
string
(optional)
nielsenId3Behavior?
Type:
string
(optional)
scte35Type?
Type:
string
(optional)
segmentLength?
Type:
number
(optional)
segmentLengthUnits?
Type:
string
(optional)
timedMetadataId3Frame?
Type:
string
(optional)
timedMetadataId3Period?
Type:
number
(optional)
timedMetadataPassthrough?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript