@aws-sdk/client-mediatailor 3.295.0 → 3.297.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 (58) hide show
  1. package/dist-types/MediaTailor.d.ts +45 -0
  2. package/dist-types/MediaTailorClient.d.ts +24 -4
  3. package/dist-types/commands/ConfigureLogsForChannelCommand.d.ts +16 -0
  4. package/dist-types/commands/ConfigureLogsForPlaybackConfigurationCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateChannelCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateLiveSourceCommand.d.ts +16 -0
  7. package/dist-types/commands/CreatePrefetchScheduleCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateProgramCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateSourceLocationCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateVodSourceCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteChannelCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteChannelPolicyCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteLiveSourceCommand.d.ts +16 -0
  14. package/dist-types/commands/DeletePlaybackConfigurationCommand.d.ts +16 -0
  15. package/dist-types/commands/DeletePrefetchScheduleCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteProgramCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteSourceLocationCommand.d.ts +16 -0
  18. package/dist-types/commands/DeleteVodSourceCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeChannelCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeLiveSourceCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeProgramCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeSourceLocationCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeVodSourceCommand.d.ts +16 -0
  24. package/dist-types/commands/GetChannelPolicyCommand.d.ts +16 -0
  25. package/dist-types/commands/GetChannelScheduleCommand.d.ts +16 -0
  26. package/dist-types/commands/GetPlaybackConfigurationCommand.d.ts +16 -0
  27. package/dist-types/commands/GetPrefetchScheduleCommand.d.ts +16 -0
  28. package/dist-types/commands/ListAlertsCommand.d.ts +16 -0
  29. package/dist-types/commands/ListChannelsCommand.d.ts +16 -0
  30. package/dist-types/commands/ListLiveSourcesCommand.d.ts +16 -0
  31. package/dist-types/commands/ListPlaybackConfigurationsCommand.d.ts +16 -0
  32. package/dist-types/commands/ListPrefetchSchedulesCommand.d.ts +16 -0
  33. package/dist-types/commands/ListSourceLocationsCommand.d.ts +16 -0
  34. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  35. package/dist-types/commands/ListVodSourcesCommand.d.ts +16 -0
  36. package/dist-types/commands/PutChannelPolicyCommand.d.ts +16 -0
  37. package/dist-types/commands/PutPlaybackConfigurationCommand.d.ts +16 -0
  38. package/dist-types/commands/StartChannelCommand.d.ts +16 -0
  39. package/dist-types/commands/StopChannelCommand.d.ts +16 -0
  40. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  41. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  42. package/dist-types/commands/UpdateChannelCommand.d.ts +16 -0
  43. package/dist-types/commands/UpdateLiveSourceCommand.d.ts +16 -0
  44. package/dist-types/commands/UpdateProgramCommand.d.ts +16 -0
  45. package/dist-types/commands/UpdateSourceLocationCommand.d.ts +16 -0
  46. package/dist-types/commands/UpdateVodSourceCommand.d.ts +16 -0
  47. package/dist-types/models/MediaTailorServiceException.d.ts +2 -0
  48. package/dist-types/models/models_0.d.ts +336 -0
  49. package/dist-types/pagination/GetChannelSchedulePaginator.d.ts +3 -0
  50. package/dist-types/pagination/Interfaces.d.ts +3 -0
  51. package/dist-types/pagination/ListAlertsPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListChannelsPaginator.d.ts +3 -0
  53. package/dist-types/pagination/ListLiveSourcesPaginator.d.ts +3 -0
  54. package/dist-types/pagination/ListPlaybackConfigurationsPaginator.d.ts +3 -0
  55. package/dist-types/pagination/ListPrefetchSchedulesPaginator.d.ts +3 -0
  56. package/dist-types/pagination/ListSourceLocationsPaginator.d.ts +3 -0
  57. package/dist-types/pagination/ListVodSourcesPaginator.d.ts +3 -0
  58. package/package.json +29 -29
@@ -45,269 +45,314 @@ import { UpdateSourceLocationCommandInput, UpdateSourceLocationCommandOutput } f
45
45
  import { UpdateVodSourceCommandInput, UpdateVodSourceCommandOutput } from "./commands/UpdateVodSourceCommand";
46
46
  import { MediaTailorClient } from "./MediaTailorClient";
47
47
  /**
48
+ * @public
48
49
  * <p>Use the AWS Elemental MediaTailor SDKs and CLI to configure scalable ad insertion and linear channels. With MediaTailor, you can assemble existing content into a linear stream and serve targeted ads to viewers while maintaining broadcast quality in over-the-top (OTT) video applications. For information about using the service, including detailed information about the settings covered in this guide, see the <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/">AWS Elemental MediaTailor User Guide</a>.</p>
49
50
  * <p>Through the SDKs and the CLI you manage AWS Elemental MediaTailor configurations and channels the same as you do through the console. For example, you specify ad insertion behavior and mapping information for the origin server and the ad decision server (ADS).</p>
50
51
  */
51
52
  export declare class MediaTailor extends MediaTailorClient {
52
53
  /**
54
+ * @public
53
55
  * <p>Configures Amazon CloudWatch log settings for a channel.</p>
54
56
  */
55
57
  configureLogsForChannel(args: ConfigureLogsForChannelCommandInput, options?: __HttpHandlerOptions): Promise<ConfigureLogsForChannelCommandOutput>;
56
58
  configureLogsForChannel(args: ConfigureLogsForChannelCommandInput, cb: (err: any, data?: ConfigureLogsForChannelCommandOutput) => void): void;
57
59
  configureLogsForChannel(args: ConfigureLogsForChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfigureLogsForChannelCommandOutput) => void): void;
58
60
  /**
61
+ * @public
59
62
  * <p>Amazon CloudWatch log settings for a playback configuration.</p>
60
63
  */
61
64
  configureLogsForPlaybackConfiguration(args: ConfigureLogsForPlaybackConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<ConfigureLogsForPlaybackConfigurationCommandOutput>;
62
65
  configureLogsForPlaybackConfiguration(args: ConfigureLogsForPlaybackConfigurationCommandInput, cb: (err: any, data?: ConfigureLogsForPlaybackConfigurationCommandOutput) => void): void;
63
66
  configureLogsForPlaybackConfiguration(args: ConfigureLogsForPlaybackConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfigureLogsForPlaybackConfigurationCommandOutput) => void): void;
64
67
  /**
68
+ * @public
65
69
  * <p>Creates a channel. For information about MediaTailor channels, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html">Working with channels</a> in the <i>MediaTailor User Guide</i>.</p>
66
70
  */
67
71
  createChannel(args: CreateChannelCommandInput, options?: __HttpHandlerOptions): Promise<CreateChannelCommandOutput>;
68
72
  createChannel(args: CreateChannelCommandInput, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
69
73
  createChannel(args: CreateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
70
74
  /**
75
+ * @public
71
76
  * <p>The live source configuration.</p>
72
77
  */
73
78
  createLiveSource(args: CreateLiveSourceCommandInput, options?: __HttpHandlerOptions): Promise<CreateLiveSourceCommandOutput>;
74
79
  createLiveSource(args: CreateLiveSourceCommandInput, cb: (err: any, data?: CreateLiveSourceCommandOutput) => void): void;
75
80
  createLiveSource(args: CreateLiveSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLiveSourceCommandOutput) => void): void;
76
81
  /**
82
+ * @public
77
83
  * <p>Creates a prefetch schedule for a playback configuration. A prefetch schedule allows you to tell MediaTailor to fetch and prepare certain ads before an ad break happens. For more information about ad prefetching, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/prefetching-ads.html">Using ad prefetching</a> in the <i>MediaTailor User Guide</i>.</p>
78
84
  */
79
85
  createPrefetchSchedule(args: CreatePrefetchScheduleCommandInput, options?: __HttpHandlerOptions): Promise<CreatePrefetchScheduleCommandOutput>;
80
86
  createPrefetchSchedule(args: CreatePrefetchScheduleCommandInput, cb: (err: any, data?: CreatePrefetchScheduleCommandOutput) => void): void;
81
87
  createPrefetchSchedule(args: CreatePrefetchScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePrefetchScheduleCommandOutput) => void): void;
82
88
  /**
89
+ * @public
83
90
  * <p>Creates a program within a channel. For information about programs, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-programs.html">Working with programs</a> in the <i>MediaTailor User Guide</i>.</p>
84
91
  */
85
92
  createProgram(args: CreateProgramCommandInput, options?: __HttpHandlerOptions): Promise<CreateProgramCommandOutput>;
86
93
  createProgram(args: CreateProgramCommandInput, cb: (err: any, data?: CreateProgramCommandOutput) => void): void;
87
94
  createProgram(args: CreateProgramCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProgramCommandOutput) => void): void;
88
95
  /**
96
+ * @public
89
97
  * <p>Creates a source location. A source location is a container for sources. For more information about source locations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-source-locations.html">Working with source locations</a> in the <i>MediaTailor User Guide</i>.</p>
90
98
  */
91
99
  createSourceLocation(args: CreateSourceLocationCommandInput, options?: __HttpHandlerOptions): Promise<CreateSourceLocationCommandOutput>;
92
100
  createSourceLocation(args: CreateSourceLocationCommandInput, cb: (err: any, data?: CreateSourceLocationCommandOutput) => void): void;
93
101
  createSourceLocation(args: CreateSourceLocationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSourceLocationCommandOutput) => void): void;
94
102
  /**
103
+ * @public
95
104
  * <p>The VOD source configuration parameters.</p>
96
105
  */
97
106
  createVodSource(args: CreateVodSourceCommandInput, options?: __HttpHandlerOptions): Promise<CreateVodSourceCommandOutput>;
98
107
  createVodSource(args: CreateVodSourceCommandInput, cb: (err: any, data?: CreateVodSourceCommandOutput) => void): void;
99
108
  createVodSource(args: CreateVodSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVodSourceCommandOutput) => void): void;
100
109
  /**
110
+ * @public
101
111
  * <p>Deletes a channel. For information about MediaTailor channels, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html">Working with channels</a> in the <i>MediaTailor User Guide</i>.</p>
102
112
  */
103
113
  deleteChannel(args: DeleteChannelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChannelCommandOutput>;
104
114
  deleteChannel(args: DeleteChannelCommandInput, cb: (err: any, data?: DeleteChannelCommandOutput) => void): void;
105
115
  deleteChannel(args: DeleteChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelCommandOutput) => void): void;
106
116
  /**
117
+ * @public
107
118
  * <p>The channel policy to delete.</p>
108
119
  */
109
120
  deleteChannelPolicy(args: DeleteChannelPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChannelPolicyCommandOutput>;
110
121
  deleteChannelPolicy(args: DeleteChannelPolicyCommandInput, cb: (err: any, data?: DeleteChannelPolicyCommandOutput) => void): void;
111
122
  deleteChannelPolicy(args: DeleteChannelPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelPolicyCommandOutput) => void): void;
112
123
  /**
124
+ * @public
113
125
  * <p>The live source to delete.</p>
114
126
  */
115
127
  deleteLiveSource(args: DeleteLiveSourceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLiveSourceCommandOutput>;
116
128
  deleteLiveSource(args: DeleteLiveSourceCommandInput, cb: (err: any, data?: DeleteLiveSourceCommandOutput) => void): void;
117
129
  deleteLiveSource(args: DeleteLiveSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLiveSourceCommandOutput) => void): void;
118
130
  /**
131
+ * @public
119
132
  * <p>Deletes a playback configuration. For information about MediaTailor configurations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/configurations.html">Working with configurations in AWS Elemental MediaTailor</a>.</p>
120
133
  */
121
134
  deletePlaybackConfiguration(args: DeletePlaybackConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeletePlaybackConfigurationCommandOutput>;
122
135
  deletePlaybackConfiguration(args: DeletePlaybackConfigurationCommandInput, cb: (err: any, data?: DeletePlaybackConfigurationCommandOutput) => void): void;
123
136
  deletePlaybackConfiguration(args: DeletePlaybackConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePlaybackConfigurationCommandOutput) => void): void;
124
137
  /**
138
+ * @public
125
139
  * <p>Deletes a prefetch schedule for a specific playback configuration. If you call <code>DeletePrefetchSchedule</code> on an expired prefetch schedule, MediaTailor returns an HTTP 404 status code. For more information about ad prefetching, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/prefetching-ads.html">Using ad prefetching</a> in the <i>MediaTailor User Guide</i>.</p>
126
140
  */
127
141
  deletePrefetchSchedule(args: DeletePrefetchScheduleCommandInput, options?: __HttpHandlerOptions): Promise<DeletePrefetchScheduleCommandOutput>;
128
142
  deletePrefetchSchedule(args: DeletePrefetchScheduleCommandInput, cb: (err: any, data?: DeletePrefetchScheduleCommandOutput) => void): void;
129
143
  deletePrefetchSchedule(args: DeletePrefetchScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePrefetchScheduleCommandOutput) => void): void;
130
144
  /**
145
+ * @public
131
146
  * <p>Deletes a program within a channel. For information about programs, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-programs.html">Working with programs</a> in the <i>MediaTailor User Guide</i>.</p>
132
147
  */
133
148
  deleteProgram(args: DeleteProgramCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProgramCommandOutput>;
134
149
  deleteProgram(args: DeleteProgramCommandInput, cb: (err: any, data?: DeleteProgramCommandOutput) => void): void;
135
150
  deleteProgram(args: DeleteProgramCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProgramCommandOutput) => void): void;
136
151
  /**
152
+ * @public
137
153
  * <p>Deletes a source location. A source location is a container for sources. For more information about source locations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-source-locations.html">Working with source locations</a> in the <i>MediaTailor User Guide</i>.</p>
138
154
  */
139
155
  deleteSourceLocation(args: DeleteSourceLocationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSourceLocationCommandOutput>;
140
156
  deleteSourceLocation(args: DeleteSourceLocationCommandInput, cb: (err: any, data?: DeleteSourceLocationCommandOutput) => void): void;
141
157
  deleteSourceLocation(args: DeleteSourceLocationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSourceLocationCommandOutput) => void): void;
142
158
  /**
159
+ * @public
143
160
  * <p>The video on demand (VOD) source to delete.</p>
144
161
  */
145
162
  deleteVodSource(args: DeleteVodSourceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVodSourceCommandOutput>;
146
163
  deleteVodSource(args: DeleteVodSourceCommandInput, cb: (err: any, data?: DeleteVodSourceCommandOutput) => void): void;
147
164
  deleteVodSource(args: DeleteVodSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVodSourceCommandOutput) => void): void;
148
165
  /**
166
+ * @public
149
167
  * <p>Describes a channel. For information about MediaTailor channels, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html">Working with channels</a> in the <i>MediaTailor User Guide</i>.</p>
150
168
  */
151
169
  describeChannel(args: DescribeChannelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeChannelCommandOutput>;
152
170
  describeChannel(args: DescribeChannelCommandInput, cb: (err: any, data?: DescribeChannelCommandOutput) => void): void;
153
171
  describeChannel(args: DescribeChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeChannelCommandOutput) => void): void;
154
172
  /**
173
+ * @public
155
174
  * <p>The live source to describe.</p>
156
175
  */
157
176
  describeLiveSource(args: DescribeLiveSourceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLiveSourceCommandOutput>;
158
177
  describeLiveSource(args: DescribeLiveSourceCommandInput, cb: (err: any, data?: DescribeLiveSourceCommandOutput) => void): void;
159
178
  describeLiveSource(args: DescribeLiveSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLiveSourceCommandOutput) => void): void;
160
179
  /**
180
+ * @public
161
181
  * <p>Describes a program within a channel. For information about programs, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-programs.html">Working with programs</a> in the <i>MediaTailor User Guide</i>.</p>
162
182
  */
163
183
  describeProgram(args: DescribeProgramCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProgramCommandOutput>;
164
184
  describeProgram(args: DescribeProgramCommandInput, cb: (err: any, data?: DescribeProgramCommandOutput) => void): void;
165
185
  describeProgram(args: DescribeProgramCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProgramCommandOutput) => void): void;
166
186
  /**
187
+ * @public
167
188
  * <p>Describes a source location. A source location is a container for sources. For more information about source locations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-source-locations.html">Working with source locations</a> in the <i>MediaTailor User Guide</i>.</p>
168
189
  */
169
190
  describeSourceLocation(args: DescribeSourceLocationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSourceLocationCommandOutput>;
170
191
  describeSourceLocation(args: DescribeSourceLocationCommandInput, cb: (err: any, data?: DescribeSourceLocationCommandOutput) => void): void;
171
192
  describeSourceLocation(args: DescribeSourceLocationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSourceLocationCommandOutput) => void): void;
172
193
  /**
194
+ * @public
173
195
  * <p>Provides details about a specific video on demand (VOD) source in a specific source location.</p>
174
196
  */
175
197
  describeVodSource(args: DescribeVodSourceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVodSourceCommandOutput>;
176
198
  describeVodSource(args: DescribeVodSourceCommandInput, cb: (err: any, data?: DescribeVodSourceCommandOutput) => void): void;
177
199
  describeVodSource(args: DescribeVodSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVodSourceCommandOutput) => void): void;
178
200
  /**
201
+ * @public
179
202
  * <p>Returns the channel's IAM policy. IAM policies are used to control access to your channel.</p>
180
203
  */
181
204
  getChannelPolicy(args: GetChannelPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetChannelPolicyCommandOutput>;
182
205
  getChannelPolicy(args: GetChannelPolicyCommandInput, cb: (err: any, data?: GetChannelPolicyCommandOutput) => void): void;
183
206
  getChannelPolicy(args: GetChannelPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetChannelPolicyCommandOutput) => void): void;
184
207
  /**
208
+ * @public
185
209
  * <p>Retrieves information about your channel's schedule.</p>
186
210
  */
187
211
  getChannelSchedule(args: GetChannelScheduleCommandInput, options?: __HttpHandlerOptions): Promise<GetChannelScheduleCommandOutput>;
188
212
  getChannelSchedule(args: GetChannelScheduleCommandInput, cb: (err: any, data?: GetChannelScheduleCommandOutput) => void): void;
189
213
  getChannelSchedule(args: GetChannelScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetChannelScheduleCommandOutput) => void): void;
190
214
  /**
215
+ * @public
191
216
  * <p>Retrieves a playback configuration. For information about MediaTailor configurations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/configurations.html">Working with configurations in AWS Elemental MediaTailor</a>.</p>
192
217
  */
193
218
  getPlaybackConfiguration(args: GetPlaybackConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetPlaybackConfigurationCommandOutput>;
194
219
  getPlaybackConfiguration(args: GetPlaybackConfigurationCommandInput, cb: (err: any, data?: GetPlaybackConfigurationCommandOutput) => void): void;
195
220
  getPlaybackConfiguration(args: GetPlaybackConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPlaybackConfigurationCommandOutput) => void): void;
196
221
  /**
222
+ * @public
197
223
  * <p>Retrieves a prefetch schedule for a playback configuration. A prefetch schedule allows you to tell MediaTailor to fetch and prepare certain ads before an ad break happens. For more information about ad prefetching, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/prefetching-ads.html">Using ad prefetching</a> in the <i>MediaTailor User Guide</i>.</p>
198
224
  */
199
225
  getPrefetchSchedule(args: GetPrefetchScheduleCommandInput, options?: __HttpHandlerOptions): Promise<GetPrefetchScheduleCommandOutput>;
200
226
  getPrefetchSchedule(args: GetPrefetchScheduleCommandInput, cb: (err: any, data?: GetPrefetchScheduleCommandOutput) => void): void;
201
227
  getPrefetchSchedule(args: GetPrefetchScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPrefetchScheduleCommandOutput) => void): void;
202
228
  /**
229
+ * @public
203
230
  * <p>Lists the alerts that are associated with a MediaTailor channel assembly resource.</p>
204
231
  */
205
232
  listAlerts(args: ListAlertsCommandInput, options?: __HttpHandlerOptions): Promise<ListAlertsCommandOutput>;
206
233
  listAlerts(args: ListAlertsCommandInput, cb: (err: any, data?: ListAlertsCommandOutput) => void): void;
207
234
  listAlerts(args: ListAlertsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAlertsCommandOutput) => void): void;
208
235
  /**
236
+ * @public
209
237
  * <p>Retrieves information about the channels that are associated with the current AWS account.</p>
210
238
  */
211
239
  listChannels(args: ListChannelsCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelsCommandOutput>;
212
240
  listChannels(args: ListChannelsCommandInput, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
213
241
  listChannels(args: ListChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
214
242
  /**
243
+ * @public
215
244
  * <p>Lists the live sources contained in a source location. A source represents a piece of content.</p>
216
245
  */
217
246
  listLiveSources(args: ListLiveSourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListLiveSourcesCommandOutput>;
218
247
  listLiveSources(args: ListLiveSourcesCommandInput, cb: (err: any, data?: ListLiveSourcesCommandOutput) => void): void;
219
248
  listLiveSources(args: ListLiveSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLiveSourcesCommandOutput) => void): void;
220
249
  /**
250
+ * @public
221
251
  * <p>Retrieves existing playback configurations. For information about MediaTailor configurations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/configurations.html">Working with Configurations in AWS Elemental MediaTailor</a>.</p>
222
252
  */
223
253
  listPlaybackConfigurations(args: ListPlaybackConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListPlaybackConfigurationsCommandOutput>;
224
254
  listPlaybackConfigurations(args: ListPlaybackConfigurationsCommandInput, cb: (err: any, data?: ListPlaybackConfigurationsCommandOutput) => void): void;
225
255
  listPlaybackConfigurations(args: ListPlaybackConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPlaybackConfigurationsCommandOutput) => void): void;
226
256
  /**
257
+ * @public
227
258
  * <p>Lists the prefetch schedules for a playback configuration.</p>
228
259
  */
229
260
  listPrefetchSchedules(args: ListPrefetchSchedulesCommandInput, options?: __HttpHandlerOptions): Promise<ListPrefetchSchedulesCommandOutput>;
230
261
  listPrefetchSchedules(args: ListPrefetchSchedulesCommandInput, cb: (err: any, data?: ListPrefetchSchedulesCommandOutput) => void): void;
231
262
  listPrefetchSchedules(args: ListPrefetchSchedulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPrefetchSchedulesCommandOutput) => void): void;
232
263
  /**
264
+ * @public
233
265
  * <p>Lists the source locations for a channel. A source location defines the host server URL, and contains a list of sources.</p>
234
266
  */
235
267
  listSourceLocations(args: ListSourceLocationsCommandInput, options?: __HttpHandlerOptions): Promise<ListSourceLocationsCommandOutput>;
236
268
  listSourceLocations(args: ListSourceLocationsCommandInput, cb: (err: any, data?: ListSourceLocationsCommandOutput) => void): void;
237
269
  listSourceLocations(args: ListSourceLocationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSourceLocationsCommandOutput) => void): void;
238
270
  /**
271
+ * @public
239
272
  * <p>A list of tags that are associated with this resource. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
240
273
  */
241
274
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
242
275
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
243
276
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
244
277
  /**
278
+ * @public
245
279
  * <p>Lists the VOD sources contained in a source location. A source represents a piece of content.</p>
246
280
  */
247
281
  listVodSources(args: ListVodSourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListVodSourcesCommandOutput>;
248
282
  listVodSources(args: ListVodSourcesCommandInput, cb: (err: any, data?: ListVodSourcesCommandOutput) => void): void;
249
283
  listVodSources(args: ListVodSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVodSourcesCommandOutput) => void): void;
250
284
  /**
285
+ * @public
251
286
  * <p>Creates an IAM policy for the channel. IAM policies are used to control access to your channel.</p>
252
287
  */
253
288
  putChannelPolicy(args: PutChannelPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutChannelPolicyCommandOutput>;
254
289
  putChannelPolicy(args: PutChannelPolicyCommandInput, cb: (err: any, data?: PutChannelPolicyCommandOutput) => void): void;
255
290
  putChannelPolicy(args: PutChannelPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutChannelPolicyCommandOutput) => void): void;
256
291
  /**
292
+ * @public
257
293
  * <p>Creates a playback configuration. For information about MediaTailor configurations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/configurations.html">Working with configurations in AWS Elemental MediaTailor</a>.</p>
258
294
  */
259
295
  putPlaybackConfiguration(args: PutPlaybackConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutPlaybackConfigurationCommandOutput>;
260
296
  putPlaybackConfiguration(args: PutPlaybackConfigurationCommandInput, cb: (err: any, data?: PutPlaybackConfigurationCommandOutput) => void): void;
261
297
  putPlaybackConfiguration(args: PutPlaybackConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPlaybackConfigurationCommandOutput) => void): void;
262
298
  /**
299
+ * @public
263
300
  * <p>Starts a channel. For information about MediaTailor channels, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html">Working with channels</a> in the <i>MediaTailor User Guide</i>.</p>
264
301
  */
265
302
  startChannel(args: StartChannelCommandInput, options?: __HttpHandlerOptions): Promise<StartChannelCommandOutput>;
266
303
  startChannel(args: StartChannelCommandInput, cb: (err: any, data?: StartChannelCommandOutput) => void): void;
267
304
  startChannel(args: StartChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartChannelCommandOutput) => void): void;
268
305
  /**
306
+ * @public
269
307
  * <p>Stops a channel. For information about MediaTailor channels, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html">Working with channels</a> in the <i>MediaTailor User Guide</i>.</p>
270
308
  */
271
309
  stopChannel(args: StopChannelCommandInput, options?: __HttpHandlerOptions): Promise<StopChannelCommandOutput>;
272
310
  stopChannel(args: StopChannelCommandInput, cb: (err: any, data?: StopChannelCommandOutput) => void): void;
273
311
  stopChannel(args: StopChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopChannelCommandOutput) => void): void;
274
312
  /**
313
+ * @public
275
314
  * <p>The resource to tag. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
276
315
  */
277
316
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
278
317
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
279
318
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
280
319
  /**
320
+ * @public
281
321
  * <p>The resource to untag.</p>
282
322
  */
283
323
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
284
324
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
285
325
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
286
326
  /**
327
+ * @public
287
328
  * <p>Updates a channel. For information about MediaTailor channels, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html">Working with channels</a> in the <i>MediaTailor User Guide</i>.</p>
288
329
  */
289
330
  updateChannel(args: UpdateChannelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateChannelCommandOutput>;
290
331
  updateChannel(args: UpdateChannelCommandInput, cb: (err: any, data?: UpdateChannelCommandOutput) => void): void;
291
332
  updateChannel(args: UpdateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateChannelCommandOutput) => void): void;
292
333
  /**
334
+ * @public
293
335
  * <p>Updates a live source's configuration.</p>
294
336
  */
295
337
  updateLiveSource(args: UpdateLiveSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLiveSourceCommandOutput>;
296
338
  updateLiveSource(args: UpdateLiveSourceCommandInput, cb: (err: any, data?: UpdateLiveSourceCommandOutput) => void): void;
297
339
  updateLiveSource(args: UpdateLiveSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLiveSourceCommandOutput) => void): void;
298
340
  /**
341
+ * @public
299
342
  * <p>Updates a program within a channel.</p>
300
343
  */
301
344
  updateProgram(args: UpdateProgramCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProgramCommandOutput>;
302
345
  updateProgram(args: UpdateProgramCommandInput, cb: (err: any, data?: UpdateProgramCommandOutput) => void): void;
303
346
  updateProgram(args: UpdateProgramCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProgramCommandOutput) => void): void;
304
347
  /**
348
+ * @public
305
349
  * <p>Updates a source location. A source location is a container for sources. For more information about source locations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-source-locations.html">Working with source locations</a> in the <i>MediaTailor User Guide</i>.</p>
306
350
  */
307
351
  updateSourceLocation(args: UpdateSourceLocationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSourceLocationCommandOutput>;
308
352
  updateSourceLocation(args: UpdateSourceLocationCommandInput, cb: (err: any, data?: UpdateSourceLocationCommandOutput) => void): void;
309
353
  updateSourceLocation(args: UpdateSourceLocationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSourceLocationCommandOutput) => void): void;
310
354
  /**
355
+ * @public
311
356
  * <p>Updates a VOD source's configuration.</p>
312
357
  */
313
358
  updateVodSource(args: UpdateVodSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVodSourceCommandOutput>;
@@ -52,15 +52,24 @@ import { UpdateProgramCommandInput, UpdateProgramCommandOutput } from "./command
52
52
  import { UpdateSourceLocationCommandInput, UpdateSourceLocationCommandOutput } from "./commands/UpdateSourceLocationCommand";
53
53
  import { UpdateVodSourceCommandInput, UpdateVodSourceCommandOutput } from "./commands/UpdateVodSourceCommand";
54
54
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
55
+ /**
56
+ * @public
57
+ */
55
58
  export type ServiceInputTypes = ConfigureLogsForChannelCommandInput | ConfigureLogsForPlaybackConfigurationCommandInput | CreateChannelCommandInput | CreateLiveSourceCommandInput | CreatePrefetchScheduleCommandInput | CreateProgramCommandInput | CreateSourceLocationCommandInput | CreateVodSourceCommandInput | DeleteChannelCommandInput | DeleteChannelPolicyCommandInput | DeleteLiveSourceCommandInput | DeletePlaybackConfigurationCommandInput | DeletePrefetchScheduleCommandInput | DeleteProgramCommandInput | DeleteSourceLocationCommandInput | DeleteVodSourceCommandInput | DescribeChannelCommandInput | DescribeLiveSourceCommandInput | DescribeProgramCommandInput | DescribeSourceLocationCommandInput | DescribeVodSourceCommandInput | GetChannelPolicyCommandInput | GetChannelScheduleCommandInput | GetPlaybackConfigurationCommandInput | GetPrefetchScheduleCommandInput | ListAlertsCommandInput | ListChannelsCommandInput | ListLiveSourcesCommandInput | ListPlaybackConfigurationsCommandInput | ListPrefetchSchedulesCommandInput | ListSourceLocationsCommandInput | ListTagsForResourceCommandInput | ListVodSourcesCommandInput | PutChannelPolicyCommandInput | PutPlaybackConfigurationCommandInput | StartChannelCommandInput | StopChannelCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateChannelCommandInput | UpdateLiveSourceCommandInput | UpdateProgramCommandInput | UpdateSourceLocationCommandInput | UpdateVodSourceCommandInput;
59
+ /**
60
+ * @public
61
+ */
56
62
  export type ServiceOutputTypes = ConfigureLogsForChannelCommandOutput | ConfigureLogsForPlaybackConfigurationCommandOutput | CreateChannelCommandOutput | CreateLiveSourceCommandOutput | CreatePrefetchScheduleCommandOutput | CreateProgramCommandOutput | CreateSourceLocationCommandOutput | CreateVodSourceCommandOutput | DeleteChannelCommandOutput | DeleteChannelPolicyCommandOutput | DeleteLiveSourceCommandOutput | DeletePlaybackConfigurationCommandOutput | DeletePrefetchScheduleCommandOutput | DeleteProgramCommandOutput | DeleteSourceLocationCommandOutput | DeleteVodSourceCommandOutput | DescribeChannelCommandOutput | DescribeLiveSourceCommandOutput | DescribeProgramCommandOutput | DescribeSourceLocationCommandOutput | DescribeVodSourceCommandOutput | GetChannelPolicyCommandOutput | GetChannelScheduleCommandOutput | GetPlaybackConfigurationCommandOutput | GetPrefetchScheduleCommandOutput | ListAlertsCommandOutput | ListChannelsCommandOutput | ListLiveSourcesCommandOutput | ListPlaybackConfigurationsCommandOutput | ListPrefetchSchedulesCommandOutput | ListSourceLocationsCommandOutput | ListTagsForResourceCommandOutput | ListVodSourcesCommandOutput | PutChannelPolicyCommandOutput | PutPlaybackConfigurationCommandOutput | StartChannelCommandOutput | StopChannelCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateChannelCommandOutput | UpdateLiveSourceCommandOutput | UpdateProgramCommandOutput | UpdateSourceLocationCommandOutput | UpdateVodSourceCommandOutput;
63
+ /**
64
+ * @public
65
+ */
57
66
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
58
67
  /**
59
68
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
60
69
  */
61
70
  requestHandler?: __HttpHandler;
62
71
  /**
63
- * A constructor for a class implementing the {@link __Checksum} interface
72
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
64
73
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
65
74
  * @internal
66
75
  */
@@ -150,23 +159,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
150
159
  */
151
160
  logger?: __Logger;
152
161
  /**
153
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
162
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
154
163
  */
155
164
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
156
165
  }
166
+ /**
167
+ * @public
168
+ */
157
169
  type MediaTailorClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
158
170
  /**
159
- * The configuration interface of MediaTailorClient class constructor that set the region, credentials and other options.
171
+ * @public
172
+ *
173
+ * The configuration interface of MediaTailorClient class constructor that set the region, credentials and other options.
160
174
  */
161
175
  export interface MediaTailorClientConfig extends MediaTailorClientConfigType {
162
176
  }
177
+ /**
178
+ * @public
179
+ */
163
180
  type MediaTailorClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
164
181
  /**
165
- * The resolved configuration interface of MediaTailorClient class. This is resolved and normalized from the {@link MediaTailorClientConfig | constructor configuration interface}.
182
+ * @public
183
+ *
184
+ * The resolved configuration interface of MediaTailorClient class. This is resolved and normalized from the {@link MediaTailorClientConfig | constructor configuration interface}.
166
185
  */
167
186
  export interface MediaTailorClientResolvedConfig extends MediaTailorClientResolvedConfigType {
168
187
  }
169
188
  /**
189
+ * @public
170
190
  * <p>Use the AWS Elemental MediaTailor SDKs and CLI to configure scalable ad insertion and linear channels. With MediaTailor, you can assemble existing content into a linear stream and serve targeted ads to viewers while maintaining broadcast quality in over-the-top (OTT) video applications. For information about using the service, including detailed information about the settings covered in this guide, see the <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/">AWS Elemental MediaTailor User Guide</a>.</p>
171
191
  * <p>Through the SDKs and the CLI you manage AWS Elemental MediaTailor configurations and channels the same as you do through the console. For example, you specify ad insertion behavior and mapping information for the origin server and the ad decision server (ADS).</p>
172
192
  */
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
5
5
  import { ConfigureLogsForChannelRequest, ConfigureLogsForChannelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ConfigureLogsForChannelCommand}.
8
10
  */
9
11
  export interface ConfigureLogsForChannelCommandInput extends ConfigureLogsForChannelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ConfigureLogsForChannelCommand}.
13
17
  */
14
18
  export interface ConfigureLogsForChannelCommandOutput extends ConfigureLogsForChannelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Configures Amazon CloudWatch log settings for a channel.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ConfigureLogsForChannelCommandOutput extends ConfigureLogsForCh
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ConfigureLogsForChannelCommandInput - {@link ConfigureLogsForChannelCommandInput}
34
+ * @returns {@link ConfigureLogsForChannelCommandOutput}
28
35
  * @see {@link ConfigureLogsForChannelCommandInput} for command's `input` shape.
29
36
  * @see {@link ConfigureLogsForChannelCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface ConfigureLogsForChannelCommandOutput extends ConfigureLogsForCh
34
41
  export declare class ConfigureLogsForChannelCommand extends $Command<ConfigureLogsForChannelCommandInput, ConfigureLogsForChannelCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: ConfigureLogsForChannelCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: ConfigureLogsForChannelCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ConfigureLogsForChannelCommandInput, ConfigureLogsForChannelCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
5
5
  import { ConfigureLogsForPlaybackConfigurationRequest, ConfigureLogsForPlaybackConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ConfigureLogsForPlaybackConfigurationCommand}.
8
10
  */
9
11
  export interface ConfigureLogsForPlaybackConfigurationCommandInput extends ConfigureLogsForPlaybackConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ConfigureLogsForPlaybackConfigurationCommand}.
13
17
  */
14
18
  export interface ConfigureLogsForPlaybackConfigurationCommandOutput extends ConfigureLogsForPlaybackConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Amazon CloudWatch log settings for a playback configuration.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ConfigureLogsForPlaybackConfigurationCommandOutput extends Conf
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ConfigureLogsForPlaybackConfigurationCommandInput - {@link ConfigureLogsForPlaybackConfigurationCommandInput}
34
+ * @returns {@link ConfigureLogsForPlaybackConfigurationCommandOutput}
28
35
  * @see {@link ConfigureLogsForPlaybackConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link ConfigureLogsForPlaybackConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface ConfigureLogsForPlaybackConfigurationCommandOutput extends Conf
34
41
  export declare class ConfigureLogsForPlaybackConfigurationCommand extends $Command<ConfigureLogsForPlaybackConfigurationCommandInput, ConfigureLogsForPlaybackConfigurationCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: ConfigureLogsForPlaybackConfigurationCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: ConfigureLogsForPlaybackConfigurationCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ConfigureLogsForPlaybackConfigurationCommandInput, ConfigureLogsForPlaybackConfigurationCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
5
5
  import { CreateChannelRequest, CreateChannelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateChannelCommand}.
8
10
  */
9
11
  export interface CreateChannelCommandInput extends CreateChannelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateChannelCommand}.
13
17
  */
14
18
  export interface CreateChannelCommandOutput extends CreateChannelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a channel. For information about MediaTailor channels, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html">Working with channels</a> in the <i>MediaTailor User Guide</i>.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateChannelCommandInput - {@link CreateChannelCommandInput}
34
+ * @returns {@link CreateChannelCommandOutput}
28
35
  * @see {@link CreateChannelCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateChannelCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
34
41
  export declare class CreateChannelCommand extends $Command<CreateChannelCommandInput, CreateChannelCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: CreateChannelCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: CreateChannelCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateChannelCommandInput, CreateChannelCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
5
5
  import { CreateLiveSourceRequest, CreateLiveSourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateLiveSourceCommand}.
8
10
  */
9
11
  export interface CreateLiveSourceCommandInput extends CreateLiveSourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateLiveSourceCommand}.
13
17
  */
14
18
  export interface CreateLiveSourceCommandOutput extends CreateLiveSourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>The live source configuration.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateLiveSourceCommandOutput extends CreateLiveSourceResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateLiveSourceCommandInput - {@link CreateLiveSourceCommandInput}
34
+ * @returns {@link CreateLiveSourceCommandOutput}
28
35
  * @see {@link CreateLiveSourceCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateLiveSourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface CreateLiveSourceCommandOutput extends CreateLiveSourceResponse,
34
41
  export declare class CreateLiveSourceCommand extends $Command<CreateLiveSourceCommandInput, CreateLiveSourceCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: CreateLiveSourceCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: CreateLiveSourceCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLiveSourceCommandInput, CreateLiveSourceCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }