@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
|
@@ -32,6 +32,24 @@ export interface DescribeVodSourceCommandOutput extends DescribeVodSourceRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeVodSourceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeVodSourceResponse
|
|
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
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
47
|
+
* // Tags: { // __mapOf__string
|
|
48
|
+
* // "<keys>": "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // VodSourceName: "STRING_VALUE",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
35
53
|
* ```
|
|
36
54
|
*
|
|
37
55
|
* @param DescribeVodSourceCommandInput - {@link DescribeVodSourceCommandInput}
|
|
@@ -40,6 +58,8 @@ export interface DescribeVodSourceCommandOutput extends DescribeVodSourceRespons
|
|
|
40
58
|
* @see {@link DescribeVodSourceCommandOutput} 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 DescribeVodSourceCommand extends $Command<DescribeVodSourceCommandInput, DescribeVodSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface GetChannelPolicyCommandOutput extends GetChannelPolicyResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetChannelPolicyCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetChannelPolicyResponse
|
|
35
|
+
* // Policy: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param GetChannelPolicyCommandInput - {@link GetChannelPolicyCommandInput}
|
|
@@ -39,6 +43,8 @@ export interface GetChannelPolicyCommandOutput extends GetChannelPolicyResponse,
|
|
|
39
43
|
* @see {@link GetChannelPolicyCommandOutput} for command's `response` shape.
|
|
40
44
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
41
45
|
*
|
|
46
|
+
* @throws {@link MediaTailorServiceException}
|
|
47
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
42
48
|
*
|
|
43
49
|
*/
|
|
44
50
|
export declare class GetChannelPolicyCommand extends $Command<GetChannelPolicyCommandInput, GetChannelPolicyCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -34,6 +34,31 @@ export interface GetChannelScheduleCommandOutput extends GetChannelScheduleRespo
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetChannelScheduleCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetChannelScheduleResponse
|
|
38
|
+
* // Items: [ // __listOfScheduleEntry
|
|
39
|
+
* // { // ScheduleEntry
|
|
40
|
+
* // ApproximateDurationSeconds: Number("long"),
|
|
41
|
+
* // ApproximateStartTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // Arn: "STRING_VALUE", // required
|
|
43
|
+
* // ChannelName: "STRING_VALUE", // required
|
|
44
|
+
* // LiveSourceName: "STRING_VALUE",
|
|
45
|
+
* // ProgramName: "STRING_VALUE", // required
|
|
46
|
+
* // ScheduleAdBreaks: [ // __listOfScheduleAdBreak
|
|
47
|
+
* // { // ScheduleAdBreak
|
|
48
|
+
* // ApproximateDurationSeconds: Number("long"),
|
|
49
|
+
* // ApproximateStartTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
51
|
+
* // VodSourceName: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // ScheduleEntryType: "PROGRAM" || "FILLER_SLATE",
|
|
55
|
+
* // SourceLocationName: "STRING_VALUE", // required
|
|
56
|
+
* // VodSourceName: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // NextToken: "STRING_VALUE",
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
37
62
|
* ```
|
|
38
63
|
*
|
|
39
64
|
* @param GetChannelScheduleCommandInput - {@link GetChannelScheduleCommandInput}
|
|
@@ -42,6 +67,8 @@ export interface GetChannelScheduleCommandOutput extends GetChannelScheduleRespo
|
|
|
42
67
|
* @see {@link GetChannelScheduleCommandOutput} for command's `response` shape.
|
|
43
68
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
44
69
|
*
|
|
70
|
+
* @throws {@link MediaTailorServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
45
72
|
*
|
|
46
73
|
*/
|
|
47
74
|
export declare class GetChannelScheduleCommand extends $Command<GetChannelScheduleCommandInput, GetChannelScheduleCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -31,6 +31,58 @@ export interface GetPlaybackConfigurationCommandOutput extends GetPlaybackConfig
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetPlaybackConfigurationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetPlaybackConfigurationResponse
|
|
35
|
+
* // AdDecisionServerUrl: "STRING_VALUE",
|
|
36
|
+
* // AvailSuppression: { // AvailSuppression
|
|
37
|
+
* // Mode: "OFF" || "BEHIND_LIVE_EDGE",
|
|
38
|
+
* // Value: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // Bumper: { // Bumper
|
|
41
|
+
* // EndUrl: "STRING_VALUE",
|
|
42
|
+
* // StartUrl: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // CdnConfiguration: { // CdnConfiguration
|
|
45
|
+
* // AdSegmentUrlPrefix: "STRING_VALUE",
|
|
46
|
+
* // ContentSegmentUrlPrefix: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // ConfigurationAliases: { // ConfigurationAliasesResponse
|
|
49
|
+
* // "<keys>": { // __mapOf__string
|
|
50
|
+
* // "<keys>": "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // DashConfiguration: { // DashConfiguration
|
|
54
|
+
* // ManifestEndpointPrefix: "STRING_VALUE",
|
|
55
|
+
* // MpdLocation: "STRING_VALUE",
|
|
56
|
+
* // OriginManifestType: "SINGLE_PERIOD" || "MULTI_PERIOD",
|
|
57
|
+
* // },
|
|
58
|
+
* // HlsConfiguration: { // HlsConfiguration
|
|
59
|
+
* // ManifestEndpointPrefix: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // LivePreRollConfiguration: { // LivePreRollConfiguration
|
|
62
|
+
* // AdDecisionServerUrl: "STRING_VALUE",
|
|
63
|
+
* // MaxDurationSeconds: Number("int"),
|
|
64
|
+
* // },
|
|
65
|
+
* // LogConfiguration: { // LogConfiguration
|
|
66
|
+
* // PercentEnabled: Number("int"), // required
|
|
67
|
+
* // },
|
|
68
|
+
* // ManifestProcessingRules: { // ManifestProcessingRules
|
|
69
|
+
* // AdMarkerPassthrough: { // AdMarkerPassthrough
|
|
70
|
+
* // Enabled: true || false,
|
|
71
|
+
* // },
|
|
72
|
+
* // },
|
|
73
|
+
* // Name: "STRING_VALUE",
|
|
74
|
+
* // PersonalizationThresholdSeconds: Number("int"),
|
|
75
|
+
* // PlaybackConfigurationArn: "STRING_VALUE",
|
|
76
|
+
* // PlaybackEndpointPrefix: "STRING_VALUE",
|
|
77
|
+
* // SessionInitializationEndpointPrefix: "STRING_VALUE",
|
|
78
|
+
* // SlateAdUrl: "STRING_VALUE",
|
|
79
|
+
* // Tags: {
|
|
80
|
+
* // "<keys>": "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // TranscodeProfileName: "STRING_VALUE",
|
|
83
|
+
* // VideoContentSourceUrl: "STRING_VALUE",
|
|
84
|
+
* // };
|
|
85
|
+
*
|
|
34
86
|
* ```
|
|
35
87
|
*
|
|
36
88
|
* @param GetPlaybackConfigurationCommandInput - {@link GetPlaybackConfigurationCommandInput}
|
|
@@ -39,6 +91,8 @@ export interface GetPlaybackConfigurationCommandOutput extends GetPlaybackConfig
|
|
|
39
91
|
* @see {@link GetPlaybackConfigurationCommandOutput} for command's `response` shape.
|
|
40
92
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
41
93
|
*
|
|
94
|
+
* @throws {@link MediaTailorServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
42
96
|
*
|
|
43
97
|
*/
|
|
44
98
|
export declare class GetPlaybackConfigurationCommand extends $Command<GetPlaybackConfigurationCommandInput, GetPlaybackConfigurationCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -32,6 +32,30 @@ export interface GetPrefetchScheduleCommandOutput extends GetPrefetchScheduleRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetPrefetchScheduleCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetPrefetchScheduleResponse
|
|
36
|
+
* // Arn: "STRING_VALUE",
|
|
37
|
+
* // Consumption: { // PrefetchConsumption
|
|
38
|
+
* // AvailMatchingCriteria: [ // __listOfAvailMatchingCriteria
|
|
39
|
+
* // { // AvailMatchingCriteria
|
|
40
|
+
* // DynamicVariable: "STRING_VALUE", // required
|
|
41
|
+
* // Operator: "EQUALS", // required
|
|
42
|
+
* // },
|
|
43
|
+
* // ],
|
|
44
|
+
* // EndTime: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // },
|
|
47
|
+
* // Name: "STRING_VALUE",
|
|
48
|
+
* // PlaybackConfigurationName: "STRING_VALUE",
|
|
49
|
+
* // Retrieval: { // PrefetchRetrieval
|
|
50
|
+
* // DynamicVariables: { // __mapOf__string
|
|
51
|
+
* // "<keys>": "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // EndTime: new Date("TIMESTAMP"), // required
|
|
54
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
55
|
+
* // },
|
|
56
|
+
* // StreamId: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
35
59
|
* ```
|
|
36
60
|
*
|
|
37
61
|
* @param GetPrefetchScheduleCommandInput - {@link GetPrefetchScheduleCommandInput}
|
|
@@ -40,6 +64,8 @@ export interface GetPrefetchScheduleCommandOutput extends GetPrefetchScheduleRes
|
|
|
40
64
|
* @see {@link GetPrefetchScheduleCommandOutput} for command's `response` shape.
|
|
41
65
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
42
66
|
*
|
|
67
|
+
* @throws {@link MediaTailorServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
43
69
|
*
|
|
44
70
|
*/
|
|
45
71
|
export declare class GetPrefetchScheduleCommand extends $Command<GetPrefetchScheduleCommandInput, GetPrefetchScheduleCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -33,6 +33,21 @@ export interface ListAlertsCommandOutput extends ListAlertsResponse, __MetadataB
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListAlertsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListAlertsResponse
|
|
37
|
+
* // Items: [ // __listOfAlert
|
|
38
|
+
* // { // Alert
|
|
39
|
+
* // AlertCode: "STRING_VALUE", // required
|
|
40
|
+
* // AlertMessage: "STRING_VALUE", // required
|
|
41
|
+
* // LastModifiedTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // RelatedResourceArns: [ // __listOf__string // required
|
|
43
|
+
* // "STRING_VALUE",
|
|
44
|
+
* // ],
|
|
45
|
+
* // ResourceArn: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // NextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
36
51
|
* ```
|
|
37
52
|
*
|
|
38
53
|
* @param ListAlertsCommandInput - {@link ListAlertsCommandInput}
|
|
@@ -41,6 +56,8 @@ export interface ListAlertsCommandOutput extends ListAlertsResponse, __MetadataB
|
|
|
41
56
|
* @see {@link ListAlertsCommandOutput} for command's `response` shape.
|
|
42
57
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
43
58
|
*
|
|
59
|
+
* @throws {@link MediaTailorServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
44
61
|
*
|
|
45
62
|
*/
|
|
46
63
|
export declare class ListAlertsCommand extends $Command<ListAlertsCommandInput, ListAlertsCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -32,6 +32,49 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListChannelsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListChannelsResponse
|
|
36
|
+
* // Items: [ // __listOfChannel
|
|
37
|
+
* // { // Channel
|
|
38
|
+
* // Arn: "STRING_VALUE", // required
|
|
39
|
+
* // ChannelName: "STRING_VALUE", // required
|
|
40
|
+
* // ChannelState: "STRING_VALUE", // required
|
|
41
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // FillerSlate: { // SlateSource
|
|
43
|
+
* // SourceLocationName: "STRING_VALUE",
|
|
44
|
+
* // VodSourceName: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // Outputs: [ // ResponseOutputs // required
|
|
48
|
+
* // { // ResponseOutputItem
|
|
49
|
+
* // DashPlaylistSettings: { // DashPlaylistSettings
|
|
50
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
51
|
+
* // MinBufferTimeSeconds: Number("int"),
|
|
52
|
+
* // MinUpdatePeriodSeconds: Number("int"),
|
|
53
|
+
* // SuggestedPresentationDelaySeconds: Number("int"),
|
|
54
|
+
* // },
|
|
55
|
+
* // HlsPlaylistSettings: { // HlsPlaylistSettings
|
|
56
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
57
|
+
* // },
|
|
58
|
+
* // ManifestName: "STRING_VALUE", // required
|
|
59
|
+
* // PlaybackUrl: "STRING_VALUE", // required
|
|
60
|
+
* // SourceGroup: "STRING_VALUE", // required
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // PlaybackMode: "STRING_VALUE", // required
|
|
64
|
+
* // Tags: { // __mapOf__string
|
|
65
|
+
* // "<keys>": "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // Tier: "STRING_VALUE", // required
|
|
68
|
+
* // LogConfiguration: { // LogConfigurationForChannel
|
|
69
|
+
* // LogTypes: [ // LogTypes
|
|
70
|
+
* // "AS_RUN",
|
|
71
|
+
* // ],
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // ],
|
|
75
|
+
* // NextToken: "STRING_VALUE",
|
|
76
|
+
* // };
|
|
77
|
+
*
|
|
35
78
|
* ```
|
|
36
79
|
*
|
|
37
80
|
* @param ListChannelsCommandInput - {@link ListChannelsCommandInput}
|
|
@@ -40,6 +83,8 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
|
|
|
40
83
|
* @see {@link ListChannelsCommandOutput} for command's `response` shape.
|
|
41
84
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
42
85
|
*
|
|
86
|
+
* @throws {@link MediaTailorServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
43
88
|
*
|
|
44
89
|
*/
|
|
45
90
|
export declare class ListChannelsCommand extends $Command<ListChannelsCommandInput, ListChannelsCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -33,6 +33,29 @@ export interface ListLiveSourcesCommandOutput extends ListLiveSourcesResponse, _
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListLiveSourcesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListLiveSourcesResponse
|
|
37
|
+
* // Items: [ // __listOfLiveSource
|
|
38
|
+
* // { // LiveSource
|
|
39
|
+
* // Arn: "STRING_VALUE", // required
|
|
40
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // HttpPackageConfigurations: [ // HttpPackageConfigurations // required
|
|
42
|
+
* // { // HttpPackageConfiguration
|
|
43
|
+
* // Path: "STRING_VALUE", // required
|
|
44
|
+
* // SourceGroup: "STRING_VALUE", // required
|
|
45
|
+
* // Type: "DASH" || "HLS", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // LiveSourceName: "STRING_VALUE", // required
|
|
50
|
+
* // SourceLocationName: "STRING_VALUE", // required
|
|
51
|
+
* // Tags: { // __mapOf__string
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // NextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
36
59
|
* ```
|
|
37
60
|
*
|
|
38
61
|
* @param ListLiveSourcesCommandInput - {@link ListLiveSourcesCommandInput}
|
|
@@ -41,6 +64,8 @@ export interface ListLiveSourcesCommandOutput extends ListLiveSourcesResponse, _
|
|
|
41
64
|
* @see {@link ListLiveSourcesCommandOutput} for command's `response` shape.
|
|
42
65
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
43
66
|
*
|
|
67
|
+
* @throws {@link MediaTailorServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
44
69
|
*
|
|
45
70
|
*/
|
|
46
71
|
export declare class ListLiveSourcesCommand extends $Command<ListLiveSourcesCommandInput, ListLiveSourcesCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -32,6 +32,63 @@ export interface ListPlaybackConfigurationsCommandOutput extends ListPlaybackCon
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListPlaybackConfigurationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListPlaybackConfigurationsResponse
|
|
36
|
+
* // Items: [ // __listOfPlaybackConfiguration
|
|
37
|
+
* // { // PlaybackConfiguration
|
|
38
|
+
* // AdDecisionServerUrl: "STRING_VALUE",
|
|
39
|
+
* // AvailSuppression: { // AvailSuppression
|
|
40
|
+
* // Mode: "OFF" || "BEHIND_LIVE_EDGE",
|
|
41
|
+
* // Value: "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // Bumper: { // Bumper
|
|
44
|
+
* // EndUrl: "STRING_VALUE",
|
|
45
|
+
* // StartUrl: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // CdnConfiguration: { // CdnConfiguration
|
|
48
|
+
* // AdSegmentUrlPrefix: "STRING_VALUE",
|
|
49
|
+
* // ContentSegmentUrlPrefix: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // ConfigurationAliases: { // ConfigurationAliasesResponse
|
|
52
|
+
* // "<keys>": { // __mapOf__string
|
|
53
|
+
* // "<keys>": "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // DashConfiguration: { // DashConfiguration
|
|
57
|
+
* // ManifestEndpointPrefix: "STRING_VALUE",
|
|
58
|
+
* // MpdLocation: "STRING_VALUE",
|
|
59
|
+
* // OriginManifestType: "SINGLE_PERIOD" || "MULTI_PERIOD",
|
|
60
|
+
* // },
|
|
61
|
+
* // HlsConfiguration: { // HlsConfiguration
|
|
62
|
+
* // ManifestEndpointPrefix: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // LivePreRollConfiguration: { // LivePreRollConfiguration
|
|
65
|
+
* // AdDecisionServerUrl: "STRING_VALUE",
|
|
66
|
+
* // MaxDurationSeconds: Number("int"),
|
|
67
|
+
* // },
|
|
68
|
+
* // LogConfiguration: { // LogConfiguration
|
|
69
|
+
* // PercentEnabled: Number("int"), // required
|
|
70
|
+
* // },
|
|
71
|
+
* // ManifestProcessingRules: { // ManifestProcessingRules
|
|
72
|
+
* // AdMarkerPassthrough: { // AdMarkerPassthrough
|
|
73
|
+
* // Enabled: true || false,
|
|
74
|
+
* // },
|
|
75
|
+
* // },
|
|
76
|
+
* // Name: "STRING_VALUE",
|
|
77
|
+
* // PersonalizationThresholdSeconds: Number("int"),
|
|
78
|
+
* // PlaybackConfigurationArn: "STRING_VALUE",
|
|
79
|
+
* // PlaybackEndpointPrefix: "STRING_VALUE",
|
|
80
|
+
* // SessionInitializationEndpointPrefix: "STRING_VALUE",
|
|
81
|
+
* // SlateAdUrl: "STRING_VALUE",
|
|
82
|
+
* // Tags: {
|
|
83
|
+
* // "<keys>": "STRING_VALUE",
|
|
84
|
+
* // },
|
|
85
|
+
* // TranscodeProfileName: "STRING_VALUE",
|
|
86
|
+
* // VideoContentSourceUrl: "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // ],
|
|
89
|
+
* // NextToken: "STRING_VALUE",
|
|
90
|
+
* // };
|
|
91
|
+
*
|
|
35
92
|
* ```
|
|
36
93
|
*
|
|
37
94
|
* @param ListPlaybackConfigurationsCommandInput - {@link ListPlaybackConfigurationsCommandInput}
|
|
@@ -40,6 +97,8 @@ export interface ListPlaybackConfigurationsCommandOutput extends ListPlaybackCon
|
|
|
40
97
|
* @see {@link ListPlaybackConfigurationsCommandOutput} for command's `response` shape.
|
|
41
98
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
42
99
|
*
|
|
100
|
+
* @throws {@link MediaTailorServiceException}
|
|
101
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
43
102
|
*
|
|
44
103
|
*/
|
|
45
104
|
export declare class ListPlaybackConfigurationsCommand extends $Command<ListPlaybackConfigurationsCommandInput, ListPlaybackConfigurationsCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -34,6 +34,35 @@ export interface ListPrefetchSchedulesCommandOutput extends ListPrefetchSchedule
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListPrefetchSchedulesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListPrefetchSchedulesResponse
|
|
38
|
+
* // Items: [ // __listOfPrefetchSchedule
|
|
39
|
+
* // { // PrefetchSchedule
|
|
40
|
+
* // Arn: "STRING_VALUE", // required
|
|
41
|
+
* // Consumption: { // PrefetchConsumption
|
|
42
|
+
* // AvailMatchingCriteria: [ // __listOfAvailMatchingCriteria
|
|
43
|
+
* // { // AvailMatchingCriteria
|
|
44
|
+
* // DynamicVariable: "STRING_VALUE", // required
|
|
45
|
+
* // Operator: "EQUALS", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // EndTime: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // },
|
|
51
|
+
* // Name: "STRING_VALUE", // required
|
|
52
|
+
* // PlaybackConfigurationName: "STRING_VALUE", // required
|
|
53
|
+
* // Retrieval: { // PrefetchRetrieval
|
|
54
|
+
* // DynamicVariables: { // __mapOf__string
|
|
55
|
+
* // "<keys>": "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // EndTime: new Date("TIMESTAMP"), // required
|
|
58
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
59
|
+
* // },
|
|
60
|
+
* // StreamId: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // NextToken: "STRING_VALUE",
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
37
66
|
* ```
|
|
38
67
|
*
|
|
39
68
|
* @param ListPrefetchSchedulesCommandInput - {@link ListPrefetchSchedulesCommandInput}
|
|
@@ -42,6 +71,8 @@ export interface ListPrefetchSchedulesCommandOutput extends ListPrefetchSchedule
|
|
|
42
71
|
* @see {@link ListPrefetchSchedulesCommandOutput} for command's `response` shape.
|
|
43
72
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
44
73
|
*
|
|
74
|
+
* @throws {@link MediaTailorServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
45
76
|
*
|
|
46
77
|
*/
|
|
47
78
|
export declare class ListPrefetchSchedulesCommand extends $Command<ListPrefetchSchedulesCommandInput, ListPrefetchSchedulesCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -32,6 +32,41 @@ export interface ListSourceLocationsCommandOutput extends ListSourceLocationsRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListSourceLocationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListSourceLocationsResponse
|
|
36
|
+
* // Items: [ // __listOfSourceLocation
|
|
37
|
+
* // { // SourceLocation
|
|
38
|
+
* // AccessConfiguration: { // AccessConfiguration
|
|
39
|
+
* // AccessType: "S3_SIGV4" || "SECRETS_MANAGER_ACCESS_TOKEN",
|
|
40
|
+
* // SecretsManagerAccessTokenConfiguration: { // SecretsManagerAccessTokenConfiguration
|
|
41
|
+
* // HeaderName: "STRING_VALUE",
|
|
42
|
+
* // SecretArn: "STRING_VALUE",
|
|
43
|
+
* // SecretStringKey: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // },
|
|
46
|
+
* // Arn: "STRING_VALUE", // required
|
|
47
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // DefaultSegmentDeliveryConfiguration: { // DefaultSegmentDeliveryConfiguration
|
|
49
|
+
* // BaseUrl: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // HttpConfiguration: { // HttpConfiguration
|
|
52
|
+
* // BaseUrl: "STRING_VALUE", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
55
|
+
* // SegmentDeliveryConfigurations: [ // __listOfSegmentDeliveryConfiguration
|
|
56
|
+
* // { // SegmentDeliveryConfiguration
|
|
57
|
+
* // BaseUrl: "STRING_VALUE",
|
|
58
|
+
* // Name: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // SourceLocationName: "STRING_VALUE", // required
|
|
62
|
+
* // Tags: { // __mapOf__string
|
|
63
|
+
* // "<keys>": "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // NextToken: "STRING_VALUE",
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
35
70
|
* ```
|
|
36
71
|
*
|
|
37
72
|
* @param ListSourceLocationsCommandInput - {@link ListSourceLocationsCommandInput}
|
|
@@ -40,6 +75,8 @@ export interface ListSourceLocationsCommandOutput extends ListSourceLocationsRes
|
|
|
40
75
|
* @see {@link ListSourceLocationsCommandOutput} for command's `response` shape.
|
|
41
76
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
42
77
|
*
|
|
78
|
+
* @throws {@link MediaTailorServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
43
80
|
*
|
|
44
81
|
*/
|
|
45
82
|
export declare class ListSourceLocationsCommand extends $Command<ListSourceLocationsCommandInput, ListSourceLocationsCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // Tags: { // __mapOf__string
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -42,6 +48,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
42
48
|
* @throws {@link BadRequestException} (client fault)
|
|
43
49
|
* <p>A request contains unexpected data.</p>
|
|
44
50
|
*
|
|
51
|
+
* @throws {@link MediaTailorServiceException}
|
|
52
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
45
53
|
*
|
|
46
54
|
*/
|
|
47
55
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -33,6 +33,29 @@ export interface ListVodSourcesCommandOutput extends ListVodSourcesResponse, __M
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListVodSourcesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListVodSourcesResponse
|
|
37
|
+
* // Items: [ // __listOfVodSource
|
|
38
|
+
* // { // VodSource
|
|
39
|
+
* // Arn: "STRING_VALUE", // required
|
|
40
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // HttpPackageConfigurations: [ // HttpPackageConfigurations // required
|
|
42
|
+
* // { // HttpPackageConfiguration
|
|
43
|
+
* // Path: "STRING_VALUE", // required
|
|
44
|
+
* // SourceGroup: "STRING_VALUE", // required
|
|
45
|
+
* // Type: "DASH" || "HLS", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // SourceLocationName: "STRING_VALUE", // required
|
|
50
|
+
* // Tags: { // __mapOf__string
|
|
51
|
+
* // "<keys>": "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // VodSourceName: "STRING_VALUE", // required
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // NextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
36
59
|
* ```
|
|
37
60
|
*
|
|
38
61
|
* @param ListVodSourcesCommandInput - {@link ListVodSourcesCommandInput}
|
|
@@ -41,6 +64,8 @@ export interface ListVodSourcesCommandOutput extends ListVodSourcesResponse, __M
|
|
|
41
64
|
* @see {@link ListVodSourcesCommandOutput} for command's `response` shape.
|
|
42
65
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
43
66
|
*
|
|
67
|
+
* @throws {@link MediaTailorServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
44
69
|
*
|
|
45
70
|
*/
|
|
46
71
|
export declare class ListVodSourcesCommand extends $Command<ListVodSourcesCommandInput, ListVodSourcesCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface PutChannelPolicyCommandOutput extends PutChannelPolicyResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new PutChannelPolicyCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param PutChannelPolicyCommandInput - {@link PutChannelPolicyCommandInput}
|
|
@@ -40,6 +42,8 @@ export interface PutChannelPolicyCommandOutput extends PutChannelPolicyResponse,
|
|
|
40
42
|
* @see {@link PutChannelPolicyCommandOutput} 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 PutChannelPolicyCommand extends $Command<PutChannelPolicyCommandInput, PutChannelPolicyCommandOutput, MediaTailorClientResolvedConfig> {
|
|
@@ -69,6 +69,58 @@ export interface PutPlaybackConfigurationCommandOutput extends PutPlaybackConfig
|
|
|
69
69
|
* };
|
|
70
70
|
* const command = new PutPlaybackConfigurationCommand(input);
|
|
71
71
|
* const response = await client.send(command);
|
|
72
|
+
* // { // PutPlaybackConfigurationResponse
|
|
73
|
+
* // AdDecisionServerUrl: "STRING_VALUE",
|
|
74
|
+
* // AvailSuppression: { // AvailSuppression
|
|
75
|
+
* // Mode: "OFF" || "BEHIND_LIVE_EDGE",
|
|
76
|
+
* // Value: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // Bumper: { // Bumper
|
|
79
|
+
* // EndUrl: "STRING_VALUE",
|
|
80
|
+
* // StartUrl: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // CdnConfiguration: { // CdnConfiguration
|
|
83
|
+
* // AdSegmentUrlPrefix: "STRING_VALUE",
|
|
84
|
+
* // ContentSegmentUrlPrefix: "STRING_VALUE",
|
|
85
|
+
* // },
|
|
86
|
+
* // ConfigurationAliases: { // ConfigurationAliasesResponse
|
|
87
|
+
* // "<keys>": { // __mapOf__string
|
|
88
|
+
* // "<keys>": "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // DashConfiguration: { // DashConfiguration
|
|
92
|
+
* // ManifestEndpointPrefix: "STRING_VALUE",
|
|
93
|
+
* // MpdLocation: "STRING_VALUE",
|
|
94
|
+
* // OriginManifestType: "SINGLE_PERIOD" || "MULTI_PERIOD",
|
|
95
|
+
* // },
|
|
96
|
+
* // HlsConfiguration: { // HlsConfiguration
|
|
97
|
+
* // ManifestEndpointPrefix: "STRING_VALUE",
|
|
98
|
+
* // },
|
|
99
|
+
* // LivePreRollConfiguration: { // LivePreRollConfiguration
|
|
100
|
+
* // AdDecisionServerUrl: "STRING_VALUE",
|
|
101
|
+
* // MaxDurationSeconds: Number("int"),
|
|
102
|
+
* // },
|
|
103
|
+
* // LogConfiguration: { // LogConfiguration
|
|
104
|
+
* // PercentEnabled: Number("int"), // required
|
|
105
|
+
* // },
|
|
106
|
+
* // ManifestProcessingRules: { // ManifestProcessingRules
|
|
107
|
+
* // AdMarkerPassthrough: { // AdMarkerPassthrough
|
|
108
|
+
* // Enabled: true || false,
|
|
109
|
+
* // },
|
|
110
|
+
* // },
|
|
111
|
+
* // Name: "STRING_VALUE",
|
|
112
|
+
* // PersonalizationThresholdSeconds: Number("int"),
|
|
113
|
+
* // PlaybackConfigurationArn: "STRING_VALUE",
|
|
114
|
+
* // PlaybackEndpointPrefix: "STRING_VALUE",
|
|
115
|
+
* // SessionInitializationEndpointPrefix: "STRING_VALUE",
|
|
116
|
+
* // SlateAdUrl: "STRING_VALUE",
|
|
117
|
+
* // Tags: {
|
|
118
|
+
* // "<keys>": "STRING_VALUE",
|
|
119
|
+
* // },
|
|
120
|
+
* // TranscodeProfileName: "STRING_VALUE",
|
|
121
|
+
* // VideoContentSourceUrl: "STRING_VALUE",
|
|
122
|
+
* // };
|
|
123
|
+
*
|
|
72
124
|
* ```
|
|
73
125
|
*
|
|
74
126
|
* @param PutPlaybackConfigurationCommandInput - {@link PutPlaybackConfigurationCommandInput}
|
|
@@ -77,6 +129,8 @@ export interface PutPlaybackConfigurationCommandOutput extends PutPlaybackConfig
|
|
|
77
129
|
* @see {@link PutPlaybackConfigurationCommandOutput} for command's `response` shape.
|
|
78
130
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
79
131
|
*
|
|
132
|
+
* @throws {@link MediaTailorServiceException}
|
|
133
|
+
* <p>Base exception class for all service exceptions from MediaTailor service.</p>
|
|
80
134
|
*
|
|
81
135
|
*/
|
|
82
136
|
export declare class PutPlaybackConfigurationCommand extends $Command<PutPlaybackConfigurationCommandInput, PutPlaybackConfigurationCommandOutput, MediaTailorClientResolvedConfig> {
|