@aws-sdk/client-medialive 3.451.0 → 3.458.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.
@@ -1598,6 +1598,88 @@ export interface StaticImageDeactivateScheduleActionSettings {
1598
1598
  */
1599
1599
  Layer?: number;
1600
1600
  }
1601
+ /**
1602
+ * @public
1603
+ * Settings for the action to activate a static image.
1604
+ */
1605
+ export interface StaticImageOutputActivateScheduleActionSettings {
1606
+ /**
1607
+ * @public
1608
+ * The duration in milliseconds for the image to remain on the video. If omitted or set to 0 the duration is unlimited and the image will remain until it is explicitly deactivated.
1609
+ */
1610
+ Duration?: number;
1611
+ /**
1612
+ * @public
1613
+ * The time in milliseconds for the image to fade in. The fade-in starts at the start time of the overlay. Default is 0 (no fade-in).
1614
+ */
1615
+ FadeIn?: number;
1616
+ /**
1617
+ * @public
1618
+ * Applies only if a duration is specified. The time in milliseconds for the image to fade out. The fade-out starts when the duration time is hit, so it effectively extends the duration. Default is 0 (no fade-out).
1619
+ */
1620
+ FadeOut?: number;
1621
+ /**
1622
+ * @public
1623
+ * The height of the image when inserted into the video, in pixels. The overlay will be scaled up or down to the specified height. Leave blank to use the native height of the overlay.
1624
+ */
1625
+ Height?: number;
1626
+ /**
1627
+ * @public
1628
+ * The location and filename of the image file to overlay on the video. The file must be a 32-bit BMP, PNG, or TGA file, and must not be larger (in pixels) than the input video.
1629
+ */
1630
+ Image: InputLocation | undefined;
1631
+ /**
1632
+ * @public
1633
+ * Placement of the left edge of the overlay relative to the left edge of the video frame, in pixels. 0 (the default) is the left edge of the frame. If the placement causes the overlay to extend beyond the right edge of the underlying video, then the overlay is cropped on the right.
1634
+ */
1635
+ ImageX?: number;
1636
+ /**
1637
+ * @public
1638
+ * Placement of the top edge of the overlay relative to the top edge of the video frame, in pixels. 0 (the default) is the top edge of the frame. If the placement causes the overlay to extend beyond the bottom edge of the underlying video, then the overlay is cropped on the bottom.
1639
+ */
1640
+ ImageY?: number;
1641
+ /**
1642
+ * @public
1643
+ * The number of the layer, 0 to 7. There are 8 layers that can be overlaid on the video, each layer with a different image. The layers are in Z order, which means that overlays with higher values of layer are inserted on top of overlays with lower values of layer. Default is 0.
1644
+ */
1645
+ Layer?: number;
1646
+ /**
1647
+ * @public
1648
+ * Opacity of image where 0 is transparent and 100 is fully opaque. Default is 100.
1649
+ */
1650
+ Opacity?: number;
1651
+ /**
1652
+ * @public
1653
+ * The name(s) of the output(s) the activation should apply to.
1654
+ */
1655
+ OutputNames: string[] | undefined;
1656
+ /**
1657
+ * @public
1658
+ * The width of the image when inserted into the video, in pixels. The overlay will be scaled up or down to the specified width. Leave blank to use the native width of the overlay.
1659
+ */
1660
+ Width?: number;
1661
+ }
1662
+ /**
1663
+ * @public
1664
+ * Settings for the action to deactivate the image in a specific layer.
1665
+ */
1666
+ export interface StaticImageOutputDeactivateScheduleActionSettings {
1667
+ /**
1668
+ * @public
1669
+ * The time in milliseconds for the image to fade out. Default is 0 (no fade-out).
1670
+ */
1671
+ FadeOut?: number;
1672
+ /**
1673
+ * @public
1674
+ * The image overlay layer to deactivate, 0 to 7. Default is 0.
1675
+ */
1676
+ Layer?: number;
1677
+ /**
1678
+ * @public
1679
+ * The name(s) of the output(s) the deactivation should apply to.
1680
+ */
1681
+ OutputNames: string[] | undefined;
1682
+ }
1601
1683
  /**
1602
1684
  * @public
1603
1685
  * Holds the settings for a single schedule action.
@@ -1668,6 +1750,16 @@ export interface ScheduleActionSettings {
1668
1750
  * Action to deactivate a static image overlay
1669
1751
  */
1670
1752
  StaticImageDeactivateSettings?: StaticImageDeactivateScheduleActionSettings;
1753
+ /**
1754
+ * @public
1755
+ * Action to activate a static image overlay in one or more specified outputs
1756
+ */
1757
+ StaticImageOutputActivateSettings?: StaticImageOutputActivateScheduleActionSettings;
1758
+ /**
1759
+ * @public
1760
+ * Action to deactivate a static image overlay in one or more specified outputs
1761
+ */
1762
+ StaticImageOutputDeactivateSettings?: StaticImageOutputDeactivateScheduleActionSettings;
1671
1763
  }
1672
1764
  /**
1673
1765
  * @public
@@ -3979,6 +4071,18 @@ export declare const FeatureActivationsInputPrepareScheduleActions: {
3979
4071
  * @public
3980
4072
  */
3981
4073
  export type FeatureActivationsInputPrepareScheduleActions = (typeof FeatureActivationsInputPrepareScheduleActions)[keyof typeof FeatureActivationsInputPrepareScheduleActions];
4074
+ /**
4075
+ * @public
4076
+ * @enum
4077
+ */
4078
+ export declare const FeatureActivationsOutputStaticImageOverlayScheduleActions: {
4079
+ readonly DISABLED: "DISABLED";
4080
+ readonly ENABLED: "ENABLED";
4081
+ };
4082
+ /**
4083
+ * @public
4084
+ */
4085
+ export type FeatureActivationsOutputStaticImageOverlayScheduleActions = (typeof FeatureActivationsOutputStaticImageOverlayScheduleActions)[keyof typeof FeatureActivationsOutputStaticImageOverlayScheduleActions];
3982
4086
  /**
3983
4087
  * @public
3984
4088
  * Feature Activations
@@ -3990,6 +4094,12 @@ export interface FeatureActivations {
3990
4094
  * If you disable the feature on an existing schedule, make sure that you first delete all input prepare actions from the schedule.
3991
4095
  */
3992
4096
  InputPrepareScheduleActions?: FeatureActivationsInputPrepareScheduleActions;
4097
+ /**
4098
+ * @public
4099
+ * Enables the output static image overlay feature. Enabling this feature allows you to send channel schedule updates
4100
+ * to display/clear/modify image overlays on an output-by-output bases.
4101
+ */
4102
+ OutputStaticImageOverlayScheduleActions?: FeatureActivationsOutputStaticImageOverlayScheduleActions;
3993
4103
  }
3994
4104
  /**
3995
4105
  * @public
@@ -4256,7 +4366,7 @@ export type ThumbnailState = (typeof ThumbnailState)[keyof typeof ThumbnailState
4256
4366
  export interface ThumbnailConfiguration {
4257
4367
  /**
4258
4368
  * @public
4259
- * Whether Thumbnail is enabled.
4369
+ * Enables the thumbnail feature. The feature generates thumbnails of the incoming video in each pipeline in the channel. AUTO turns the feature on, DISABLE turns the feature off.
4260
4370
  */
4261
4371
  State: ThumbnailState | undefined;
4262
4372
  }
@@ -6531,54 +6641,6 @@ export interface ListInputsResponse {
6531
6641
  */
6532
6642
  NextToken?: string;
6533
6643
  }
6534
- /**
6535
- * @public
6536
- * Placeholder documentation for ListInputSecurityGroupsRequest
6537
- */
6538
- export interface ListInputSecurityGroupsRequest {
6539
- /**
6540
- * @public
6541
- * Placeholder documentation for MaxResults
6542
- */
6543
- MaxResults?: number;
6544
- /**
6545
- * @public
6546
- * Placeholder documentation for __string
6547
- */
6548
- NextToken?: string;
6549
- }
6550
- /**
6551
- * @public
6552
- * Placeholder documentation for ListInputSecurityGroupsResponse
6553
- */
6554
- export interface ListInputSecurityGroupsResponse {
6555
- /**
6556
- * @public
6557
- * List of input security groups
6558
- */
6559
- InputSecurityGroups?: InputSecurityGroup[];
6560
- /**
6561
- * @public
6562
- * Placeholder documentation for __string
6563
- */
6564
- NextToken?: string;
6565
- }
6566
- /**
6567
- * @public
6568
- * Placeholder documentation for ListMultiplexesRequest
6569
- */
6570
- export interface ListMultiplexesRequest {
6571
- /**
6572
- * @public
6573
- * The maximum number of items to return.
6574
- */
6575
- MaxResults?: number;
6576
- /**
6577
- * @public
6578
- * The token to retrieve the next page of results.
6579
- */
6580
- NextToken?: string;
6581
- }
6582
6644
  /**
6583
6645
  * @internal
6584
6646
  */
@@ -1,5 +1,53 @@
1
1
  import { CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, DeviceSettingsSyncState, DeviceUpdateStatus, Input, InputAttachment, InputDestinationRequest, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceType, InputDeviceUhdSettings, InputSecurityGroup, InputSourceRequest, InputSpecification, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramSummary, MultiplexState, MultiplexSummary, Offering, OutputDestination, VpcOutputSettingsDescription } from "./models_0";
2
2
  import { AccountConfiguration, Channel, EncoderSettings, InputDeviceConfigurableSettings, Multiplex, MultiplexProgram, MultiplexProgramSettings, MultiplexSettings, PipelineDetail, RenewalSettings, Reservation } from "./models_1";
3
+ /**
4
+ * @public
5
+ * Placeholder documentation for ListInputSecurityGroupsRequest
6
+ */
7
+ export interface ListInputSecurityGroupsRequest {
8
+ /**
9
+ * @public
10
+ * Placeholder documentation for MaxResults
11
+ */
12
+ MaxResults?: number;
13
+ /**
14
+ * @public
15
+ * Placeholder documentation for __string
16
+ */
17
+ NextToken?: string;
18
+ }
19
+ /**
20
+ * @public
21
+ * Placeholder documentation for ListInputSecurityGroupsResponse
22
+ */
23
+ export interface ListInputSecurityGroupsResponse {
24
+ /**
25
+ * @public
26
+ * List of input security groups
27
+ */
28
+ InputSecurityGroups?: InputSecurityGroup[];
29
+ /**
30
+ * @public
31
+ * Placeholder documentation for __string
32
+ */
33
+ NextToken?: string;
34
+ }
35
+ /**
36
+ * @public
37
+ * Placeholder documentation for ListMultiplexesRequest
38
+ */
39
+ export interface ListMultiplexesRequest {
40
+ /**
41
+ * @public
42
+ * The maximum number of items to return.
43
+ */
44
+ MaxResults?: number;
45
+ /**
46
+ * @public
47
+ * The token to retrieve the next page of results.
48
+ */
49
+ NextToken?: string;
50
+ }
3
51
  /**
4
52
  * @public
5
53
  * Placeholder documentation for ListMultiplexesResponse
@@ -469,7 +517,7 @@ export interface StartChannelResponse {
469
517
  export interface StartInputDeviceRequest {
470
518
  /**
471
519
  * @public
472
- * The unique ID of the input device to reboot. For example, hd-123456789abcdef.
520
+ * The unique ID of the input device to start. For example, hd-123456789abcdef.
473
521
  */
474
522
  InputDeviceId: string | undefined;
475
523
  }
@@ -679,7 +727,7 @@ export interface StopChannelResponse {
679
727
  export interface StopInputDeviceRequest {
680
728
  /**
681
729
  * @public
682
- * The unique ID of the input device to reboot. For example, hd-123456789abcdef.
730
+ * The unique ID of the input device to stop. For example, hd-123456789abcdef.
683
731
  */
684
732
  InputDeviceId: string | undefined;
685
733
  }
@@ -14,7 +14,7 @@ import {
14
14
  import {
15
15
  ListInputSecurityGroupsRequest,
16
16
  ListInputSecurityGroupsResponse,
17
- } from "../models/models_1";
17
+ } from "../models/models_2";
18
18
  export { __MetadataBearer, $Command };
19
19
  export interface ListInputSecurityGroupsCommandInput
20
20
  extends ListInputSecurityGroupsRequest {}
@@ -11,8 +11,10 @@ import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
13
13
  } from "../MediaLiveClient";
14
- import { ListMultiplexesRequest } from "../models/models_1";
15
- import { ListMultiplexesResponse } from "../models/models_2";
14
+ import {
15
+ ListMultiplexesRequest,
16
+ ListMultiplexesResponse,
17
+ } from "../models/models_2";
16
18
  export { __MetadataBearer, $Command };
17
19
  export interface ListMultiplexesCommandInput extends ListMultiplexesRequest {}
18
20
  export interface ListMultiplexesCommandOutput
@@ -557,6 +557,24 @@ export interface StaticImageDeactivateScheduleActionSettings {
557
557
  FadeOut?: number;
558
558
  Layer?: number;
559
559
  }
560
+ export interface StaticImageOutputActivateScheduleActionSettings {
561
+ Duration?: number;
562
+ FadeIn?: number;
563
+ FadeOut?: number;
564
+ Height?: number;
565
+ Image: InputLocation | undefined;
566
+ ImageX?: number;
567
+ ImageY?: number;
568
+ Layer?: number;
569
+ Opacity?: number;
570
+ OutputNames: string[] | undefined;
571
+ Width?: number;
572
+ }
573
+ export interface StaticImageOutputDeactivateScheduleActionSettings {
574
+ FadeOut?: number;
575
+ Layer?: number;
576
+ OutputNames: string[] | undefined;
577
+ }
560
578
  export interface ScheduleActionSettings {
561
579
  HlsId3SegmentTaggingSettings?: HlsId3SegmentTaggingScheduleActionSettings;
562
580
  HlsTimedMetadataSettings?: HlsTimedMetadataScheduleActionSettings;
@@ -571,6 +589,8 @@ export interface ScheduleActionSettings {
571
589
  Scte35TimeSignalSettings?: Scte35TimeSignalScheduleActionSettings;
572
590
  StaticImageActivateSettings?: StaticImageActivateScheduleActionSettings;
573
591
  StaticImageDeactivateSettings?: StaticImageDeactivateScheduleActionSettings;
592
+ StaticImageOutputActivateSettings?: StaticImageOutputActivateScheduleActionSettings;
593
+ StaticImageOutputDeactivateSettings?: StaticImageOutputDeactivateScheduleActionSettings;
574
594
  }
575
595
  export interface FixedModeScheduleActionStartSettings {
576
596
  Time: string | undefined;
@@ -1366,8 +1386,15 @@ export declare const FeatureActivationsInputPrepareScheduleActions: {
1366
1386
  };
1367
1387
  export type FeatureActivationsInputPrepareScheduleActions =
1368
1388
  (typeof FeatureActivationsInputPrepareScheduleActions)[keyof typeof FeatureActivationsInputPrepareScheduleActions];
1389
+ export declare const FeatureActivationsOutputStaticImageOverlayScheduleActions: {
1390
+ readonly DISABLED: "DISABLED";
1391
+ readonly ENABLED: "ENABLED";
1392
+ };
1393
+ export type FeatureActivationsOutputStaticImageOverlayScheduleActions =
1394
+ (typeof FeatureActivationsOutputStaticImageOverlayScheduleActions)[keyof typeof FeatureActivationsOutputStaticImageOverlayScheduleActions];
1369
1395
  export interface FeatureActivations {
1370
1396
  InputPrepareScheduleActions?: FeatureActivationsInputPrepareScheduleActions;
1397
+ OutputStaticImageOverlayScheduleActions?: FeatureActivationsOutputStaticImageOverlayScheduleActions;
1371
1398
  }
1372
1399
  export declare const GlobalConfigurationInputEndAction: {
1373
1400
  readonly NONE: "NONE";
@@ -1972,18 +1999,6 @@ export interface ListInputsResponse {
1972
1999
  Inputs?: Input[];
1973
2000
  NextToken?: string;
1974
2001
  }
1975
- export interface ListInputSecurityGroupsRequest {
1976
- MaxResults?: number;
1977
- NextToken?: string;
1978
- }
1979
- export interface ListInputSecurityGroupsResponse {
1980
- InputSecurityGroups?: InputSecurityGroup[];
1981
- NextToken?: string;
1982
- }
1983
- export interface ListMultiplexesRequest {
1984
- MaxResults?: number;
1985
- NextToken?: string;
1986
- }
1987
2002
  export declare const DescribeInputDeviceThumbnailResponseFilterSensitiveLog: (
1988
2003
  obj: DescribeInputDeviceThumbnailResponse
1989
2004
  ) => any;
@@ -44,6 +44,18 @@ import {
44
44
  RenewalSettings,
45
45
  Reservation,
46
46
  } from "./models_1";
47
+ export interface ListInputSecurityGroupsRequest {
48
+ MaxResults?: number;
49
+ NextToken?: string;
50
+ }
51
+ export interface ListInputSecurityGroupsResponse {
52
+ InputSecurityGroups?: InputSecurityGroup[];
53
+ NextToken?: string;
54
+ }
55
+ export interface ListMultiplexesRequest {
56
+ MaxResults?: number;
57
+ NextToken?: string;
58
+ }
47
59
  export interface ListMultiplexesResponse {
48
60
  Multiplexes?: MultiplexSummary[];
49
61
  NextToken?: string;
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.451.0",
4
+ "version": "3.458.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.451.0",
24
+ "@aws-sdk/client-sts": "3.458.0",
25
25
  "@aws-sdk/core": "3.451.0",
26
- "@aws-sdk/credential-provider-node": "3.451.0",
26
+ "@aws-sdk/credential-provider-node": "3.458.0",
27
27
  "@aws-sdk/middleware-host-header": "3.451.0",
28
28
  "@aws-sdk/middleware-logger": "3.451.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.451.0",