@aws-sdk/client-medialive 3.569.0 → 3.570.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 +10 -2
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +2 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +3 -1
- package/dist-types/commands/DescribeChannelCommand.d.ts +1 -0
- package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +1 -0
- package/dist-types/commands/StartChannelCommand.d.ts +1 -0
- package/dist-types/commands/StopChannelCommand.d.ts +1 -0
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +1 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +2 -0
- package/dist-types/models/models_1.d.ts +20 -98
- package/dist-types/models/models_2.d.ts +98 -0
- package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_1.d.ts +7 -20
- package/dist-types/ts3.4/models/models_2.d.ts +20 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -364,6 +364,7 @@ __export(src_exports, {
|
|
|
364
364
|
Scte35InputMode: () => Scte35InputMode,
|
|
365
365
|
Scte35NoRegionalBlackoutFlag: () => Scte35NoRegionalBlackoutFlag,
|
|
366
366
|
Scte35SegmentationCancelIndicator: () => Scte35SegmentationCancelIndicator,
|
|
367
|
+
Scte35SegmentationScope: () => Scte35SegmentationScope,
|
|
367
368
|
Scte35SpliceInsertNoRegionalBlackoutBehavior: () => Scte35SpliceInsertNoRegionalBlackoutBehavior,
|
|
368
369
|
Scte35SpliceInsertWebDeliveryAllowedBehavior: () => Scte35SpliceInsertWebDeliveryAllowedBehavior,
|
|
369
370
|
Scte35Type: () => Scte35Type,
|
|
@@ -1404,6 +1405,10 @@ var Scte35AposWebDeliveryAllowedBehavior = {
|
|
|
1404
1405
|
FOLLOW: "FOLLOW",
|
|
1405
1406
|
IGNORE: "IGNORE"
|
|
1406
1407
|
};
|
|
1408
|
+
var Scte35SegmentationScope = {
|
|
1409
|
+
ALL_OUTPUT_GROUPS: "ALL_OUTPUT_GROUPS",
|
|
1410
|
+
SCTE35_ENABLED_OUTPUT_GROUPS: "SCTE35_ENABLED_OUTPUT_GROUPS"
|
|
1411
|
+
};
|
|
1407
1412
|
var BlackoutSlateNetworkEndBlackout = {
|
|
1408
1413
|
DISABLED: "DISABLED",
|
|
1409
1414
|
ENABLED: "ENABLED"
|
|
@@ -4918,7 +4923,8 @@ var se_AvailBlanking = /* @__PURE__ */ __name((input, context) => {
|
|
|
4918
4923
|
}, "se_AvailBlanking");
|
|
4919
4924
|
var se_AvailConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
4920
4925
|
return (0, import_smithy_client.take)(input, {
|
|
4921
|
-
availSettings: [, (_) => se_AvailSettings(_, context), `AvailSettings`]
|
|
4926
|
+
availSettings: [, (_) => se_AvailSettings(_, context), `AvailSettings`],
|
|
4927
|
+
scte35SegmentationScope: [, , `Scte35SegmentationScope`]
|
|
4922
4928
|
});
|
|
4923
4929
|
}, "se_AvailConfiguration");
|
|
4924
4930
|
var se_AvailSettings = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -6913,7 +6919,8 @@ var de_AvailBlanking = /* @__PURE__ */ __name((output, context) => {
|
|
|
6913
6919
|
}, "de_AvailBlanking");
|
|
6914
6920
|
var de_AvailConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
6915
6921
|
return (0, import_smithy_client.take)(output, {
|
|
6916
|
-
AvailSettings: [, (_) => de_AvailSettings(_, context), `availSettings`]
|
|
6922
|
+
AvailSettings: [, (_) => de_AvailSettings(_, context), `availSettings`],
|
|
6923
|
+
Scte35SegmentationScope: [, import_smithy_client.expectString, `scte35SegmentationScope`]
|
|
6917
6924
|
});
|
|
6918
6925
|
}, "de_AvailConfiguration");
|
|
6919
6926
|
var de_AvailSettings = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -12637,6 +12644,7 @@ var CmafNielsenId3Behavior = {
|
|
|
12637
12644
|
Scte35SpliceInsertWebDeliveryAllowedBehavior,
|
|
12638
12645
|
Scte35AposNoRegionalBlackoutBehavior,
|
|
12639
12646
|
Scte35AposWebDeliveryAllowedBehavior,
|
|
12647
|
+
Scte35SegmentationScope,
|
|
12640
12648
|
BlackoutSlateNetworkEndBlackout,
|
|
12641
12649
|
BlackoutSlateState,
|
|
12642
12650
|
FeatureActivationsInputPrepareScheduleActions,
|
|
@@ -716,6 +716,10 @@ export const Scte35AposWebDeliveryAllowedBehavior = {
|
|
|
716
716
|
FOLLOW: "FOLLOW",
|
|
717
717
|
IGNORE: "IGNORE",
|
|
718
718
|
};
|
|
719
|
+
export const Scte35SegmentationScope = {
|
|
720
|
+
ALL_OUTPUT_GROUPS: "ALL_OUTPUT_GROUPS",
|
|
721
|
+
SCTE35_ENABLED_OUTPUT_GROUPS: "SCTE35_ENABLED_OUTPUT_GROUPS",
|
|
722
|
+
};
|
|
719
723
|
export const BlackoutSlateNetworkEndBlackout = {
|
|
720
724
|
DISABLED: "DISABLED",
|
|
721
725
|
ENABLED: "ENABLED",
|
|
@@ -3440,6 +3440,7 @@ const se_AvailBlanking = (input, context) => {
|
|
|
3440
3440
|
const se_AvailConfiguration = (input, context) => {
|
|
3441
3441
|
return take(input, {
|
|
3442
3442
|
availSettings: [, (_) => se_AvailSettings(_, context), `AvailSettings`],
|
|
3443
|
+
scte35SegmentationScope: [, , `Scte35SegmentationScope`],
|
|
3443
3444
|
});
|
|
3444
3445
|
};
|
|
3445
3446
|
const se_AvailSettings = (input, context) => {
|
|
@@ -5537,6 +5538,7 @@ const de_AvailBlanking = (output, context) => {
|
|
|
5537
5538
|
const de_AvailConfiguration = (output, context) => {
|
|
5538
5539
|
return take(output, {
|
|
5539
5540
|
AvailSettings: [, (_) => de_AvailSettings(_, context), `availSettings`],
|
|
5541
|
+
Scte35SegmentationScope: [, __expectString, `scte35SegmentationScope`],
|
|
5540
5542
|
});
|
|
5541
5543
|
};
|
|
5542
5544
|
const de_AvailSettings = (output, context) => {
|
|
@@ -205,6 +205,7 @@ declare const CreateChannelCommand_base: {
|
|
|
205
205
|
* WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
|
|
206
206
|
* },
|
|
207
207
|
* },
|
|
208
|
+
* Scte35SegmentationScope: "ALL_OUTPUT_GROUPS" || "SCTE35_ENABLED_OUTPUT_GROUPS",
|
|
208
209
|
* },
|
|
209
210
|
* BlackoutSlate: { // BlackoutSlate
|
|
210
211
|
* BlackoutSlateImage: {
|
|
@@ -1250,6 +1251,7 @@ declare const CreateChannelCommand_base: {
|
|
|
1250
1251
|
* // WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
|
|
1251
1252
|
* // },
|
|
1252
1253
|
* // },
|
|
1254
|
+
* // Scte35SegmentationScope: "ALL_OUTPUT_GROUPS" || "SCTE35_ENABLED_OUTPUT_GROUPS",
|
|
1253
1255
|
* // },
|
|
1254
1256
|
* // BlackoutSlate: { // BlackoutSlate
|
|
1255
1257
|
* // BlackoutSlateImage: {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
|
|
4
|
-
import { DeleteChannelRequest
|
|
4
|
+
import { DeleteChannelRequest } from "../models/models_1";
|
|
5
|
+
import { DeleteChannelResponse } from "../models/models_2";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -216,6 +217,7 @@ declare const DeleteChannelCommand_base: {
|
|
|
216
217
|
* // WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
|
|
217
218
|
* // },
|
|
218
219
|
* // },
|
|
220
|
+
* // Scte35SegmentationScope: "ALL_OUTPUT_GROUPS" || "SCTE35_ENABLED_OUTPUT_GROUPS",
|
|
219
221
|
* // },
|
|
220
222
|
* // BlackoutSlate: { // BlackoutSlate
|
|
221
223
|
* // BlackoutSlateImage: {
|
|
@@ -216,6 +216,7 @@ declare const DescribeChannelCommand_base: {
|
|
|
216
216
|
* // WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
|
|
217
217
|
* // },
|
|
218
218
|
* // },
|
|
219
|
+
* // Scte35SegmentationScope: "ALL_OUTPUT_GROUPS" || "SCTE35_ENABLED_OUTPUT_GROUPS",
|
|
219
220
|
* // },
|
|
220
221
|
* // BlackoutSlate: { // BlackoutSlate
|
|
221
222
|
* // BlackoutSlateImage: {
|
|
@@ -219,6 +219,7 @@ declare const RestartChannelPipelinesCommand_base: {
|
|
|
219
219
|
* // WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
|
|
220
220
|
* // },
|
|
221
221
|
* // },
|
|
222
|
+
* // Scte35SegmentationScope: "ALL_OUTPUT_GROUPS" || "SCTE35_ENABLED_OUTPUT_GROUPS",
|
|
222
223
|
* // },
|
|
223
224
|
* // BlackoutSlate: { // BlackoutSlate
|
|
224
225
|
* // BlackoutSlateImage: {
|
|
@@ -216,6 +216,7 @@ declare const StartChannelCommand_base: {
|
|
|
216
216
|
* // WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
|
|
217
217
|
* // },
|
|
218
218
|
* // },
|
|
219
|
+
* // Scte35SegmentationScope: "ALL_OUTPUT_GROUPS" || "SCTE35_ENABLED_OUTPUT_GROUPS",
|
|
219
220
|
* // },
|
|
220
221
|
* // BlackoutSlate: { // BlackoutSlate
|
|
221
222
|
* // BlackoutSlateImage: {
|
|
@@ -216,6 +216,7 @@ declare const StopChannelCommand_base: {
|
|
|
216
216
|
* // WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
|
|
217
217
|
* // },
|
|
218
218
|
* // },
|
|
219
|
+
* // Scte35SegmentationScope: "ALL_OUTPUT_GROUPS" || "SCTE35_ENABLED_OUTPUT_GROUPS",
|
|
219
220
|
* // },
|
|
220
221
|
* // BlackoutSlate: { // BlackoutSlate
|
|
221
222
|
* // BlackoutSlateImage: {
|
|
@@ -240,6 +240,7 @@ declare const UpdateChannelClassCommand_base: {
|
|
|
240
240
|
* // WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
|
|
241
241
|
* // },
|
|
242
242
|
* // },
|
|
243
|
+
* // Scte35SegmentationScope: "ALL_OUTPUT_GROUPS" || "SCTE35_ENABLED_OUTPUT_GROUPS",
|
|
243
244
|
* // },
|
|
244
245
|
* // BlackoutSlate: { // BlackoutSlate
|
|
245
246
|
* // BlackoutSlateImage: {
|
|
@@ -205,6 +205,7 @@ declare const UpdateChannelCommand_base: {
|
|
|
205
205
|
* WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
|
|
206
206
|
* },
|
|
207
207
|
* },
|
|
208
|
+
* Scte35SegmentationScope: "ALL_OUTPUT_GROUPS" || "SCTE35_ENABLED_OUTPUT_GROUPS",
|
|
208
209
|
* },
|
|
209
210
|
* BlackoutSlate: { // BlackoutSlate
|
|
210
211
|
* BlackoutSlateImage: {
|
|
@@ -1235,6 +1236,7 @@ declare const UpdateChannelCommand_base: {
|
|
|
1235
1236
|
* // WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
|
|
1236
1237
|
* // },
|
|
1237
1238
|
* // },
|
|
1239
|
+
* // Scte35SegmentationScope: "ALL_OUTPUT_GROUPS" || "SCTE35_ENABLED_OUTPUT_GROUPS",
|
|
1238
1240
|
* // },
|
|
1239
1241
|
* // BlackoutSlate: { // BlackoutSlate
|
|
1240
1242
|
* // BlackoutSlateImage: {
|
|
@@ -4405,6 +4405,18 @@ export interface AvailSettings {
|
|
|
4405
4405
|
*/
|
|
4406
4406
|
Scte35TimeSignalApos?: Scte35TimeSignalApos;
|
|
4407
4407
|
}
|
|
4408
|
+
/**
|
|
4409
|
+
* @public
|
|
4410
|
+
* @enum
|
|
4411
|
+
*/
|
|
4412
|
+
export declare const Scte35SegmentationScope: {
|
|
4413
|
+
readonly ALL_OUTPUT_GROUPS: "ALL_OUTPUT_GROUPS";
|
|
4414
|
+
readonly SCTE35_ENABLED_OUTPUT_GROUPS: "SCTE35_ENABLED_OUTPUT_GROUPS";
|
|
4415
|
+
};
|
|
4416
|
+
/**
|
|
4417
|
+
* @public
|
|
4418
|
+
*/
|
|
4419
|
+
export type Scte35SegmentationScope = (typeof Scte35SegmentationScope)[keyof typeof Scte35SegmentationScope];
|
|
4408
4420
|
/**
|
|
4409
4421
|
* Avail Configuration
|
|
4410
4422
|
* @public
|
|
@@ -4415,6 +4427,14 @@ export interface AvailConfiguration {
|
|
|
4415
4427
|
* @public
|
|
4416
4428
|
*/
|
|
4417
4429
|
AvailSettings?: AvailSettings;
|
|
4430
|
+
/**
|
|
4431
|
+
* Configures whether SCTE 35 passthrough triggers segment breaks in all output groups that use segmented outputs. Insertion of a SCTE 35 message typically results in a segment break, in addition to the regular cadence of breaks. The segment breaks appear in video outputs, audio outputs, and captions outputs (if any).
|
|
4432
|
+
*
|
|
4433
|
+
* ALL_OUTPUT_GROUPS: Default. Insert the segment break in in all output groups that have segmented outputs. This is the legacy behavior.
|
|
4434
|
+
* SCTE35_ENABLED_OUTPUT_GROUPS: Insert the segment break only in output groups that have SCTE 35 passthrough enabled. This is the recommended value, because it reduces unnecessary segment breaks.
|
|
4435
|
+
* @public
|
|
4436
|
+
*/
|
|
4437
|
+
Scte35SegmentationScope?: Scte35SegmentationScope;
|
|
4418
4438
|
}
|
|
4419
4439
|
/**
|
|
4420
4440
|
* A request to delete resources
|
|
@@ -6477,101 +6497,3 @@ export interface DeleteChannelRequest {
|
|
|
6477
6497
|
*/
|
|
6478
6498
|
ChannelId: string | undefined;
|
|
6479
6499
|
}
|
|
6480
|
-
/**
|
|
6481
|
-
* Placeholder documentation for DeleteChannelResponse
|
|
6482
|
-
* @public
|
|
6483
|
-
*/
|
|
6484
|
-
export interface DeleteChannelResponse {
|
|
6485
|
-
/**
|
|
6486
|
-
* The unique arn of the channel.
|
|
6487
|
-
* @public
|
|
6488
|
-
*/
|
|
6489
|
-
Arn?: string;
|
|
6490
|
-
/**
|
|
6491
|
-
* Specification of CDI inputs for this channel
|
|
6492
|
-
* @public
|
|
6493
|
-
*/
|
|
6494
|
-
CdiInputSpecification?: CdiInputSpecification;
|
|
6495
|
-
/**
|
|
6496
|
-
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
|
|
6497
|
-
* @public
|
|
6498
|
-
*/
|
|
6499
|
-
ChannelClass?: ChannelClass;
|
|
6500
|
-
/**
|
|
6501
|
-
* A list of destinations of the channel. For UDP outputs, there is one
|
|
6502
|
-
* destination per output. For other types (HLS, for example), there is
|
|
6503
|
-
* one destination per packager.
|
|
6504
|
-
* @public
|
|
6505
|
-
*/
|
|
6506
|
-
Destinations?: OutputDestination[];
|
|
6507
|
-
/**
|
|
6508
|
-
* The endpoints where outgoing connections initiate from
|
|
6509
|
-
* @public
|
|
6510
|
-
*/
|
|
6511
|
-
EgressEndpoints?: ChannelEgressEndpoint[];
|
|
6512
|
-
/**
|
|
6513
|
-
* Encoder Settings
|
|
6514
|
-
* @public
|
|
6515
|
-
*/
|
|
6516
|
-
EncoderSettings?: EncoderSettings;
|
|
6517
|
-
/**
|
|
6518
|
-
* The unique id of the channel.
|
|
6519
|
-
* @public
|
|
6520
|
-
*/
|
|
6521
|
-
Id?: string;
|
|
6522
|
-
/**
|
|
6523
|
-
* List of input attachments for channel.
|
|
6524
|
-
* @public
|
|
6525
|
-
*/
|
|
6526
|
-
InputAttachments?: InputAttachment[];
|
|
6527
|
-
/**
|
|
6528
|
-
* Specification of network and file inputs for this channel
|
|
6529
|
-
* @public
|
|
6530
|
-
*/
|
|
6531
|
-
InputSpecification?: InputSpecification;
|
|
6532
|
-
/**
|
|
6533
|
-
* The log level being written to CloudWatch Logs.
|
|
6534
|
-
* @public
|
|
6535
|
-
*/
|
|
6536
|
-
LogLevel?: LogLevel;
|
|
6537
|
-
/**
|
|
6538
|
-
* Maintenance settings for this channel.
|
|
6539
|
-
* @public
|
|
6540
|
-
*/
|
|
6541
|
-
Maintenance?: MaintenanceStatus;
|
|
6542
|
-
/**
|
|
6543
|
-
* The name of the channel. (user-mutable)
|
|
6544
|
-
* @public
|
|
6545
|
-
*/
|
|
6546
|
-
Name?: string;
|
|
6547
|
-
/**
|
|
6548
|
-
* Runtime details for the pipelines of a running channel.
|
|
6549
|
-
* @public
|
|
6550
|
-
*/
|
|
6551
|
-
PipelineDetails?: PipelineDetail[];
|
|
6552
|
-
/**
|
|
6553
|
-
* The number of currently healthy pipelines.
|
|
6554
|
-
* @public
|
|
6555
|
-
*/
|
|
6556
|
-
PipelinesRunningCount?: number;
|
|
6557
|
-
/**
|
|
6558
|
-
* The Amazon Resource Name (ARN) of the role assumed when running the Channel.
|
|
6559
|
-
* @public
|
|
6560
|
-
*/
|
|
6561
|
-
RoleArn?: string;
|
|
6562
|
-
/**
|
|
6563
|
-
* Placeholder documentation for ChannelState
|
|
6564
|
-
* @public
|
|
6565
|
-
*/
|
|
6566
|
-
State?: ChannelState;
|
|
6567
|
-
/**
|
|
6568
|
-
* A collection of key-value pairs.
|
|
6569
|
-
* @public
|
|
6570
|
-
*/
|
|
6571
|
-
Tags?: Record<string, string>;
|
|
6572
|
-
/**
|
|
6573
|
-
* Settings for VPC output
|
|
6574
|
-
* @public
|
|
6575
|
-
*/
|
|
6576
|
-
Vpc?: VpcOutputSettingsDescription;
|
|
6577
|
-
}
|
|
@@ -1,6 +1,104 @@
|
|
|
1
1
|
import { StreamingBlobTypes } from "@smithy/types";
|
|
2
2
|
import { CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelPipelineIdToRestart, ChannelState, ChannelSummary, CloudWatchAlarmTemplateComparisonOperator, CloudWatchAlarmTemplateGroupSummary, CloudWatchAlarmTemplateStatistic, CloudWatchAlarmTemplateSummary, CloudWatchAlarmTemplateTargetResourceType, CloudWatchAlarmTemplateTreatMissingData, DeviceSettingsSyncState, DeviceUpdateStatus, EventBridgeRuleTemplateEventType, EventBridgeRuleTemplateGroupSummary, EventBridgeRuleTemplateSummary, EventBridgeRuleTemplateTarget, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairConfig, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, Offering, OfferingDurationUnits, OfferingType, OutputDestination, ReservationResourceSpecification, VpcOutputSettingsDescription } from "./models_0";
|
|
3
3
|
import { AcceptHeader, AccountConfiguration, Channel, ContentType, EncoderSettings, MediaResource, MonitorDeployment, Multiplex, MultiplexProgram, MultiplexProgramPacketIdentifiersMap, MultiplexProgramSettings, MultiplexSettings, PipelineDetail, RenewalSettings, Reservation, ReservationState, ScheduleAction, SignalMapStatus, SignalMapSummary, SuccessfulMonitorDeployment, ThumbnailDetail, TransferringInputDeviceSummary } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* Placeholder documentation for DeleteChannelResponse
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface DeleteChannelResponse {
|
|
9
|
+
/**
|
|
10
|
+
* The unique arn of the channel.
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
Arn?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Specification of CDI inputs for this channel
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
CdiInputSpecification?: CdiInputSpecification;
|
|
19
|
+
/**
|
|
20
|
+
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
ChannelClass?: ChannelClass;
|
|
24
|
+
/**
|
|
25
|
+
* A list of destinations of the channel. For UDP outputs, there is one
|
|
26
|
+
* destination per output. For other types (HLS, for example), there is
|
|
27
|
+
* one destination per packager.
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
Destinations?: OutputDestination[];
|
|
31
|
+
/**
|
|
32
|
+
* The endpoints where outgoing connections initiate from
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
EgressEndpoints?: ChannelEgressEndpoint[];
|
|
36
|
+
/**
|
|
37
|
+
* Encoder Settings
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
EncoderSettings?: EncoderSettings;
|
|
41
|
+
/**
|
|
42
|
+
* The unique id of the channel.
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
Id?: string;
|
|
46
|
+
/**
|
|
47
|
+
* List of input attachments for channel.
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
InputAttachments?: InputAttachment[];
|
|
51
|
+
/**
|
|
52
|
+
* Specification of network and file inputs for this channel
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
InputSpecification?: InputSpecification;
|
|
56
|
+
/**
|
|
57
|
+
* The log level being written to CloudWatch Logs.
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
LogLevel?: LogLevel;
|
|
61
|
+
/**
|
|
62
|
+
* Maintenance settings for this channel.
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
Maintenance?: MaintenanceStatus;
|
|
66
|
+
/**
|
|
67
|
+
* The name of the channel. (user-mutable)
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
Name?: string;
|
|
71
|
+
/**
|
|
72
|
+
* Runtime details for the pipelines of a running channel.
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
PipelineDetails?: PipelineDetail[];
|
|
76
|
+
/**
|
|
77
|
+
* The number of currently healthy pipelines.
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
PipelinesRunningCount?: number;
|
|
81
|
+
/**
|
|
82
|
+
* The Amazon Resource Name (ARN) of the role assumed when running the Channel.
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
RoleArn?: string;
|
|
86
|
+
/**
|
|
87
|
+
* Placeholder documentation for ChannelState
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
State?: ChannelState;
|
|
91
|
+
/**
|
|
92
|
+
* A collection of key-value pairs.
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
Tags?: Record<string, string>;
|
|
96
|
+
/**
|
|
97
|
+
* Settings for VPC output
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
Vpc?: VpcOutputSettingsDescription;
|
|
101
|
+
}
|
|
4
102
|
/**
|
|
5
103
|
* Placeholder documentation for DeleteCloudWatchAlarmTemplateRequest
|
|
6
104
|
* @public
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../MediaLiveClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
DeleteChannelResponse,
|
|
11
|
-
} from "../models/models_1";
|
|
8
|
+
import { DeleteChannelRequest } from "../models/models_1";
|
|
9
|
+
import { DeleteChannelResponse } from "../models/models_2";
|
|
12
10
|
export { __MetadataBearer, $Command };
|
|
13
11
|
export interface DeleteChannelCommandInput extends DeleteChannelRequest {}
|
|
14
12
|
export interface DeleteChannelCommandOutput
|
|
@@ -1504,8 +1504,15 @@ export interface AvailSettings {
|
|
|
1504
1504
|
Scte35SpliceInsert?: Scte35SpliceInsert;
|
|
1505
1505
|
Scte35TimeSignalApos?: Scte35TimeSignalApos;
|
|
1506
1506
|
}
|
|
1507
|
+
export declare const Scte35SegmentationScope: {
|
|
1508
|
+
readonly ALL_OUTPUT_GROUPS: "ALL_OUTPUT_GROUPS";
|
|
1509
|
+
readonly SCTE35_ENABLED_OUTPUT_GROUPS: "SCTE35_ENABLED_OUTPUT_GROUPS";
|
|
1510
|
+
};
|
|
1511
|
+
export type Scte35SegmentationScope =
|
|
1512
|
+
(typeof Scte35SegmentationScope)[keyof typeof Scte35SegmentationScope];
|
|
1507
1513
|
export interface AvailConfiguration {
|
|
1508
1514
|
AvailSettings?: AvailSettings;
|
|
1515
|
+
Scte35SegmentationScope?: Scte35SegmentationScope;
|
|
1509
1516
|
}
|
|
1510
1517
|
export interface BatchDeleteRequest {
|
|
1511
1518
|
ChannelIds?: string[];
|
|
@@ -2018,23 +2025,3 @@ export interface CreateTagsRequest {
|
|
|
2018
2025
|
export interface DeleteChannelRequest {
|
|
2019
2026
|
ChannelId: string | undefined;
|
|
2020
2027
|
}
|
|
2021
|
-
export interface DeleteChannelResponse {
|
|
2022
|
-
Arn?: string;
|
|
2023
|
-
CdiInputSpecification?: CdiInputSpecification;
|
|
2024
|
-
ChannelClass?: ChannelClass;
|
|
2025
|
-
Destinations?: OutputDestination[];
|
|
2026
|
-
EgressEndpoints?: ChannelEgressEndpoint[];
|
|
2027
|
-
EncoderSettings?: EncoderSettings;
|
|
2028
|
-
Id?: string;
|
|
2029
|
-
InputAttachments?: InputAttachment[];
|
|
2030
|
-
InputSpecification?: InputSpecification;
|
|
2031
|
-
LogLevel?: LogLevel;
|
|
2032
|
-
Maintenance?: MaintenanceStatus;
|
|
2033
|
-
Name?: string;
|
|
2034
|
-
PipelineDetails?: PipelineDetail[];
|
|
2035
|
-
PipelinesRunningCount?: number;
|
|
2036
|
-
RoleArn?: string;
|
|
2037
|
-
State?: ChannelState;
|
|
2038
|
-
Tags?: Record<string, string>;
|
|
2039
|
-
Vpc?: VpcOutputSettingsDescription;
|
|
2040
|
-
}
|
|
@@ -86,6 +86,26 @@ import {
|
|
|
86
86
|
ThumbnailDetail,
|
|
87
87
|
TransferringInputDeviceSummary,
|
|
88
88
|
} from "./models_1";
|
|
89
|
+
export interface DeleteChannelResponse {
|
|
90
|
+
Arn?: string;
|
|
91
|
+
CdiInputSpecification?: CdiInputSpecification;
|
|
92
|
+
ChannelClass?: ChannelClass;
|
|
93
|
+
Destinations?: OutputDestination[];
|
|
94
|
+
EgressEndpoints?: ChannelEgressEndpoint[];
|
|
95
|
+
EncoderSettings?: EncoderSettings;
|
|
96
|
+
Id?: string;
|
|
97
|
+
InputAttachments?: InputAttachment[];
|
|
98
|
+
InputSpecification?: InputSpecification;
|
|
99
|
+
LogLevel?: LogLevel;
|
|
100
|
+
Maintenance?: MaintenanceStatus;
|
|
101
|
+
Name?: string;
|
|
102
|
+
PipelineDetails?: PipelineDetail[];
|
|
103
|
+
PipelinesRunningCount?: number;
|
|
104
|
+
RoleArn?: string;
|
|
105
|
+
State?: ChannelState;
|
|
106
|
+
Tags?: Record<string, string>;
|
|
107
|
+
Vpc?: VpcOutputSettingsDescription;
|
|
108
|
+
}
|
|
89
109
|
export interface DeleteCloudWatchAlarmTemplateRequest {
|
|
90
110
|
Identifier: string | undefined;
|
|
91
111
|
}
|
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.570.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",
|