class M2tsSegmentationMarkers
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.M2tsSegmentationMarkers |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#M2tsSegmentationMarkers |
Java | software.amazon.awscdk.services.medialive.alpha.M2tsSegmentationMarkers |
Python | aws_cdk.aws_medialive_alpha.M2tsSegmentationMarkers |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป M2tsSegmentationMarkers |
The type of segmentation markers to insert.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
const m2tsSegmentationMarkers = medialive_alpha.M2tsSegmentationMarkers.EBP;
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static EBP | M2ts | Add Encoder Boundary Point information (OC-SP-EBP-I01-130118). |
| static EBP_LEGACY | M2ts | Add Encoder Boundary Point information using the legacy proprietary format. |
| static NONE | M2ts | No segmentation markers. |
| static PSI_SEGSTART | M2ts | Insert PAT and PMT tables at the start of segments. |
| static RAI_ADAPT | M2ts | Set the RAI bit and add the current timecode in the private data bytes. |
| static RAI_SEGSTART | M2ts | Set the Random Access Indicator (RAI) bit in the adaptation field. |
value
Type:
string
The underlying string value passed to CloudFormation.
static EBP
Type:
M2ts
Add Encoder Boundary Point information (OC-SP-EBP-I01-130118).
static EBP_LEGACY
Type:
M2ts
Add Encoder Boundary Point information using the legacy proprietary format.
static NONE
Type:
M2ts
No segmentation markers.
static PSI_SEGSTART
Type:
M2ts
Insert PAT and PMT tables at the start of segments.
static RAI_ADAPT
Type:
M2ts
Set the RAI bit and add the current timecode in the private data bytes.
static RAI_SEGSTART
Type:
M2ts
Set the Random Access Indicator (RAI) bit in the adaptation field.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): M2tsSegmentationMarkers
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (