@aws-sdk/client-mediatailor 3.296.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 +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
5
5
  import { UpdateLiveSourceRequest, UpdateLiveSourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateLiveSourceCommand}.
8
10
  */
9
11
  export interface UpdateLiveSourceCommandInput extends UpdateLiveSourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateLiveSourceCommand}.
13
17
  */
14
18
  export interface UpdateLiveSourceCommandOutput extends UpdateLiveSourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates a live source's 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 UpdateLiveSourceCommandOutput extends UpdateLiveSourceResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateLiveSourceCommandInput - {@link UpdateLiveSourceCommandInput}
34
+ * @returns {@link UpdateLiveSourceCommandOutput}
28
35
  * @see {@link UpdateLiveSourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateLiveSourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface UpdateLiveSourceCommandOutput extends UpdateLiveSourceResponse,
34
41
  export declare class UpdateLiveSourceCommand extends $Command<UpdateLiveSourceCommandInput, UpdateLiveSourceCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: UpdateLiveSourceCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: UpdateLiveSourceCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLiveSourceCommandInput, UpdateLiveSourceCommandOutput>;
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 { UpdateProgramRequest, UpdateProgramResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateProgramCommand}.
8
10
  */
9
11
  export interface UpdateProgramCommandInput extends UpdateProgramRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateProgramCommand}.
13
17
  */
14
18
  export interface UpdateProgramCommandOutput extends UpdateProgramResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates a program within 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 UpdateProgramCommandOutput extends UpdateProgramResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateProgramCommandInput - {@link UpdateProgramCommandInput}
34
+ * @returns {@link UpdateProgramCommandOutput}
28
35
  * @see {@link UpdateProgramCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateProgramCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface UpdateProgramCommandOutput extends UpdateProgramResponse, __Met
34
41
  export declare class UpdateProgramCommand extends $Command<UpdateProgramCommandInput, UpdateProgramCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: UpdateProgramCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: UpdateProgramCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateProgramCommandInput, UpdateProgramCommandOutput>;
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 { UpdateSourceLocationRequest, UpdateSourceLocationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateSourceLocationCommand}.
8
10
  */
9
11
  export interface UpdateSourceLocationCommandInput extends UpdateSourceLocationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateSourceLocationCommand}.
13
17
  */
14
18
  export interface UpdateSourceLocationCommandOutput extends UpdateSourceLocationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <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>
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 UpdateSourceLocationCommandOutput extends UpdateSourceLocationR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateSourceLocationCommandInput - {@link UpdateSourceLocationCommandInput}
34
+ * @returns {@link UpdateSourceLocationCommandOutput}
28
35
  * @see {@link UpdateSourceLocationCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateSourceLocationCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface UpdateSourceLocationCommandOutput extends UpdateSourceLocationR
34
41
  export declare class UpdateSourceLocationCommand extends $Command<UpdateSourceLocationCommandInput, UpdateSourceLocationCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: UpdateSourceLocationCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: UpdateSourceLocationCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSourceLocationCommandInput, UpdateSourceLocationCommandOutput>;
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 { UpdateVodSourceRequest, UpdateVodSourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateVodSourceCommand}.
8
10
  */
9
11
  export interface UpdateVodSourceCommandInput extends UpdateVodSourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateVodSourceCommand}.
13
17
  */
14
18
  export interface UpdateVodSourceCommandOutput extends UpdateVodSourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates a VOD source's 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 UpdateVodSourceCommandOutput extends UpdateVodSourceResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateVodSourceCommandInput - {@link UpdateVodSourceCommandInput}
34
+ * @returns {@link UpdateVodSourceCommandOutput}
28
35
  * @see {@link UpdateVodSourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateVodSourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface UpdateVodSourceCommandOutput extends UpdateVodSourceResponse, _
34
41
  export declare class UpdateVodSourceCommand extends $Command<UpdateVodSourceCommandInput, UpdateVodSourceCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: UpdateVodSourceCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: UpdateVodSourceCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateVodSourceCommandInput, UpdateVodSourceCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from MediaTailor service.
4
6
  */
5
7
  export declare class MediaTailorServiceException extends __ServiceException {