interface OutputLockingSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.OutputLockingSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_OutputLockingSettingsProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.OutputLockingSettingsProperty |
Python | aws_cdk.aws_medialive.CfnChannel.OutputLockingSettingsProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnChannel » OutputLockingSettingsProperty |
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 outputLockingSettingsProperty: medialive.CfnChannel.OutputLockingSettingsProperty = {
disabledLockingSettings: {
customEpoch: 'customEpoch',
},
epochLockingSettings: {
customEpoch: 'customEpoch',
jamSyncTime: 'jamSyncTime',
},
pipelineLockingSettings: {
customEpoch: 'customEpoch',
pipelineLockingMethod: 'pipelineLockingMethod',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| disabled | IResolvable | Disabled | |
| epoch | IResolvable | Epoch | |
| pipeline | IResolvable | Pipeline |
disabledLockingSettings?
Type:
IResolvable | Disabled
(optional)
epochLockingSettings?
Type:
IResolvable | Epoch
(optional)
pipelineLockingSettings?
Type:
IResolvable | Pipeline
(optional)

.NET
Go
Java
Python
TypeScript