class M2tsBufferModel
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.M2tsBufferModel |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#M2tsBufferModel |
Java | software.amazon.awscdk.services.medialive.alpha.M2tsBufferModel |
Python | aws_cdk.aws_medialive_alpha.M2tsBufferModel |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป M2tsBufferModel |
The buffer model used for the transport stream.
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 m2tsBufferModel = medialive_alpha.M2tsBufferModel.of('value');
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static MULTIPLEX | M2ts | Uses the multiplex buffer model for accurate interleaving. |
| static NONE | M2ts | Can lead to lower latency, but low-memory devices might not be able to play back the stream without interruptions. |
value
Type:
string
The underlying string value passed to CloudFormation.
static MULTIPLEX
Type:
M2ts
Uses the multiplex buffer model for accurate interleaving.
static NONE
Type:
M2ts
Can lead to lower latency, but low-memory devices might not be able to play back the stream without interruptions.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): M2tsBufferModel
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (