@aws-sdk/client-mediatailor 3.321.1 → 3.326.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.
- package/dist-types/commands/ConfigureLogsForChannelCommand.d.ts +9 -0
- package/dist-types/commands/ConfigureLogsForPlaybackConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +35 -0
- package/dist-types/commands/CreateLiveSourceCommand.d.ts +20 -0
- package/dist-types/commands/CreatePrefetchScheduleCommand.d.ts +26 -0
- package/dist-types/commands/CreateProgramCommand.d.ts +47 -0
- package/dist-types/commands/CreateSourceLocationCommand.d.ts +32 -0
- package/dist-types/commands/CreateVodSourceCommand.d.ts +20 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +4 -0
- package/dist-types/commands/DeleteChannelPolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteLiveSourceCommand.d.ts +4 -0
- package/dist-types/commands/DeletePlaybackConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/DeletePrefetchScheduleCommand.d.ts +4 -0
- package/dist-types/commands/DeleteProgramCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSourceLocationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVodSourceCommand.d.ts +4 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +40 -0
- package/dist-types/commands/DescribeLiveSourceCommand.d.ts +20 -0
- package/dist-types/commands/DescribeProgramCommand.d.ts +47 -0
- package/dist-types/commands/DescribeSourceLocationCommand.d.ts +32 -0
- package/dist-types/commands/DescribeVodSourceCommand.d.ts +20 -0
- package/dist-types/commands/GetChannelPolicyCommand.d.ts +6 -0
- package/dist-types/commands/GetChannelScheduleCommand.d.ts +27 -0
- package/dist-types/commands/GetPlaybackConfigurationCommand.d.ts +54 -0
- package/dist-types/commands/GetPrefetchScheduleCommand.d.ts +26 -0
- package/dist-types/commands/ListAlertsCommand.d.ts +17 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +45 -0
- package/dist-types/commands/ListLiveSourcesCommand.d.ts +25 -0
- package/dist-types/commands/ListPlaybackConfigurationsCommand.d.ts +59 -0
- package/dist-types/commands/ListPrefetchSchedulesCommand.d.ts +31 -0
- package/dist-types/commands/ListSourceLocationsCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListVodSourcesCommand.d.ts +25 -0
- package/dist-types/commands/PutChannelPolicyCommand.d.ts +4 -0
- package/dist-types/commands/PutPlaybackConfigurationCommand.d.ts +54 -0
- package/dist-types/commands/StartChannelCommand.d.ts +4 -0
- package/dist-types/commands/StopChannelCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +35 -0
- package/dist-types/commands/UpdateLiveSourceCommand.d.ts +20 -0
- package/dist-types/commands/UpdateProgramCommand.d.ts +47 -0
- package/dist-types/commands/UpdateSourceLocationCommand.d.ts +32 -0
- package/dist-types/commands/UpdateVodSourceCommand.d.ts +20 -0
- package/package.json +16 -16
|
@@ -34,6 +34,13 @@ export interface ConfigureLogsForChannelCommandOutput extends ConfigureLogsForCh
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ConfigureLogsForChannelCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ConfigureLogsForChannelResponse
|
|
38
|
+
* // ChannelName: "STRING_VALUE",
|
|
39
|
+
* // LogTypes: [ // LogTypes
|
|
40
|
+
* // "AS_RUN",
|
|
41
|
+
* // ],
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
37
44
|
* ```
|
|
38
45
|
*
|
|
39
46
|
* @param ConfigureLogsForChannelCommandInput - {@link ConfigureLogsForChannelCommandInput}
|
|
@@ -42,6 +49,8 @@ export interface ConfigureLogsForChannelCommandOutput extends ConfigureLogsForCh
|
|
|
42
49
|
* @see {@link ConfigureLogsForChannelCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
44
51
|
*
|
|
52
|
+
* @throws {@link MediaTailorServiceException}
|
|
53
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
45
54
|
*
|
|
46
55
|
*/
|
|
47
56
|
export declare class ConfigureLogsForChannelCommand extends $Command<ConfigureLogsForChannelCommandInput, ConfigureLogsForChannelCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface ConfigureLogsForPlaybackConfigurationCommandOutput extends Conf
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ConfigureLogsForPlaybackConfigurationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ConfigureLogsForPlaybackConfigurationResponse
|
|
36
|
+
* // PercentEnabled: Number("int"), // required
|
|
37
|
+
* // PlaybackConfigurationName: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param ConfigureLogsForPlaybackConfigurationCommandInput - {@link ConfigureLogsForPlaybackConfigurationCommandInput}
|
|
@@ -40,6 +45,8 @@ export interface ConfigureLogsForPlaybackConfigurationCommandOutput extends Conf
|
|
|
40
45
|
* @see {@link ConfigureLogsForPlaybackConfigurationCommandOutput} for command's `response` shape.
|
|
41
46
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
42
47
|
*
|
|
48
|
+
* @throws {@link MediaTailorServiceException}
|
|
49
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
43
50
|
*
|
|
44
51
|
*/
|
|
45
52
|
export declare class ConfigureLogsForPlaybackConfigurationCommand extends $Command<ConfigureLogsForPlaybackConfigurationCommandInput, ConfigureLogsForPlaybackConfigurationCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -55,6 +55,39 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
|
|
|
55
55
|
* };
|
|
56
56
|
* const command = new CreateChannelCommand(input);
|
|
57
57
|
* const response = await client.send(command);
|
|
58
|
+
* // { // CreateChannelResponse
|
|
59
|
+
* // Arn: "STRING_VALUE",
|
|
60
|
+
* // ChannelName: "STRING_VALUE",
|
|
61
|
+
* // ChannelState: "RUNNING" || "STOPPED",
|
|
62
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
63
|
+
* // FillerSlate: { // SlateSource
|
|
64
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
65
|
+
* // VodSourceName: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
68
|
+
* // Outputs: [ // ResponseOutputs
|
|
69
|
+
* // { // ResponseOutputItem
|
|
70
|
+
* // DashPlaylistSettings: { // DashPlaylistSettings
|
|
71
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
72
|
+
* // MinBufferTimeSeconds: Number("int"),
|
|
73
|
+
* // MinUpdatePeriodSeconds: Number("int"),
|
|
74
|
+
* // SuggestedPresentationDelaySeconds: Number("int"),
|
|
75
|
+
* // },
|
|
76
|
+
* // HlsPlaylistSettings: { // HlsPlaylistSettings
|
|
77
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
78
|
+
* // },
|
|
79
|
+
* // ManifestName: "STRING_VALUE", // required
|
|
80
|
+
* // PlaybackUrl: "STRING_VALUE", // required
|
|
81
|
+
* // SourceGroup: "STRING_VALUE", // required
|
|
82
|
+
* // },
|
|
83
|
+
* // ],
|
|
84
|
+
* // PlaybackMode: "STRING_VALUE",
|
|
85
|
+
* // Tags: { // __mapOf__string
|
|
86
|
+
* // "<keys>": "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // Tier: "STRING_VALUE",
|
|
89
|
+
* // };
|
|
90
|
+
*
|
|
58
91
|
* ```
|
|
59
92
|
*
|
|
60
93
|
* @param CreateChannelCommandInput - {@link CreateChannelCommandInput}
|
|
@@ -63,6 +96,8 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
|
|
|
63
96
|
* @see {@link CreateChannelCommandOutput} for command's `response` shape.
|
|
64
97
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
65
98
|
*
|
|
99
|
+
* @throws {@link MediaTailorServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
66
101
|
*
|
|
67
102
|
*/
|
|
68
103
|
export declare class CreateChannelCommand extends $Command<CreateChannelCommandInput, CreateChannelCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -42,6 +42,24 @@ export interface CreateLiveSourceCommandOutput extends CreateLiveSourceResponse,
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new CreateLiveSourceCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // CreateLiveSourceResponse
|
|
46
|
+
* // Arn: "STRING_VALUE",
|
|
47
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // HttpPackageConfigurations: [ // HttpPackageConfigurations
|
|
49
|
+
* // { // HttpPackageConfiguration
|
|
50
|
+
* // Path: "STRING_VALUE", // required
|
|
51
|
+
* // SourceGroup: "STRING_VALUE", // required
|
|
52
|
+
* // Type: "DASH" || "HLS", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
56
|
+
* // LiveSourceName: "STRING_VALUE",
|
|
57
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
58
|
+
* // Tags: { // __mapOf__string
|
|
59
|
+
* // "<keys>": "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
45
63
|
* ```
|
|
46
64
|
*
|
|
47
65
|
* @param CreateLiveSourceCommandInput - {@link CreateLiveSourceCommandInput}
|
|
@@ -50,6 +68,8 @@ export interface CreateLiveSourceCommandOutput extends CreateLiveSourceResponse,
|
|
|
50
68
|
* @see {@link CreateLiveSourceCommandOutput} for command's `response` shape.
|
|
51
69
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
52
70
|
*
|
|
71
|
+
* @throws {@link MediaTailorServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
53
73
|
*
|
|
54
74
|
*/
|
|
55
75
|
export declare class CreateLiveSourceCommand extends $Command<CreateLiveSourceCommandInput, CreateLiveSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -50,6 +50,30 @@ export interface CreatePrefetchScheduleCommandOutput extends CreatePrefetchSched
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new CreatePrefetchScheduleCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // { // CreatePrefetchScheduleResponse
|
|
54
|
+
* // Arn: "STRING_VALUE",
|
|
55
|
+
* // Consumption: { // PrefetchConsumption
|
|
56
|
+
* // AvailMatchingCriteria: [ // __listOfAvailMatchingCriteria
|
|
57
|
+
* // { // AvailMatchingCriteria
|
|
58
|
+
* // DynamicVariable: "STRING_VALUE", // required
|
|
59
|
+
* // Operator: "EQUALS", // required
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // EndTime: new Date("TIMESTAMP"), // required
|
|
63
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
64
|
+
* // },
|
|
65
|
+
* // Name: "STRING_VALUE",
|
|
66
|
+
* // PlaybackConfigurationName: "STRING_VALUE",
|
|
67
|
+
* // Retrieval: { // PrefetchRetrieval
|
|
68
|
+
* // DynamicVariables: { // __mapOf__string
|
|
69
|
+
* // "<keys>": "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // EndTime: new Date("TIMESTAMP"), // required
|
|
72
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
73
|
+
* // },
|
|
74
|
+
* // StreamId: "STRING_VALUE",
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
53
77
|
* ```
|
|
54
78
|
*
|
|
55
79
|
* @param CreatePrefetchScheduleCommandInput - {@link CreatePrefetchScheduleCommandInput}
|
|
@@ -58,6 +82,8 @@ export interface CreatePrefetchScheduleCommandOutput extends CreatePrefetchSched
|
|
|
58
82
|
* @see {@link CreatePrefetchScheduleCommandOutput} for command's `response` shape.
|
|
59
83
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
60
84
|
*
|
|
85
|
+
* @throws {@link MediaTailorServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
61
87
|
*
|
|
62
88
|
*/
|
|
63
89
|
export declare class CreatePrefetchScheduleCommand extends $Command<CreatePrefetchScheduleCommandInput, CreatePrefetchScheduleCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -77,6 +77,51 @@ export interface CreateProgramCommandOutput extends CreateProgramResponse, __Met
|
|
|
77
77
|
* };
|
|
78
78
|
* const command = new CreateProgramCommand(input);
|
|
79
79
|
* const response = await client.send(command);
|
|
80
|
+
* // { // CreateProgramResponse
|
|
81
|
+
* // AdBreaks: [ // __listOfAdBreak
|
|
82
|
+
* // { // AdBreak
|
|
83
|
+
* // MessageType: "SPLICE_INSERT" || "TIME_SIGNAL",
|
|
84
|
+
* // OffsetMillis: Number("long"),
|
|
85
|
+
* // Slate: { // SlateSource
|
|
86
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
87
|
+
* // VodSourceName: "STRING_VALUE",
|
|
88
|
+
* // },
|
|
89
|
+
* // SpliceInsertMessage: { // SpliceInsertMessage
|
|
90
|
+
* // AvailNum: Number("int"),
|
|
91
|
+
* // AvailsExpected: Number("int"),
|
|
92
|
+
* // SpliceEventId: Number("int"),
|
|
93
|
+
* // UniqueProgramId: Number("int"),
|
|
94
|
+
* // },
|
|
95
|
+
* // TimeSignalMessage: { // TimeSignalMessage
|
|
96
|
+
* // SegmentationDescriptors: [ // SegmentationDescriptorList
|
|
97
|
+
* // { // SegmentationDescriptor
|
|
98
|
+
* // SegmentationEventId: Number("int"),
|
|
99
|
+
* // SegmentationUpidType: Number("int"),
|
|
100
|
+
* // SegmentationUpid: "STRING_VALUE",
|
|
101
|
+
* // SegmentationTypeId: Number("int"),
|
|
102
|
+
* // SegmentNum: Number("int"),
|
|
103
|
+
* // SegmentsExpected: Number("int"),
|
|
104
|
+
* // SubSegmentNum: Number("int"),
|
|
105
|
+
* // SubSegmentsExpected: Number("int"),
|
|
106
|
+
* // },
|
|
107
|
+
* // ],
|
|
108
|
+
* // },
|
|
109
|
+
* // },
|
|
110
|
+
* // ],
|
|
111
|
+
* // Arn: "STRING_VALUE",
|
|
112
|
+
* // ChannelName: "STRING_VALUE",
|
|
113
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
114
|
+
* // LiveSourceName: "STRING_VALUE",
|
|
115
|
+
* // ProgramName: "STRING_VALUE",
|
|
116
|
+
* // ScheduledStartTime: new Date("TIMESTAMP"),
|
|
117
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
118
|
+
* // VodSourceName: "STRING_VALUE",
|
|
119
|
+
* // ClipRange: { // ClipRange
|
|
120
|
+
* // EndOffsetMillis: Number("long"), // required
|
|
121
|
+
* // },
|
|
122
|
+
* // DurationMillis: Number("long"),
|
|
123
|
+
* // };
|
|
124
|
+
*
|
|
80
125
|
* ```
|
|
81
126
|
*
|
|
82
127
|
* @param CreateProgramCommandInput - {@link CreateProgramCommandInput}
|
|
@@ -85,6 +130,8 @@ export interface CreateProgramCommandOutput extends CreateProgramResponse, __Met
|
|
|
85
130
|
* @see {@link CreateProgramCommandOutput} for command's `response` shape.
|
|
86
131
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
87
132
|
*
|
|
133
|
+
* @throws {@link MediaTailorServiceException}
|
|
134
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
88
135
|
*
|
|
89
136
|
*/
|
|
90
137
|
export declare class CreateProgramCommand extends $Command<CreateProgramCommandInput, CreateProgramCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -54,6 +54,36 @@ export interface CreateSourceLocationCommandOutput extends CreateSourceLocationR
|
|
|
54
54
|
* };
|
|
55
55
|
* const command = new CreateSourceLocationCommand(input);
|
|
56
56
|
* const response = await client.send(command);
|
|
57
|
+
* // { // CreateSourceLocationResponse
|
|
58
|
+
* // AccessConfiguration: { // AccessConfiguration
|
|
59
|
+
* // AccessType: "S3_SIGV4" || "SECRETS_MANAGER_ACCESS_TOKEN",
|
|
60
|
+
* // SecretsManagerAccessTokenConfiguration: { // SecretsManagerAccessTokenConfiguration
|
|
61
|
+
* // HeaderName: "STRING_VALUE",
|
|
62
|
+
* // SecretArn: "STRING_VALUE",
|
|
63
|
+
* // SecretStringKey: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // Arn: "STRING_VALUE",
|
|
67
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
68
|
+
* // DefaultSegmentDeliveryConfiguration: { // DefaultSegmentDeliveryConfiguration
|
|
69
|
+
* // BaseUrl: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // HttpConfiguration: { // HttpConfiguration
|
|
72
|
+
* // BaseUrl: "STRING_VALUE", // required
|
|
73
|
+
* // },
|
|
74
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
75
|
+
* // SegmentDeliveryConfigurations: [ // __listOfSegmentDeliveryConfiguration
|
|
76
|
+
* // { // SegmentDeliveryConfiguration
|
|
77
|
+
* // BaseUrl: "STRING_VALUE",
|
|
78
|
+
* // Name: "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // ],
|
|
81
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
82
|
+
* // Tags: { // __mapOf__string
|
|
83
|
+
* // "<keys>": "STRING_VALUE",
|
|
84
|
+
* // },
|
|
85
|
+
* // };
|
|
86
|
+
*
|
|
57
87
|
* ```
|
|
58
88
|
*
|
|
59
89
|
* @param CreateSourceLocationCommandInput - {@link CreateSourceLocationCommandInput}
|
|
@@ -62,6 +92,8 @@ export interface CreateSourceLocationCommandOutput extends CreateSourceLocationR
|
|
|
62
92
|
* @see {@link CreateSourceLocationCommandOutput} for command's `response` shape.
|
|
63
93
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
64
94
|
*
|
|
95
|
+
* @throws {@link MediaTailorServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
65
97
|
*
|
|
66
98
|
*/
|
|
67
99
|
export declare class CreateSourceLocationCommand extends $Command<CreateSourceLocationCommandInput, CreateSourceLocationCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -42,6 +42,24 @@ export interface CreateVodSourceCommandOutput extends CreateVodSourceResponse, _
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new CreateVodSourceCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // CreateVodSourceResponse
|
|
46
|
+
* // Arn: "STRING_VALUE",
|
|
47
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // HttpPackageConfigurations: [ // HttpPackageConfigurations
|
|
49
|
+
* // { // HttpPackageConfiguration
|
|
50
|
+
* // Path: "STRING_VALUE", // required
|
|
51
|
+
* // SourceGroup: "STRING_VALUE", // required
|
|
52
|
+
* // Type: "DASH" || "HLS", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
56
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
57
|
+
* // Tags: { // __mapOf__string
|
|
58
|
+
* // "<keys>": "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // VodSourceName: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
45
63
|
* ```
|
|
46
64
|
*
|
|
47
65
|
* @param CreateVodSourceCommandInput - {@link CreateVodSourceCommandInput}
|
|
@@ -50,6 +68,8 @@ export interface CreateVodSourceCommandOutput extends CreateVodSourceResponse, _
|
|
|
50
68
|
* @see {@link CreateVodSourceCommandOutput} for command's `response` shape.
|
|
51
69
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
52
70
|
*
|
|
71
|
+
* @throws {@link MediaTailorServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
53
73
|
*
|
|
54
74
|
*/
|
|
55
75
|
export declare class CreateVodSourceCommand extends $Command<CreateVodSourceCommandInput, CreateVodSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteChannelCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteChannelCommandInput - {@link DeleteChannelCommandInput}
|
|
@@ -39,6 +41,8 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met
|
|
|
39
41
|
* @see {@link DeleteChannelCommandOutput} for command's `response` shape.
|
|
40
42
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
41
43
|
*
|
|
44
|
+
* @throws {@link MediaTailorServiceException}
|
|
45
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
42
46
|
*
|
|
43
47
|
*/
|
|
44
48
|
export declare class DeleteChannelCommand extends $Command<DeleteChannelCommandInput, DeleteChannelCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteChannelPolicyCommandOutput extends DeleteChannelPolicyRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteChannelPolicyCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteChannelPolicyCommandInput - {@link DeleteChannelPolicyCommandInput}
|
|
@@ -39,6 +41,8 @@ export interface DeleteChannelPolicyCommandOutput extends DeleteChannelPolicyRes
|
|
|
39
41
|
* @see {@link DeleteChannelPolicyCommandOutput} for command's `response` shape.
|
|
40
42
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
41
43
|
*
|
|
44
|
+
* @throws {@link MediaTailorServiceException}
|
|
45
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
42
46
|
*
|
|
43
47
|
*/
|
|
44
48
|
export declare class DeleteChannelPolicyCommand extends $Command<DeleteChannelPolicyCommandInput, DeleteChannelPolicyCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteLiveSourceCommandOutput extends DeleteLiveSourceResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteLiveSourceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteLiveSourceCommandInput - {@link DeleteLiveSourceCommandInput}
|
|
@@ -40,6 +42,8 @@ export interface DeleteLiveSourceCommandOutput extends DeleteLiveSourceResponse,
|
|
|
40
42
|
* @see {@link DeleteLiveSourceCommandOutput} for command's `response` shape.
|
|
41
43
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
42
44
|
*
|
|
45
|
+
* @throws {@link MediaTailorServiceException}
|
|
46
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
43
47
|
*
|
|
44
48
|
*/
|
|
45
49
|
export declare class DeleteLiveSourceCommand extends $Command<DeleteLiveSourceCommandInput, DeleteLiveSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeletePlaybackConfigurationCommandOutput extends DeletePlayback
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeletePlaybackConfigurationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeletePlaybackConfigurationCommandInput - {@link DeletePlaybackConfigurationCommandInput}
|
|
@@ -39,6 +41,8 @@ export interface DeletePlaybackConfigurationCommandOutput extends DeletePlayback
|
|
|
39
41
|
* @see {@link DeletePlaybackConfigurationCommandOutput} for command's `response` shape.
|
|
40
42
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
41
43
|
*
|
|
44
|
+
* @throws {@link MediaTailorServiceException}
|
|
45
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
42
46
|
*
|
|
43
47
|
*/
|
|
44
48
|
export declare class DeletePlaybackConfigurationCommand extends $Command<DeletePlaybackConfigurationCommandInput, DeletePlaybackConfigurationCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeletePrefetchScheduleCommandOutput extends DeletePrefetchSched
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeletePrefetchScheduleCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeletePrefetchScheduleCommandInput - {@link DeletePrefetchScheduleCommandInput}
|
|
@@ -40,6 +42,8 @@ export interface DeletePrefetchScheduleCommandOutput extends DeletePrefetchSched
|
|
|
40
42
|
* @see {@link DeletePrefetchScheduleCommandOutput} for command's `response` shape.
|
|
41
43
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
42
44
|
*
|
|
45
|
+
* @throws {@link MediaTailorServiceException}
|
|
46
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
43
47
|
*
|
|
44
48
|
*/
|
|
45
49
|
export declare class DeletePrefetchScheduleCommand extends $Command<DeletePrefetchScheduleCommandInput, DeletePrefetchScheduleCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteProgramCommandOutput extends DeleteProgramResponse, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteProgramCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteProgramCommandInput - {@link DeleteProgramCommandInput}
|
|
@@ -40,6 +42,8 @@ export interface DeleteProgramCommandOutput extends DeleteProgramResponse, __Met
|
|
|
40
42
|
* @see {@link DeleteProgramCommandOutput} for command's `response` shape.
|
|
41
43
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
42
44
|
*
|
|
45
|
+
* @throws {@link MediaTailorServiceException}
|
|
46
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
43
47
|
*
|
|
44
48
|
*/
|
|
45
49
|
export declare class DeleteProgramCommand extends $Command<DeleteProgramCommandInput, DeleteProgramCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteSourceLocationCommandOutput extends DeleteSourceLocationR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteSourceLocationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteSourceLocationCommandInput - {@link DeleteSourceLocationCommandInput}
|
|
@@ -39,6 +41,8 @@ export interface DeleteSourceLocationCommandOutput extends DeleteSourceLocationR
|
|
|
39
41
|
* @see {@link DeleteSourceLocationCommandOutput} for command's `response` shape.
|
|
40
42
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
41
43
|
*
|
|
44
|
+
* @throws {@link MediaTailorServiceException}
|
|
45
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
42
46
|
*
|
|
43
47
|
*/
|
|
44
48
|
export declare class DeleteSourceLocationCommand extends $Command<DeleteSourceLocationCommandInput, DeleteSourceLocationCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteVodSourceCommandOutput extends DeleteVodSourceResponse, _
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteVodSourceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteVodSourceCommandInput - {@link DeleteVodSourceCommandInput}
|
|
@@ -40,6 +42,8 @@ export interface DeleteVodSourceCommandOutput extends DeleteVodSourceResponse, _
|
|
|
40
42
|
* @see {@link DeleteVodSourceCommandOutput} for command's `response` shape.
|
|
41
43
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
42
44
|
*
|
|
45
|
+
* @throws {@link MediaTailorServiceException}
|
|
46
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
43
47
|
*
|
|
44
48
|
*/
|
|
45
49
|
export declare class DeleteVodSourceCommand extends $Command<DeleteVodSourceCommandInput, DeleteVodSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -31,6 +31,44 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeChannelCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeChannelResponse
|
|
35
|
+
* // Arn: "STRING_VALUE",
|
|
36
|
+
* // ChannelName: "STRING_VALUE",
|
|
37
|
+
* // ChannelState: "RUNNING" || "STOPPED",
|
|
38
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
39
|
+
* // FillerSlate: { // SlateSource
|
|
40
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
41
|
+
* // VodSourceName: "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // Outputs: [ // ResponseOutputs
|
|
45
|
+
* // { // ResponseOutputItem
|
|
46
|
+
* // DashPlaylistSettings: { // DashPlaylistSettings
|
|
47
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
48
|
+
* // MinBufferTimeSeconds: Number("int"),
|
|
49
|
+
* // MinUpdatePeriodSeconds: Number("int"),
|
|
50
|
+
* // SuggestedPresentationDelaySeconds: Number("int"),
|
|
51
|
+
* // },
|
|
52
|
+
* // HlsPlaylistSettings: { // HlsPlaylistSettings
|
|
53
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
54
|
+
* // },
|
|
55
|
+
* // ManifestName: "STRING_VALUE", // required
|
|
56
|
+
* // PlaybackUrl: "STRING_VALUE", // required
|
|
57
|
+
* // SourceGroup: "STRING_VALUE", // required
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // PlaybackMode: "STRING_VALUE",
|
|
61
|
+
* // Tags: { // __mapOf__string
|
|
62
|
+
* // "<keys>": "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // Tier: "STRING_VALUE",
|
|
65
|
+
* // LogConfiguration: { // LogConfigurationForChannel
|
|
66
|
+
* // LogTypes: [ // LogTypes
|
|
67
|
+
* // "AS_RUN",
|
|
68
|
+
* // ],
|
|
69
|
+
* // },
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
34
72
|
* ```
|
|
35
73
|
*
|
|
36
74
|
* @param DescribeChannelCommandInput - {@link DescribeChannelCommandInput}
|
|
@@ -39,6 +77,8 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _
|
|
|
39
77
|
* @see {@link DescribeChannelCommandOutput} for command's `response` shape.
|
|
40
78
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
41
79
|
*
|
|
80
|
+
* @throws {@link MediaTailorServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
42
82
|
*
|
|
43
83
|
*/
|
|
44
84
|
export declare class DescribeChannelCommand extends $Command<DescribeChannelCommandInput, DescribeChannelCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -32,6 +32,24 @@ export interface DescribeLiveSourceCommandOutput extends DescribeLiveSourceRespo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeLiveSourceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeLiveSourceResponse
|
|
36
|
+
* // Arn: "STRING_VALUE",
|
|
37
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
38
|
+
* // HttpPackageConfigurations: [ // HttpPackageConfigurations
|
|
39
|
+
* // { // HttpPackageConfiguration
|
|
40
|
+
* // Path: "STRING_VALUE", // required
|
|
41
|
+
* // SourceGroup: "STRING_VALUE", // required
|
|
42
|
+
* // Type: "DASH" || "HLS", // required
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // LiveSourceName: "STRING_VALUE",
|
|
47
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
48
|
+
* // Tags: { // __mapOf__string
|
|
49
|
+
* // "<keys>": "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
35
53
|
* ```
|
|
36
54
|
*
|
|
37
55
|
* @param DescribeLiveSourceCommandInput - {@link DescribeLiveSourceCommandInput}
|
|
@@ -40,6 +58,8 @@ export interface DescribeLiveSourceCommandOutput extends DescribeLiveSourceRespo
|
|
|
40
58
|
* @see {@link DescribeLiveSourceCommandOutput} for command's `response` shape.
|
|
41
59
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
42
60
|
*
|
|
61
|
+
* @throws {@link MediaTailorServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
43
63
|
*
|
|
44
64
|
*/
|
|
45
65
|
export declare class DescribeLiveSourceCommand extends $Command<DescribeLiveSourceCommandInput, DescribeLiveSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -32,6 +32,51 @@ export interface DescribeProgramCommandOutput extends DescribeProgramResponse, _
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeProgramCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeProgramResponse
|
|
36
|
+
* // AdBreaks: [ // __listOfAdBreak
|
|
37
|
+
* // { // AdBreak
|
|
38
|
+
* // MessageType: "SPLICE_INSERT" || "TIME_SIGNAL",
|
|
39
|
+
* // OffsetMillis: Number("long"),
|
|
40
|
+
* // Slate: { // SlateSource
|
|
41
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
42
|
+
* // VodSourceName: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // SpliceInsertMessage: { // SpliceInsertMessage
|
|
45
|
+
* // AvailNum: Number("int"),
|
|
46
|
+
* // AvailsExpected: Number("int"),
|
|
47
|
+
* // SpliceEventId: Number("int"),
|
|
48
|
+
* // UniqueProgramId: Number("int"),
|
|
49
|
+
* // },
|
|
50
|
+
* // TimeSignalMessage: { // TimeSignalMessage
|
|
51
|
+
* // SegmentationDescriptors: [ // SegmentationDescriptorList
|
|
52
|
+
* // { // SegmentationDescriptor
|
|
53
|
+
* // SegmentationEventId: Number("int"),
|
|
54
|
+
* // SegmentationUpidType: Number("int"),
|
|
55
|
+
* // SegmentationUpid: "STRING_VALUE",
|
|
56
|
+
* // SegmentationTypeId: Number("int"),
|
|
57
|
+
* // SegmentNum: Number("int"),
|
|
58
|
+
* // SegmentsExpected: Number("int"),
|
|
59
|
+
* // SubSegmentNum: Number("int"),
|
|
60
|
+
* // SubSegmentsExpected: Number("int"),
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // },
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // Arn: "STRING_VALUE",
|
|
67
|
+
* // ChannelName: "STRING_VALUE",
|
|
68
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
69
|
+
* // LiveSourceName: "STRING_VALUE",
|
|
70
|
+
* // ProgramName: "STRING_VALUE",
|
|
71
|
+
* // ScheduledStartTime: new Date("TIMESTAMP"),
|
|
72
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
73
|
+
* // VodSourceName: "STRING_VALUE",
|
|
74
|
+
* // ClipRange: { // ClipRange
|
|
75
|
+
* // EndOffsetMillis: Number("long"), // required
|
|
76
|
+
* // },
|
|
77
|
+
* // DurationMillis: Number("long"),
|
|
78
|
+
* // };
|
|
79
|
+
*
|
|
35
80
|
* ```
|
|
36
81
|
*
|
|
37
82
|
* @param DescribeProgramCommandInput - {@link DescribeProgramCommandInput}
|
|
@@ -40,6 +85,8 @@ export interface DescribeProgramCommandOutput extends DescribeProgramResponse, _
|
|
|
40
85
|
* @see {@link DescribeProgramCommandOutput} for command's `response` shape.
|
|
41
86
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
42
87
|
*
|
|
88
|
+
* @throws {@link MediaTailorServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
43
90
|
*
|
|
44
91
|
*/
|
|
45
92
|
export declare class DescribeProgramCommand extends $Command<DescribeProgramCommandInput, DescribeProgramCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -31,6 +31,36 @@ export interface DescribeSourceLocationCommandOutput extends DescribeSourceLocat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeSourceLocationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeSourceLocationResponse
|
|
35
|
+
* // AccessConfiguration: { // AccessConfiguration
|
|
36
|
+
* // AccessType: "S3_SIGV4" || "SECRETS_MANAGER_ACCESS_TOKEN",
|
|
37
|
+
* // SecretsManagerAccessTokenConfiguration: { // SecretsManagerAccessTokenConfiguration
|
|
38
|
+
* // HeaderName: "STRING_VALUE",
|
|
39
|
+
* // SecretArn: "STRING_VALUE",
|
|
40
|
+
* // SecretStringKey: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // },
|
|
43
|
+
* // Arn: "STRING_VALUE",
|
|
44
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // DefaultSegmentDeliveryConfiguration: { // DefaultSegmentDeliveryConfiguration
|
|
46
|
+
* // BaseUrl: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // HttpConfiguration: { // HttpConfiguration
|
|
49
|
+
* // BaseUrl: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // SegmentDeliveryConfigurations: [ // __listOfSegmentDeliveryConfiguration
|
|
53
|
+
* // { // SegmentDeliveryConfiguration
|
|
54
|
+
* // BaseUrl: "STRING_VALUE",
|
|
55
|
+
* // Name: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
59
|
+
* // Tags: { // __mapOf__string
|
|
60
|
+
* // "<keys>": "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
34
64
|
* ```
|
|
35
65
|
*
|
|
36
66
|
* @param DescribeSourceLocationCommandInput - {@link DescribeSourceLocationCommandInput}
|
|
@@ -39,6 +69,8 @@ export interface DescribeSourceLocationCommandOutput extends DescribeSourceLocat
|
|
|
39
69
|
* @see {@link DescribeSourceLocationCommandOutput} for command's `response` shape.
|
|
40
70
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
41
71
|
*
|
|
72
|
+
* @throws {@link MediaTailorServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
42
74
|
*
|
|
43
75
|
*/
|
|
44
76
|
export declare class DescribeSourceLocationCommand extends $Command<DescribeSourceLocationCommandInput, DescribeSourceLocationCommandOutput, MediaTailorClientResolvedConfig> {
|