class M2tsSegmentationStyle
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.M2tsSegmentationStyle |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#M2tsSegmentationStyle |
Java | software.amazon.awscdk.services.medialive.alpha.M2tsSegmentationStyle |
Python | aws_cdk.aws_medialive_alpha.M2tsSegmentationStyle |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป M2tsSegmentationStyle |
How segmentation markers respond to avails truncating a segment.
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 m2tsSegmentationStyle = medialive_alpha.M2tsSegmentationStyle.of('value');
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static MAINTAIN_CADENCE | M2ts | Do not reset the segmentation cadence after a truncated segment. |
| static RESET_CADENCE | M2ts | Reset the segmentation cadence after a truncated segment. |
value
Type:
string
The underlying string value passed to CloudFormation.
static MAINTAIN_CADENCE
Type:
M2ts
Do not reset the segmentation cadence after a truncated segment.
static RESET_CADENCE
Type:
M2ts
Reset the segmentation cadence after a truncated segment.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): M2tsSegmentationStyle
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (