@aws-sdk/client-mediatailor 3.299.0 → 3.301.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 (45) hide show
  1. package/dist-types/commands/ConfigureLogsForChannelCommand.d.ts +6 -0
  2. package/dist-types/commands/ConfigureLogsForPlaybackConfigurationCommand.d.ts +4 -0
  3. package/dist-types/commands/CreateChannelCommand.d.ts +27 -0
  4. package/dist-types/commands/CreateLiveSourceCommand.d.ts +14 -0
  5. package/dist-types/commands/CreatePrefetchScheduleCommand.d.ts +22 -0
  6. package/dist-types/commands/CreateProgramCommand.d.ts +49 -0
  7. package/dist-types/commands/CreateSourceLocationCommand.d.ts +26 -0
  8. package/dist-types/commands/CreateVodSourceCommand.d.ts +14 -0
  9. package/dist-types/commands/DeleteChannelCommand.d.ts +3 -0
  10. package/dist-types/commands/DeleteChannelPolicyCommand.d.ts +3 -0
  11. package/dist-types/commands/DeleteLiveSourceCommand.d.ts +4 -0
  12. package/dist-types/commands/DeletePlaybackConfigurationCommand.d.ts +3 -0
  13. package/dist-types/commands/DeletePrefetchScheduleCommand.d.ts +4 -0
  14. package/dist-types/commands/DeleteProgramCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteSourceLocationCommand.d.ts +3 -0
  16. package/dist-types/commands/DeleteVodSourceCommand.d.ts +4 -0
  17. package/dist-types/commands/DescribeChannelCommand.d.ts +3 -0
  18. package/dist-types/commands/DescribeLiveSourceCommand.d.ts +4 -0
  19. package/dist-types/commands/DescribeProgramCommand.d.ts +4 -0
  20. package/dist-types/commands/DescribeSourceLocationCommand.d.ts +3 -0
  21. package/dist-types/commands/DescribeVodSourceCommand.d.ts +4 -0
  22. package/dist-types/commands/GetChannelPolicyCommand.d.ts +3 -0
  23. package/dist-types/commands/GetChannelScheduleCommand.d.ts +6 -0
  24. package/dist-types/commands/GetPlaybackConfigurationCommand.d.ts +3 -0
  25. package/dist-types/commands/GetPrefetchScheduleCommand.d.ts +4 -0
  26. package/dist-types/commands/ListAlertsCommand.d.ts +5 -0
  27. package/dist-types/commands/ListChannelsCommand.d.ts +4 -0
  28. package/dist-types/commands/ListLiveSourcesCommand.d.ts +5 -0
  29. package/dist-types/commands/ListPlaybackConfigurationsCommand.d.ts +4 -0
  30. package/dist-types/commands/ListPrefetchSchedulesCommand.d.ts +6 -0
  31. package/dist-types/commands/ListSourceLocationsCommand.d.ts +4 -0
  32. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  33. package/dist-types/commands/ListVodSourcesCommand.d.ts +5 -0
  34. package/dist-types/commands/PutChannelPolicyCommand.d.ts +4 -0
  35. package/dist-types/commands/PutPlaybackConfigurationCommand.d.ts +41 -0
  36. package/dist-types/commands/StartChannelCommand.d.ts +3 -0
  37. package/dist-types/commands/StopChannelCommand.d.ts +3 -0
  38. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  39. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  40. package/dist-types/commands/UpdateChannelCommand.d.ts +22 -0
  41. package/dist-types/commands/UpdateLiveSourceCommand.d.ts +11 -0
  42. package/dist-types/commands/UpdateProgramCommand.d.ts +43 -0
  43. package/dist-types/commands/UpdateSourceLocationCommand.d.ts +23 -0
  44. package/dist-types/commands/UpdateVodSourceCommand.d.ts +11 -0
  45. package/package.json +8 -8
@@ -26,6 +26,12 @@ export interface ConfigureLogsForChannelCommandOutput extends ConfigureLogsForCh
26
26
  * import { MediaTailorClient, ConfigureLogsForChannelCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, ConfigureLogsForChannelCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // ConfigureLogsForChannelRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * LogTypes: [ // LogTypes // required
32
+ * "AS_RUN",
33
+ * ],
34
+ * };
29
35
  * const command = new ConfigureLogsForChannelCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ export interface ConfigureLogsForPlaybackConfigurationCommandOutput extends Conf
26
26
  * import { MediaTailorClient, ConfigureLogsForPlaybackConfigurationCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, ConfigureLogsForPlaybackConfigurationCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // ConfigureLogsForPlaybackConfigurationRequest
30
+ * PercentEnabled: Number("int"), // required
31
+ * PlaybackConfigurationName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new ConfigureLogsForPlaybackConfigurationCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,33 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
26
26
  * import { MediaTailorClient, CreateChannelCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, CreateChannelCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // CreateChannelRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * FillerSlate: { // SlateSource
32
+ * SourceLocationName: "STRING_VALUE",
33
+ * VodSourceName: "STRING_VALUE",
34
+ * },
35
+ * Outputs: [ // RequestOutputs // required
36
+ * { // RequestOutputItem
37
+ * DashPlaylistSettings: { // DashPlaylistSettings
38
+ * ManifestWindowSeconds: Number("int"),
39
+ * MinBufferTimeSeconds: Number("int"),
40
+ * MinUpdatePeriodSeconds: Number("int"),
41
+ * SuggestedPresentationDelaySeconds: Number("int"),
42
+ * },
43
+ * HlsPlaylistSettings: { // HlsPlaylistSettings
44
+ * ManifestWindowSeconds: Number("int"),
45
+ * },
46
+ * ManifestName: "STRING_VALUE", // required
47
+ * SourceGroup: "STRING_VALUE", // required
48
+ * },
49
+ * ],
50
+ * PlaybackMode: "LOOP" || "LINEAR", // required
51
+ * Tags: { // __mapOf__string
52
+ * "<keys>": "STRING_VALUE",
53
+ * },
54
+ * Tier: "BASIC" || "STANDARD",
55
+ * };
29
56
  * const command = new CreateChannelCommand(input);
30
57
  * const response = await client.send(command);
31
58
  * ```
@@ -26,6 +26,20 @@ export interface CreateLiveSourceCommandOutput extends CreateLiveSourceResponse,
26
26
  * import { MediaTailorClient, CreateLiveSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, CreateLiveSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // CreateLiveSourceRequest
30
+ * HttpPackageConfigurations: [ // HttpPackageConfigurations // required
31
+ * { // HttpPackageConfiguration
32
+ * Path: "STRING_VALUE", // required
33
+ * SourceGroup: "STRING_VALUE", // required
34
+ * Type: "DASH" || "HLS", // required
35
+ * },
36
+ * ],
37
+ * LiveSourceName: "STRING_VALUE", // required
38
+ * SourceLocationName: "STRING_VALUE", // required
39
+ * Tags: { // __mapOf__string
40
+ * "<keys>": "STRING_VALUE",
41
+ * },
42
+ * };
29
43
  * const command = new CreateLiveSourceCommand(input);
30
44
  * const response = await client.send(command);
31
45
  * ```
@@ -26,6 +26,28 @@ export interface CreatePrefetchScheduleCommandOutput extends CreatePrefetchSched
26
26
  * import { MediaTailorClient, CreatePrefetchScheduleCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, CreatePrefetchScheduleCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // CreatePrefetchScheduleRequest
30
+ * Consumption: { // PrefetchConsumption
31
+ * AvailMatchingCriteria: [ // __listOfAvailMatchingCriteria
32
+ * { // AvailMatchingCriteria
33
+ * DynamicVariable: "STRING_VALUE", // required
34
+ * Operator: "EQUALS", // required
35
+ * },
36
+ * ],
37
+ * EndTime: new Date("TIMESTAMP"), // required
38
+ * StartTime: new Date("TIMESTAMP"),
39
+ * },
40
+ * Name: "STRING_VALUE", // required
41
+ * PlaybackConfigurationName: "STRING_VALUE", // required
42
+ * Retrieval: { // PrefetchRetrieval
43
+ * DynamicVariables: { // __mapOf__string
44
+ * "<keys>": "STRING_VALUE",
45
+ * },
46
+ * EndTime: new Date("TIMESTAMP"), // required
47
+ * StartTime: new Date("TIMESTAMP"),
48
+ * },
49
+ * StreamId: "STRING_VALUE",
50
+ * };
29
51
  * const command = new CreatePrefetchScheduleCommand(input);
30
52
  * const response = await client.send(command);
31
53
  * ```
@@ -26,6 +26,55 @@ export interface CreateProgramCommandOutput extends CreateProgramResponse, __Met
26
26
  * import { MediaTailorClient, CreateProgramCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, CreateProgramCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // CreateProgramRequest
30
+ * AdBreaks: [ // __listOfAdBreak
31
+ * { // AdBreak
32
+ * MessageType: "SPLICE_INSERT" || "TIME_SIGNAL",
33
+ * OffsetMillis: Number("long"),
34
+ * Slate: { // SlateSource
35
+ * SourceLocationName: "STRING_VALUE",
36
+ * VodSourceName: "STRING_VALUE",
37
+ * },
38
+ * SpliceInsertMessage: { // SpliceInsertMessage
39
+ * AvailNum: Number("int"),
40
+ * AvailsExpected: Number("int"),
41
+ * SpliceEventId: Number("int"),
42
+ * UniqueProgramId: Number("int"),
43
+ * },
44
+ * TimeSignalMessage: { // TimeSignalMessage
45
+ * SegmentationDescriptors: [ // SegmentationDescriptorList
46
+ * { // SegmentationDescriptor
47
+ * SegmentationEventId: Number("int"),
48
+ * SegmentationUpidType: Number("int"),
49
+ * SegmentationUpid: "STRING_VALUE",
50
+ * SegmentationTypeId: Number("int"),
51
+ * SegmentNum: Number("int"),
52
+ * SegmentsExpected: Number("int"),
53
+ * SubSegmentNum: Number("int"),
54
+ * SubSegmentsExpected: Number("int"),
55
+ * },
56
+ * ],
57
+ * },
58
+ * },
59
+ * ],
60
+ * ChannelName: "STRING_VALUE", // required
61
+ * LiveSourceName: "STRING_VALUE",
62
+ * ProgramName: "STRING_VALUE", // required
63
+ * ScheduleConfiguration: { // ScheduleConfiguration
64
+ * Transition: { // Transition
65
+ * DurationMillis: Number("long"),
66
+ * RelativePosition: "BEFORE_PROGRAM" || "AFTER_PROGRAM", // required
67
+ * RelativeProgram: "STRING_VALUE",
68
+ * ScheduledStartTimeMillis: Number("long"),
69
+ * Type: "STRING_VALUE", // required
70
+ * },
71
+ * ClipRange: { // ClipRange
72
+ * EndOffsetMillis: Number("long"), // required
73
+ * },
74
+ * },
75
+ * SourceLocationName: "STRING_VALUE", // required
76
+ * VodSourceName: "STRING_VALUE",
77
+ * };
29
78
  * const command = new CreateProgramCommand(input);
30
79
  * const response = await client.send(command);
31
80
  * ```
@@ -26,6 +26,32 @@ export interface CreateSourceLocationCommandOutput extends CreateSourceLocationR
26
26
  * import { MediaTailorClient, CreateSourceLocationCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, CreateSourceLocationCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // CreateSourceLocationRequest
30
+ * AccessConfiguration: { // AccessConfiguration
31
+ * AccessType: "S3_SIGV4" || "SECRETS_MANAGER_ACCESS_TOKEN",
32
+ * SecretsManagerAccessTokenConfiguration: { // SecretsManagerAccessTokenConfiguration
33
+ * HeaderName: "STRING_VALUE",
34
+ * SecretArn: "STRING_VALUE",
35
+ * SecretStringKey: "STRING_VALUE",
36
+ * },
37
+ * },
38
+ * DefaultSegmentDeliveryConfiguration: { // DefaultSegmentDeliveryConfiguration
39
+ * BaseUrl: "STRING_VALUE",
40
+ * },
41
+ * HttpConfiguration: { // HttpConfiguration
42
+ * BaseUrl: "STRING_VALUE", // required
43
+ * },
44
+ * SegmentDeliveryConfigurations: [ // __listOfSegmentDeliveryConfiguration
45
+ * { // SegmentDeliveryConfiguration
46
+ * BaseUrl: "STRING_VALUE",
47
+ * Name: "STRING_VALUE",
48
+ * },
49
+ * ],
50
+ * SourceLocationName: "STRING_VALUE", // required
51
+ * Tags: { // __mapOf__string
52
+ * "<keys>": "STRING_VALUE",
53
+ * },
54
+ * };
29
55
  * const command = new CreateSourceLocationCommand(input);
30
56
  * const response = await client.send(command);
31
57
  * ```
@@ -26,6 +26,20 @@ export interface CreateVodSourceCommandOutput extends CreateVodSourceResponse, _
26
26
  * import { MediaTailorClient, CreateVodSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, CreateVodSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // CreateVodSourceRequest
30
+ * HttpPackageConfigurations: [ // HttpPackageConfigurations // required
31
+ * { // HttpPackageConfiguration
32
+ * Path: "STRING_VALUE", // required
33
+ * SourceGroup: "STRING_VALUE", // required
34
+ * Type: "DASH" || "HLS", // required
35
+ * },
36
+ * ],
37
+ * SourceLocationName: "STRING_VALUE", // required
38
+ * Tags: { // __mapOf__string
39
+ * "<keys>": "STRING_VALUE",
40
+ * },
41
+ * VodSourceName: "STRING_VALUE", // required
42
+ * };
29
43
  * const command = new CreateVodSourceCommand(input);
30
44
  * const response = await client.send(command);
31
45
  * ```
