@aws-sdk/client-medialive 3.363.0 → 3.368.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 (52) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/MediaLive.js +6 -0
  3. package/dist-cjs/commands/DescribeAccountConfigurationCommand.js +46 -0
  4. package/dist-cjs/commands/DescribeThumbnailsCommand.js +46 -0
  5. package/dist-cjs/commands/UpdateAccountConfigurationCommand.js +46 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/models/models_1.js +11 -7
  8. package/dist-cjs/models/models_2.js +5 -0
  9. package/dist-cjs/protocols/Aws_restJson1.js +273 -3
  10. package/dist-es/MediaLive.js +6 -0
  11. package/dist-es/commands/DescribeAccountConfigurationCommand.js +42 -0
  12. package/dist-es/commands/DescribeThumbnailsCommand.js +42 -0
  13. package/dist-es/commands/UpdateAccountConfigurationCommand.js +42 -0
  14. package/dist-es/commands/index.js +3 -0
  15. package/dist-es/models/models_1.js +8 -4
  16. package/dist-es/models/models_2.js +4 -1
  17. package/dist-es/protocols/Aws_restJson1.js +265 -1
  18. package/dist-types/MediaLive.d.ts +21 -0
  19. package/dist-types/MediaLiveClient.d.ts +5 -2
  20. package/dist-types/commands/CreateChannelCommand.d.ts +6 -0
  21. package/dist-types/commands/DeleteChannelCommand.d.ts +3 -0
  22. package/dist-types/commands/DescribeAccountConfigurationCommand.d.ts +91 -0
  23. package/dist-types/commands/DescribeChannelCommand.d.ts +3 -0
  24. package/dist-types/commands/DescribeThumbnailsCommand.d.ts +111 -0
  25. package/dist-types/commands/PurchaseOfferingCommand.d.ts +1 -1
  26. package/dist-types/commands/RebootInputDeviceCommand.d.ts +1 -1
  27. package/dist-types/commands/RejectInputDeviceTransferCommand.d.ts +1 -1
  28. package/dist-types/commands/StartChannelCommand.d.ts +4 -1
  29. package/dist-types/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +1 -2
  30. package/dist-types/commands/StopChannelCommand.d.ts +3 -0
  31. package/dist-types/commands/UpdateAccountConfigurationCommand.d.ts +98 -0
  32. package/dist-types/commands/UpdateChannelClassCommand.d.ts +3 -0
  33. package/dist-types/commands/UpdateChannelCommand.d.ts +6 -0
  34. package/dist-types/commands/index.d.ts +3 -0
  35. package/dist-types/models/models_1.d.ts +128 -192
  36. package/dist-types/models/models_2.d.ts +213 -1
  37. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  38. package/dist-types/ts3.4/MediaLive.d.ts +51 -0
  39. package/dist-types/ts3.4/MediaLiveClient.d.ts +18 -0
  40. package/dist-types/ts3.4/commands/DescribeAccountConfigurationCommand.d.ts +42 -0
  41. package/dist-types/ts3.4/commands/DescribeThumbnailsCommand.d.ts +39 -0
  42. package/dist-types/ts3.4/commands/PurchaseOfferingCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/RebootInputDeviceCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/RejectInputDeviceTransferCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/StartChannelCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +4 -2
  47. package/dist-types/ts3.4/commands/UpdateAccountConfigurationCommand.d.ts +42 -0
  48. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  49. package/dist-types/ts3.4/models/models_1.d.ts +40 -53
  50. package/dist-types/ts3.4/models/models_2.d.ts +60 -0
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  52. package/package.json +1 -1
@@ -1488,6 +1488,54 @@ export interface ScheduleAction {
1488
1488
  */
1489
1489
  ScheduleActionStartSettings: ScheduleActionStartSettings | undefined;
1490
1490
  }
1491
+ /**
1492
+ * @public
1493
+ * @enum
1494
+ */
1495
+ export declare const ThumbnailType: {
1496
+ readonly CURRENT_ACTIVE: "CURRENT_ACTIVE";
1497
+ readonly UNSPECIFIED: "UNSPECIFIED";
1498
+ };
1499
+ /**
1500
+ * @public
1501
+ */
1502
+ export type ThumbnailType = (typeof ThumbnailType)[keyof typeof ThumbnailType];
1503
+ /**
1504
+ * @public
1505
+ * Details of a single thumbnail
1506
+ */
1507
+ export interface Thumbnail {
1508
+ /**
1509
+ * The binary data for the latest thumbnail.
1510
+ */
1511
+ Body?: string;
1512
+ /**
1513
+ * The content type for the latest thumbnail.
1514
+ */
1515
+ ContentType?: string;
1516
+ /**
1517
+ * Thumbnail Type
1518
+ */
1519
+ ThumbnailType?: ThumbnailType | string;
1520
+ /**
1521
+ * Time stamp for the latest thumbnail.
1522
+ */
1523
+ TimeStamp?: Date;
1524
+ }
1525
+ /**
1526
+ * @public
1527
+ * Thumbnail details for one pipeline of a running channel.
1528
+ */
1529
+ export interface ThumbnailDetail {
1530
+ /**
1531
+ * Pipeline ID
1532
+ */
1533
+ PipelineId?: string;
1534
+ /**
1535
+ * thumbnails of a single pipeline
1536
+ */
1537
+ Thumbnails?: Thumbnail[];
1538
+ }
1491
1539
  /**
1492
1540
  * @public
1493
1541
  * @enum
@@ -3053,6 +3101,16 @@ export declare class UnprocessableEntityException extends __BaseException {
3053
3101
  */
3054
3102
  constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
3055
3103
  }
3104
+ /**
3105
+ * @public
3106
+ * Placeholder documentation for AccountConfiguration
3107
+ */
3108
+ export interface AccountConfiguration {
3109
+ /**
3110
+ * Specifies the KMS key to use for all features that use key encryption. Specify the ARN of a KMS key that you have created. Or leave blank to use the key that MediaLive creates and manages for you.
3111
+ */
3112
+ KmsKeyId?: string;
3113
+ }
3056
3114
  /**
3057
3115
  * @public
3058
3116
  * @enum
@@ -3661,6 +3719,28 @@ export interface NielsenConfiguration {
3661
3719
  */
3662
3720
  NielsenPcmToId3Tagging?: NielsenPcmToId3TaggingState | string;
3663
3721
  }
3722
+ /**
3723
+ * @public
3724
+ * @enum
3725
+ */
3726
+ export declare const ThumbnailState: {
3727
+ readonly AUTO: "AUTO";
3728
+ readonly DISABLED: "DISABLED";
3729
+ };
3730
+ /**
3731
+ * @public
3732
+ */
3733
+ export type ThumbnailState = (typeof ThumbnailState)[keyof typeof ThumbnailState];
3734
+ /**
3735
+ * @public
3736
+ * Thumbnail Configuration
3737
+ */
3738
+ export interface ThumbnailConfiguration {
3739
+ /**
3740
+ * Whether Thumbnail is enabled.
3741
+ */
3742
+ State: ThumbnailState | string | undefined;
3743
+ }
3664
3744
  /**
3665
3745
  * @public
3666
3746
  * @enum
@@ -3744,6 +3824,10 @@ export interface EncoderSettings {
3744
3824
  * Placeholder documentation for __listOfVideoDescription
3745
3825
  */
3746
3826
  VideoDescriptions: VideoDescription[] | undefined;
3827
+ /**
3828
+ * Thumbnail configuration settings.
3829
+ */
3830
+ ThumbnailConfiguration?: ThumbnailConfiguration;
3747
3831
  }
3748
3832
  /**
3749
3833
  * @public
@@ -4762,6 +4846,22 @@ export interface DeleteTagsRequest {
4762
4846
  */
4763
4847
  TagKeys: string[] | undefined;
4764
4848
  }
4849
+ /**
4850
+ * @public
4851
+ * Placeholder documentation for DescribeAccountConfigurationRequest
4852
+ */
4853
+ export interface DescribeAccountConfigurationRequest {
4854
+ }
4855
+ /**
4856
+ * @public
4857
+ * Placeholder documentation for DescribeAccountConfigurationResponse
4858
+ */
4859
+ export interface DescribeAccountConfigurationResponse {
4860
+ /**
4861
+ * Placeholder documentation for AccountConfiguration
4862
+ */
4863
+ AccountConfiguration?: AccountConfiguration;
4864
+ }
4765
4865
  /**
4766
4866
  * @public
4767
4867
  * Placeholder documentation for DescribeChannelRequest
@@ -5362,6 +5462,34 @@ export interface DescribeScheduleResponse {
5362
5462
  */
5363
5463
  ScheduleActions?: ScheduleAction[];
5364
5464
  }
5465
+ /**
5466
+ * @public
5467
+ * Placeholder documentation for DescribeThumbnailsRequest
5468
+ */
5469
+ export interface DescribeThumbnailsRequest {
5470
+ /**
5471
+ * Unique ID of the channel
5472
+ */
5473
+ ChannelId: string | undefined;
5474
+ /**
5475
+ * Pipeline ID ("0" or "1")
5476
+ */
5477
+ PipelineId: string | undefined;
5478
+ /**
5479
+ * thumbnail type
5480
+ */
5481
+ ThumbnailType: string | undefined;
5482
+ }
5483
+ /**
5484
+ * @public
5485
+ * Placeholder documentation for DescribeThumbnailsResponse
5486
+ */
5487
+ export interface DescribeThumbnailsResponse {
5488
+ /**
5489
+ * Placeholder documentation for __listOfThumbnailDetail
5490
+ */
5491
+ ThumbnailDetails?: ThumbnailDetail[];
5492
+ }
5365
5493
  /**
5366
5494
  * @public
5367
5495
  * Configurable settings for the input device.
@@ -5750,198 +5878,6 @@ export interface MaintenanceUpdateSettings {
5750
5878
  */
5751
5879
  MaintenanceStartTime?: string;
5752
5880
  }
5753
- /**
5754
- * @public
5755
- * Placeholder documentation for PurchaseOfferingRequest
5756
- */
5757
- export interface PurchaseOfferingRequest {
5758
- /**
5759
- * Number of resources
5760
- */
5761
- Count: number | undefined;
5762
- /**
5763
- * Name for the new reservation
5764
- */
5765
- Name?: string;
5766
- /**
5767
- * Offering to purchase, e.g. '87654321'
5768
- */
5769
- OfferingId: string | undefined;
5770
- /**
5771
- * Renewal settings for the reservation
5772
- */
5773
- RenewalSettings?: RenewalSettings;
5774
- /**
5775
- * Unique request ID to be specified. This is needed to prevent retries from creating multiple resources.
5776
- */
5777
- RequestId?: string;
5778
- /**
5779
- * Requested reservation start time (UTC) in ISO-8601 format. The specified time must be between the first day of the current month and one year from now. If no value is given, the default is now.
5780
- */
5781
- Start?: string;
5782
- /**
5783
- * A collection of key-value pairs
5784
- */
5785
- Tags?: Record<string, string>;
5786
- }
5787
- /**
5788
- * @public
5789
- * Placeholder documentation for PurchaseOfferingResponse
5790
- */
5791
- export interface PurchaseOfferingResponse {
5792
- /**
5793
- * Reserved resources available to use
5794
- */
5795
- Reservation?: Reservation;
5796
- }
5797
- /**
5798
- * @public
5799
- * @enum
5800
- */
5801
- export declare const RebootInputDeviceForce: {
5802
- readonly NO: "NO";
5803
- readonly YES: "YES";
5804
- };
5805
- /**
5806
- * @public
5807
- */
5808
- export type RebootInputDeviceForce = (typeof RebootInputDeviceForce)[keyof typeof RebootInputDeviceForce];
5809
- /**
5810
- * @public
5811
- * A request to reboot an AWS Elemental device.
5812
- */
5813
- export interface RebootInputDeviceRequest {
5814
- /**
5815
- * Force a reboot of an input device. If the device is streaming, it will stop streaming and begin rebooting within a few seconds of sending the command. If the device was streaming prior to the reboot, the device will resume streaming when the reboot completes.
5816
- */
5817
- Force?: RebootInputDeviceForce | string;
5818
- /**
5819
- * The unique ID of the input device to reboot. For example, hd-123456789abcdef.
5820
- */
5821
- InputDeviceId: string | undefined;
5822
- }
5823
- /**
5824
- * @public
5825
- * Placeholder documentation for RebootInputDeviceResponse
5826
- */
5827
- export interface RebootInputDeviceResponse {
5828
- }
5829
- /**
5830
- * @public
5831
- * Placeholder documentation for RejectInputDeviceTransferRequest
5832
- */
5833
- export interface RejectInputDeviceTransferRequest {
5834
- /**
5835
- * The unique ID of the input device to reject. For example, hd-123456789abcdef.
5836
- */
5837
- InputDeviceId: string | undefined;
5838
- }
5839
- /**
5840
- * @public
5841
- * Placeholder documentation for RejectInputDeviceTransferResponse
5842
- */
5843
- export interface RejectInputDeviceTransferResponse {
5844
- }
5845
- /**
5846
- * @public
5847
- * Placeholder documentation for StartChannelRequest
5848
- */
5849
- export interface StartChannelRequest {
5850
- /**
5851
- * A request to start a channel
5852
- */
5853
- ChannelId: string | undefined;
5854
- }
5855
- /**
5856
- * @public
5857
- * Placeholder documentation for StartChannelResponse
5858
- */
5859
- export interface StartChannelResponse {
5860
- /**
5861
- * The unique arn of the channel.
5862
- */
5863
- Arn?: string;
5864
- /**
5865
- * Specification of CDI inputs for this channel
5866
- */
5867
- CdiInputSpecification?: CdiInputSpecification;
5868
- /**
5869
- * The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
5870
- */
5871
- ChannelClass?: ChannelClass | string;
5872
- /**
5873
- * A list of destinations of the channel. For UDP outputs, there is one
5874
- * destination per output. For other types (HLS, for example), there is
5875
- * one destination per packager.
5876
- */
5877
- Destinations?: OutputDestination[];
5878
- /**
5879
- * The endpoints where outgoing connections initiate from
5880
- */
5881
- EgressEndpoints?: ChannelEgressEndpoint[];
5882
- /**
5883
- * Encoder Settings
5884
- */
5885
- EncoderSettings?: EncoderSettings;
5886
- /**
5887
- * The unique id of the channel.
5888
- */
5889
- Id?: string;
5890
- /**
5891
- * List of input attachments for channel.
5892
- */
5893
- InputAttachments?: InputAttachment[];
5894
- /**
5895
- * Specification of network and file inputs for this channel
5896
- */
5897
- InputSpecification?: InputSpecification;
5898
- /**
5899
- * The log level being written to CloudWatch Logs.
5900
- */
5901
- LogLevel?: LogLevel | string;
5902
- /**
5903
- * Maintenance settings for this channel.
5904
- */
5905
- Maintenance?: MaintenanceStatus;
5906
- /**
5907
- * The name of the channel. (user-mutable)
5908
- */
5909
- Name?: string;
5910
- /**
5911
- * Runtime details for the pipelines of a running channel.
5912
- */
5913
- PipelineDetails?: PipelineDetail[];
5914
- /**
5915
- * The number of currently healthy pipelines.
5916
- */
5917
- PipelinesRunningCount?: number;
5918
- /**
5919
- * The Amazon Resource Name (ARN) of the role assumed when running the Channel.
5920
- */
5921
- RoleArn?: string;
5922
- /**
5923
- * Placeholder documentation for ChannelState
5924
- */
5925
- State?: ChannelState | string;
5926
- /**
5927
- * A collection of key-value pairs.
5928
- */
5929
- Tags?: Record<string, string>;
5930
- /**
5931
- * Settings for VPC output
5932
- */
5933
- Vpc?: VpcOutputSettingsDescription;
5934
- }
5935
- /**
5936
- * @public
5937
- * Placeholder documentation for StartInputDeviceMaintenanceWindowRequest
5938
- */
5939
- export interface StartInputDeviceMaintenanceWindowRequest {
5940
- /**
5941
- * The unique ID of the input device to start a maintenance window for. For example, hd-123456789abcdef.
5942
- */
5943
- InputDeviceId: string | undefined;
5944
- }
5945
5881
  /**
5946
5882
  * @internal
5947
5883
  */
@@ -1,5 +1,197 @@
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
- import { Channel, EncoderSettings, InputDeviceConfigurableSettings, MaintenanceUpdateSettings, Multiplex, MultiplexProgram, MultiplexProgramSettings, MultiplexSettings, PipelineDetail, RenewalSettings, Reservation } from "./models_1";
2
+ import { AccountConfiguration, Channel, EncoderSettings, InputDeviceConfigurableSettings, MaintenanceUpdateSettings, Multiplex, MultiplexProgram, MultiplexProgramSettings, MultiplexSettings, PipelineDetail, RenewalSettings, Reservation } from "./models_1";
3
+ /**
4
+ * @public
5
+ * Placeholder documentation for PurchaseOfferingRequest
6
+ */
7
+ export interface PurchaseOfferingRequest {
8
+ /**
9
+ * Number of resources
10
+ */
11
+ Count: number | undefined;
12
+ /**
13
+ * Name for the new reservation
14
+ */
15
+ Name?: string;
16
+ /**
17
+ * Offering to purchase, e.g. '87654321'
18
+ */
19
+ OfferingId: string | undefined;
20
+ /**
21
+ * Renewal settings for the reservation
22
+ */
23
+ RenewalSettings?: RenewalSettings;
24
+ /**
25
+ * Unique request ID to be specified. This is needed to prevent retries from creating multiple resources.
26
+ */
27
+ RequestId?: string;
28
+ /**
29
+ * Requested reservation start time (UTC) in ISO-8601 format. The specified time must be between the first day of the current month and one year from now. If no value is given, the default is now.
30
+ */
31
+ Start?: string;
32
+ /**
33
+ * A collection of key-value pairs
34
+ */
35
+ Tags?: Record<string, string>;
36
+ }
37
+ /**
38
+ * @public
39
+ * Placeholder documentation for PurchaseOfferingResponse
40
+ */
41
+ export interface PurchaseOfferingResponse {
42
+ /**
43
+ * Reserved resources available to use
44
+ */
45
+ Reservation?: Reservation;
46
+ }
47
+ /**
48
+ * @public
49
+ * @enum
50
+ */
51
+ export declare const RebootInputDeviceForce: {
52
+ readonly NO: "NO";
53
+ readonly YES: "YES";
54
+ };
55
+ /**
56
+ * @public
57
+ */
58
+ export type RebootInputDeviceForce = (typeof RebootInputDeviceForce)[keyof typeof RebootInputDeviceForce];
59
+ /**
60
+ * @public
61
+ * A request to reboot an AWS Elemental device.
62
+ */
63
+ export interface RebootInputDeviceRequest {
64
+ /**
65
+ * Force a reboot of an input device. If the device is streaming, it will stop streaming and begin rebooting within a few seconds of sending the command. If the device was streaming prior to the reboot, the device will resume streaming when the reboot completes.
66
+ */
67
+ Force?: RebootInputDeviceForce | string;
68
+ /**
69
+ * The unique ID of the input device to reboot. For example, hd-123456789abcdef.
70
+ */
71
+ InputDeviceId: string | undefined;
72
+ }
73
+ /**
74
+ * @public
75
+ * Placeholder documentation for RebootInputDeviceResponse
76
+ */
77
+ export interface RebootInputDeviceResponse {
78
+ }
79
+ /**
80
+ * @public
81
+ * Placeholder documentation for RejectInputDeviceTransferRequest
82
+ */
83
+ export interface RejectInputDeviceTransferRequest {
84
+ /**
85
+ * The unique ID of the input device to reject. For example, hd-123456789abcdef.
86
+ */
87
+ InputDeviceId: string | undefined;
88
+ }
89
+ /**
90
+ * @public
91
+ * Placeholder documentation for RejectInputDeviceTransferResponse
92
+ */
93
+ export interface RejectInputDeviceTransferResponse {
94
+ }
95
+ /**
96
+ * @public
97
+ * Placeholder documentation for StartChannelRequest
98
+ */
99
+ export interface StartChannelRequest {
100
+ /**
101
+ * A request to start a channel
102
+ */
103
+ ChannelId: string | undefined;
104
+ }
105
+ /**
106
+ * @public
107
+ * Placeholder documentation for StartChannelResponse
108
+ */
109
+ export interface StartChannelResponse {
110
+ /**
111
+ * The unique arn of the channel.
112
+ */
113
+ Arn?: string;
114
+ /**
115
+ * Specification of CDI inputs for this channel
116
+ */
117
+ CdiInputSpecification?: CdiInputSpecification;
118
+ /**
119
+ * The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
120
+ */
121
+ ChannelClass?: ChannelClass | string;
122
+ /**
123
+ * A list of destinations of the channel. For UDP outputs, there is one
124
+ * destination per output. For other types (HLS, for example), there is
125
+ * one destination per packager.
126
+ */
127
+ Destinations?: OutputDestination[];
128
+ /**
129
+ * The endpoints where outgoing connections initiate from
130
+ */
131
+ EgressEndpoints?: ChannelEgressEndpoint[];
132
+ /**
133
+ * Encoder Settings
134
+ */
135
+ EncoderSettings?: EncoderSettings;
136
+ /**
137
+ * The unique id of the channel.
138
+ */
139
+ Id?: string;
140
+ /**
141
+ * List of input attachments for channel.
142
+ */
143
+ InputAttachments?: InputAttachment[];
144
+ /**
145
+ * Specification of network and file inputs for this channel
146
+ */
147
+ InputSpecification?: InputSpecification;
148
+ /**
149
+ * The log level being written to CloudWatch Logs.
150
+ */
151
+ LogLevel?: LogLevel | string;
152
+ /**
153
+ * Maintenance settings for this channel.
154
+ */
155
+ Maintenance?: MaintenanceStatus;
156
+ /**
157
+ * The name of the channel. (user-mutable)
158
+ */
159
+ Name?: string;
160
+ /**
161
+ * Runtime details for the pipelines of a running channel.
162
+ */
163
+ PipelineDetails?: PipelineDetail[];
164
+ /**
165
+ * The number of currently healthy pipelines.
166
+ */
167
+ PipelinesRunningCount?: number;
168
+ /**
169
+ * The Amazon Resource Name (ARN) of the role assumed when running the Channel.
170
+ */
171
+ RoleArn?: string;
172
+ /**
173
+ * Placeholder documentation for ChannelState
174
+ */
175
+ State?: ChannelState | string;
176
+ /**
177
+ * A collection of key-value pairs.
178
+ */
179
+ Tags?: Record<string, string>;
180
+ /**
181
+ * Settings for VPC output
182
+ */
183
+ Vpc?: VpcOutputSettingsDescription;
184
+ }
185
+ /**
186
+ * @public
187
+ * Placeholder documentation for StartInputDeviceMaintenanceWindowRequest
188
+ */
189
+ export interface StartInputDeviceMaintenanceWindowRequest {
190
+ /**
191
+ * The unique ID of the input device to start a maintenance window for. For example, hd-123456789abcdef.
192
+ */
193
+ InputDeviceId: string | undefined;
194
+ }
3
195
  /**
4
196
  * @public
5
197
  * Placeholder documentation for StartInputDeviceMaintenanceWindowResponse
@@ -236,6 +428,26 @@ export interface TransferInputDeviceRequest {
236
428
  */
237
429
  export interface TransferInputDeviceResponse {
238
430
  }
431
+ /**
432
+ * @public
433
+ * List of account configuration parameters to update.
434
+ */
435
+ export interface UpdateAccountConfigurationRequest {
436
+ /**
437
+ * Placeholder documentation for AccountConfiguration
438
+ */
439
+ AccountConfiguration?: AccountConfiguration;
440
+ }
441
+ /**
442
+ * @public
443
+ * Placeholder documentation for UpdateAccountConfigurationResponse
444
+ */
445
+ export interface UpdateAccountConfigurationResponse {
446
+ /**
447
+ * Placeholder documentation for AccountConfiguration
448
+ */
449
+ AccountConfiguration?: AccountConfiguration;
450
+ }
239
451
  /**
240
452
  * @public
241
453
  * A request to update a channel.
@@ -22,6 +22,7 @@ import { DeleteMultiplexProgramCommandInput, DeleteMultiplexProgramCommandOutput
22
22
  import { DeleteReservationCommandInput, DeleteReservationCommandOutput } from "../commands/DeleteReservationCommand";
23
23
  import { DeleteScheduleCommandInput, DeleteScheduleCommandOutput } from "../commands/DeleteScheduleCommand";
24
24
  import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "../commands/DeleteTagsCommand";
25
+ import { DescribeAccountConfigurationCommandInput, DescribeAccountConfigurationCommandOutput } from "../commands/DescribeAccountConfigurationCommand";
25
26
  import { DescribeChannelCommandInput, DescribeChannelCommandOutput } from "../commands/DescribeChannelCommand";
26
27
  import { DescribeInputCommandInput, DescribeInputCommandOutput } from "../commands/DescribeInputCommand";
27
28
  import { DescribeInputDeviceCommandInput, DescribeInputDeviceCommandOutput } from "../commands/DescribeInputDeviceCommand";
@@ -32,6 +33,7 @@ import { DescribeMultiplexProgramCommandInput, DescribeMultiplexProgramCommandOu
32
33
  import { DescribeOfferingCommandInput, DescribeOfferingCommandOutput } from "../commands/DescribeOfferingCommand";
33
34
  import { DescribeReservationCommandInput, DescribeReservationCommandOutput } from "../commands/DescribeReservationCommand";
34
35
  import { DescribeScheduleCommandInput, DescribeScheduleCommandOutput } from "../commands/DescribeScheduleCommand";
36
+ import { DescribeThumbnailsCommandInput, DescribeThumbnailsCommandOutput } from "../commands/DescribeThumbnailsCommand";
35
37
  import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
36
38
  import { ListInputDevicesCommandInput, ListInputDevicesCommandOutput } from "../commands/ListInputDevicesCommand";
37
39
  import { ListInputDeviceTransfersCommandInput, ListInputDeviceTransfersCommandOutput } from "../commands/ListInputDeviceTransfersCommand";
@@ -51,6 +53,7 @@ import { StartMultiplexCommandInput, StartMultiplexCommandOutput } from "../comm
51
53
  import { StopChannelCommandInput, StopChannelCommandOutput } from "../commands/StopChannelCommand";
52
54
  import { StopMultiplexCommandInput, StopMultiplexCommandOutput } from "../commands/StopMultiplexCommand";
53
55
  import { TransferInputDeviceCommandInput, TransferInputDeviceCommandOutput } from "../commands/TransferInputDeviceCommand";
56
+ import { UpdateAccountConfigurationCommandInput, UpdateAccountConfigurationCommandOutput } from "../commands/UpdateAccountConfigurationCommand";
54
57
  import { UpdateChannelClassCommandInput, UpdateChannelClassCommandOutput } from "../commands/UpdateChannelClassCommand";
55
58
  import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "../commands/UpdateChannelCommand";
56
59
  import { UpdateInputCommandInput, UpdateInputCommandOutput } from "../commands/UpdateInputCommand";
@@ -147,6 +150,10 @@ export declare const se_DeleteScheduleCommand: (input: DeleteScheduleCommandInpu
147
150
  * serializeAws_restJson1DeleteTagsCommand
148
151
  */
149
152
  export declare const se_DeleteTagsCommand: (input: DeleteTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
153
+ /**
154
+ * serializeAws_restJson1DescribeAccountConfigurationCommand
155
+ */
156
+ export declare const se_DescribeAccountConfigurationCommand: (input: DescribeAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
150
157
  /**
151
158
  * serializeAws_restJson1DescribeChannelCommand
152
159
  */
@@ -187,6 +194,10 @@ export declare const se_DescribeReservationCommand: (input: DescribeReservationC
187
194
  * serializeAws_restJson1DescribeScheduleCommand
188
195
  */
189
196
  export declare const se_DescribeScheduleCommand: (input: DescribeScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
197
+ /**
198
+ * serializeAws_restJson1DescribeThumbnailsCommand
199
+ */
200
+ export declare const se_DescribeThumbnailsCommand: (input: DescribeThumbnailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
190
201
  /**
191
202
  * serializeAws_restJson1ListChannelsCommand
192
203
  */
@@ -263,6 +274,10 @@ export declare const se_StopMultiplexCommand: (input: StopMultiplexCommandInput,
263
274
  * serializeAws_restJson1TransferInputDeviceCommand
264
275
  */
265
276
  export declare const se_TransferInputDeviceCommand: (input: TransferInputDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
277
+ /**
278
+ * serializeAws_restJson1UpdateAccountConfigurationCommand
279
+ */
280
+ export declare const se_UpdateAccountConfigurationCommand: (input: UpdateAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
266
281
  /**
267
282
  * serializeAws_restJson1UpdateChannelCommand
268
283
  */
@@ -383,6 +398,10 @@ export declare const de_DeleteScheduleCommand: (output: __HttpResponse, context:
383
398
  * deserializeAws_restJson1DeleteTagsCommand
384
399
  */
385
400
  export declare const de_DeleteTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTagsCommandOutput>;
401
+ /**
402
+ * deserializeAws_restJson1DescribeAccountConfigurationCommand
403
+ */
404
+ export declare const de_DescribeAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountConfigurationCommandOutput>;
386
405
  /**
387
406
  * deserializeAws_restJson1DescribeChannelCommand
388
407
  */
@@ -423,6 +442,10 @@ export declare const de_DescribeReservationCommand: (output: __HttpResponse, con
423
442
  * deserializeAws_restJson1DescribeScheduleCommand
424
443
  */
425
444
  export declare const de_DescribeScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeScheduleCommandOutput>;
445
+ /**
446
+ * deserializeAws_restJson1DescribeThumbnailsCommand
447
+ */
448
+ export declare const de_DescribeThumbnailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeThumbnailsCommandOutput>;
426
449
  /**
427
450
  * deserializeAws_restJson1ListChannelsCommand
428
451
  */
@@ -499,6 +522,10 @@ export declare const de_StopMultiplexCommand: (output: __HttpResponse, context:
499
522
  * deserializeAws_restJson1TransferInputDeviceCommand
500
523
  */
501
524
  export declare const de_TransferInputDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TransferInputDeviceCommandOutput>;
525
+ /**
526
+ * deserializeAws_restJson1UpdateAccountConfigurationCommand
527
+ */
528
+ export declare const de_UpdateAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAccountConfigurationCommandOutput>;
502
529
  /**
503
530
  * deserializeAws_restJson1UpdateChannelCommand
504
531
  */