@aws-sdk/client-medialive 3.541.0 → 3.549.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.
Files changed (27) hide show
  1. package/dist-cjs/index.js +116 -15
  2. package/dist-es/models/models_0.js +47 -15
  3. package/dist-es/models/models_1.js +15 -0
  4. package/dist-es/protocols/Aws_restJson1.js +42 -0
  5. package/dist-types/commands/CreateChannelCommand.d.ts +38 -0
  6. package/dist-types/commands/DeleteChannelCommand.d.ts +19 -0
  7. package/dist-types/commands/DescribeChannelCommand.d.ts +19 -0
  8. package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeOfferingCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeReservationCommand.d.ts +1 -1
  11. package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
  12. package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +19 -0
  13. package/dist-types/commands/StartChannelCommand.d.ts +19 -0
  14. package/dist-types/commands/StopChannelCommand.d.ts +19 -0
  15. package/dist-types/commands/UpdateChannelClassCommand.d.ts +19 -0
  16. package/dist-types/commands/UpdateChannelCommand.d.ts +38 -0
  17. package/dist-types/models/models_0.d.ts +167 -156
  18. package/dist-types/models/models_1.d.ts +162 -269
  19. package/dist-types/models/models_2.d.ts +270 -2
  20. package/dist-types/ts3.4/commands/DescribeMultiplexProgramCommand.d.ts +1 -1
  21. package/dist-types/ts3.4/commands/DescribeOfferingCommand.d.ts +1 -1
  22. package/dist-types/ts3.4/commands/DescribeReservationCommand.d.ts +1 -1
  23. package/dist-types/ts3.4/commands/DescribeScheduleCommand.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +73 -48
  25. package/dist-types/ts3.4/models/models_1.d.ts +51 -66
  26. package/dist-types/ts3.4/models/models_2.d.ts +67 -0
  27. package/package.json +6 -6
@@ -1,5 +1,273 @@
1
- import { CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelPipelineIdToRestart, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, Input, InputAttachment, InputDestinationRequest, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairConfig, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputSecurityGroup, InputSourceRequest, InputSpecification, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramSummary, MultiplexState, MultiplexSummary, Offering, OutputDestination, VpcOutputSettingsDescription } from "./models_0";
2
- import { AccountConfiguration, Channel, EncoderSettings, Multiplex, MultiplexProgram, MultiplexProgramSettings, MultiplexSettings, PipelineDetail, RenewalSettings, Reservation, ThumbnailDetail, TransferringInputDeviceSummary } from "./models_1";
1
+ import { CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelPipelineIdToRestart, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, Input, InputAttachment, InputDestinationRequest, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairConfig, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputSecurityGroup, InputSourceRequest, InputSpecification, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, Offering, OfferingDurationUnits, OfferingType, OutputDestination, ReservationResourceSpecification, VpcOutputSettingsDescription } from "./models_0";
2
+ import { AccountConfiguration, Channel, EncoderSettings, Multiplex, MultiplexProgram, MultiplexProgramPacketIdentifiersMap, MultiplexProgramSettings, MultiplexSettings, PipelineDetail, RenewalSettings, Reservation, ReservationState, ScheduleAction, ThumbnailDetail, TransferringInputDeviceSummary } from "./models_1";
3
+ /**
4
+ * Placeholder documentation for DescribeMultiplexProgramRequest
5
+ * @public
6
+ */
7
+ export interface DescribeMultiplexProgramRequest {
8
+ /**
9
+ * The ID of the multiplex that the program belongs to.
10
+ * @public
11
+ */
12
+ MultiplexId: string | undefined;
13
+ /**
14
+ * The name of the program.
15
+ * @public
16
+ */
17
+ ProgramName: string | undefined;
18
+ }
19
+ /**
20
+ * Placeholder documentation for DescribeMultiplexProgramResponse
21
+ * @public
22
+ */
23
+ export interface DescribeMultiplexProgramResponse {
24
+ /**
25
+ * The MediaLive channel associated with the program.
26
+ * @public
27
+ */
28
+ ChannelId?: string;
29
+ /**
30
+ * The settings for this multiplex program.
31
+ * @public
32
+ */
33
+ MultiplexProgramSettings?: MultiplexProgramSettings;
34
+ /**
35
+ * The packet identifier map for this multiplex program.
36
+ * @public
37
+ */
38
+ PacketIdentifiersMap?: MultiplexProgramPacketIdentifiersMap;
39
+ /**
40
+ * Contains information about the current sources for the specified program in the specified multiplex. Keep in mind that each multiplex pipeline connects to both pipelines in a given source channel (the channel identified by the program). But only one of those channel pipelines is ever active at one time.
41
+ * @public
42
+ */
43
+ PipelineDetails?: MultiplexProgramPipelineDetail[];
44
+ /**
45
+ * The name of the multiplex program.
46
+ * @public
47
+ */
48
+ ProgramName?: string;
49
+ }
50
+ /**
51
+ * Placeholder documentation for DescribeOfferingRequest
52
+ * @public
53
+ */
54
+ export interface DescribeOfferingRequest {
55
+ /**
56
+ * Unique offering ID, e.g. '87654321'
57
+ * @public
58
+ */
59
+ OfferingId: string | undefined;
60
+ }
61
+ /**
62
+ * Placeholder documentation for DescribeOfferingResponse
63
+ * @public
64
+ */
65
+ export interface DescribeOfferingResponse {
66
+ /**
67
+ * Unique offering ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:offering:87654321'
68
+ * @public
69
+ */
70
+ Arn?: string;
71
+ /**
72
+ * Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
73
+ * @public
74
+ */
75
+ CurrencyCode?: string;
76
+ /**
77
+ * Lease duration, e.g. '12'
78
+ * @public
79
+ */
80
+ Duration?: number;
81
+ /**
82
+ * Units for duration, e.g. 'MONTHS'
83
+ * @public
84
+ */
85
+ DurationUnits?: OfferingDurationUnits;
86
+ /**
87
+ * One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
88
+ * @public
89
+ */
90
+ FixedPrice?: number;
91
+ /**
92
+ * Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
93
+ * @public
94
+ */
95
+ OfferingDescription?: string;
96
+ /**
97
+ * Unique offering ID, e.g. '87654321'
98
+ * @public
99
+ */
100
+ OfferingId?: string;
101
+ /**
102
+ * Offering type, e.g. 'NO_UPFRONT'
103
+ * @public
104
+ */
105
+ OfferingType?: OfferingType;
106
+ /**
107
+ * AWS region, e.g. 'us-west-2'
108
+ * @public
109
+ */
110
+ Region?: string;
111
+ /**
112
+ * Resource configuration details
113
+ * @public
114
+ */
115
+ ResourceSpecification?: ReservationResourceSpecification;
116
+ /**
117
+ * Recurring usage charge for each reserved resource, e.g. '157.0'
118
+ * @public
119
+ */
120
+ UsagePrice?: number;
121
+ }
122
+ /**
123
+ * Placeholder documentation for DescribeReservationRequest
124
+ * @public
125
+ */
126
+ export interface DescribeReservationRequest {
127
+ /**
128
+ * Unique reservation ID, e.g. '1234567'
129
+ * @public
130
+ */
131
+ ReservationId: string | undefined;
132
+ }
133
+ /**
134
+ * Placeholder documentation for DescribeReservationResponse
135
+ * @public
136
+ */
137
+ export interface DescribeReservationResponse {
138
+ /**
139
+ * Unique reservation ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:reservation:1234567'
140
+ * @public
141
+ */
142
+ Arn?: string;
143
+ /**
144
+ * Number of reserved resources
145
+ * @public
146
+ */
147
+ Count?: number;
148
+ /**
149
+ * Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
150
+ * @public
151
+ */
152
+ CurrencyCode?: string;
153
+ /**
154
+ * Lease duration, e.g. '12'
155
+ * @public
156
+ */
157
+ Duration?: number;
158
+ /**
159
+ * Units for duration, e.g. 'MONTHS'
160
+ * @public
161
+ */
162
+ DurationUnits?: OfferingDurationUnits;
163
+ /**
164
+ * Reservation UTC end date and time in ISO-8601 format, e.g. '2019-03-01T00:00:00'
165
+ * @public
166
+ */
167
+ End?: string;
168
+ /**
169
+ * One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
170
+ * @public
171
+ */
172
+ FixedPrice?: number;
173
+ /**
174
+ * User specified reservation name
175
+ * @public
176
+ */
177
+ Name?: string;
178
+ /**
179
+ * Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
180
+ * @public
181
+ */
182
+ OfferingDescription?: string;
183
+ /**
184
+ * Unique offering ID, e.g. '87654321'
185
+ * @public
186
+ */
187
+ OfferingId?: string;
188
+ /**
189
+ * Offering type, e.g. 'NO_UPFRONT'
190
+ * @public
191
+ */
192
+ OfferingType?: OfferingType;
193
+ /**
194
+ * AWS region, e.g. 'us-west-2'
195
+ * @public
196
+ */
197
+ Region?: string;
198
+ /**
199
+ * Renewal settings for the reservation
200
+ * @public
201
+ */
202
+ RenewalSettings?: RenewalSettings;
203
+ /**
204
+ * Unique reservation ID, e.g. '1234567'
205
+ * @public
206
+ */
207
+ ReservationId?: string;
208
+ /**
209
+ * Resource configuration details
210
+ * @public
211
+ */
212
+ ResourceSpecification?: ReservationResourceSpecification;
213
+ /**
214
+ * Reservation UTC start date and time in ISO-8601 format, e.g. '2018-03-01T00:00:00'
215
+ * @public
216
+ */
217
+ Start?: string;
218
+ /**
219
+ * Current state of reservation, e.g. 'ACTIVE'
220
+ * @public
221
+ */
222
+ State?: ReservationState;
223
+ /**
224
+ * A collection of key-value pairs
225
+ * @public
226
+ */
227
+ Tags?: Record<string, string>;
228
+ /**
229
+ * Recurring usage charge for each reserved resource, e.g. '157.0'
230
+ * @public
231
+ */
232
+ UsagePrice?: number;
233
+ }
234
+ /**
235
+ * Placeholder documentation for DescribeScheduleRequest
236
+ * @public
237
+ */
238
+ export interface DescribeScheduleRequest {
239
+ /**
240
+ * Id of the channel whose schedule is being updated.
241
+ * @public
242
+ */
243
+ ChannelId: string | undefined;
244
+ /**
245
+ * Placeholder documentation for MaxResults
246
+ * @public
247
+ */
248
+ MaxResults?: number;
249
+ /**
250
+ * Placeholder documentation for __string
251
+ * @public
252
+ */
253
+ NextToken?: string;
254
+ }
255
+ /**
256
+ * Placeholder documentation for DescribeScheduleResponse
257
+ * @public
258
+ */
259
+ export interface DescribeScheduleResponse {
260
+ /**
261
+ * The next token; for use in pagination.
262
+ * @public
263
+ */
264
+ NextToken?: string;
265
+ /**
266
+ * The list of actions in the schedule.
267
+ * @public
268
+ */
269
+ ScheduleActions?: ScheduleAction[];
270
+ }
3
271
  /**
4
272
  * Placeholder documentation for DescribeThumbnailsRequest
5
273
  * @public
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DescribeMultiplexProgramRequest,
10
10
  DescribeMultiplexProgramResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer, $Command };
13
13
  export interface DescribeMultiplexProgramCommandInput
14
14
  extends DescribeMultiplexProgramRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DescribeOfferingRequest,
10
10
  DescribeOfferingResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer, $Command };
13
13
  export interface DescribeOfferingCommandInput extends DescribeOfferingRequest {}
14
14
  export interface DescribeOfferingCommandOutput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DescribeReservationRequest,
10
10
  DescribeReservationResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer, $Command };
13
13
  export interface DescribeReservationCommandInput
14
14
  extends DescribeReservationRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DescribeScheduleRequest,
10
10
  DescribeScheduleResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer, $Command };
13
13
  export interface DescribeScheduleCommandInput extends DescribeScheduleRequest {}
14
14
  export interface DescribeScheduleCommandOutput
@@ -6,6 +6,18 @@ export interface AudioChannelMapping {
6
6
  InputChannelLevels: InputChannelLevel[] | undefined;
7
7
  OutputChannel: number | undefined;
8
8
  }
9
+ export declare const DashRoleAudio: {
10
+ readonly ALTERNATE: "ALTERNATE";
11
+ readonly COMMENTARY: "COMMENTARY";
12
+ readonly DESCRIPTION: "DESCRIPTION";
13
+ readonly DUB: "DUB";
14
+ readonly EMERGENCY: "EMERGENCY";
15
+ readonly ENHANCED_AUDIO_INTELLIGIBILITY: "ENHANCED-AUDIO-INTELLIGIBILITY";
16
+ readonly KARAOKE: "KARAOKE";
17
+ readonly MAIN: "MAIN";
18
+ readonly SUPPLEMENTARY: "SUPPLEMENTARY";
19
+ };
20
+ export type DashRoleAudio = (typeof DashRoleAudio)[keyof typeof DashRoleAudio];
9
21
  export declare const AudioNormalizationAlgorithm: {
10
22
  readonly ITU_1770_1: "ITU_1770_1";
11
23
  readonly ITU_1770_2: "ITU_1770_2";
@@ -369,6 +381,17 @@ export interface AudioCodecSettings {
369
381
  PassThroughSettings?: PassThroughSettings;
370
382
  WavSettings?: WavSettings;
371
383
  }
384
+ export declare const DvbDashAccessibility: {
385
+ readonly DVBDASH_1_VISUALLY_IMPAIRED: "DVBDASH_1_VISUALLY_IMPAIRED";
386
+ readonly DVBDASH_2_HARD_OF_HEARING: "DVBDASH_2_HARD_OF_HEARING";
387
+ readonly DVBDASH_3_SUPPLEMENTAL_COMMENTARY: "DVBDASH_3_SUPPLEMENTAL_COMMENTARY";
388
+ readonly DVBDASH_4_DIRECTORS_COMMENTARY: "DVBDASH_4_DIRECTORS_COMMENTARY";
389
+ readonly DVBDASH_5_EDUCATIONAL_NOTES: "DVBDASH_5_EDUCATIONAL_NOTES";
390
+ readonly DVBDASH_6_MAIN_PROGRAM: "DVBDASH_6_MAIN_PROGRAM";
391
+ readonly DVBDASH_7_CLEAN_FEED: "DVBDASH_7_CLEAN_FEED";
392
+ };
393
+ export type DvbDashAccessibility =
394
+ (typeof DvbDashAccessibility)[keyof typeof DvbDashAccessibility];
372
395
  export declare const AudioDescriptionLanguageCodeControl: {
373
396
  readonly FOLLOW_INPUT: "FOLLOW_INPUT";
374
397
  readonly USE_CONFIGURED: "USE_CONFIGURED";
@@ -392,6 +415,8 @@ export interface AudioDescription {
392
415
  Name: string | undefined;
393
416
  RemixSettings?: RemixSettings;
394
417
  StreamName?: string;
418
+ AudioDashRoles?: DashRoleAudio[];
419
+ DvbDashAccessibility?: DvbDashAccessibility;
395
420
  }
396
421
  export interface AudioHlsRenditionSelection {
397
422
  GroupId: string | undefined;
@@ -460,6 +485,23 @@ export declare const AccessibilityType: {
460
485
  };
461
486
  export type AccessibilityType =
462
487
  (typeof AccessibilityType)[keyof typeof AccessibilityType];
488
+ export declare const DashRoleCaption: {
489
+ readonly ALTERNATE: "ALTERNATE";
490
+ readonly CAPTION: "CAPTION";
491
+ readonly COMMENTARY: "COMMENTARY";
492
+ readonly DESCRIPTION: "DESCRIPTION";
493
+ readonly DUB: "DUB";
494
+ readonly EASYREADER: "EASYREADER";
495
+ readonly EMERGENCY: "EMERGENCY";
496
+ readonly FORCED_SUBTITLE: "FORCED-SUBTITLE";
497
+ readonly KARAOKE: "KARAOKE";
498
+ readonly MAIN: "MAIN";
499
+ readonly METADATA: "METADATA";
500
+ readonly SUBTITLE: "SUBTITLE";
501
+ readonly SUPPLEMENTARY: "SUPPLEMENTARY";
502
+ };
503
+ export type DashRoleCaption =
504
+ (typeof DashRoleCaption)[keyof typeof DashRoleCaption];
463
505
  export interface AribDestinationSettings {}
464
506
  export declare const BurnInAlignment: {
465
507
  readonly CENTERED: "CENTERED";
@@ -663,6 +705,8 @@ export interface CaptionDescription {
663
705
  LanguageCode?: string;
664
706
  LanguageDescription?: string;
665
707
  Name: string | undefined;
708
+ CaptionDashRoles?: DashRoleCaption[];
709
+ DvbDashAccessibility?: DvbDashAccessibility;
666
710
  }
667
711
  export interface CaptionLanguageMapping {
668
712
  CaptionChannel: number | undefined;
@@ -1631,6 +1675,9 @@ export interface ArchiveOutputSettings {
1631
1675
  Extension?: string;
1632
1676
  NameModifier?: string;
1633
1677
  }
1678
+ export interface CmafIngestOutputSettings {
1679
+ NameModifier?: string;
1680
+ }
1634
1681
  export interface FrameCaptureOutputSettings {
1635
1682
  NameModifier?: string;
1636
1683
  }
@@ -1803,6 +1850,7 @@ export interface OutputSettings {
1803
1850
  MultiplexOutputSettings?: MultiplexOutputSettings;
1804
1851
  RtmpOutputSettings?: RtmpOutputSettings;
1805
1852
  UdpOutputSettings?: UdpOutputSettings;
1853
+ CmafIngestOutputSettings?: CmafIngestOutputSettings;
1806
1854
  }
1807
1855
  export interface Output {
1808
1856
  AudioDescriptionNames?: string[];
@@ -1829,6 +1877,31 @@ export interface ArchiveGroupSettings {
1829
1877
  Destination: OutputLocationRef | undefined;
1830
1878
  RolloverInterval?: number;
1831
1879
  }
1880
+ export declare const CmafNielsenId3Behavior: {
1881
+ readonly NO_PASSTHROUGH: "NO_PASSTHROUGH";
1882
+ readonly PASSTHROUGH: "PASSTHROUGH";
1883
+ };
1884
+ export type CmafNielsenId3Behavior =
1885
+ (typeof CmafNielsenId3Behavior)[keyof typeof CmafNielsenId3Behavior];
1886
+ export declare const Scte35Type: {
1887
+ readonly NONE: "NONE";
1888
+ readonly SCTE_35_WITHOUT_SEGMENTATION: "SCTE_35_WITHOUT_SEGMENTATION";
1889
+ };
1890
+ export type Scte35Type = (typeof Scte35Type)[keyof typeof Scte35Type];
1891
+ export declare const CmafIngestSegmentLengthUnits: {
1892
+ readonly MILLISECONDS: "MILLISECONDS";
1893
+ readonly SECONDS: "SECONDS";
1894
+ };
1895
+ export type CmafIngestSegmentLengthUnits =
1896
+ (typeof CmafIngestSegmentLengthUnits)[keyof typeof CmafIngestSegmentLengthUnits];
1897
+ export interface CmafIngestGroupSettings {
1898
+ Destination: OutputLocationRef | undefined;
1899
+ NielsenId3Behavior?: CmafNielsenId3Behavior;
1900
+ Scte35Type?: Scte35Type;
1901
+ SegmentLength?: number;
1902
+ SegmentLengthUnits?: CmafIngestSegmentLengthUnits;
1903
+ SendDelayMs?: number;
1904
+ }
1832
1905
  export interface FrameCaptureS3Settings {
1833
1906
  CannedAcl?: S3CannedAcl;
1834
1907
  }
@@ -1870,51 +1943,3 @@ export declare const HlsDiscontinuityTags: {
1870
1943
  };
1871
1944
  export type HlsDiscontinuityTags =
1872
1945
  (typeof HlsDiscontinuityTags)[keyof typeof HlsDiscontinuityTags];
1873
- export declare const HlsEncryptionType: {
1874
- readonly AES128: "AES128";
1875
- readonly SAMPLE_AES: "SAMPLE_AES";
1876
- };
1877
- export type HlsEncryptionType =
1878
- (typeof HlsEncryptionType)[keyof typeof HlsEncryptionType];
1879
- export declare const HlsAkamaiHttpTransferMode: {
1880
- readonly CHUNKED: "CHUNKED";
1881
- readonly NON_CHUNKED: "NON_CHUNKED";
1882
- };
1883
- export type HlsAkamaiHttpTransferMode =
1884
- (typeof HlsAkamaiHttpTransferMode)[keyof typeof HlsAkamaiHttpTransferMode];
1885
- export interface HlsAkamaiSettings {
1886
- ConnectionRetryInterval?: number;
1887
- FilecacheDuration?: number;
1888
- HttpTransferMode?: HlsAkamaiHttpTransferMode;
1889
- NumRetries?: number;
1890
- RestartDelay?: number;
1891
- Salt?: string;
1892
- Token?: string;
1893
- }
1894
- export interface HlsBasicPutSettings {
1895
- ConnectionRetryInterval?: number;
1896
- FilecacheDuration?: number;
1897
- NumRetries?: number;
1898
- RestartDelay?: number;
1899
- }
1900
- export declare const HlsMediaStoreStorageClass: {
1901
- readonly TEMPORAL: "TEMPORAL";
1902
- };
1903
- export type HlsMediaStoreStorageClass =
1904
- (typeof HlsMediaStoreStorageClass)[keyof typeof HlsMediaStoreStorageClass];
1905
- export interface HlsMediaStoreSettings {
1906
- ConnectionRetryInterval?: number;
1907
- FilecacheDuration?: number;
1908
- MediaStoreStorageClass?: HlsMediaStoreStorageClass;
1909
- NumRetries?: number;
1910
- RestartDelay?: number;
1911
- }
1912
- export interface HlsS3Settings {
1913
- CannedAcl?: S3CannedAcl;
1914
- }
1915
- export declare const HlsWebdavHttpTransferMode: {
1916
- readonly CHUNKED: "CHUNKED";
1917
- readonly NON_CHUNKED: "NON_CHUNKED";
1918
- };
1919
- export type HlsWebdavHttpTransferMode =
1920
- (typeof HlsWebdavHttpTransferMode)[keyof typeof HlsWebdavHttpTransferMode];
@@ -12,23 +12,18 @@ import {
12
12
  ChannelClass,
13
13
  ChannelEgressEndpoint,
14
14
  ChannelState,
15
+ CmafIngestGroupSettings,
15
16
  ColorCorrection,
16
17
  DeviceSettingsSyncState,
17
18
  DeviceUpdateStatus,
18
19
  FrameCaptureGroupSettings,
19
20
  Hdr10Settings,
20
21
  HlsAdMarkers,
21
- HlsAkamaiSettings,
22
- HlsBasicPutSettings,
23
22
  HlsCaptionLanguageSetting,
24
23
  HlsClientCache,
25
24
  HlsCodecSpecification,
26
25
  HlsDirectoryStructure,
27
26
  HlsDiscontinuityTags,
28
- HlsEncryptionType,
29
- HlsMediaStoreSettings,
30
- HlsS3Settings,
31
- HlsWebdavHttpTransferMode,
32
27
  Input,
33
28
  InputAttachment,
34
29
  InputClass,
@@ -66,8 +61,57 @@ import {
66
61
  OutputDestination,
67
62
  OutputLocationRef,
68
63
  ReservationResourceSpecification,
64
+ S3CannedAcl,
69
65
  VpcOutputSettingsDescription,
70
66
  } from "./models_0";
67
+ export declare const HlsEncryptionType: {
68
+ readonly AES128: "AES128";
69
+ readonly SAMPLE_AES: "SAMPLE_AES";
70
+ };
71
+ export type HlsEncryptionType =
72
+ (typeof HlsEncryptionType)[keyof typeof HlsEncryptionType];
73
+ export declare const HlsAkamaiHttpTransferMode: {
74
+ readonly CHUNKED: "CHUNKED";
75
+ readonly NON_CHUNKED: "NON_CHUNKED";
76
+ };
77
+ export type HlsAkamaiHttpTransferMode =
78
+ (typeof HlsAkamaiHttpTransferMode)[keyof typeof HlsAkamaiHttpTransferMode];
79
+ export interface HlsAkamaiSettings {
80
+ ConnectionRetryInterval?: number;
81
+ FilecacheDuration?: number;
82
+ HttpTransferMode?: HlsAkamaiHttpTransferMode;
83
+ NumRetries?: number;
84
+ RestartDelay?: number;
85
+ Salt?: string;
86
+ Token?: string;
87
+ }
88
+ export interface HlsBasicPutSettings {
89
+ ConnectionRetryInterval?: number;
90
+ FilecacheDuration?: number;
91
+ NumRetries?: number;
92
+ RestartDelay?: number;
93
+ }
94
+ export declare const HlsMediaStoreStorageClass: {
95
+ readonly TEMPORAL: "TEMPORAL";
96
+ };
97
+ export type HlsMediaStoreStorageClass =
98
+ (typeof HlsMediaStoreStorageClass)[keyof typeof HlsMediaStoreStorageClass];
99
+ export interface HlsMediaStoreSettings {
100
+ ConnectionRetryInterval?: number;
101
+ FilecacheDuration?: number;
102
+ MediaStoreStorageClass?: HlsMediaStoreStorageClass;
103
+ NumRetries?: number;
104
+ RestartDelay?: number;
105
+ }
106
+ export interface HlsS3Settings {
107
+ CannedAcl?: S3CannedAcl;
108
+ }
109
+ export declare const HlsWebdavHttpTransferMode: {
110
+ readonly CHUNKED: "CHUNKED";
111
+ readonly NON_CHUNKED: "NON_CHUNKED";
112
+ };
113
+ export type HlsWebdavHttpTransferMode =
114
+ (typeof HlsWebdavHttpTransferMode)[keyof typeof HlsWebdavHttpTransferMode];
71
115
  export interface HlsWebdavSettings {
72
116
  ConnectionRetryInterval?: number;
73
117
  FilecacheDuration?: number;
@@ -390,6 +434,7 @@ export interface OutputGroupSettings {
390
434
  MultiplexGroupSettings?: MultiplexGroupSettings;
391
435
  RtmpGroupSettings?: RtmpGroupSettings;
392
436
  UdpGroupSettings?: UdpGroupSettings;
437
+ CmafIngestGroupSettings?: CmafIngestGroupSettings;
393
438
  }
394
439
  export interface OutputGroup {
395
440
  Name?: string;
@@ -1959,66 +2004,6 @@ export interface DescribeMultiplexResponse {
1959
2004
  State?: MultiplexState;
1960
2005
  Tags?: Record<string, string>;
1961
2006
  }
1962
- export interface DescribeMultiplexProgramRequest {
1963
- MultiplexId: string | undefined;
1964
- ProgramName: string | undefined;
1965
- }
1966
- export interface DescribeMultiplexProgramResponse {
1967
- ChannelId?: string;
1968
- MultiplexProgramSettings?: MultiplexProgramSettings;
1969
- PacketIdentifiersMap?: MultiplexProgramPacketIdentifiersMap;
1970
- PipelineDetails?: MultiplexProgramPipelineDetail[];
1971
- ProgramName?: string;
1972
- }
1973
- export interface DescribeOfferingRequest {
1974
- OfferingId: string | undefined;
1975
- }
1976
- export interface DescribeOfferingResponse {
1977
- Arn?: string;
1978
- CurrencyCode?: string;
1979
- Duration?: number;
1980
- DurationUnits?: OfferingDurationUnits;
1981
- FixedPrice?: number;
1982
- OfferingDescription?: string;
1983
- OfferingId?: string;
1984
- OfferingType?: OfferingType;
1985
- Region?: string;
1986
- ResourceSpecification?: ReservationResourceSpecification;
1987
- UsagePrice?: number;
1988
- }
1989
- export interface DescribeReservationRequest {
1990
- ReservationId: string | undefined;
1991
- }
1992
- export interface DescribeReservationResponse {
1993
- Arn?: string;
1994
- Count?: number;
1995
- CurrencyCode?: string;
1996
- Duration?: number;
1997
- DurationUnits?: OfferingDurationUnits;
1998
- End?: string;
1999
- FixedPrice?: number;
2000
- Name?: string;
2001
- OfferingDescription?: string;
2002
- OfferingId?: string;
2003
- OfferingType?: OfferingType;
2004
- Region?: string;
2005
- RenewalSettings?: RenewalSettings;
2006
- ReservationId?: string;
2007
- ResourceSpecification?: ReservationResourceSpecification;
2008
- Start?: string;
2009
- State?: ReservationState;
2010
- Tags?: Record<string, string>;
2011
- UsagePrice?: number;
2012
- }
2013
- export interface DescribeScheduleRequest {
2014
- ChannelId: string | undefined;
2015
- MaxResults?: number;
2016
- NextToken?: string;
2017
- }
2018
- export interface DescribeScheduleResponse {
2019
- NextToken?: string;
2020
- ScheduleActions?: ScheduleAction[];
2021
- }
2022
2007
  export declare const DescribeInputDeviceThumbnailResponseFilterSensitiveLog: (
2023
2008
  obj: DescribeInputDeviceThumbnailResponse
2024
2009
  ) => any;