@aws-sdk/client-medialive 3.932.0 → 3.933.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.
@@ -1026,6 +1026,7 @@ declare const UpdateChannelClassCommand_base: {
1026
1026
  * // },
1027
1027
  * // Rec601Settings: {},
1028
1028
  * // Rec709Settings: {},
1029
+ * // Hlg2020Settings: {},
1029
1030
  * // },
1030
1031
  * // FilterSettings: { // H265FilterSettings
1031
1032
  * // TemporalFilterSettings: {
@@ -1137,6 +1138,8 @@ declare const UpdateChannelClassCommand_base: {
1137
1138
  * // Bitrate: Number("int"),
1138
1139
  * // RateControlMode: "CBR" || "QVBR",
1139
1140
  * // MinBitrate: Number("int"),
1141
+ * // SpatialAq: "DISABLED" || "ENABLED",
1142
+ * // TemporalAq: "DISABLED" || "ENABLED",
1140
1143
  * // },
1141
1144
  * // },
1142
1145
  * // Height: Number("int"),
@@ -979,6 +979,7 @@ declare const UpdateChannelCommand_base: {
979
979
  * },
980
980
  * Rec601Settings: {},
981
981
  * Rec709Settings: {},
982
+ * Hlg2020Settings: {},
982
983
  * },
983
984
  * FilterSettings: { // H265FilterSettings
984
985
  * TemporalFilterSettings: {
@@ -1090,6 +1091,8 @@ declare const UpdateChannelCommand_base: {
1090
1091
  * Bitrate: Number("int"),
1091
1092
  * RateControlMode: "CBR" || "QVBR",
1092
1093
  * MinBitrate: Number("int"),
1094
+ * SpatialAq: "DISABLED" || "ENABLED",
1095
+ * TemporalAq: "DISABLED" || "ENABLED",
1093
1096
  * },
1094
1097
  * },
1095
1098
  * Height: Number("int"),
@@ -2225,6 +2228,7 @@ declare const UpdateChannelCommand_base: {
2225
2228
  * // },
2226
2229
  * // Rec601Settings: {},
2227
2230
  * // Rec709Settings: {},
2231
+ * // Hlg2020Settings: {},
2228
2232
  * // },
2229
2233
  * // FilterSettings: { // H265FilterSettings
2230
2234
  * // TemporalFilterSettings: {
@@ -2336,6 +2340,8 @@ declare const UpdateChannelCommand_base: {
2336
2340
  * // Bitrate: Number("int"),
2337
2341
  * // RateControlMode: "CBR" || "QVBR",
2338
2342
  * // MinBitrate: Number("int"),
2343
+ * // SpatialAq: "DISABLED" || "ENABLED",
2344
+ * // TemporalAq: "DISABLED" || "ENABLED",
2339
2345
  * // },
2340
2346
  * // },
2341
2347
  * // Height: Number("int"),
@@ -1,7 +1,7 @@
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 { UpdateNodeStateRequest, UpdateNodeStateResponse } from "../models/models_2";
4
+ import { UpdateNodeStateRequest, UpdateNodeStateResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,8 +1,7 @@
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 { UpdateReservationRequest } from "../models/models_2";
5
- import { UpdateReservationResponse } from "../models/models_3";
4
+ import { UpdateReservationRequest, UpdateReservationResponse } from "../models/models_3";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -4346,6 +4346,30 @@ export declare const Av1SceneChangeDetect: {
4346
4346
  * @public
4347
4347
  */
4348
4348
  export type Av1SceneChangeDetect = (typeof Av1SceneChangeDetect)[keyof typeof Av1SceneChangeDetect];
4349
+ /**
4350
+ * @public
4351
+ * @enum
4352
+ */
4353
+ export declare const Av1SpatialAq: {
4354
+ readonly DISABLED: "DISABLED";
4355
+ readonly ENABLED: "ENABLED";
4356
+ };
4357
+ /**
4358
+ * @public
4359
+ */
4360
+ export type Av1SpatialAq = (typeof Av1SpatialAq)[keyof typeof Av1SpatialAq];
4361
+ /**
4362
+ * @public
4363
+ * @enum
4364
+ */
4365
+ export declare const Av1TemporalAq: {
4366
+ readonly DISABLED: "DISABLED";
4367
+ readonly ENABLED: "ENABLED";
4368
+ };
4369
+ /**
4370
+ * @public
4371
+ */
4372
+ export type Av1TemporalAq = (typeof Av1TemporalAq)[keyof typeof Av1TemporalAq];
4349
4373
  /**
4350
4374
  * @public
4351
4375
  * @enum
@@ -4529,6 +4553,16 @@ export interface Av1Settings {
4529
4553
  * @public
4530
4554
  */
4531
4555
  MinBitrate?: number | undefined;
4556
+ /**
4557
+ * Spatial AQ makes adjustments within each frame based on spatial variation of content complexity. Enabled: MediaLive will determine the appropriate level of spatial AQ to apply. Disabled: No spatial AQ. For more information, see the topic about video adaptive quantization in the MediaLive user guide.
4558
+ * @public
4559
+ */
4560
+ SpatialAq?: Av1SpatialAq | undefined;
4561
+ /**
4562
+ * Temporal AQ makes adjustments within each frame based on variations in content complexity over time. Enabled: MediaLive will determine the appropriate level of temporal AQ to apply. Disabled: No temporal AQ. For more information, see the topic about video adaptive quantization in the MediaLive user guide.
4563
+ * @public
4564
+ */
4565
+ TemporalAq?: Av1TemporalAq | undefined;
4532
4566
  }
4533
4567
  /**
4534
4568
  * @public
@@ -5301,6 +5335,12 @@ export type H265ColorMetadata = (typeof H265ColorMetadata)[keyof typeof H265Colo
5301
5335
  */
5302
5336
  export interface DolbyVision81Settings {
5303
5337
  }
5338
+ /**
5339
+ * Hlg2020 Settings
5340
+ * @public
5341
+ */
5342
+ export interface Hlg2020Settings {
5343
+ }
5304
5344
  /**
5305
5345
  * H265 Color Space Settings
5306
5346
  * @public
@@ -5331,6 +5371,11 @@ export interface H265ColorSpaceSettings {
5331
5371
  * @public
5332
5372
  */
5333
5373
  Rec709Settings?: Rec709Settings | undefined;
5374
+ /**
5375
+ * Hlg2020 Settings
5376
+ * @public
5377
+ */
5378
+ Hlg2020Settings?: Hlg2020Settings | undefined;
5334
5379
  }
5335
5380
  /**
5336
5381
  * @public
@@ -6441,48 +6486,3 @@ export declare const Scte35SpliceInsertWebDeliveryAllowedBehavior: {
6441
6486
  * @public
6442
6487
  */
6443
6488
  export type Scte35SpliceInsertWebDeliveryAllowedBehavior = (typeof Scte35SpliceInsertWebDeliveryAllowedBehavior)[keyof typeof Scte35SpliceInsertWebDeliveryAllowedBehavior];
6444
- /**
6445
- * Typical configuration that applies breaks on splice inserts in addition to time signal placement opportunities, breaks, and advertisements.
6446
- * @public
6447
- */
6448
- export interface Scte35SpliceInsert {
6449
- /**
6450
- * When specified, this offset (in milliseconds) is added to the input Ad Avail PTS time. This only applies to embedded SCTE 104/35 messages and does not apply to OOB messages.
6451
- * @public
6452
- */
6453
- AdAvailOffset?: number | undefined;
6454
- /**
6455
- * When set to ignore, Segment Descriptors with noRegionalBlackoutFlag set to 0 will no longer trigger blackouts or Ad Avail slates
6456
- * @public
6457
- */
6458
- NoRegionalBlackoutFlag?: Scte35SpliceInsertNoRegionalBlackoutBehavior | undefined;
6459
- /**
6460
- * When set to ignore, Segment Descriptors with webDeliveryAllowedFlag set to 0 will no longer trigger blackouts or Ad Avail slates
6461
- * @public
6462
- */
6463
- WebDeliveryAllowedFlag?: Scte35SpliceInsertWebDeliveryAllowedBehavior | undefined;
6464
- }
6465
- /**
6466
- * @public
6467
- * @enum
6468
- */
6469
- export declare const Scte35AposNoRegionalBlackoutBehavior: {
6470
- readonly FOLLOW: "FOLLOW";
6471
- readonly IGNORE: "IGNORE";
6472
- };
6473
- /**
6474
- * @public
6475
- */
6476
- export type Scte35AposNoRegionalBlackoutBehavior = (typeof Scte35AposNoRegionalBlackoutBehavior)[keyof typeof Scte35AposNoRegionalBlackoutBehavior];
6477
- /**
6478
- * @public
6479
- * @enum
6480
- */
6481
- export declare const Scte35AposWebDeliveryAllowedBehavior: {
6482
- readonly FOLLOW: "FOLLOW";
6483
- readonly IGNORE: "IGNORE";
6484
- };
6485
- /**
6486
- * @public
6487
- */
6488
- export type Scte35AposWebDeliveryAllowedBehavior = (typeof Scte35AposWebDeliveryAllowedBehavior)[keyof typeof Scte35AposWebDeliveryAllowedBehavior];
@@ -1,6 +1,51 @@
1
1
  import { StreamingBlobTypes } from "@smithy/types";
2
2
  import { AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CdiInputSpecification, ChannelAlert, ChannelClass, ChannelEgressEndpoint, ChannelEngineVersionResponse, ChannelPipelineIdToRestart, ChannelPlacementGroupState, ChannelState, ChannelSummary, CloudWatchAlarmTemplateComparisonOperator, CloudWatchAlarmTemplateGroupSummary, CloudWatchAlarmTemplateStatistic, CloudWatchAlarmTemplateSummary, CloudWatchAlarmTemplateTargetResourceType, CloudWatchAlarmTemplateTreatMissingData, ClusterAlert, ClusterNetworkSettings, ClusterState, ClusterType, ColorCorrection, DescribeAnywhereSettings, DescribeChannelPlacementGroupSummary, DescribeClusterSummary, DescribeNetworkSummary, DescribeNodeSummary, DeviceSettingsSyncState, DeviceUpdateStatus, EventBridgeRuleTemplateEventType, EventBridgeRuleTemplateGroupSummary, EventBridgeRuleTemplateSummary, EventBridgeRuleTemplateTarget, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairConfig, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputNetworkLocation, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, InterfaceMappingCreateRequest, InterfaceMappingUpdateRequest, IpPool, IpPoolCreateRequest, IpPoolUpdateRequest, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MediaResourceNeighbor, MulticastSettings, MulticastSourceCreateRequest, MulticastSourceUpdateRequest, MultiplexAlert, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, NetworkState, NodeConnectionState, NodeInterfaceMapping, NodeInterfaceMappingCreateRequest, NodeRole, NodeState, Offering, OfferingDurationUnits, OfferingType, OutputDestination, ReservationResourceSpecification, Route, SdiSourceMapping, Smpte2110ReceiverGroupSettings, SrtSettings, VpcOutputSettingsDescription } from "./models_0";
3
- import { AcceptHeader, AccountConfiguration, AnywhereSettings, AvailBlanking, Esam, OutputGroup, PipelineDetail, RenewalSettings, Reservation, ReservationState, RouteCreateRequest, RouteUpdateRequest, ScheduleAction, Scte35AposNoRegionalBlackoutBehavior, Scte35AposWebDeliveryAllowedBehavior, Scte35SpliceInsert, SdiSourceMode, SdiSourceState, SdiSourceSummary, SdiSourceType, SignalMapMonitorDeploymentStatus, SignalMapStatus, SignalMapSummary, SrtCallerSourceRequest, ThumbnailDetail, TransferringInputDeviceSummary, VideoDescription } from "./models_1";
3
+ import { AcceptHeader, AccountConfiguration, AnywhereSettings, AvailBlanking, Esam, OutputGroup, PipelineDetail, RenewalSettings, Reservation, ReservationState, RouteCreateRequest, RouteUpdateRequest, ScheduleAction, Scte35SpliceInsertNoRegionalBlackoutBehavior, Scte35SpliceInsertWebDeliveryAllowedBehavior, SdiSourceMode, SdiSourceState, SdiSourceSummary, SdiSourceType, SignalMapMonitorDeploymentStatus, SignalMapStatus, SignalMapSummary, SrtCallerSourceRequest, ThumbnailDetail, TransferringInputDeviceSummary, VideoDescription } from "./models_1";
4
+ /**
5
+ * Typical configuration that applies breaks on splice inserts in addition to time signal placement opportunities, breaks, and advertisements.
6
+ * @public
7
+ */
8
+ export interface Scte35SpliceInsert {
9
+ /**
10
+ * When specified, this offset (in milliseconds) is added to the input Ad Avail PTS time. This only applies to embedded SCTE 104/35 messages and does not apply to OOB messages.
11
+ * @public
12
+ */
13
+ AdAvailOffset?: number | undefined;
14
+ /**
15
+ * When set to ignore, Segment Descriptors with noRegionalBlackoutFlag set to 0 will no longer trigger blackouts or Ad Avail slates
16
+ * @public
17
+ */
18
+ NoRegionalBlackoutFlag?: Scte35SpliceInsertNoRegionalBlackoutBehavior | undefined;
19
+ /**
20
+ * When set to ignore, Segment Descriptors with webDeliveryAllowedFlag set to 0 will no longer trigger blackouts or Ad Avail slates
21
+ * @public
22
+ */
23
+ WebDeliveryAllowedFlag?: Scte35SpliceInsertWebDeliveryAllowedBehavior | undefined;
24
+ }
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const Scte35AposNoRegionalBlackoutBehavior: {
30
+ readonly FOLLOW: "FOLLOW";
31
+ readonly IGNORE: "IGNORE";
32
+ };
33
+ /**
34
+ * @public
35
+ */
36
+ export type Scte35AposNoRegionalBlackoutBehavior = (typeof Scte35AposNoRegionalBlackoutBehavior)[keyof typeof Scte35AposNoRegionalBlackoutBehavior];
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const Scte35AposWebDeliveryAllowedBehavior: {
42
+ readonly FOLLOW: "FOLLOW";
43
+ readonly IGNORE: "IGNORE";
44
+ };
45
+ /**
46
+ * @public
47
+ */
48
+ export type Scte35AposWebDeliveryAllowedBehavior = (typeof Scte35AposWebDeliveryAllowedBehavior)[keyof typeof Scte35AposWebDeliveryAllowedBehavior];
4
49
  /**
5
50
  * Atypical configuration that applies segment breaks only on SCTE-35 time signal placement opportunities and breaks.
6
51
  * @public
@@ -8137,106 +8182,3 @@ export declare const UpdateNodeStateShape: {
8137
8182
  * @public
8138
8183
  */
8139
8184
  export type UpdateNodeStateShape = (typeof UpdateNodeStateShape)[keyof typeof UpdateNodeStateShape];
8140
- /**
8141
- * A request to update the state of a node.
8142
- * @public
8143
- */
8144
- export interface UpdateNodeStateRequest {
8145
- /**
8146
- * The ID of the cluster
8147
- * @public
8148
- */
8149
- ClusterId: string | undefined;
8150
- /**
8151
- * The ID of the node.
8152
- * @public
8153
- */
8154
- NodeId: string | undefined;
8155
- /**
8156
- * The state to apply to the Node. Set to ACTIVE (COMMISSIONED) to indicate that the Node is deployable. MediaLive Anywhere will consider this node it needs a Node to run a Channel on, or when it needs a Node to promote from a backup node to an active node. Set to DRAINING to isolate the Node so that MediaLive Anywhere won't use it.
8157
- * @public
8158
- */
8159
- State?: UpdateNodeStateShape | undefined;
8160
- }
8161
- /**
8162
- * Placeholder documentation for UpdateNodeStateResponse
8163
- * @public
8164
- */
8165
- export interface UpdateNodeStateResponse {
8166
- /**
8167
- * The ARN of the Node. It is automatically assigned when the Node is created.
8168
- * @public
8169
- */
8170
- Arn?: string | undefined;
8171
- /**
8172
- * An array of IDs. Each ID is one ChannelPlacementGroup that is associated with this Node. Empty if the Node is not yet associated with any groups.
8173
- * @public
8174
- */
8175
- ChannelPlacementGroups?: string[] | undefined;
8176
- /**
8177
- * The ID of the Cluster that the Node belongs to.
8178
- * @public
8179
- */
8180
- ClusterId?: string | undefined;
8181
- /**
8182
- * The current connection state of the Node.
8183
- * @public
8184
- */
8185
- ConnectionState?: NodeConnectionState | undefined;
8186
- /**
8187
- * The unique ID of the Node. Unique in the Cluster. The ID is the resource-id portion of the ARN.
8188
- * @public
8189
- */
8190
- Id?: string | undefined;
8191
- /**
8192
- * The ARN of the EC2 instance hosting the Node.
8193
- * @public
8194
- */
8195
- InstanceArn?: string | undefined;
8196
- /**
8197
- * The name that you specified for the Node.
8198
- * @public
8199
- */
8200
- Name?: string | undefined;
8201
- /**
8202
- * Documentation update needed
8203
- * @public
8204
- */
8205
- NodeInterfaceMappings?: NodeInterfaceMapping[] | undefined;
8206
- /**
8207
- * The initial role current role of the Node in the Cluster. ACTIVE means the Node is available for encoding. BACKUP means the Node is a redundant Node and might get used if an ACTIVE Node fails.
8208
- * @public
8209
- */
8210
- Role?: NodeRole | undefined;
8211
- /**
8212
- * The current state of the Node.
8213
- * @public
8214
- */
8215
- State?: NodeState | undefined;
8216
- /**
8217
- * An array of SDI source mappings. Each mapping connects one logical SdiSource to the physical SDI card and port that the physical SDI source uses.
8218
- * @public
8219
- */
8220
- SdiSourceMappings?: SdiSourceMapping[] | undefined;
8221
- }
8222
- /**
8223
- * Request to update a reservation
8224
- * @public
8225
- */
8226
- export interface UpdateReservationRequest {
8227
- /**
8228
- * Name of the reservation
8229
- * @public
8230
- */
8231
- Name?: string | undefined;
8232
- /**
8233
- * Renewal settings for the reservation
8234
- * @public
8235
- */
8236
- RenewalSettings?: RenewalSettings | undefined;
8237
- /**
8238
- * Unique reservation ID, e.g. '1234567'
8239
- * @public
8240
- */
8241
- ReservationId: string | undefined;
8242
- }
@@ -1,5 +1,109 @@
1
- import { Reservation, SdiSourceMode, SdiSourceType } from "./models_1";
2
- import { SdiSource } from "./models_2";
1
+ import { NodeConnectionState, NodeInterfaceMapping, NodeRole, NodeState, SdiSourceMapping } from "./models_0";
2
+ import { RenewalSettings, Reservation, SdiSourceMode, SdiSourceType } from "./models_1";
3
+ import { SdiSource, UpdateNodeStateShape } from "./models_2";
4
+ /**
5
+ * A request to update the state of a node.
6
+ * @public
7
+ */
8
+ export interface UpdateNodeStateRequest {
9
+ /**
10
+ * The ID of the cluster
11
+ * @public
12
+ */
13
+ ClusterId: string | undefined;
14
+ /**
15
+ * The ID of the node.
16
+ * @public
17
+ */
18
+ NodeId: string | undefined;
19
+ /**
20
+ * The state to apply to the Node. Set to ACTIVE (COMMISSIONED) to indicate that the Node is deployable. MediaLive Anywhere will consider this node it needs a Node to run a Channel on, or when it needs a Node to promote from a backup node to an active node. Set to DRAINING to isolate the Node so that MediaLive Anywhere won't use it.
21
+ * @public
22
+ */
23
+ State?: UpdateNodeStateShape | undefined;
24
+ }
25
+ /**
26
+ * Placeholder documentation for UpdateNodeStateResponse
27
+ * @public
28
+ */
29
+ export interface UpdateNodeStateResponse {
30
+ /**
31
+ * The ARN of the Node. It is automatically assigned when the Node is created.
32
+ * @public
33
+ */
34
+ Arn?: string | undefined;
35
+ /**
36
+ * An array of IDs. Each ID is one ChannelPlacementGroup that is associated with this Node. Empty if the Node is not yet associated with any groups.
37
+ * @public
38
+ */
39
+ ChannelPlacementGroups?: string[] | undefined;
40
+ /**
41
+ * The ID of the Cluster that the Node belongs to.
42
+ * @public
43
+ */
44
+ ClusterId?: string | undefined;
45
+ /**
46
+ * The current connection state of the Node.
47
+ * @public
48
+ */
49
+ ConnectionState?: NodeConnectionState | undefined;
50
+ /**
51
+ * The unique ID of the Node. Unique in the Cluster. The ID is the resource-id portion of the ARN.
52
+ * @public
53
+ */
54
+ Id?: string | undefined;
55
+ /**
56
+ * The ARN of the EC2 instance hosting the Node.
57
+ * @public
58
+ */
59
+ InstanceArn?: string | undefined;
60
+ /**
61
+ * The name that you specified for the Node.
62
+ * @public
63
+ */
64
+ Name?: string | undefined;
65
+ /**
66
+ * Documentation update needed
67
+ * @public
68
+ */
69
+ NodeInterfaceMappings?: NodeInterfaceMapping[] | undefined;
70
+ /**
71
+ * The initial role current role of the Node in the Cluster. ACTIVE means the Node is available for encoding. BACKUP means the Node is a redundant Node and might get used if an ACTIVE Node fails.
72
+ * @public
73
+ */
74
+ Role?: NodeRole | undefined;
75
+ /**
76
+ * The current state of the Node.
77
+ * @public
78
+ */
79
+ State?: NodeState | undefined;
80
+ /**
81
+ * An array of SDI source mappings. Each mapping connects one logical SdiSource to the physical SDI card and port that the physical SDI source uses.
82
+ * @public
83
+ */
84
+ SdiSourceMappings?: SdiSourceMapping[] | undefined;
85
+ }
86
+ /**
87
+ * Request to update a reservation
88
+ * @public
89
+ */
90
+ export interface UpdateReservationRequest {
91
+ /**
92
+ * Name of the reservation
93
+ * @public
94
+ */
95
+ Name?: string | undefined;
96
+ /**
97
+ * Renewal settings for the reservation
98
+ * @public
99
+ */
100
+ RenewalSettings?: RenewalSettings | undefined;
101
+ /**
102
+ * Unique reservation ID, e.g. '1234567'
103
+ * @public
104
+ */
105
+ ReservationId: string | undefined;
106
+ }
3
107
  /**
4
108
  * Placeholder documentation for UpdateReservationResponse
5
109
  * @public
@@ -240,6 +240,7 @@ export declare var H265ColorSpaceSettings: StaticStructureSchema;
240
240
  export declare var H265FilterSettings: StaticStructureSchema;
241
241
  export declare var H265Settings: StaticStructureSchema;
242
242
  export declare var Hdr10Settings: StaticStructureSchema;
243
+ export declare var Hlg2020Settings: StaticStructureSchema;
243
244
  export declare var HlsAkamaiSettings: StaticStructureSchema;
244
245
  export declare var HlsBasicPutSettings: StaticStructureSchema;
245
246
  export declare var HlsCdnSettings: StaticStructureSchema;
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UpdateNodeStateRequest,
10
10
  UpdateNodeStateResponse,
11
- } from "../models/models_2";
11
+ } from "../models/models_3";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UpdateNodeStateCommandInput extends UpdateNodeStateRequest {}
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../MediaLiveClient";
8
- import { UpdateReservationRequest } from "../models/models_2";
9
- import { UpdateReservationResponse } from "../models/models_3";
8
+ import {
9
+ UpdateReservationRequest,
10
+ UpdateReservationResponse,
11
+ } from "../models/models_3";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface UpdateReservationCommandInput
@@ -1391,6 +1391,16 @@ export declare const Av1SceneChangeDetect: {
1391
1391
  };
1392
1392
  export type Av1SceneChangeDetect =
1393
1393
  (typeof Av1SceneChangeDetect)[keyof typeof Av1SceneChangeDetect];
1394
+ export declare const Av1SpatialAq: {
1395
+ readonly DISABLED: "DISABLED";
1396
+ readonly ENABLED: "ENABLED";
1397
+ };
1398
+ export type Av1SpatialAq = (typeof Av1SpatialAq)[keyof typeof Av1SpatialAq];
1399
+ export declare const Av1TemporalAq: {
1400
+ readonly DISABLED: "DISABLED";
1401
+ readonly ENABLED: "ENABLED";
1402
+ };
1403
+ export type Av1TemporalAq = (typeof Av1TemporalAq)[keyof typeof Av1TemporalAq];
1394
1404
  export declare const TimecodeBurninFontSize: {
1395
1405
  readonly EXTRA_SMALL_10: "EXTRA_SMALL_10";
1396
1406
  readonly LARGE_48: "LARGE_48";
@@ -1438,6 +1448,8 @@ export interface Av1Settings {
1438
1448
  Bitrate?: number | undefined;
1439
1449
  RateControlMode?: Av1RateControlMode | undefined;
1440
1450
  MinBitrate?: number | undefined;
1451
+ SpatialAq?: Av1SpatialAq | undefined;
1452
+ TemporalAq?: Av1TemporalAq | undefined;
1441
1453
  }
1442
1454
  export declare const FrameCaptureIntervalUnit: {
1443
1455
  readonly MILLISECONDS: "MILLISECONDS";
@@ -1731,12 +1743,14 @@ export declare const H265ColorMetadata: {
1731
1743
  export type H265ColorMetadata =
1732
1744
  (typeof H265ColorMetadata)[keyof typeof H265ColorMetadata];
1733
1745
  export interface DolbyVision81Settings {}
1746
+ export interface Hlg2020Settings {}
1734
1747
  export interface H265ColorSpaceSettings {
1735
1748
  ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings | undefined;
1736
1749
  DolbyVision81Settings?: DolbyVision81Settings | undefined;
1737
1750
  Hdr10Settings?: Hdr10Settings | undefined;
1738
1751
  Rec601Settings?: Rec601Settings | undefined;
1739
1752
  Rec709Settings?: Rec709Settings | undefined;
1753
+ Hlg2020Settings?: Hlg2020Settings | undefined;
1740
1754
  }
1741
1755
  export declare const H265Deblocking: {
1742
1756
  readonly DISABLED: "DISABLED";
@@ -2112,24 +2126,3 @@ export declare const Scte35SpliceInsertWebDeliveryAllowedBehavior: {
2112
2126
  };
2113
2127
  export type Scte35SpliceInsertWebDeliveryAllowedBehavior =
2114
2128
  (typeof Scte35SpliceInsertWebDeliveryAllowedBehavior)[keyof typeof Scte35SpliceInsertWebDeliveryAllowedBehavior];
2115
- export interface Scte35SpliceInsert {
2116
- AdAvailOffset?: number | undefined;
2117
- NoRegionalBlackoutFlag?:
2118
- | Scte35SpliceInsertNoRegionalBlackoutBehavior
2119
- | undefined;
2120
- WebDeliveryAllowedFlag?:
2121
- | Scte35SpliceInsertWebDeliveryAllowedBehavior
2122
- | undefined;
2123
- }
2124
- export declare const Scte35AposNoRegionalBlackoutBehavior: {
2125
- readonly FOLLOW: "FOLLOW";
2126
- readonly IGNORE: "IGNORE";
2127
- };
2128
- export type Scte35AposNoRegionalBlackoutBehavior =
2129
- (typeof Scte35AposNoRegionalBlackoutBehavior)[keyof typeof Scte35AposNoRegionalBlackoutBehavior];
2130
- export declare const Scte35AposWebDeliveryAllowedBehavior: {
2131
- readonly FOLLOW: "FOLLOW";
2132
- readonly IGNORE: "IGNORE";
2133
- };
2134
- export type Scte35AposWebDeliveryAllowedBehavior =
2135
- (typeof Scte35AposWebDeliveryAllowedBehavior)[keyof typeof Scte35AposWebDeliveryAllowedBehavior];
@@ -115,9 +115,8 @@ import {
115
115
  RouteCreateRequest,
116
116
  RouteUpdateRequest,
117
117
  ScheduleAction,
118
- Scte35AposNoRegionalBlackoutBehavior,
119
- Scte35AposWebDeliveryAllowedBehavior,
120
- Scte35SpliceInsert,
118
+ Scte35SpliceInsertNoRegionalBlackoutBehavior,
119
+ Scte35SpliceInsertWebDeliveryAllowedBehavior,
121
120
  SdiSourceMode,
122
121
  SdiSourceState,
123
122
  SdiSourceSummary,
@@ -130,6 +129,27 @@ import {
130
129
  TransferringInputDeviceSummary,
131
130
  VideoDescription,
132
131
  } from "./models_1";
132
+ export interface Scte35SpliceInsert {
133
+ AdAvailOffset?: number | undefined;
134
+ NoRegionalBlackoutFlag?:
135
+ | Scte35SpliceInsertNoRegionalBlackoutBehavior
136
+ | undefined;
137
+ WebDeliveryAllowedFlag?:
138
+ | Scte35SpliceInsertWebDeliveryAllowedBehavior
139
+ | undefined;
140
+ }
141
+ export declare const Scte35AposNoRegionalBlackoutBehavior: {
142
+ readonly FOLLOW: "FOLLOW";
143
+ readonly IGNORE: "IGNORE";
144
+ };
145
+ export type Scte35AposNoRegionalBlackoutBehavior =
146
+ (typeof Scte35AposNoRegionalBlackoutBehavior)[keyof typeof Scte35AposNoRegionalBlackoutBehavior];
147
+ export declare const Scte35AposWebDeliveryAllowedBehavior: {
148
+ readonly FOLLOW: "FOLLOW";
149
+ readonly IGNORE: "IGNORE";
150
+ };
151
+ export type Scte35AposWebDeliveryAllowedBehavior =
152
+ (typeof Scte35AposWebDeliveryAllowedBehavior)[keyof typeof Scte35AposWebDeliveryAllowedBehavior];
133
153
  export interface Scte35TimeSignalApos {
134
154
  AdAvailOffset?: number | undefined;
135
155
  NoRegionalBlackoutFlag?: Scte35AposNoRegionalBlackoutBehavior | undefined;
@@ -2033,26 +2053,3 @@ export declare const UpdateNodeStateShape: {
2033
2053
  };
2034
2054
  export type UpdateNodeStateShape =
2035
2055
  (typeof UpdateNodeStateShape)[keyof typeof UpdateNodeStateShape];
2036
- export interface UpdateNodeStateRequest {
2037
- ClusterId: string | undefined;
2038
- NodeId: string | undefined;
2039
- State?: UpdateNodeStateShape | undefined;
2040
- }
2041
- export interface UpdateNodeStateResponse {
2042
- Arn?: string | undefined;
2043
- ChannelPlacementGroups?: string[] | undefined;
2044
- ClusterId?: string | undefined;
2045
- ConnectionState?: NodeConnectionState | undefined;
2046
- Id?: string | undefined;
2047
- InstanceArn?: string | undefined;
2048
- Name?: string | undefined;
2049
- NodeInterfaceMappings?: NodeInterfaceMapping[] | undefined;
2050
- Role?: NodeRole | undefined;
2051
- State?: NodeState | undefined;
2052
- SdiSourceMappings?: SdiSourceMapping[] | undefined;
2053
- }
2054
- export interface UpdateReservationRequest {
2055
- Name?: string | undefined;
2056
- RenewalSettings?: RenewalSettings | undefined;
2057
- ReservationId: string | undefined;
2058
- }
@@ -1,5 +1,40 @@
1
- import { Reservation, SdiSourceMode, SdiSourceType } from "./models_1";
2
- import { SdiSource } from "./models_2";
1
+ import {
2
+ NodeConnectionState,
3
+ NodeInterfaceMapping,
4
+ NodeRole,
5
+ NodeState,
6
+ SdiSourceMapping,
7
+ } from "./models_0";
8
+ import {
9
+ RenewalSettings,
10
+ Reservation,
11
+ SdiSourceMode,
12
+ SdiSourceType,
13
+ } from "./models_1";
14
+ import { SdiSource, UpdateNodeStateShape } from "./models_2";
15
+ export interface UpdateNodeStateRequest {
16
+ ClusterId: string | undefined;
17
+ NodeId: string | undefined;
18
+ State?: UpdateNodeStateShape | undefined;
19
+ }
20
+ export interface UpdateNodeStateResponse {
21
+ Arn?: string | undefined;
22
+ ChannelPlacementGroups?: string[] | undefined;
23
+ ClusterId?: string | undefined;
24
+ ConnectionState?: NodeConnectionState | undefined;
25
+ Id?: string | undefined;
26
+ InstanceArn?: string | undefined;
27
+ Name?: string | undefined;
28
+ NodeInterfaceMappings?: NodeInterfaceMapping[] | undefined;
29
+ Role?: NodeRole | undefined;
30
+ State?: NodeState | undefined;
31
+ SdiSourceMappings?: SdiSourceMapping[] | undefined;
32
+ }
33
+ export interface UpdateReservationRequest {
34
+ Name?: string | undefined;
35
+ RenewalSettings?: RenewalSettings | undefined;
36
+ ReservationId: string | undefined;
37
+ }
3
38
  export interface UpdateReservationResponse {
4
39
  Reservation?: Reservation | undefined;
5
40
  }