@aws-sdk/client-medialive 3.731.1 → 3.733.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +50 -6
- package/dist-es/models/models_1.js +4 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +38 -0
- package/dist-types/commands/BatchUpdateScheduleCommand.d.ts +21 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +4 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +2 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +2 -0
- package/dist-types/commands/DescribeScheduleCommand.d.ts +7 -0
- package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +2 -0
- package/dist-types/commands/StartChannelCommand.d.ts +2 -0
- package/dist-types/commands/StopChannelCommand.d.ts +2 -0
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +2 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +4 -0
- package/dist-types/models/models_1.d.ts +59 -34
- package/dist-types/models/models_2.d.ts +35 -1
- package/dist-types/ts3.4/models/models_1.d.ts +19 -11
- package/dist-types/ts3.4/models/models_2.d.ts +11 -3
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -82,6 +82,7 @@ __export(src_exports, {
|
|
|
82
82
|
CloudWatchAlarmTemplateTreatMissingData: () => CloudWatchAlarmTemplateTreatMissingData,
|
|
83
83
|
ClusterState: () => ClusterState,
|
|
84
84
|
ClusterType: () => ClusterType,
|
|
85
|
+
CmafId3Behavior: () => CmafId3Behavior,
|
|
85
86
|
CmafIngestSegmentLengthUnits: () => CmafIngestSegmentLengthUnits,
|
|
86
87
|
CmafKLVBehavior: () => CmafKLVBehavior,
|
|
87
88
|
CmafNielsenId3Behavior: () => CmafNielsenId3Behavior,
|
|
@@ -768,6 +769,10 @@ var S3CannedAcl = {
|
|
|
768
769
|
BUCKET_OWNER_READ: "BUCKET_OWNER_READ",
|
|
769
770
|
PUBLIC_READ: "PUBLIC_READ"
|
|
770
771
|
};
|
|
772
|
+
var CmafId3Behavior = {
|
|
773
|
+
DISABLED: "DISABLED",
|
|
774
|
+
ENABLED: "ENABLED"
|
|
775
|
+
};
|
|
771
776
|
var CmafKLVBehavior = {
|
|
772
777
|
NO_PASSTHROUGH: "NO_PASSTHROUGH",
|
|
773
778
|
PASSTHROUGH: "PASSTHROUGH"
|
|
@@ -1672,10 +1677,6 @@ var InputLossImageType = {
|
|
|
1672
1677
|
COLOR: "COLOR",
|
|
1673
1678
|
SLATE: "SLATE"
|
|
1674
1679
|
};
|
|
1675
|
-
var GlobalConfigurationOutputLockingMode = {
|
|
1676
|
-
EPOCH_LOCKING: "EPOCH_LOCKING",
|
|
1677
|
-
PIPELINE_LOCKING: "PIPELINE_LOCKING"
|
|
1678
|
-
};
|
|
1679
1680
|
|
|
1680
1681
|
// src/protocols/Aws_restJson1.ts
|
|
1681
1682
|
var se_AcceptInputDeviceTransferCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -6165,6 +6166,8 @@ var se_ClusterNetworkSettingsUpdateRequest = /* @__PURE__ */ __name((input, cont
|
|
|
6165
6166
|
var se_CmafIngestGroupSettings = /* @__PURE__ */ __name((input, context) => {
|
|
6166
6167
|
return (0, import_smithy_client.take)(input, {
|
|
6167
6168
|
destination: [, (_) => se_OutputLocationRef(_, context), `Destination`],
|
|
6169
|
+
id3Behavior: [, , `Id3Behavior`],
|
|
6170
|
+
id3NameModifier: [, , `Id3NameModifier`],
|
|
6168
6171
|
klvBehavior: [, , `KlvBehavior`],
|
|
6169
6172
|
klvNameModifier: [, , `KlvNameModifier`],
|
|
6170
6173
|
nielsenId3Behavior: [, , `NielsenId3Behavior`],
|
|
@@ -6677,6 +6680,12 @@ var se_HlsWebdavSettings = /* @__PURE__ */ __name((input, context) => {
|
|
|
6677
6680
|
restartDelay: [, , `RestartDelay`]
|
|
6678
6681
|
});
|
|
6679
6682
|
}, "se_HlsWebdavSettings");
|
|
6683
|
+
var se_Id3SegmentTaggingScheduleActionSettings = /* @__PURE__ */ __name((input, context) => {
|
|
6684
|
+
return (0, import_smithy_client.take)(input, {
|
|
6685
|
+
id3: [, , `Id3`],
|
|
6686
|
+
tag: [, , `Tag`]
|
|
6687
|
+
});
|
|
6688
|
+
}, "se_Id3SegmentTaggingScheduleActionSettings");
|
|
6680
6689
|
var se_InputAttachment = /* @__PURE__ */ __name((input, context) => {
|
|
6681
6690
|
return (0, import_smithy_client.take)(input, {
|
|
6682
6691
|
automaticInputFailoverSettings: [
|
|
@@ -7368,6 +7377,11 @@ var se_ScheduleActionSettings = /* @__PURE__ */ __name((input, context) => {
|
|
|
7368
7377
|
(_) => se_HlsTimedMetadataScheduleActionSettings(_, context),
|
|
7369
7378
|
`HlsTimedMetadataSettings`
|
|
7370
7379
|
],
|
|
7380
|
+
id3SegmentTaggingSettings: [
|
|
7381
|
+
,
|
|
7382
|
+
(_) => se_Id3SegmentTaggingScheduleActionSettings(_, context),
|
|
7383
|
+
`Id3SegmentTaggingSettings`
|
|
7384
|
+
],
|
|
7371
7385
|
inputPrepareSettings: [, (_) => se_InputPrepareScheduleActionSettings(_, context), `InputPrepareSettings`],
|
|
7372
7386
|
inputSwitchSettings: [, (_) => se_InputSwitchScheduleActionSettings(_, context), `InputSwitchSettings`],
|
|
7373
7387
|
motionGraphicsImageActivateSettings: [
|
|
@@ -7412,7 +7426,8 @@ var se_ScheduleActionSettings = /* @__PURE__ */ __name((input, context) => {
|
|
|
7412
7426
|
,
|
|
7413
7427
|
(_) => se_StaticImageOutputDeactivateScheduleActionSettings(_, context),
|
|
7414
7428
|
`StaticImageOutputDeactivateSettings`
|
|
7415
|
-
]
|
|
7429
|
+
],
|
|
7430
|
+
timedMetadataSettings: [, (_) => se_TimedMetadataScheduleActionSettings(_, context), `TimedMetadataSettings`]
|
|
7416
7431
|
});
|
|
7417
7432
|
}, "se_ScheduleActionSettings");
|
|
7418
7433
|
var se_ScheduleActionStartSettings = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -7651,6 +7666,11 @@ var se_TimecodeConfig = /* @__PURE__ */ __name((input, context) => {
|
|
|
7651
7666
|
syncThreshold: [, , `SyncThreshold`]
|
|
7652
7667
|
});
|
|
7653
7668
|
}, "se_TimecodeConfig");
|
|
7669
|
+
var se_TimedMetadataScheduleActionSettings = /* @__PURE__ */ __name((input, context) => {
|
|
7670
|
+
return (0, import_smithy_client.take)(input, {
|
|
7671
|
+
id3: [, , `Id3`]
|
|
7672
|
+
});
|
|
7673
|
+
}, "se_TimedMetadataScheduleActionSettings");
|
|
7654
7674
|
var se_TtmlDestinationSettings = /* @__PURE__ */ __name((input, context) => {
|
|
7655
7675
|
return (0, import_smithy_client.take)(input, {
|
|
7656
7676
|
styleControl: [, , `StyleControl`]
|
|
@@ -8594,6 +8614,8 @@ var de_ClusterNetworkSettings = /* @__PURE__ */ __name((output, context) => {
|
|
|
8594
8614
|
var de_CmafIngestGroupSettings = /* @__PURE__ */ __name((output, context) => {
|
|
8595
8615
|
return (0, import_smithy_client.take)(output, {
|
|
8596
8616
|
Destination: [, (_) => de_OutputLocationRef(_, context), `destination`],
|
|
8617
|
+
Id3Behavior: [, import_smithy_client.expectString, `id3Behavior`],
|
|
8618
|
+
Id3NameModifier: [, import_smithy_client.expectString, `id3NameModifier`],
|
|
8597
8619
|
KlvBehavior: [, import_smithy_client.expectString, `klvBehavior`],
|
|
8598
8620
|
KlvNameModifier: [, import_smithy_client.expectString, `klvNameModifier`],
|
|
8599
8621
|
NielsenId3Behavior: [, import_smithy_client.expectString, `nielsenId3Behavior`],
|
|
@@ -9200,6 +9222,12 @@ var de_HlsWebdavSettings = /* @__PURE__ */ __name((output, context) => {
|
|
|
9200
9222
|
RestartDelay: [, import_smithy_client.expectInt32, `restartDelay`]
|
|
9201
9223
|
});
|
|
9202
9224
|
}, "de_HlsWebdavSettings");
|
|
9225
|
+
var de_Id3SegmentTaggingScheduleActionSettings = /* @__PURE__ */ __name((output, context) => {
|
|
9226
|
+
return (0, import_smithy_client.take)(output, {
|
|
9227
|
+
Id3: [, import_smithy_client.expectString, `id3`],
|
|
9228
|
+
Tag: [, import_smithy_client.expectString, `tag`]
|
|
9229
|
+
});
|
|
9230
|
+
}, "de_Id3SegmentTaggingScheduleActionSettings");
|
|
9203
9231
|
var de_Input = /* @__PURE__ */ __name((output, context) => {
|
|
9204
9232
|
return (0, import_smithy_client.take)(output, {
|
|
9205
9233
|
Arn: [, import_smithy_client.expectString, `arn`],
|
|
@@ -10076,6 +10104,11 @@ var de_ScheduleActionSettings = /* @__PURE__ */ __name((output, context) => {
|
|
|
10076
10104
|
(_) => de_HlsTimedMetadataScheduleActionSettings(_, context),
|
|
10077
10105
|
`hlsTimedMetadataSettings`
|
|
10078
10106
|
],
|
|
10107
|
+
Id3SegmentTaggingSettings: [
|
|
10108
|
+
,
|
|
10109
|
+
(_) => de_Id3SegmentTaggingScheduleActionSettings(_, context),
|
|
10110
|
+
`id3SegmentTaggingSettings`
|
|
10111
|
+
],
|
|
10079
10112
|
InputPrepareSettings: [, (_) => de_InputPrepareScheduleActionSettings(_, context), `inputPrepareSettings`],
|
|
10080
10113
|
InputSwitchSettings: [, (_) => de_InputSwitchScheduleActionSettings(_, context), `inputSwitchSettings`],
|
|
10081
10114
|
MotionGraphicsImageActivateSettings: [
|
|
@@ -10120,7 +10153,8 @@ var de_ScheduleActionSettings = /* @__PURE__ */ __name((output, context) => {
|
|
|
10120
10153
|
,
|
|
10121
10154
|
(_) => de_StaticImageOutputDeactivateScheduleActionSettings(_, context),
|
|
10122
10155
|
`staticImageOutputDeactivateSettings`
|
|
10123
|
-
]
|
|
10156
|
+
],
|
|
10157
|
+
TimedMetadataSettings: [, (_) => de_TimedMetadataScheduleActionSettings(_, context), `timedMetadataSettings`]
|
|
10124
10158
|
});
|
|
10125
10159
|
}, "de_ScheduleActionSettings");
|
|
10126
10160
|
var de_ScheduleActionStartSettings = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -10392,6 +10426,11 @@ var de_TimecodeConfig = /* @__PURE__ */ __name((output, context) => {
|
|
|
10392
10426
|
SyncThreshold: [, import_smithy_client.expectInt32, `syncThreshold`]
|
|
10393
10427
|
});
|
|
10394
10428
|
}, "de_TimecodeConfig");
|
|
10429
|
+
var de_TimedMetadataScheduleActionSettings = /* @__PURE__ */ __name((output, context) => {
|
|
10430
|
+
return (0, import_smithy_client.take)(output, {
|
|
10431
|
+
Id3: [, import_smithy_client.expectString, `id3`]
|
|
10432
|
+
});
|
|
10433
|
+
}, "de_TimedMetadataScheduleActionSettings");
|
|
10395
10434
|
var de_TransferringInputDeviceSummary = /* @__PURE__ */ __name((output, context) => {
|
|
10396
10435
|
return (0, import_smithy_client.take)(output, {
|
|
10397
10436
|
Id: [, import_smithy_client.expectString, `id`],
|
|
@@ -11273,6 +11312,10 @@ var DescribeInputDeviceCommand = class extends import_smithy_client.Command.clas
|
|
|
11273
11312
|
|
|
11274
11313
|
|
|
11275
11314
|
// src/models/models_2.ts
|
|
11315
|
+
var GlobalConfigurationOutputLockingMode = {
|
|
11316
|
+
EPOCH_LOCKING: "EPOCH_LOCKING",
|
|
11317
|
+
PIPELINE_LOCKING: "PIPELINE_LOCKING"
|
|
11318
|
+
};
|
|
11276
11319
|
var GlobalConfigurationOutputTimingSource = {
|
|
11277
11320
|
INPUT_CLOCK: "INPUT_CLOCK",
|
|
11278
11321
|
SYSTEM_CLOCK: "SYSTEM_CLOCK"
|
|
@@ -14798,6 +14841,7 @@ var M2tsTimedMetadataBehavior = {
|
|
|
14798
14841
|
SrtEncryptionType,
|
|
14799
14842
|
FecOutputIncludeFec,
|
|
14800
14843
|
S3CannedAcl,
|
|
14844
|
+
CmafId3Behavior,
|
|
14801
14845
|
CmafKLVBehavior,
|
|
14802
14846
|
CmafNielsenId3Behavior,
|
|
14803
14847
|
Scte35Type,
|
|
@@ -64,6 +64,10 @@ export const S3CannedAcl = {
|
|
|
64
64
|
BUCKET_OWNER_READ: "BUCKET_OWNER_READ",
|
|
65
65
|
PUBLIC_READ: "PUBLIC_READ",
|
|
66
66
|
};
|
|
67
|
+
export const CmafId3Behavior = {
|
|
68
|
+
DISABLED: "DISABLED",
|
|
69
|
+
ENABLED: "ENABLED",
|
|
70
|
+
};
|
|
67
71
|
export const CmafKLVBehavior = {
|
|
68
72
|
NO_PASSTHROUGH: "NO_PASSTHROUGH",
|
|
69
73
|
PASSTHROUGH: "PASSTHROUGH",
|
|
@@ -874,7 +878,3 @@ export const InputLossImageType = {
|
|
|
874
878
|
COLOR: "COLOR",
|
|
875
879
|
SLATE: "SLATE",
|
|
876
880
|
};
|
|
877
|
-
export const GlobalConfigurationOutputLockingMode = {
|
|
878
|
-
EPOCH_LOCKING: "EPOCH_LOCKING",
|
|
879
|
-
PIPELINE_LOCKING: "PIPELINE_LOCKING",
|
|
880
|
-
};
|
|
@@ -4481,6 +4481,8 @@ const se_ClusterNetworkSettingsUpdateRequest = (input, context) => {
|
|
|
4481
4481
|
const se_CmafIngestGroupSettings = (input, context) => {
|
|
4482
4482
|
return take(input, {
|
|
4483
4483
|
destination: [, (_) => se_OutputLocationRef(_, context), `Destination`],
|
|
4484
|
+
id3Behavior: [, , `Id3Behavior`],
|
|
4485
|
+
id3NameModifier: [, , `Id3NameModifier`],
|
|
4484
4486
|
klvBehavior: [, , `KlvBehavior`],
|
|
4485
4487
|
klvNameModifier: [, , `KlvNameModifier`],
|
|
4486
4488
|
nielsenId3Behavior: [, , `NielsenId3Behavior`],
|
|
@@ -4993,6 +4995,12 @@ const se_HlsWebdavSettings = (input, context) => {
|
|
|
4993
4995
|
restartDelay: [, , `RestartDelay`],
|
|
4994
4996
|
});
|
|
4995
4997
|
};
|
|
4998
|
+
const se_Id3SegmentTaggingScheduleActionSettings = (input, context) => {
|
|
4999
|
+
return take(input, {
|
|
5000
|
+
id3: [, , `Id3`],
|
|
5001
|
+
tag: [, , `Tag`],
|
|
5002
|
+
});
|
|
5003
|
+
};
|
|
4996
5004
|
const se_InputAttachment = (input, context) => {
|
|
4997
5005
|
return take(input, {
|
|
4998
5006
|
automaticInputFailoverSettings: [
|
|
@@ -5684,6 +5692,11 @@ const se_ScheduleActionSettings = (input, context) => {
|
|
|
5684
5692
|
(_) => se_HlsTimedMetadataScheduleActionSettings(_, context),
|
|
5685
5693
|
`HlsTimedMetadataSettings`,
|
|
5686
5694
|
],
|
|
5695
|
+
id3SegmentTaggingSettings: [
|
|
5696
|
+
,
|
|
5697
|
+
(_) => se_Id3SegmentTaggingScheduleActionSettings(_, context),
|
|
5698
|
+
`Id3SegmentTaggingSettings`,
|
|
5699
|
+
],
|
|
5687
5700
|
inputPrepareSettings: [, (_) => se_InputPrepareScheduleActionSettings(_, context), `InputPrepareSettings`],
|
|
5688
5701
|
inputSwitchSettings: [, (_) => se_InputSwitchScheduleActionSettings(_, context), `InputSwitchSettings`],
|
|
5689
5702
|
motionGraphicsImageActivateSettings: [
|
|
@@ -5729,6 +5742,7 @@ const se_ScheduleActionSettings = (input, context) => {
|
|
|
5729
5742
|
(_) => se_StaticImageOutputDeactivateScheduleActionSettings(_, context),
|
|
5730
5743
|
`StaticImageOutputDeactivateSettings`,
|
|
5731
5744
|
],
|
|
5745
|
+
timedMetadataSettings: [, (_) => se_TimedMetadataScheduleActionSettings(_, context), `TimedMetadataSettings`],
|
|
5732
5746
|
});
|
|
5733
5747
|
};
|
|
5734
5748
|
const se_ScheduleActionStartSettings = (input, context) => {
|
|
@@ -5967,6 +5981,11 @@ const se_TimecodeConfig = (input, context) => {
|
|
|
5967
5981
|
syncThreshold: [, , `SyncThreshold`],
|
|
5968
5982
|
});
|
|
5969
5983
|
};
|
|
5984
|
+
const se_TimedMetadataScheduleActionSettings = (input, context) => {
|
|
5985
|
+
return take(input, {
|
|
5986
|
+
id3: [, , `Id3`],
|
|
5987
|
+
});
|
|
5988
|
+
};
|
|
5970
5989
|
const se_TtmlDestinationSettings = (input, context) => {
|
|
5971
5990
|
return take(input, {
|
|
5972
5991
|
styleControl: [, , `StyleControl`],
|
|
@@ -7038,6 +7057,8 @@ const de_ClusterNetworkSettings = (output, context) => {
|
|
|
7038
7057
|
const de_CmafIngestGroupSettings = (output, context) => {
|
|
7039
7058
|
return take(output, {
|
|
7040
7059
|
Destination: [, (_) => de_OutputLocationRef(_, context), `destination`],
|
|
7060
|
+
Id3Behavior: [, __expectString, `id3Behavior`],
|
|
7061
|
+
Id3NameModifier: [, __expectString, `id3NameModifier`],
|
|
7041
7062
|
KlvBehavior: [, __expectString, `klvBehavior`],
|
|
7042
7063
|
KlvNameModifier: [, __expectString, `klvNameModifier`],
|
|
7043
7064
|
NielsenId3Behavior: [, __expectString, `nielsenId3Behavior`],
|
|
@@ -7644,6 +7665,12 @@ const de_HlsWebdavSettings = (output, context) => {
|
|
|
7644
7665
|
RestartDelay: [, __expectInt32, `restartDelay`],
|
|
7645
7666
|
});
|
|
7646
7667
|
};
|
|
7668
|
+
const de_Id3SegmentTaggingScheduleActionSettings = (output, context) => {
|
|
7669
|
+
return take(output, {
|
|
7670
|
+
Id3: [, __expectString, `id3`],
|
|
7671
|
+
Tag: [, __expectString, `tag`],
|
|
7672
|
+
});
|
|
7673
|
+
};
|
|
7647
7674
|
const de_Input = (output, context) => {
|
|
7648
7675
|
return take(output, {
|
|
7649
7676
|
Arn: [, __expectString, `arn`],
|
|
@@ -8520,6 +8547,11 @@ const de_ScheduleActionSettings = (output, context) => {
|
|
|
8520
8547
|
(_) => de_HlsTimedMetadataScheduleActionSettings(_, context),
|
|
8521
8548
|
`hlsTimedMetadataSettings`,
|
|
8522
8549
|
],
|
|
8550
|
+
Id3SegmentTaggingSettings: [
|
|
8551
|
+
,
|
|
8552
|
+
(_) => de_Id3SegmentTaggingScheduleActionSettings(_, context),
|
|
8553
|
+
`id3SegmentTaggingSettings`,
|
|
8554
|
+
],
|
|
8523
8555
|
InputPrepareSettings: [, (_) => de_InputPrepareScheduleActionSettings(_, context), `inputPrepareSettings`],
|
|
8524
8556
|
InputSwitchSettings: [, (_) => de_InputSwitchScheduleActionSettings(_, context), `inputSwitchSettings`],
|
|
8525
8557
|
MotionGraphicsImageActivateSettings: [
|
|
@@ -8565,6 +8597,7 @@ const de_ScheduleActionSettings = (output, context) => {
|
|
|
8565
8597
|
(_) => de_StaticImageOutputDeactivateScheduleActionSettings(_, context),
|
|
8566
8598
|
`staticImageOutputDeactivateSettings`,
|
|
8567
8599
|
],
|
|
8600
|
+
TimedMetadataSettings: [, (_) => de_TimedMetadataScheduleActionSettings(_, context), `timedMetadataSettings`],
|
|
8568
8601
|
});
|
|
8569
8602
|
};
|
|
8570
8603
|
const de_ScheduleActionStartSettings = (output, context) => {
|
|
@@ -8836,6 +8869,11 @@ const de_TimecodeConfig = (output, context) => {
|
|
|
8836
8869
|
SyncThreshold: [, __expectInt32, `syncThreshold`],
|
|
8837
8870
|
});
|
|
8838
8871
|
};
|
|
8872
|
+
const de_TimedMetadataScheduleActionSettings = (output, context) => {
|
|
8873
|
+
return take(output, {
|
|
8874
|
+
Id3: [, __expectString, `id3`],
|
|
8875
|
+
});
|
|
8876
|
+
};
|
|
8839
8877
|
const de_TransferringInputDeviceSummary = (output, context) => {
|
|
8840
8878
|
return take(output, {
|
|
8841
8879
|
Id: [, __expectString, `id`],
|
|
@@ -177,6 +177,13 @@ declare const BatchUpdateScheduleCommand_base: {
|
|
|
177
177
|
* "STRING_VALUE",
|
|
178
178
|
* ],
|
|
179
179
|
* },
|
|
180
|
+
* Id3SegmentTaggingSettings: { // Id3SegmentTaggingScheduleActionSettings
|
|
181
|
+
* Id3: "STRING_VALUE",
|
|
182
|
+
* Tag: "STRING_VALUE",
|
|
183
|
+
* },
|
|
184
|
+
* TimedMetadataSettings: { // TimedMetadataScheduleActionSettings
|
|
185
|
+
* Id3: "STRING_VALUE", // required
|
|
186
|
+
* },
|
|
180
187
|
* },
|
|
181
188
|
* ScheduleActionStartSettings: { // ScheduleActionStartSettings
|
|
182
189
|
* FixedModeScheduleActionStartSettings: { // FixedModeScheduleActionStartSettings
|
|
@@ -341,6 +348,13 @@ declare const BatchUpdateScheduleCommand_base: {
|
|
|
341
348
|
* // "STRING_VALUE",
|
|
342
349
|
* // ],
|
|
343
350
|
* // },
|
|
351
|
+
* // Id3SegmentTaggingSettings: { // Id3SegmentTaggingScheduleActionSettings
|
|
352
|
+
* // Id3: "STRING_VALUE",
|
|
353
|
+
* // Tag: "STRING_VALUE",
|
|
354
|
+
* // },
|
|
355
|
+
* // TimedMetadataSettings: { // TimedMetadataScheduleActionSettings
|
|
356
|
+
* // Id3: "STRING_VALUE", // required
|
|
357
|
+
* // },
|
|
344
358
|
* // },
|
|
345
359
|
* // ScheduleActionStartSettings: { // ScheduleActionStartSettings
|
|
346
360
|
* // FixedModeScheduleActionStartSettings: { // FixedModeScheduleActionStartSettings
|
|
@@ -490,6 +504,13 @@ declare const BatchUpdateScheduleCommand_base: {
|
|
|
490
504
|
* // Layer: Number("int"),
|
|
491
505
|
* // OutputNames: "<__listOf__string>", // required
|
|
492
506
|
* // },
|
|
507
|
+
* // Id3SegmentTaggingSettings: {
|
|
508
|
+
* // Id3: "STRING_VALUE",
|
|
509
|
+
* // Tag: "STRING_VALUE",
|
|
510
|
+
* // },
|
|
511
|
+
* // TimedMetadataSettings: {
|
|
512
|
+
* // Id3: "STRING_VALUE", // required
|
|
513
|
+
* // },
|
|
493
514
|
* // },
|
|
494
515
|
* // ScheduleActionStartSettings: {
|
|
495
516
|
* // FixedModeScheduleActionStartSettings: {
|
|
@@ -523,6 +523,8 @@ declare const CreateChannelCommand_base: {
|
|
|
523
523
|
* KlvNameModifier: "STRING_VALUE",
|
|
524
524
|
* NielsenId3NameModifier: "STRING_VALUE",
|
|
525
525
|
* Scte35NameModifier: "STRING_VALUE",
|
|
526
|
+
* Id3Behavior: "DISABLED" || "ENABLED",
|
|
527
|
+
* Id3NameModifier: "STRING_VALUE",
|
|
526
528
|
* },
|
|
527
529
|
* SrtGroupSettings: { // SrtGroupSettings
|
|
528
530
|
* InputLossAction: "DROP_PROGRAM" || "DROP_TS" || "EMIT_PROGRAM",
|
|
@@ -1722,6 +1724,8 @@ declare const CreateChannelCommand_base: {
|
|
|
1722
1724
|
* // KlvNameModifier: "STRING_VALUE",
|
|
1723
1725
|
* // NielsenId3NameModifier: "STRING_VALUE",
|
|
1724
1726
|
* // Scte35NameModifier: "STRING_VALUE",
|
|
1727
|
+
* // Id3Behavior: "DISABLED" || "ENABLED",
|
|
1728
|
+
* // Id3NameModifier: "STRING_VALUE",
|
|
1725
1729
|
* // },
|
|
1726
1730
|
* // SrtGroupSettings: { // SrtGroupSettings
|
|
1727
1731
|
* // InputLossAction: "DROP_PROGRAM" || "DROP_TS" || "EMIT_PROGRAM",
|
|
@@ -534,6 +534,8 @@ declare const DeleteChannelCommand_base: {
|
|
|
534
534
|
* // KlvNameModifier: "STRING_VALUE",
|
|
535
535
|
* // NielsenId3NameModifier: "STRING_VALUE",
|
|
536
536
|
* // Scte35NameModifier: "STRING_VALUE",
|
|
537
|
+
* // Id3Behavior: "DISABLED" || "ENABLED",
|
|
538
|
+
* // Id3NameModifier: "STRING_VALUE",
|
|
537
539
|
* // },
|
|
538
540
|
* // SrtGroupSettings: { // SrtGroupSettings
|
|
539
541
|
* // InputLossAction: "DROP_PROGRAM" || "DROP_TS" || "EMIT_PROGRAM",
|
|
@@ -534,6 +534,8 @@ declare const DescribeChannelCommand_base: {
|
|
|
534
534
|
* // KlvNameModifier: "STRING_VALUE",
|
|
535
535
|
* // NielsenId3NameModifier: "STRING_VALUE",
|
|
536
536
|
* // Scte35NameModifier: "STRING_VALUE",
|
|
537
|
+
* // Id3Behavior: "DISABLED" || "ENABLED",
|
|
538
|
+
* // Id3NameModifier: "STRING_VALUE",
|
|
537
539
|
* // },
|
|
538
540
|
* // SrtGroupSettings: { // SrtGroupSettings
|
|
539
541
|
* // InputLossAction: "DROP_PROGRAM" || "DROP_TS" || "EMIT_PROGRAM",
|
|
@@ -183,6 +183,13 @@ declare const DescribeScheduleCommand_base: {
|
|
|
183
183
|
* // "STRING_VALUE",
|
|
184
184
|
* // ],
|
|
185
185
|
* // },
|
|
186
|
+
* // Id3SegmentTaggingSettings: { // Id3SegmentTaggingScheduleActionSettings
|
|
187
|
+
* // Id3: "STRING_VALUE",
|
|
188
|
+
* // Tag: "STRING_VALUE",
|
|
189
|
+
* // },
|
|
190
|
+
* // TimedMetadataSettings: { // TimedMetadataScheduleActionSettings
|
|
191
|
+
* // Id3: "STRING_VALUE", // required
|
|
192
|
+
* // },
|
|
186
193
|
* // },
|
|
187
194
|
* // ScheduleActionStartSettings: { // ScheduleActionStartSettings
|
|
188
195
|
* // FixedModeScheduleActionStartSettings: { // FixedModeScheduleActionStartSettings
|
|
@@ -537,6 +537,8 @@ declare const RestartChannelPipelinesCommand_base: {
|
|
|
537
537
|
* // KlvNameModifier: "STRING_VALUE",
|
|
538
538
|
* // NielsenId3NameModifier: "STRING_VALUE",
|
|
539
539
|
* // Scte35NameModifier: "STRING_VALUE",
|
|
540
|
+
* // Id3Behavior: "DISABLED" || "ENABLED",
|
|
541
|
+
* // Id3NameModifier: "STRING_VALUE",
|
|
540
542
|
* // },
|
|
541
543
|
* // SrtGroupSettings: { // SrtGroupSettings
|
|
542
544
|
* // InputLossAction: "DROP_PROGRAM" || "DROP_TS" || "EMIT_PROGRAM",
|
|
@@ -534,6 +534,8 @@ declare const StartChannelCommand_base: {
|
|
|
534
534
|
* // KlvNameModifier: "STRING_VALUE",
|
|
535
535
|
* // NielsenId3NameModifier: "STRING_VALUE",
|
|
536
536
|
* // Scte35NameModifier: "STRING_VALUE",
|
|
537
|
+
* // Id3Behavior: "DISABLED" || "ENABLED",
|
|
538
|
+
* // Id3NameModifier: "STRING_VALUE",
|
|
537
539
|
* // },
|
|
538
540
|
* // SrtGroupSettings: { // SrtGroupSettings
|
|
539
541
|
* // InputLossAction: "DROP_PROGRAM" || "DROP_TS" || "EMIT_PROGRAM",
|
|
@@ -534,6 +534,8 @@ declare const StopChannelCommand_base: {
|
|
|
534
534
|
* // KlvNameModifier: "STRING_VALUE",
|
|
535
535
|
* // NielsenId3NameModifier: "STRING_VALUE",
|
|
536
536
|
* // Scte35NameModifier: "STRING_VALUE",
|
|
537
|
+
* // Id3Behavior: "DISABLED" || "ENABLED",
|
|
538
|
+
* // Id3NameModifier: "STRING_VALUE",
|
|
537
539
|
* // },
|
|
538
540
|
* // SrtGroupSettings: { // SrtGroupSettings
|
|
539
541
|
* // InputLossAction: "DROP_PROGRAM" || "DROP_TS" || "EMIT_PROGRAM",
|
|
@@ -567,6 +567,8 @@ declare const UpdateChannelClassCommand_base: {
|
|
|
567
567
|
* // KlvNameModifier: "STRING_VALUE",
|
|
568
568
|
* // NielsenId3NameModifier: "STRING_VALUE",
|
|
569
569
|
* // Scte35NameModifier: "STRING_VALUE",
|
|
570
|
+
* // Id3Behavior: "DISABLED" || "ENABLED",
|
|
571
|
+
* // Id3NameModifier: "STRING_VALUE",
|
|
570
572
|
* // },
|
|
571
573
|
* // SrtGroupSettings: { // SrtGroupSettings
|
|
572
574
|
* // InputLossAction: "DROP_PROGRAM" || "DROP_TS" || "EMIT_PROGRAM",
|
|
@@ -523,6 +523,8 @@ declare const UpdateChannelCommand_base: {
|
|
|
523
523
|
* KlvNameModifier: "STRING_VALUE",
|
|
524
524
|
* NielsenId3NameModifier: "STRING_VALUE",
|
|
525
525
|
* Scte35NameModifier: "STRING_VALUE",
|
|
526
|
+
* Id3Behavior: "DISABLED" || "ENABLED",
|
|
527
|
+
* Id3NameModifier: "STRING_VALUE",
|
|
526
528
|
* },
|
|
527
529
|
* SrtGroupSettings: { // SrtGroupSettings
|
|
528
530
|
* InputLossAction: "DROP_PROGRAM" || "DROP_TS" || "EMIT_PROGRAM",
|
|
@@ -1709,6 +1711,8 @@ declare const UpdateChannelCommand_base: {
|
|
|
1709
1711
|
* // KlvNameModifier: "STRING_VALUE",
|
|
1710
1712
|
* // NielsenId3NameModifier: "STRING_VALUE",
|
|
1711
1713
|
* // Scte35NameModifier: "STRING_VALUE",
|
|
1714
|
+
* // Id3Behavior: "DISABLED" || "ENABLED",
|
|
1715
|
+
* // Id3NameModifier: "STRING_VALUE",
|
|
1712
1716
|
* // },
|
|
1713
1717
|
* // SrtGroupSettings: { // SrtGroupSettings
|
|
1714
1718
|
* // InputLossAction: "DROP_PROGRAM" || "DROP_TS" || "EMIT_PROGRAM",
|
|
@@ -827,6 +827,18 @@ export interface ArchiveGroupSettings {
|
|
|
827
827
|
*/
|
|
828
828
|
RolloverInterval?: number | undefined;
|
|
829
829
|
}
|
|
830
|
+
/**
|
|
831
|
+
* @public
|
|
832
|
+
* @enum
|
|
833
|
+
*/
|
|
834
|
+
export declare const CmafId3Behavior: {
|
|
835
|
+
readonly DISABLED: "DISABLED";
|
|
836
|
+
readonly ENABLED: "ENABLED";
|
|
837
|
+
};
|
|
838
|
+
/**
|
|
839
|
+
* @public
|
|
840
|
+
*/
|
|
841
|
+
export type CmafId3Behavior = (typeof CmafId3Behavior)[keyof typeof CmafId3Behavior];
|
|
830
842
|
/**
|
|
831
843
|
* @public
|
|
832
844
|
* @enum
|
|
@@ -930,6 +942,16 @@ export interface CmafIngestGroupSettings {
|
|
|
930
942
|
* @public
|
|
931
943
|
*/
|
|
932
944
|
Scte35NameModifier?: string | undefined;
|
|
945
|
+
/**
|
|
946
|
+
* Set to ENABLED to enable ID3 metadata insertion. To include metadata, you configure other parameters in the output group, or you add an ID3 action to the channel schedule.
|
|
947
|
+
* @public
|
|
948
|
+
*/
|
|
949
|
+
Id3Behavior?: CmafId3Behavior | undefined;
|
|
950
|
+
/**
|
|
951
|
+
* Change the modifier that MediaLive automatically adds to the Streams() name that identifies an ID3 track. The default is "id3", which means the default name will be Streams(id3.cmfm). Any string you enter here will replace the "id3" string.\nThe modifier can only contain: numbers, letters, plus (+), minus (-), underscore (_) and period (.) and has a maximum length of 100 characters.
|
|
952
|
+
* @public
|
|
953
|
+
*/
|
|
954
|
+
Id3NameModifier?: string | undefined;
|
|
933
955
|
}
|
|
934
956
|
/**
|
|
935
957
|
* Frame Capture S3 Settings
|
|
@@ -2496,6 +2518,22 @@ export interface HlsTimedMetadataScheduleActionSettings {
|
|
|
2496
2518
|
*/
|
|
2497
2519
|
Id3: string | undefined;
|
|
2498
2520
|
}
|
|
2521
|
+
/**
|
|
2522
|
+
* Settings for the action to insert ID3 metadata in every segment, in applicable output groups.
|
|
2523
|
+
* @public
|
|
2524
|
+
*/
|
|
2525
|
+
export interface Id3SegmentTaggingScheduleActionSettings {
|
|
2526
|
+
/**
|
|
2527
|
+
* Complete this parameter if you want to specify the entire ID3 metadata. Enter a base64 string that contains one or more fully formed ID3 tags, according to the ID3 specification: http://id3.org/id3v2.4.0-structure
|
|
2528
|
+
* @public
|
|
2529
|
+
*/
|
|
2530
|
+
Id3?: string | undefined;
|
|
2531
|
+
/**
|
|
2532
|
+
* Complete this parameter if you want to specify only the metadata, not the entire frame. MediaLive will insert the metadata in a TXXX frame. Enter the value as plain text. You can include standard MediaLive variable data such as the current segment number.
|
|
2533
|
+
* @public
|
|
2534
|
+
*/
|
|
2535
|
+
Tag?: string | undefined;
|
|
2536
|
+
}
|
|
2499
2537
|
/**
|
|
2500
2538
|
* @public
|
|
2501
2539
|
* @enum
|
|
@@ -3044,6 +3082,17 @@ export interface StaticImageOutputDeactivateScheduleActionSettings {
|
|
|
3044
3082
|
*/
|
|
3045
3083
|
OutputNames: string[] | undefined;
|
|
3046
3084
|
}
|
|
3085
|
+
/**
|
|
3086
|
+
* Settings for the action to insert ID3 metadata (as a one-time action) in applicable output groups.
|
|
3087
|
+
* @public
|
|
3088
|
+
*/
|
|
3089
|
+
export interface TimedMetadataScheduleActionSettings {
|
|
3090
|
+
/**
|
|
3091
|
+
* Enter a base64 string that contains one or more fully formed ID3 tags.See the ID3 specification: http://id3.org/id3v2.4.0-structure
|
|
3092
|
+
* @public
|
|
3093
|
+
*/
|
|
3094
|
+
Id3: string | undefined;
|
|
3095
|
+
}
|
|
3047
3096
|
/**
|
|
3048
3097
|
* Holds the settings for a single schedule action.
|
|
3049
3098
|
* @public
|
|
@@ -3124,6 +3173,16 @@ export interface ScheduleActionSettings {
|
|
|
3124
3173
|
* @public
|
|
3125
3174
|
*/
|
|
3126
3175
|
StaticImageOutputDeactivateSettings?: StaticImageOutputDeactivateScheduleActionSettings | undefined;
|
|
3176
|
+
/**
|
|
3177
|
+
* Action to insert ID3 metadata in every segment, in applicable output groups
|
|
3178
|
+
* @public
|
|
3179
|
+
*/
|
|
3180
|
+
Id3SegmentTaggingSettings?: Id3SegmentTaggingScheduleActionSettings | undefined;
|
|
3181
|
+
/**
|
|
3182
|
+
* Action to insert ID3 metadata once, in applicable output groups
|
|
3183
|
+
* @public
|
|
3184
|
+
*/
|
|
3185
|
+
TimedMetadataSettings?: TimedMetadataScheduleActionSettings | undefined;
|
|
3127
3186
|
}
|
|
3128
3187
|
/**
|
|
3129
3188
|
* Start time for the action.
|
|
@@ -6094,37 +6153,3 @@ export interface InputLossBehavior {
|
|
|
6094
6153
|
*/
|
|
6095
6154
|
RepeatFrameMsec?: number | undefined;
|
|
6096
6155
|
}
|
|
6097
|
-
/**
|
|
6098
|
-
* @public
|
|
6099
|
-
* @enum
|
|
6100
|
-
*/
|
|
6101
|
-
export declare const GlobalConfigurationOutputLockingMode: {
|
|
6102
|
-
readonly EPOCH_LOCKING: "EPOCH_LOCKING";
|
|
6103
|
-
readonly PIPELINE_LOCKING: "PIPELINE_LOCKING";
|
|
6104
|
-
};
|
|
6105
|
-
/**
|
|
6106
|
-
* @public
|
|
6107
|
-
*/
|
|
6108
|
-
export type GlobalConfigurationOutputLockingMode = (typeof GlobalConfigurationOutputLockingMode)[keyof typeof GlobalConfigurationOutputLockingMode];
|
|
6109
|
-
/**
|
|
6110
|
-
* Epoch Locking Settings
|
|
6111
|
-
* @public
|
|
6112
|
-
*/
|
|
6113
|
-
export interface EpochLockingSettings {
|
|
6114
|
-
/**
|
|
6115
|
-
* Optional. Enter a value here to use a custom epoch, instead of the standard epoch (which started at 1970-01-01T00:00:00 UTC). Specify the start time of the custom epoch, in YYYY-MM-DDTHH:MM:SS in UTC. The time must be 2000-01-01T00:00:00 or later. Always set the MM:SS portion to 00:00.
|
|
6116
|
-
* @public
|
|
6117
|
-
*/
|
|
6118
|
-
CustomEpoch?: string | undefined;
|
|
6119
|
-
/**
|
|
6120
|
-
* Optional. Enter a time for the jam sync. The default is midnight UTC. When epoch locking is enabled, MediaLive performs a daily jam sync on every output encode to ensure timecodes don’t diverge from the wall clock. The jam sync applies only to encodes with frame rate of 29.97 or 59.94 FPS. To override, enter a time in HH:MM:SS in UTC. Always set the MM:SS portion to 00:00.
|
|
6121
|
-
* @public
|
|
6122
|
-
*/
|
|
6123
|
-
JamSyncTime?: string | undefined;
|
|
6124
|
-
}
|
|
6125
|
-
/**
|
|
6126
|
-
* Pipeline Locking Settings
|
|
6127
|
-
* @public
|
|
6128
|
-
*/
|
|
6129
|
-
export interface PipelineLockingSettings {
|
|
6130
|
-
}
|
|
@@ -1,6 +1,40 @@
|
|
|
1
1
|
import { StreamingBlobTypes } from "@smithy/types";
|
|
2
2
|
import { AudioDescription, CaptionDescription, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelEngineVersionResponse, ChannelPipelineIdToRestart, ChannelPlacementGroupState, ChannelState, ChannelSummary, CloudWatchAlarmTemplateComparisonOperator, CloudWatchAlarmTemplateGroupSummary, CloudWatchAlarmTemplateStatistic, CloudWatchAlarmTemplateSummary, CloudWatchAlarmTemplateTargetResourceType, CloudWatchAlarmTemplateTreatMissingData, ClusterNetworkSettings, ClusterState, ClusterType, DescribeAnywhereSettings, DescribeChannelPlacementGroupSummary, DescribeClusterSummary, DescribeNetworkSummary, DescribeNodeSummary, DeviceSettingsSyncState, DeviceUpdateStatus, EventBridgeRuleTemplateEventType, EventBridgeRuleTemplateGroupSummary, EventBridgeRuleTemplateSummary, EventBridgeRuleTemplateTarget, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairConfig, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputNetworkLocation, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, InterfaceMappingCreateRequest, InterfaceMappingUpdateRequest, IpPool, IpPoolCreateRequest, IpPoolUpdateRequest, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MediaResourceNeighbor, MulticastSettings, MulticastSourceCreateRequest, MulticastSourceUpdateRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, NetworkState, NodeConnectionState, NodeInterfaceMapping, NodeInterfaceMappingCreateRequest, NodeRole, NodeState, Offering, OfferingDurationUnits, OfferingType, OutputDestination, ReservationResourceSpecification, Route, SrtSettings, VpcOutputSettingsDescription } from "./models_0";
|
|
3
|
-
import { AcceptHeader, AccountConfiguration, AnywhereSettings, AvailBlanking, AvailConfiguration, BlackoutSlate, ColorCorrectionSettings,
|
|
3
|
+
import { AcceptHeader, AccountConfiguration, AnywhereSettings, AvailBlanking, AvailConfiguration, BlackoutSlate, ColorCorrectionSettings, FeatureActivations, GlobalConfigurationInputEndAction, InputLossBehavior, OutputGroup, PipelineDetail, RenewalSettings, Reservation, ReservationState, RouteCreateRequest, RouteUpdateRequest, ScheduleAction, SignalMapMonitorDeploymentStatus, SignalMapStatus, SignalMapSummary, SrtCallerSourceRequest, ThumbnailDetail, TransferringInputDeviceSummary, VideoDescription } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* @enum
|
|
7
|
+
*/
|
|
8
|
+
export declare const GlobalConfigurationOutputLockingMode: {
|
|
9
|
+
readonly EPOCH_LOCKING: "EPOCH_LOCKING";
|
|
10
|
+
readonly PIPELINE_LOCKING: "PIPELINE_LOCKING";
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export type GlobalConfigurationOutputLockingMode = (typeof GlobalConfigurationOutputLockingMode)[keyof typeof GlobalConfigurationOutputLockingMode];
|
|
16
|
+
/**
|
|
17
|
+
* Epoch Locking Settings
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export interface EpochLockingSettings {
|
|
21
|
+
/**
|
|
22
|
+
* Optional. Enter a value here to use a custom epoch, instead of the standard epoch (which started at 1970-01-01T00:00:00 UTC). Specify the start time of the custom epoch, in YYYY-MM-DDTHH:MM:SS in UTC. The time must be 2000-01-01T00:00:00 or later. Always set the MM:SS portion to 00:00.
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
CustomEpoch?: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* Optional. Enter a time for the jam sync. The default is midnight UTC. When epoch locking is enabled, MediaLive performs a daily jam sync on every output encode to ensure timecodes don’t diverge from the wall clock. The jam sync applies only to encodes with frame rate of 29.97 or 59.94 FPS. To override, enter a time in HH:MM:SS in UTC. Always set the MM:SS portion to 00:00.
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
JamSyncTime?: string | undefined;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Pipeline Locking Settings
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export interface PipelineLockingSettings {
|
|
37
|
+
}
|
|
4
38
|
/**
|
|
5
39
|
* Output Locking Settings
|
|
6
40
|
* @public
|
|
@@ -264,6 +264,12 @@ export interface ArchiveGroupSettings {
|
|
|
264
264
|
Destination: OutputLocationRef | undefined;
|
|
265
265
|
RolloverInterval?: number | undefined;
|
|
266
266
|
}
|
|
267
|
+
export declare const CmafId3Behavior: {
|
|
268
|
+
readonly DISABLED: "DISABLED";
|
|
269
|
+
readonly ENABLED: "ENABLED";
|
|
270
|
+
};
|
|
271
|
+
export type CmafId3Behavior =
|
|
272
|
+
(typeof CmafId3Behavior)[keyof typeof CmafId3Behavior];
|
|
267
273
|
export declare const CmafKLVBehavior: {
|
|
268
274
|
readonly NO_PASSTHROUGH: "NO_PASSTHROUGH";
|
|
269
275
|
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
@@ -298,6 +304,8 @@ export interface CmafIngestGroupSettings {
|
|
|
298
304
|
KlvNameModifier?: string | undefined;
|
|
299
305
|
NielsenId3NameModifier?: string | undefined;
|
|
300
306
|
Scte35NameModifier?: string | undefined;
|
|
307
|
+
Id3Behavior?: CmafId3Behavior | undefined;
|
|
308
|
+
Id3NameModifier?: string | undefined;
|
|
301
309
|
}
|
|
302
310
|
export interface FrameCaptureS3Settings {
|
|
303
311
|
CannedAcl?: S3CannedAcl | undefined;
|
|
@@ -792,6 +800,10 @@ export interface HlsId3SegmentTaggingScheduleActionSettings {
|
|
|
792
800
|
export interface HlsTimedMetadataScheduleActionSettings {
|
|
793
801
|
Id3: string | undefined;
|
|
794
802
|
}
|
|
803
|
+
export interface Id3SegmentTaggingScheduleActionSettings {
|
|
804
|
+
Id3?: string | undefined;
|
|
805
|
+
Tag?: string | undefined;
|
|
806
|
+
}
|
|
795
807
|
export declare const InputTimecodeSource: {
|
|
796
808
|
readonly EMBEDDED: "EMBEDDED";
|
|
797
809
|
readonly ZEROBASED: "ZEROBASED";
|
|
@@ -949,6 +961,9 @@ export interface StaticImageOutputDeactivateScheduleActionSettings {
|
|
|
949
961
|
Layer?: number | undefined;
|
|
950
962
|
OutputNames: string[] | undefined;
|
|
951
963
|
}
|
|
964
|
+
export interface TimedMetadataScheduleActionSettings {
|
|
965
|
+
Id3: string | undefined;
|
|
966
|
+
}
|
|
952
967
|
export interface ScheduleActionSettings {
|
|
953
968
|
HlsId3SegmentTaggingSettings?:
|
|
954
969
|
| HlsId3SegmentTaggingScheduleActionSettings
|
|
@@ -983,6 +998,10 @@ export interface ScheduleActionSettings {
|
|
|
983
998
|
StaticImageOutputDeactivateSettings?:
|
|
984
999
|
| StaticImageOutputDeactivateScheduleActionSettings
|
|
985
1000
|
| undefined;
|
|
1001
|
+
Id3SegmentTaggingSettings?:
|
|
1002
|
+
| Id3SegmentTaggingScheduleActionSettings
|
|
1003
|
+
| undefined;
|
|
1004
|
+
TimedMetadataSettings?: TimedMetadataScheduleActionSettings | undefined;
|
|
986
1005
|
}
|
|
987
1006
|
export interface FixedModeScheduleActionStartSettings {
|
|
988
1007
|
Time: string | undefined;
|
|
@@ -2013,14 +2032,3 @@ export interface InputLossBehavior {
|
|
|
2013
2032
|
InputLossImageType?: InputLossImageType | undefined;
|
|
2014
2033
|
RepeatFrameMsec?: number | undefined;
|
|
2015
2034
|
}
|
|
2016
|
-
export declare const GlobalConfigurationOutputLockingMode: {
|
|
2017
|
-
readonly EPOCH_LOCKING: "EPOCH_LOCKING";
|
|
2018
|
-
readonly PIPELINE_LOCKING: "PIPELINE_LOCKING";
|
|
2019
|
-
};
|
|
2020
|
-
export type GlobalConfigurationOutputLockingMode =
|
|
2021
|
-
(typeof GlobalConfigurationOutputLockingMode)[keyof typeof GlobalConfigurationOutputLockingMode];
|
|
2022
|
-
export interface EpochLockingSettings {
|
|
2023
|
-
CustomEpoch?: string | undefined;
|
|
2024
|
-
JamSyncTime?: string | undefined;
|
|
2025
|
-
}
|
|
2026
|
-
export interface PipelineLockingSettings {}
|
|
@@ -100,14 +100,11 @@ import {
|
|
|
100
100
|
AvailConfiguration,
|
|
101
101
|
BlackoutSlate,
|
|
102
102
|
ColorCorrectionSettings,
|
|
103
|
-
EpochLockingSettings,
|
|
104
103
|
FeatureActivations,
|
|
105
104
|
GlobalConfigurationInputEndAction,
|
|
106
|
-
GlobalConfigurationOutputLockingMode,
|
|
107
105
|
InputLossBehavior,
|
|
108
106
|
OutputGroup,
|
|
109
107
|
PipelineDetail,
|
|
110
|
-
PipelineLockingSettings,
|
|
111
108
|
RenewalSettings,
|
|
112
109
|
Reservation,
|
|
113
110
|
ReservationState,
|
|
@@ -122,6 +119,17 @@ import {
|
|
|
122
119
|
TransferringInputDeviceSummary,
|
|
123
120
|
VideoDescription,
|
|
124
121
|
} from "./models_1";
|
|
122
|
+
export declare const GlobalConfigurationOutputLockingMode: {
|
|
123
|
+
readonly EPOCH_LOCKING: "EPOCH_LOCKING";
|
|
124
|
+
readonly PIPELINE_LOCKING: "PIPELINE_LOCKING";
|
|
125
|
+
};
|
|
126
|
+
export type GlobalConfigurationOutputLockingMode =
|
|
127
|
+
(typeof GlobalConfigurationOutputLockingMode)[keyof typeof GlobalConfigurationOutputLockingMode];
|
|
128
|
+
export interface EpochLockingSettings {
|
|
129
|
+
CustomEpoch?: string | undefined;
|
|
130
|
+
JamSyncTime?: string | undefined;
|
|
131
|
+
}
|
|
132
|
+
export interface PipelineLockingSettings {}
|
|
125
133
|
export interface OutputLockingSettings {
|
|
126
134
|
EpochLockingSettings?: EpochLockingSettings | undefined;
|
|
127
135
|
PipelineLockingSettings?: PipelineLockingSettings | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-medialive",
|
|
3
3
|
"description": "AWS SDK for JavaScript Medialive Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.733.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-medialive",
|