@@ -26,6 +26,9 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met
26
26
  * import { MediaTailorClient, DeleteChannelCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DeleteChannelCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DeleteChannelRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteChannelCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteChannelPolicyCommandOutput extends DeleteChannelPolicyRes
26
26
  * import { MediaTailorClient, DeleteChannelPolicyCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DeleteChannelPolicyCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DeleteChannelPolicyRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteChannelPolicyCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface DeleteLiveSourceCommandOutput extends DeleteLiveSourceResponse,
26
26
  * import { MediaTailorClient, DeleteLiveSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DeleteLiveSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DeleteLiveSourceRequest
30
+ * LiveSourceName: "STRING_VALUE", // required
31
+ * SourceLocationName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteLiveSourceCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface DeletePlaybackConfigurationCommandOutput extends DeletePlayback
26
26
  * import { MediaTailorClient, DeletePlaybackConfigurationCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DeletePlaybackConfigurationCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DeletePlaybackConfigurationRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeletePlaybackConfigurationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface DeletePrefetchScheduleCommandOutput extends DeletePrefetchSched
26
26
  * import { MediaTailorClient, DeletePrefetchScheduleCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DeletePrefetchScheduleCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DeletePrefetchScheduleRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * PlaybackConfigurationName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeletePrefetchScheduleCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface DeleteProgramCommandOutput extends DeleteProgramResponse, __Met
26
26
  * import { MediaTailorClient, DeleteProgramCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DeleteProgramCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DeleteProgramRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * ProgramName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteProgramCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface DeleteSourceLocationCommandOutput extends DeleteSourceLocationR
26
26
  * import { MediaTailorClient, DeleteSourceLocationCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DeleteSourceLocationCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DeleteSourceLocationRequest
30
+ * SourceLocationName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteSourceLocationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface DeleteVodSourceCommandOutput extends DeleteVodSourceResponse, _
26
26
  * import { MediaTailorClient, DeleteVodSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DeleteVodSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DeleteVodSourceRequest
30
+ * SourceLocationName: "STRING_VALUE", // required
31
+ * VodSourceName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteVodSourceCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _
26
26
  * import { MediaTailorClient, DescribeChannelCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DescribeChannelCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DescribeChannelRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeChannelCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface DescribeLiveSourceCommandOutput extends DescribeLiveSourceRespo
26
26
  * import { MediaTailorClient, DescribeLiveSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DescribeLiveSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DescribeLiveSourceRequest
30
+ * LiveSourceName: "STRING_VALUE", // required
31
+ * SourceLocationName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DescribeLiveSourceCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface DescribeProgramCommandOutput extends DescribeProgramResponse, _
26
26
  * import { MediaTailorClient, DescribeProgramCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DescribeProgramCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DescribeProgramRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * ProgramName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DescribeProgramCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface DescribeSourceLocationCommandOutput extends DescribeSourceLocat
26
26
  * import { MediaTailorClient, DescribeSourceLocationCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DescribeSourceLocationCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DescribeSourceLocationRequest
30
+ * SourceLocationName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeSourceLocationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface DescribeVodSourceCommandOutput extends DescribeVodSourceRespons
26
26
  * import { MediaTailorClient, DescribeVodSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, DescribeVodSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // DescribeVodSourceRequest
30
+ * SourceLocationName: "STRING_VALUE", // required
31
+ * VodSourceName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DescribeVodSourceCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface GetChannelPolicyCommandOutput extends GetChannelPolicyResponse,
26
26
  * import { MediaTailorClient, GetChannelPolicyCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, GetChannelPolicyCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // GetChannelPolicyRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetChannelPolicyCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,12 @@ export interface GetChannelScheduleCommandOutput extends GetChannelScheduleRespo
26
26
  * import { MediaTailorClient, GetChannelScheduleCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, GetChannelScheduleCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // GetChannelScheduleRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * DurationMinutes: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * NextToken: "STRING_VALUE",
34
+ * };
29
35
  * const command = new GetChannelScheduleCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,9 @@ export interface GetPlaybackConfigurationCommandOutput extends GetPlaybackConfig
26
26
  * import { MediaTailorClient, GetPlaybackConfigurationCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, GetPlaybackConfigurationCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // GetPlaybackConfigurationRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetPlaybackConfigurationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface GetPrefetchScheduleCommandOutput extends GetPrefetchScheduleRes
26
26
  * import { MediaTailorClient, GetPrefetchScheduleCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, GetPrefetchScheduleCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // GetPrefetchScheduleRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * PlaybackConfigurationName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetPrefetchScheduleCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface ListAlertsCommandOutput extends ListAlertsResponse, __MetadataB
26
26
  * import { MediaTailorClient, ListAlertsCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, ListAlertsCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // ListAlertsRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * ResourceArn: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new ListAlertsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
26
26
  * import { MediaTailorClient, ListChannelsCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, ListChannelsCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // ListChannelsRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListChannelsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface ListLiveSourcesCommandOutput extends ListLiveSourcesResponse, _
26
26
  * import { MediaTailorClient, ListLiveSourcesCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, ListLiveSourcesCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // ListLiveSourcesRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * SourceLocationName: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new ListLiveSourcesCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface ListPlaybackConfigurationsCommandOutput extends ListPlaybackCon
26
26
  * import { MediaTailorClient, ListPlaybackConfigurationsCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, ListPlaybackConfigurationsCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // ListPlaybackConfigurationsRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListPlaybackConfigurationsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,12 @@ export interface ListPrefetchSchedulesCommandOutput extends ListPrefetchSchedule
26
26
  * import { MediaTailorClient, ListPrefetchSchedulesCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, ListPrefetchSchedulesCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // ListPrefetchSchedulesRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * PlaybackConfigurationName: "STRING_VALUE", // required
33
+ * StreamId: "STRING_VALUE",
34
+ * };
29
35
  * const command = new ListPrefetchSchedulesCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ export interface ListSourceLocationsCommandOutput extends ListSourceLocationsRes
26
26
  * import { MediaTailorClient, ListSourceLocationsCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, ListSourceLocationsCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // ListSourceLocationsRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListSourceLocationsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { MediaTailorClient, ListTagsForResourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, ListTagsForResourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // ListTagsForResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,11 @@ export interface ListVodSourcesCommandOutput extends ListVodSourcesResponse, __M
26
26
  * import { MediaTailorClient, ListVodSourcesCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, ListVodSourcesCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // ListVodSourcesRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * SourceLocationName: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new ListVodSourcesCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface PutChannelPolicyCommandOutput extends PutChannelPolicyResponse,
26
26
  * import { MediaTailorClient, PutChannelPolicyCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, PutChannelPolicyCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // PutChannelPolicyRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * Policy: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new PutChannelPolicyCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,47 @@ export interface PutPlaybackConfigurationCommandOutput extends PutPlaybackConfig
26
26
  * import { MediaTailorClient, PutPlaybackConfigurationCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, PutPlaybackConfigurationCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // PutPlaybackConfigurationRequest
30
+ * AdDecisionServerUrl: "STRING_VALUE",
31
+ * AvailSuppression: { // AvailSuppression
32
+ * Mode: "OFF" || "BEHIND_LIVE_EDGE",
33
+ * Value: "STRING_VALUE",
34
+ * },
35
+ * Bumper: { // Bumper
36
+ * EndUrl: "STRING_VALUE",
37
+ * StartUrl: "STRING_VALUE",
38
+ * },
39
+ * CdnConfiguration: { // CdnConfiguration
40
+ * AdSegmentUrlPrefix: "STRING_VALUE",
41
+ * ContentSegmentUrlPrefix: "STRING_VALUE",
42
+ * },
43
+ * ConfigurationAliases: { // ConfigurationAliasesRequest
44
+ * "<keys>": { // __mapOf__string
45
+ * "<keys>": "STRING_VALUE",
46
+ * },
47
+ * },
48
+ * DashConfiguration: { // DashConfigurationForPut
49
+ * MpdLocation: "STRING_VALUE",
50
+ * OriginManifestType: "SINGLE_PERIOD" || "MULTI_PERIOD",
51
+ * },
52
+ * LivePreRollConfiguration: { // LivePreRollConfiguration
53
+ * AdDecisionServerUrl: "STRING_VALUE",
54
+ * MaxDurationSeconds: Number("int"),
55
+ * },
56
+ * ManifestProcessingRules: { // ManifestProcessingRules
57
+ * AdMarkerPassthrough: { // AdMarkerPassthrough
58
+ * Enabled: true || false,
59
+ * },
60
+ * },
61
+ * Name: "STRING_VALUE", // required
62
+ * PersonalizationThresholdSeconds: Number("int"),
63
+ * SlateAdUrl: "STRING_VALUE",
64
+ * Tags: {
65
+ * "<keys>": "STRING_VALUE",
66
+ * },
67
+ * TranscodeProfileName: "STRING_VALUE",
68
+ * VideoContentSourceUrl: "STRING_VALUE",
69
+ * };
29
70
  * const command = new PutPlaybackConfigurationCommand(input);
30
71
  * const response = await client.send(command);
31
72
  * ```
@@ -26,6 +26,9 @@ export interface StartChannelCommandOutput extends StartChannelResponse, __Metad
26
26
  * import { MediaTailorClient, StartChannelCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, StartChannelCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // StartChannelRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StartChannelCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface StopChannelCommandOutput extends StopChannelResponse, __Metadat
26
26
  * import { MediaTailorClient, StopChannelCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, StopChannelCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // StopChannelRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StopChannelCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
26
26
  * import { MediaTailorClient, TagResourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, TagResourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // TagResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * Tags: { // __mapOf__string // required
32
+ * "<keys>": "STRING_VALUE",
33
+ * },
34
+ * };
29
35
  * const command = new TagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
26
26
  * import { MediaTailorClient, UntagResourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, UntagResourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // UntagResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * TagKeys: [ // __listOf__string // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,28 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
26
26
  * import { MediaTailorClient, UpdateChannelCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, UpdateChannelCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // UpdateChannelRequest
30
+ * ChannelName: "STRING_VALUE", // required
31
+ * FillerSlate: { // SlateSource
32
+ * SourceLocationName: "STRING_VALUE",
33
+ * VodSourceName: "STRING_VALUE",
34
+ * },
35
+ * Outputs: [ // RequestOutputs // required
36
+ * { // RequestOutputItem
37
+ * DashPlaylistSettings: { // DashPlaylistSettings
38
+ * ManifestWindowSeconds: Number("int"),
39
+ * MinBufferTimeSeconds: Number("int"),
40
+ * MinUpdatePeriodSeconds: Number("int"),
41
+ * SuggestedPresentationDelaySeconds: Number("int"),
42
+ * },
43
+ * HlsPlaylistSettings: { // HlsPlaylistSettings
44
+ * ManifestWindowSeconds: Number("int"),
45
+ * },
46
+ * ManifestName: "STRING_VALUE", // required
47
+ * SourceGroup: "STRING_VALUE", // required
48
+ * },
49
+ * ],
50
+ * };
29
51
  * const command = new UpdateChannelCommand(input);
30
52
  * const response = await client.send(command);
31
53
  * ```
@@ -26,6 +26,17 @@ export interface UpdateLiveSourceCommandOutput extends UpdateLiveSourceResponse,
26
26
  * import { MediaTailorClient, UpdateLiveSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, UpdateLiveSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // UpdateLiveSourceRequest
30
+ * HttpPackageConfigurations: [ // HttpPackageConfigurations // required
31
+ * { // HttpPackageConfiguration
32
+ * Path: "STRING_VALUE", // required
33
+ * SourceGroup: "STRING_VALUE", // required
34
+ * Type: "DASH" || "HLS", // required
35
+ * },
36
+ * ],
37
+ * LiveSourceName: "STRING_VALUE", // required
38
+ * SourceLocationName: "STRING_VALUE", // required
39
+ * };
29
40
  * const command = new UpdateLiveSourceCommand(input);
30
41
  * const response = await client.send(command);
31
42
  * ```
@@ -26,6 +26,49 @@ export interface UpdateProgramCommandOutput extends UpdateProgramResponse, __Met
26
26
  * import { MediaTailorClient, UpdateProgramCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, UpdateProgramCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // UpdateProgramRequest
30
+ * AdBreaks: [ // __listOfAdBreak
31
+ * { // AdBreak
32
+ * MessageType: "SPLICE_INSERT" || "TIME_SIGNAL",
33
+ * OffsetMillis: Number("long"),
34
+ * Slate: { // SlateSource
35
+ * SourceLocationName: "STRING_VALUE",
36
+ * VodSourceName: "STRING_VALUE",
37
+ * },
38
+ * SpliceInsertMessage: { // SpliceInsertMessage
39
+ * AvailNum: Number("int"),
40
+ * AvailsExpected: Number("int"),
41
+ * SpliceEventId: Number("int"),
42
+ * UniqueProgramId: Number("int"),
43
+ * },
44
+ * TimeSignalMessage: { // TimeSignalMessage
45
+ * SegmentationDescriptors: [ // SegmentationDescriptorList
46
+ * { // SegmentationDescriptor
47
+ * SegmentationEventId: Number("int"),
48
+ * SegmentationUpidType: Number("int"),
49
+ * SegmentationUpid: "STRING_VALUE",
50
+ * SegmentationTypeId: Number("int"),
51
+ * SegmentNum: Number("int"),
52
+ * SegmentsExpected: Number("int"),
53
+ * SubSegmentNum: Number("int"),
54
+ * SubSegmentsExpected: Number("int"),
55
+ * },
56
+ * ],
57
+ * },
58
+ * },
59
+ * ],
60
+ * ChannelName: "STRING_VALUE", // required
61
+ * ProgramName: "STRING_VALUE", // required
62
+ * ScheduleConfiguration: { // UpdateProgramScheduleConfiguration
63
+ * Transition: { // UpdateProgramTransition
64
+ * ScheduledStartTimeMillis: Number("long"),
65
+ * DurationMillis: Number("long"),
66
+ * },
67
+ * ClipRange: { // ClipRange
68
+ * EndOffsetMillis: Number("long"), // required
69
+ * },
70
+ * },
71
+ * };
29
72
  * const command = new UpdateProgramCommand(input);
30
73
  * const response = await client.send(command);
31
74
  * ```
@@ -26,6 +26,29 @@ export interface UpdateSourceLocationCommandOutput extends UpdateSourceLocationR
26
26
  * import { MediaTailorClient, UpdateSourceLocationCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, UpdateSourceLocationCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // UpdateSourceLocationRequest
30
+ * AccessConfiguration: { // AccessConfiguration
31
+ * AccessType: "S3_SIGV4" || "SECRETS_MANAGER_ACCESS_TOKEN",
32
+ * SecretsManagerAccessTokenConfiguration: { // SecretsManagerAccessTokenConfiguration
33
+ * HeaderName: "STRING_VALUE",
34
+ * SecretArn: "STRING_VALUE",
35
+ * SecretStringKey: "STRING_VALUE",
36
+ * },
37
+ * },
38
+ * DefaultSegmentDeliveryConfiguration: { // DefaultSegmentDeliveryConfiguration
39
+ * BaseUrl: "STRING_VALUE",
40
+ * },
41
+ * HttpConfiguration: { // HttpConfiguration
42
+ * BaseUrl: "STRING_VALUE", // required
43
+ * },
44
+ * SegmentDeliveryConfigurations: [ // __listOfSegmentDeliveryConfiguration
45
+ * { // SegmentDeliveryConfiguration
46
+ * BaseUrl: "STRING_VALUE",
47
+ * Name: "STRING_VALUE",
48
+ * },
49
+ * ],
50
+ * SourceLocationName: "STRING_VALUE", // required
51
+ * };
29
52
  * const command = new UpdateSourceLocationCommand(input);
30
53
  * const response = await client.send(command);
31
54
  * ```
@@ -26,6 +26,17 @@ export interface UpdateVodSourceCommandOutput extends UpdateVodSourceResponse, _
26
26
  * import { MediaTailorClient, UpdateVodSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
27
27
  * // const { MediaTailorClient, UpdateVodSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
28
28
  * const client = new MediaTailorClient(config);
29
+ * const input = { // UpdateVodSourceRequest
30
+ * HttpPackageConfigurations: [ // HttpPackageConfigurations // required
31
+ * { // HttpPackageConfiguration
32
+ * Path: "STRING_VALUE", // required
33
+ * SourceGroup: "STRING_VALUE", // required
34
+ * Type: "DASH" || "HLS", // required
35
+ * },
36
+ * ],
37
+ * SourceLocationName: "STRING_VALUE", // required
38
+ * VodSourceName: "STRING_VALUE", // required
39
+ * };
29
40
  * const command = new UpdateVodSourceCommand(input);
30
41
  * const response = await client.send(command);
31
42
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediatailor",
3
3
  "description": "AWS SDK for JavaScript Mediatailor Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },