@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 { ListPlaybackConfigurationsRequest, ListPlaybackConfigurationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPlaybackConfigurationsCommand}.
8
10
  */
9
11
  export interface ListPlaybackConfigurationsCommandInput extends ListPlaybackConfigurationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPlaybackConfigurationsCommand}.
13
17
  */
14
18
  export interface ListPlaybackConfigurationsCommandOutput extends ListPlaybackConfigurationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <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>
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 ListPlaybackConfigurationsCommandOutput extends ListPlaybackCon
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListPlaybackConfigurationsCommandInput - {@link ListPlaybackConfigurationsCommandInput}
34
+ * @returns {@link ListPlaybackConfigurationsCommandOutput}
28
35
  * @see {@link ListPlaybackConfigurationsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListPlaybackConfigurationsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface ListPlaybackConfigurationsCommandOutput extends ListPlaybackCon
34
41
  export declare class ListPlaybackConfigurationsCommand extends $Command<ListPlaybackConfigurationsCommandInput, ListPlaybackConfigurationsCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: ListPlaybackConfigurationsCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: ListPlaybackConfigurationsCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPlaybackConfigurationsCommandInput, ListPlaybackConfigurationsCommandOutput>;
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 { ListPrefetchSchedulesRequest, ListPrefetchSchedulesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPrefetchSchedulesCommand}.
8
10
  */
9
11
  export interface ListPrefetchSchedulesCommandInput extends ListPrefetchSchedulesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPrefetchSchedulesCommand}.
13
17
  */
14
18
  export interface ListPrefetchSchedulesCommandOutput extends ListPrefetchSchedulesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the prefetch schedules 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 ListPrefetchSchedulesCommandOutput extends ListPrefetchSchedule
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListPrefetchSchedulesCommandInput - {@link ListPrefetchSchedulesCommandInput}
34
+ * @returns {@link ListPrefetchSchedulesCommandOutput}
28
35
  * @see {@link ListPrefetchSchedulesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListPrefetchSchedulesCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface ListPrefetchSchedulesCommandOutput extends ListPrefetchSchedule
34
41
  export declare class ListPrefetchSchedulesCommand extends $Command<ListPrefetchSchedulesCommandInput, ListPrefetchSchedulesCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: ListPrefetchSchedulesCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: ListPrefetchSchedulesCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPrefetchSchedulesCommandInput, ListPrefetchSchedulesCommandOutput>;
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 { ListSourceLocationsRequest, ListSourceLocationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListSourceLocationsCommand}.
8
10
  */
9
11
  export interface ListSourceLocationsCommandInput extends ListSourceLocationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListSourceLocationsCommand}.
13
17
  */
14
18
  export interface ListSourceLocationsCommandOutput extends ListSourceLocationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the source locations for a channel. A source location defines the host server URL, and contains a list of sources.</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 ListSourceLocationsCommandOutput extends ListSourceLocationsRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListSourceLocationsCommandInput - {@link ListSourceLocationsCommandInput}
34
+ * @returns {@link ListSourceLocationsCommandOutput}
28
35
  * @see {@link ListSourceLocationsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListSourceLocationsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface ListSourceLocationsCommandOutput extends ListSourceLocationsRes
34
41
  export declare class ListSourceLocationsCommand extends $Command<ListSourceLocationsCommandInput, ListSourceLocationsCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: ListSourceLocationsCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: ListSourceLocationsCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSourceLocationsCommandInput, ListSourceLocationsCommandOutput>;
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <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>
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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -37,11 +44,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
37
44
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaTailorClientResolvedConfig> {
38
45
  readonly input: ListTagsForResourceCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: ListTagsForResourceCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
5
5
  import { ListVodSourcesRequest, ListVodSourcesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListVodSourcesCommand}.
8
10
  */
9
11
  export interface ListVodSourcesCommandInput extends ListVodSourcesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListVodSourcesCommand}.
13
17
  */
14
18
  export interface ListVodSourcesCommandOutput extends ListVodSourcesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the VOD sources contained in a source location. A source represents a piece of content.</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 ListVodSourcesCommandOutput extends ListVodSourcesResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListVodSourcesCommandInput - {@link ListVodSourcesCommandInput}
34
+ * @returns {@link ListVodSourcesCommandOutput}
28
35
  * @see {@link ListVodSourcesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListVodSourcesCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface ListVodSourcesCommandOutput extends ListVodSourcesResponse, __M
34
41
  export declare class ListVodSourcesCommand extends $Command<ListVodSourcesCommandInput, ListVodSourcesCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: ListVodSourcesCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: ListVodSourcesCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVodSourcesCommandInput, ListVodSourcesCommandOutput>;
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 { PutChannelPolicyRequest, PutChannelPolicyResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutChannelPolicyCommand}.
8
10
  */
9
11
  export interface PutChannelPolicyCommandInput extends PutChannelPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutChannelPolicyCommand}.
13
17
  */
14
18
  export interface PutChannelPolicyCommandOutput extends PutChannelPolicyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates an IAM policy for the channel. IAM policies are used to control access to your 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 PutChannelPolicyCommandOutput extends PutChannelPolicyResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param PutChannelPolicyCommandInput - {@link PutChannelPolicyCommandInput}
34
+ * @returns {@link PutChannelPolicyCommandOutput}
28
35
  * @see {@link PutChannelPolicyCommandInput} for command's `input` shape.
29
36
  * @see {@link PutChannelPolicyCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface PutChannelPolicyCommandOutput extends PutChannelPolicyResponse,
34
41
  export declare class PutChannelPolicyCommand extends $Command<PutChannelPolicyCommandInput, PutChannelPolicyCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: PutChannelPolicyCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: PutChannelPolicyCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutChannelPolicyCommandInput, PutChannelPolicyCommandOutput>;
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 { PutPlaybackConfigurationRequest, PutPlaybackConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutPlaybackConfigurationCommand}.
8
10
  */
9
11
  export interface PutPlaybackConfigurationCommandInput extends PutPlaybackConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutPlaybackConfigurationCommand}.
13
17
  */
14
18
  export interface PutPlaybackConfigurationCommandOutput extends PutPlaybackConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <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>
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 PutPlaybackConfigurationCommandOutput extends PutPlaybackConfig
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param PutPlaybackConfigurationCommandInput - {@link PutPlaybackConfigurationCommandInput}
34
+ * @returns {@link PutPlaybackConfigurationCommandOutput}
28
35
  * @see {@link PutPlaybackConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link PutPlaybackConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface PutPlaybackConfigurationCommandOutput extends PutPlaybackConfig
34
41
  export declare class PutPlaybackConfigurationCommand extends $Command<PutPlaybackConfigurationCommandInput, PutPlaybackConfigurationCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: PutPlaybackConfigurationCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: PutPlaybackConfigurationCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutPlaybackConfigurationCommandInput, PutPlaybackConfigurationCommandOutput>;
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 { StartChannelRequest, StartChannelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartChannelCommand}.
8
10
  */
9
11
  export interface StartChannelCommandInput extends StartChannelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartChannelCommand}.
13
17
  */
14
18
  export interface StartChannelCommandOutput extends StartChannelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <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>
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 StartChannelCommandOutput extends StartChannelResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StartChannelCommandInput - {@link StartChannelCommandInput}
34
+ * @returns {@link StartChannelCommandOutput}
28
35
  * @see {@link StartChannelCommandInput} for command's `input` shape.
29
36
  * @see {@link StartChannelCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface StartChannelCommandOutput extends StartChannelResponse, __Metad
34
41
  export declare class StartChannelCommand extends $Command<StartChannelCommandInput, StartChannelCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: StartChannelCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: StartChannelCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartChannelCommandInput, StartChannelCommandOutput>;
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 { StopChannelRequest, StopChannelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopChannelCommand}.
8
10
  */
9
11
  export interface StopChannelCommandInput extends StopChannelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopChannelCommand}.
13
17
  */
14
18
  export interface StopChannelCommandOutput extends StopChannelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <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>
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 StopChannelCommandOutput extends StopChannelResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopChannelCommandInput - {@link StopChannelCommandInput}
34
+ * @returns {@link StopChannelCommandOutput}
28
35
  * @see {@link StopChannelCommandInput} for command's `input` shape.
29
36
  * @see {@link StopChannelCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface StopChannelCommandOutput extends StopChannelResponse, __Metadat
34
41
  export declare class StopChannelCommand extends $Command<StopChannelCommandInput, StopChannelCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: StopChannelCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: StopChannelCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopChannelCommandInput, StopChannelCommandOutput>;
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 { TagResourceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <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>
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 TagResourceCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -37,11 +44,20 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
37
44
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MediaTailorClientResolvedConfig> {
38
45
  readonly input: TagResourceCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: TagResourceCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
5
5
  import { UntagResourceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>The resource to untag.</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 UntagResourceCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -37,11 +44,20 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
37
44
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MediaTailorClientResolvedConfig> {
38
45
  readonly input: UntagResourceCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: UntagResourceCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
5
5
  import { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateChannelCommand}.
8
10
  */
9
11
  export interface UpdateChannelCommandInput extends UpdateChannelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateChannelCommand}.
13
17
  */
14
18
  export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <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>
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 UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateChannelCommandInput - {@link UpdateChannelCommandInput}
34
+ * @returns {@link UpdateChannelCommandOutput}
28
35
  * @see {@link UpdateChannelCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateChannelCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
@@ -34,11 +41,20 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
34
41
  export declare class UpdateChannelCommand extends $Command<UpdateChannelCommandInput, UpdateChannelCommandOutput, MediaTailorClientResolvedConfig> {
35
42
  readonly input: UpdateChannelCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: UpdateChannelCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateChannelCommandInput, UpdateChannelCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }