@aws-sdk/client-medialive 3.282.0 → 3.287.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 (45) hide show
  1. package/dist-cjs/commands/StartInputDeviceMaintenanceWindowCommand.js +2 -1
  2. package/dist-cjs/endpoint/ruleset.js +3 -3
  3. package/dist-cjs/models/models_0.js +17 -9
  4. package/dist-cjs/models/models_1.js +11 -10
  5. package/dist-cjs/models/models_2.js +5 -1
  6. package/dist-cjs/pagination/DescribeSchedulePaginator.js +1 -8
  7. package/dist-cjs/pagination/ListChannelsPaginator.js +1 -8
  8. package/dist-cjs/pagination/ListInputDeviceTransfersPaginator.js +1 -8
  9. package/dist-cjs/pagination/ListInputDevicesPaginator.js +1 -8
  10. package/dist-cjs/pagination/ListInputSecurityGroupsPaginator.js +1 -8
  11. package/dist-cjs/pagination/ListInputsPaginator.js +1 -8
  12. package/dist-cjs/pagination/ListMultiplexProgramsPaginator.js +1 -8
  13. package/dist-cjs/pagination/ListMultiplexesPaginator.js +1 -8
  14. package/dist-cjs/pagination/ListOfferingsPaginator.js +1 -8
  15. package/dist-cjs/pagination/ListReservationsPaginator.js +1 -8
  16. package/dist-cjs/protocols/Aws_restJson1.js +2 -0
  17. package/dist-es/commands/StartInputDeviceMaintenanceWindowCommand.js +2 -1
  18. package/dist-es/endpoint/ruleset.js +3 -3
  19. package/dist-es/models/models_0.js +13 -5
  20. package/dist-es/models/models_1.js +5 -3
  21. package/dist-es/models/models_2.js +3 -0
  22. package/dist-es/pagination/DescribeSchedulePaginator.js +1 -8
  23. package/dist-es/pagination/ListChannelsPaginator.js +1 -8
  24. package/dist-es/pagination/ListInputDeviceTransfersPaginator.js +1 -8
  25. package/dist-es/pagination/ListInputDevicesPaginator.js +1 -8
  26. package/dist-es/pagination/ListInputSecurityGroupsPaginator.js +1 -8
  27. package/dist-es/pagination/ListInputsPaginator.js +1 -8
  28. package/dist-es/pagination/ListMultiplexProgramsPaginator.js +1 -8
  29. package/dist-es/pagination/ListMultiplexesPaginator.js +1 -8
  30. package/dist-es/pagination/ListOfferingsPaginator.js +1 -8
  31. package/dist-es/pagination/ListReservationsPaginator.js +1 -8
  32. package/dist-es/protocols/Aws_restJson1.js +2 -0
  33. package/dist-types/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +2 -1
  34. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  35. package/dist-types/models/models_0.d.ts +22 -9
  36. package/dist-types/models/models_1.d.ts +10 -15
  37. package/dist-types/models/models_2.d.ts +9 -0
  38. package/dist-types/pagination/Interfaces.d.ts +1 -2
  39. package/dist-types/ts3.4/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +2 -4
  40. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  41. package/dist-types/ts3.4/models/models_0.d.ts +13 -4
  42. package/dist-types/ts3.4/models/models_1.d.ts +4 -5
  43. package/dist-types/ts3.4/models/models_2.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  45. package/package.json +9 -9
@@ -1,3 +1,6 @@
1
+ export const StartInputDeviceMaintenanceWindowResponseFilterSensitiveLog = (obj) => ({
2
+ ...obj,
3
+ });
1
4
  export const StartMultiplexRequestFilterSensitiveLog = (obj) => ({
2
5
  ...obj,
3
6
  });
@@ -1,12 +1,8 @@
1
1
  import { DescribeScheduleCommand, } from "../commands/DescribeScheduleCommand";
2
- import { MediaLive } from "../MediaLive";
3
2
  import { MediaLiveClient } from "../MediaLiveClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new DescribeScheduleCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.describeSchedule(input, ...args);
9
- };
10
6
  export async function* paginateDescribeSchedule(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateDescribeSchedule(config, input, ...additionalArgu
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaLive) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaLiveClient) {
13
+ if (config.client instanceof MediaLiveClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListChannelsCommand, } from "../commands/ListChannelsCommand";
2
- import { MediaLive } from "../MediaLive";
3
2
  import { MediaLiveClient } from "../MediaLiveClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListChannelsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listChannels(input, ...args);
9
- };
10
6
  export async function* paginateListChannels(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListChannels(config, input, ...additionalArgument
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaLive) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaLiveClient) {
13
+ if (config.client instanceof MediaLiveClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListInputDeviceTransfersCommand, } from "../commands/ListInputDeviceTransfersCommand";
2
- import { MediaLive } from "../MediaLive";
3
2
  import { MediaLiveClient } from "../MediaLiveClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListInputDeviceTransfersCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listInputDeviceTransfers(input, ...args);
9
- };
10
6
  export async function* paginateListInputDeviceTransfers(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListInputDeviceTransfers(config, input, ...additi
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaLive) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaLiveClient) {
13
+ if (config.client instanceof MediaLiveClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListInputDevicesCommand, } from "../commands/ListInputDevicesCommand";
2
- import { MediaLive } from "../MediaLive";
3
2
  import { MediaLiveClient } from "../MediaLiveClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListInputDevicesCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listInputDevices(input, ...args);
9
- };
10
6
  export async function* paginateListInputDevices(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListInputDevices(config, input, ...additionalArgu
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaLive) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaLiveClient) {
13
+ if (config.client instanceof MediaLiveClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListInputSecurityGroupsCommand, } from "../commands/ListInputSecurityGroupsCommand";
2
- import { MediaLive } from "../MediaLive";
3
2
  import { MediaLiveClient } from "../MediaLiveClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListInputSecurityGroupsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listInputSecurityGroups(input, ...args);
9
- };
10
6
  export async function* paginateListInputSecurityGroups(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListInputSecurityGroups(config, input, ...additio
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaLive) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaLiveClient) {
13
+ if (config.client instanceof MediaLiveClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListInputsCommand } from "../commands/ListInputsCommand";
2
- import { MediaLive } from "../MediaLive";
3
2
  import { MediaLiveClient } from "../MediaLiveClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListInputsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listInputs(input, ...args);
9
- };
10
6
  export async function* paginateListInputs(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListInputs(config, input, ...additionalArguments)
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaLive) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaLiveClient) {
13
+ if (config.client instanceof MediaLiveClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListMultiplexProgramsCommand, } from "../commands/ListMultiplexProgramsCommand";
2
- import { MediaLive } from "../MediaLive";
3
2
  import { MediaLiveClient } from "../MediaLiveClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListMultiplexProgramsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listMultiplexPrograms(input, ...args);
9
- };
10
6
  export async function* paginateListMultiplexPrograms(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListMultiplexPrograms(config, input, ...additiona
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaLive) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaLiveClient) {
13
+ if (config.client instanceof MediaLiveClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListMultiplexesCommand, } from "../commands/ListMultiplexesCommand";
2
- import { MediaLive } from "../MediaLive";
3
2
  import { MediaLiveClient } from "../MediaLiveClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListMultiplexesCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listMultiplexes(input, ...args);
9
- };
10
6
  export async function* paginateListMultiplexes(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListMultiplexes(config, input, ...additionalArgum
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaLive) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaLiveClient) {
13
+ if (config.client instanceof MediaLiveClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListOfferingsCommand, } from "../commands/ListOfferingsCommand";
2
- import { MediaLive } from "../MediaLive";
3
2
  import { MediaLiveClient } from "../MediaLiveClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListOfferingsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listOfferings(input, ...args);
9
- };
10
6
  export async function* paginateListOfferings(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListOfferings(config, input, ...additionalArgumen
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaLive) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaLiveClient) {
13
+ if (config.client instanceof MediaLiveClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -1,12 +1,8 @@
1
1
  import { ListReservationsCommand, } from "../commands/ListReservationsCommand";
2
- import { MediaLive } from "../MediaLive";
3
2
  import { MediaLiveClient } from "../MediaLiveClient";
4
3
  const makePagedClientRequest = async (client, input, ...args) => {
5
4
  return await client.send(new ListReservationsCommand(input), ...args);
6
5
  };
7
- const makePagedRequest = async (client, input, ...args) => {
8
- return await client.listReservations(input, ...args);
9
- };
10
6
  export async function* paginateListReservations(config, input, ...additionalArguments) {
11
7
  let token = config.startingToken || undefined;
12
8
  let hasNext = true;
@@ -14,10 +10,7 @@ export async function* paginateListReservations(config, input, ...additionalArgu
14
10
  while (hasNext) {
15
11
  input.NextToken = token;
16
12
  input["MaxResults"] = config.pageSize;
17
- if (config.client instanceof MediaLive) {
18
- page = await makePagedRequest(config.client, input, ...additionalArguments);
19
- }
20
- else if (config.client instanceof MediaLiveClient) {
13
+ if (config.client instanceof MediaLiveClient) {
21
14
  page = await makePagedClientRequest(config.client, input, ...additionalArguments);
22
15
  }
23
16
  else {
@@ -6683,6 +6683,7 @@ const serializeAws_restJson1NielsenNaesIiNw = (input, context) => {
6683
6683
  return {
6684
6684
  ...(input.CheckDigitString != null && { checkDigitString: input.CheckDigitString }),
6685
6685
  ...(input.Sid != null && { sid: __serializeFloat(input.Sid) }),
6686
+ ...(input.Timezone != null && { timezone: input.Timezone }),
6686
6687
  };
6687
6688
  };
6688
6689
  const serializeAws_restJson1NielsenWatermarksSettings = (input, context) => {
@@ -9380,6 +9381,7 @@ const deserializeAws_restJson1NielsenNaesIiNw = (output, context) => {
9380
9381
  return {
9381
9382
  CheckDigitString: __expectString(output.checkDigitString),
9382
9383
  Sid: __limitedParseDouble(output.sid),
9384
+ Timezone: __expectString(output.timezone),
9383
9385
  };
9384
9386
  };
9385
9387
  const deserializeAws_restJson1NielsenWatermarksSettings = (output, context) => {
@@ -2,7 +2,8 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
5
- import { StartInputDeviceMaintenanceWindowRequest, StartInputDeviceMaintenanceWindowResponse } from "../models/models_1";
5
+ import { StartInputDeviceMaintenanceWindowRequest } from "../models/models_1";
6
+ import { StartInputDeviceMaintenanceWindowResponse } from "../models/models_2";
6
7
  /**
7
8
  * The input for {@link StartInputDeviceMaintenanceWindowCommand}.
8
9
  */
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
12
12
  defaultSigningName: string;
13
13
  };
14
14
  export interface EndpointParameters extends __EndpointParameters {
15
- Region: string;
15
+ Region?: string;
16
16
  UseDualStack?: boolean;
17
17
  UseFIPS?: boolean;
18
18
  Endpoint?: string;
@@ -83,6 +83,18 @@ export declare enum NielsenWatermarksDistributionTypes {
83
83
  FINAL_DISTRIBUTOR = "FINAL_DISTRIBUTOR",
84
84
  PROGRAM_CONTENT = "PROGRAM_CONTENT"
85
85
  }
86
+ export declare enum NielsenWatermarkTimezones {
87
+ AMERICA_PUERTO_RICO = "AMERICA_PUERTO_RICO",
88
+ US_ALASKA = "US_ALASKA",
89
+ US_ARIZONA = "US_ARIZONA",
90
+ US_CENTRAL = "US_CENTRAL",
91
+ US_EASTERN = "US_EASTERN",
92
+ US_HAWAII = "US_HAWAII",
93
+ US_MOUNTAIN = "US_MOUNTAIN",
94
+ US_PACIFIC = "US_PACIFIC",
95
+ US_SAMOA = "US_SAMOA",
96
+ UTC = "UTC"
97
+ }
86
98
  /**
87
99
  * Nielsen Naes Ii Nw
88
100
  */
@@ -95,6 +107,11 @@ export interface NielsenNaesIiNw {
95
107
  * Enter the Nielsen Source ID (SID) to include in the watermark
96
108
  */
97
109
  Sid: number | undefined;
110
+ /**
111
+ * Choose the timezone for the time stamps in the watermark. If not provided,
112
+ * the timestamps will be in Coordinated Universal Time (UTC)
113
+ */
114
+ Timezone?: NielsenWatermarkTimezones | string;
98
115
  }
99
116
  /**
100
117
  * Nielsen Watermarks Settings
@@ -1414,7 +1431,7 @@ export interface CaptionSelectorSettings {
1414
1431
  TeletextSourceSettings?: TeletextSourceSettings;
1415
1432
  }
1416
1433
  /**
1417
- * Output groups for this Live Event. Output groups contain information about where streams should be distributed.
1434
+ * Caption Selector
1418
1435
  */
1419
1436
  export interface CaptionSelector {
1420
1437
  /**
@@ -3624,7 +3641,7 @@ export interface HlsAkamaiSettings {
3624
3641
  */
3625
3642
  HttpTransferMode?: HlsAkamaiHttpTransferMode | string;
3626
3643
  /**
3627
- * Number of retry attempts that will be made before the Live Event is put into an error state.
3644
+ * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
3628
3645
  */
3629
3646
  NumRetries?: number;
3630
3647
  /**
@@ -3653,7 +3670,7 @@ export interface HlsBasicPutSettings {
3653
3670
  */
3654
3671
  FilecacheDuration?: number;
3655
3672
  /**
3656
- * Number of retry attempts that will be made before the Live Event is put into an error state.
3673
+ * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
3657
3674
  */
3658
3675
  NumRetries?: number;
3659
3676
  /**
@@ -3681,7 +3698,7 @@ export interface HlsMediaStoreSettings {
3681
3698
  */
3682
3699
  MediaStoreStorageClass?: HlsMediaStoreStorageClass | string;
3683
3700
  /**
3684
- * Number of retry attempts that will be made before the Live Event is put into an error state.
3701
+ * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
3685
3702
  */
3686
3703
  NumRetries?: number;
3687
3704
  /**
@@ -3719,7 +3736,7 @@ export interface HlsWebdavSettings {
3719
3736
  */
3720
3737
  HttpTransferMode?: HlsWebdavHttpTransferMode | string;
3721
3738
  /**
3722
- * Number of retry attempts that will be made before the Live Event is put into an error state.
3739
+ * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
3723
3740
  */
3724
3741
  NumRetries?: number;
3725
3742
  /**
@@ -3806,10 +3823,6 @@ export declare enum HlsManifestDurationFormat {
3806
3823
  FLOATING_POINT = "FLOATING_POINT",
3807
3824
  INTEGER = "INTEGER"
3808
3825
  }
3809
- export declare enum HlsMode {
3810
- LIVE = "LIVE",
3811
- VOD = "VOD"
3812
- }
3813
3826
  /**
3814
3827
  * @internal
3815
3828
  */
@@ -2,7 +2,11 @@
2
2
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
3
3
  import { Readable } from "stream";
4
4
  import { MediaLiveServiceException as __BaseException } from "./MediaLiveServiceException";
5
- import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CaptionLanguageMapping, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings, HlsAdMarkers, HlsCaptionLanguageSetting, HlsCdnSettings, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsDiscontinuityTags, HlsEncryptionType, HlsId3SegmentTaggingState, HlsIncompleteSegmentBehavior, HlsIvInManifest, HlsIvSource, HlsManifestCompression, HlsManifestDurationFormat, HlsMode, IFrameOnlyPlaylistType, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputLossActionForHlsOut, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, KeyProviderSettings, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, Offering, OfferingDurationUnits, OfferingType, Output, OutputDestination, OutputLocationRef, ReservationResourceSpecification, VpcOutputSettingsDescription } from "./models_0";
5
+ import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CaptionLanguageMapping, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings, HlsAdMarkers, HlsCaptionLanguageSetting, HlsCdnSettings, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsDiscontinuityTags, HlsEncryptionType, HlsId3SegmentTaggingState, HlsIncompleteSegmentBehavior, HlsIvInManifest, HlsIvSource, HlsManifestCompression, HlsManifestDurationFormat, IFrameOnlyPlaylistType, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputLossActionForHlsOut, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, KeyProviderSettings, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, Offering, OfferingDurationUnits, OfferingType, Output, OutputDestination, OutputLocationRef, ReservationResourceSpecification, VpcOutputSettingsDescription } from "./models_0";
6
+ export declare enum HlsMode {
7
+ LIVE = "LIVE",
8
+ VOD = "VOD"
9
+ }
6
10
  export declare enum HlsOutputSelection {
7
11
  MANIFESTS_AND_SEGMENTS = "MANIFESTS_AND_SEGMENTS",
8
12
  SEGMENTS_ONLY = "SEGMENTS_ONLY",
@@ -2312,7 +2316,7 @@ export declare enum Scte35SpliceInsertWebDeliveryAllowedBehavior {
2312
2316
  IGNORE = "IGNORE"
2313
2317
  }
2314
2318
  /**
2315
- * Scte35 Splice Insert
2319
+ * Typical configuration that applies breaks on splice inserts in addition to time signal placement opportunities, breaks, and advertisements.
2316
2320
  */
2317
2321
  export interface Scte35SpliceInsert {
2318
2322
  /**
@@ -2337,7 +2341,7 @@ export declare enum Scte35AposWebDeliveryAllowedBehavior {
2337
2341
  IGNORE = "IGNORE"
2338
2342
  }
2339
2343
  /**
2340
- * Scte35 Time Signal Apos
2344
+ * Atypical configuration that applies segment breaks only on SCTE-35 time signal placement opportunities and breaks.
2341
2345
  */
2342
2346
  export interface Scte35TimeSignalApos {
2343
2347
  /**
@@ -2362,11 +2366,11 @@ export interface AvailSettings {
2362
2366
  */
2363
2367
  Esam?: Esam;
2364
2368
  /**
2365
- * Scte35 Splice Insert
2369
+ * Typical configuration that applies breaks on splice inserts in addition to time signal placement opportunities, breaks, and advertisements.
2366
2370
  */
2367
2371
  Scte35SpliceInsert?: Scte35SpliceInsert;
2368
2372
  /**
2369
- * Scte35 Time Signal Apos
2373
+ * Atypical configuration that applies segment breaks only on SCTE-35 time signal placement opportunities and breaks.
2370
2374
  */
2371
2375
  Scte35TimeSignalApos?: Scte35TimeSignalApos;
2372
2376
  }
@@ -2375,7 +2379,7 @@ export interface AvailSettings {
2375
2379
  */
2376
2380
  export interface AvailConfiguration {
2377
2381
  /**
2378
- * Ad avail settings.
2382
+ * Controls how SCTE-35 messages create cues. Splice Insert mode treats all segmentation signals traditionally. With Time Signal APOS mode only Time Signal Placement Opportunity and Break messages create segment breaks. With ESAM mode, signals are forwarded to an ESAM server for possible update.
2379
2383
  */
2380
2384
  AvailSettings?: AvailSettings;
2381
2385
  }
@@ -4867,11 +4871,6 @@ export interface StartInputDeviceMaintenanceWindowRequest {
4867
4871
  */
4868
4872
  InputDeviceId: string | undefined;
4869
4873
  }
4870
- /**
4871
- * Placeholder documentation for StartInputDeviceMaintenanceWindowResponse
4872
- */
4873
- export interface StartInputDeviceMaintenanceWindowResponse {
4874
- }
4875
4874
  /**
4876
4875
  * @internal
4877
4876
  */
@@ -5600,7 +5599,3 @@ export declare const StartChannelResponseFilterSensitiveLog: (obj: StartChannelR
5600
5599
  * @internal
5601
5600
  */
5602
5601
  export declare const StartInputDeviceMaintenanceWindowRequestFilterSensitiveLog: (obj: StartInputDeviceMaintenanceWindowRequest) => any;
5603
- /**
5604
- * @internal
5605
- */
5606
- export declare const StartInputDeviceMaintenanceWindowResponseFilterSensitiveLog: (obj: StartInputDeviceMaintenanceWindowResponse) => any;
@@ -1,5 +1,10 @@
1
1
  import { CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, DeviceSettingsSyncState, DeviceUpdateStatus, Input, InputAttachment, InputDestinationRequest, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceRequest, InputDeviceType, InputDeviceUhdSettings, InputSecurityGroup, InputSourceRequest, InputSpecification, InputWhitelistRuleCidr, LogLevel, MaintenanceStatus, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexState, OutputDestination, VpcOutputSettingsDescription } from "./models_0";
2
2
  import { Channel, EncoderSettings, InputDeviceConfigurableSettings, MaintenanceUpdateSettings, Multiplex, MultiplexProgram, MultiplexProgramSettings, MultiplexSettings, PipelineDetail, RenewalSettings, Reservation } from "./models_1";
3
+ /**
4
+ * Placeholder documentation for StartInputDeviceMaintenanceWindowResponse
5
+ */
6
+ export interface StartInputDeviceMaintenanceWindowResponse {
7
+ }
3
8
  /**
4
9
  * Placeholder documentation for StartMultiplexRequest
5
10
  */
@@ -530,6 +535,10 @@ export interface UpdateReservationResponse {
530
535
  */
531
536
  Reservation?: Reservation;
532
537
  }
538
+ /**
539
+ * @internal
540
+ */
541
+ export declare const StartInputDeviceMaintenanceWindowResponseFilterSensitiveLog: (obj: StartInputDeviceMaintenanceWindowResponse) => any;
533
542
  /**
534
543
  * @internal
535
544
  */
@@ -1,6 +1,5 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { MediaLive } from "../MediaLive";
3
2
  import { MediaLiveClient } from "../MediaLiveClient";
4
3
  export interface MediaLivePaginationConfiguration extends PaginationConfiguration {
5
- client: MediaLive | MediaLiveClient;
4
+ client: MediaLiveClient;
6
5
  }
@@ -11,10 +11,8 @@ import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
13
13
  } from "../MediaLiveClient";
14
- import {
15
- StartInputDeviceMaintenanceWindowRequest,
16
- StartInputDeviceMaintenanceWindowResponse,
17
- } from "../models/models_1";
14
+ import { StartInputDeviceMaintenanceWindowRequest } from "../models/models_1";
15
+ import { StartInputDeviceMaintenanceWindowResponse } from "../models/models_2";
18
16
  export interface StartInputDeviceMaintenanceWindowCommandInput
19
17
  extends StartInputDeviceMaintenanceWindowRequest {}
20
18
  export interface StartInputDeviceMaintenanceWindowCommandOutput
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
27
27
  defaultSigningName: string;
28
28
  };
29
29
  export interface EndpointParameters extends __EndpointParameters {
30
- Region: string;
30
+ Region?: string;
31
31
  UseDualStack?: boolean;
32
32
  UseFIPS?: boolean;
33
33
  Endpoint?: string;
@@ -41,9 +41,22 @@ export declare enum NielsenWatermarksDistributionTypes {
41
41
  FINAL_DISTRIBUTOR = "FINAL_DISTRIBUTOR",
42
42
  PROGRAM_CONTENT = "PROGRAM_CONTENT",
43
43
  }
44
+ export declare enum NielsenWatermarkTimezones {
45
+ AMERICA_PUERTO_RICO = "AMERICA_PUERTO_RICO",
46
+ US_ALASKA = "US_ALASKA",
47
+ US_ARIZONA = "US_ARIZONA",
48
+ US_CENTRAL = "US_CENTRAL",
49
+ US_EASTERN = "US_EASTERN",
50
+ US_HAWAII = "US_HAWAII",
51
+ US_MOUNTAIN = "US_MOUNTAIN",
52
+ US_PACIFIC = "US_PACIFIC",
53
+ US_SAMOA = "US_SAMOA",
54
+ UTC = "UTC",
55
+ }
44
56
  export interface NielsenNaesIiNw {
45
57
  CheckDigitString: string | undefined;
46
58
  Sid: number | undefined;
59
+ Timezone?: NielsenWatermarkTimezones | string;
47
60
  }
48
61
  export interface NielsenWatermarksSettings {
49
62
  NielsenCbetSettings?: NielsenCBET;
@@ -1601,10 +1614,6 @@ export declare enum HlsManifestDurationFormat {
1601
1614
  FLOATING_POINT = "FLOATING_POINT",
1602
1615
  INTEGER = "INTEGER",
1603
1616
  }
1604
- export declare enum HlsMode {
1605
- LIVE = "LIVE",
1606
- VOD = "VOD",
1607
- }
1608
1617
  export declare const InputChannelLevelFilterSensitiveLog: (
1609
1618
  obj: InputChannelLevel
1610
1619
  ) => any;
@@ -31,7 +31,6 @@ import {
31
31
  HlsIvSource,
32
32
  HlsManifestCompression,
33
33
  HlsManifestDurationFormat,
34
- HlsMode,
35
34
  IFrameOnlyPlaylistType,
36
35
  Input,
37
36
  InputAttachment,
@@ -78,6 +77,10 @@ import {
78
77
  ReservationResourceSpecification,
79
78
  VpcOutputSettingsDescription,
80
79
  } from "./models_0";
80
+ export declare enum HlsMode {
81
+ LIVE = "LIVE",
82
+ VOD = "VOD",
83
+ }
81
84
  export declare enum HlsOutputSelection {
82
85
  MANIFESTS_AND_SEGMENTS = "MANIFESTS_AND_SEGMENTS",
83
86
  SEGMENTS_ONLY = "SEGMENTS_ONLY",
@@ -1814,7 +1817,6 @@ export interface StartChannelResponse {
1814
1817
  export interface StartInputDeviceMaintenanceWindowRequest {
1815
1818
  InputDeviceId: string | undefined;
1816
1819
  }
1817
- export interface StartInputDeviceMaintenanceWindowResponse {}
1818
1820
  export declare const HlsGroupSettingsFilterSensitiveLog: (
1819
1821
  obj: HlsGroupSettings
1820
1822
  ) => any;
@@ -2345,6 +2347,3 @@ export declare const StartChannelResponseFilterSensitiveLog: (
2345
2347
  export declare const StartInputDeviceMaintenanceWindowRequestFilterSensitiveLog: (
2346
2348
  obj: StartInputDeviceMaintenanceWindowRequest
2347
2349
  ) => any;
2348
- export declare const StartInputDeviceMaintenanceWindowResponseFilterSensitiveLog: (
2349
- obj: StartInputDeviceMaintenanceWindowResponse
2350
- ) => any;
@@ -39,6 +39,7 @@ import {
39
39
  RenewalSettings,
40
40
  Reservation,
41
41
  } from "./models_1";
42
+ export interface StartInputDeviceMaintenanceWindowResponse {}
42
43
  export interface StartMultiplexRequest {
43
44
  MultiplexId: string | undefined;
44
45
  }
@@ -187,6 +188,9 @@ export interface UpdateReservationRequest {
187
188
  export interface UpdateReservationResponse {
188
189
  Reservation?: Reservation;
189
190
  }
191
+ export declare const StartInputDeviceMaintenanceWindowResponseFilterSensitiveLog: (
192
+ obj: StartInputDeviceMaintenanceWindowResponse
193
+ ) => any;
190
194
  export declare const StartMultiplexRequestFilterSensitiveLog: (
191
195
  obj: StartMultiplexRequest
192
196
  ) => any;
@@ -1,7 +1,6 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { MediaLive } from "../MediaLive";
3
2
  import { MediaLiveClient } from "../MediaLiveClient";
4
3
  export interface MediaLivePaginationConfiguration
5
4
  extends PaginationConfiguration {
6
- client: MediaLive | MediaLiveClient;
5
+ client: MediaLiveClient;
7
6
  }