aws-sdk-mediatailor 1.54.0 → 1.56.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +645 -88
- data/lib/aws-sdk-mediatailor/client_api.rb +192 -55
- data/lib/aws-sdk-mediatailor/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-mediatailor/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-mediatailor/endpoints.rb +603 -0
- data/lib/aws-sdk-mediatailor/plugins/endpoints.rb +152 -0
- data/lib/aws-sdk-mediatailor/types.rb +1087 -289
- data/lib/aws-sdk-mediatailor.rb +5 -1
- metadata +8 -4
@@ -26,10 +26,10 @@ module Aws::MediaTailor
|
|
26
26
|
#
|
27
27
|
# @!attribute [rw] access_type
|
28
28
|
# The type of authentication used to access content from
|
29
|
-
# HttpConfiguration::BaseUrl on your source location. Accepted
|
30
|
-
#
|
29
|
+
# `HttpConfiguration::BaseUrl` on your source location. Accepted
|
30
|
+
# value: `S3_SIGV4`.
|
31
31
|
#
|
32
|
-
#
|
32
|
+
# `S3_SIGV4` - AWS Signature Version 4 authentication for Amazon S3
|
33
33
|
# hosted virtual-style access. If your source location base URL is an
|
34
34
|
# Amazon S3 bucket, MediaTailor can use AWS Signature Version 4
|
35
35
|
# (SigV4) authentication to access the bucket where your source
|
@@ -37,7 +37,7 @@ module Aws::MediaTailor
|
|
37
37
|
# follow the S3 virtual hosted-style request URL format. For example,
|
38
38
|
# https://bucket-name.s3.Region.amazonaws.com/key-name.
|
39
39
|
#
|
40
|
-
# Before you can use
|
40
|
+
# Before you can use `S3_SIGV4`, you must meet these requirements:
|
41
41
|
#
|
42
42
|
# • You must allow MediaTailor to access your S3 bucket by granting
|
43
43
|
# mediatailor.amazonaws.com principal access in IAM. For information
|
@@ -87,7 +87,8 @@ module Aws::MediaTailor
|
|
87
87
|
# }
|
88
88
|
#
|
89
89
|
# @!attribute [rw] message_type
|
90
|
-
# The SCTE-35 ad insertion type. Accepted value:
|
90
|
+
# The SCTE-35 ad insertion type. Accepted value: `SPLICE_INSERT`,
|
91
|
+
# `TIME_SIGNAL`.
|
91
92
|
# @return [String]
|
92
93
|
#
|
93
94
|
# @!attribute [rw] offset_millis
|
@@ -101,8 +102,8 @@ module Aws::MediaTailor
|
|
101
102
|
# @return [Types::SlateSource]
|
102
103
|
#
|
103
104
|
# @!attribute [rw] splice_insert_message
|
104
|
-
# This defines the SCTE-35
|
105
|
-
# the ad. For information about using
|
105
|
+
# This defines the SCTE-35 `splice_insert()` message inserted around
|
106
|
+
# the ad. For information about using `splice_insert()`, see the
|
106
107
|
# SCTE-35 specficiaiton, section 9.7.3.1.
|
107
108
|
# @return [Types::SpliceInsertMessage]
|
108
109
|
#
|
@@ -117,13 +118,14 @@ module Aws::MediaTailor
|
|
117
118
|
include Aws::Structure
|
118
119
|
end
|
119
120
|
|
120
|
-
# For HLS, when set to true
|
121
|
-
# EXT-X-CUE-OUT
|
122
|
-
# manifest to the MediaTailor personalized
|
121
|
+
# For HLS, when set to `true`, MediaTailor passes through
|
122
|
+
# `EXT-X-CUE-IN`, `EXT-X-CUE-OUT`, and `EXT-X-SPLICEPOINT-SCTE35` ad
|
123
|
+
# markers from the origin manifest to the MediaTailor personalized
|
124
|
+
# manifest.
|
123
125
|
#
|
124
|
-
# No logic is applied to these ad markers. For example, if
|
125
|
-
# has a value of 60
|
126
|
-
# MediaTailor will not set the value to 0
|
126
|
+
# No logic is applied to these ad markers. For example, if
|
127
|
+
# `EXT-X-CUE-OUT` has a value of `60`, but no ads are filled for that ad
|
128
|
+
# break, MediaTailor will not set the value to `0`.
|
127
129
|
#
|
128
130
|
# @note When making an API call, you may pass AdMarkerPassthrough
|
129
131
|
# data as a hash:
|
@@ -147,7 +149,7 @@ module Aws::MediaTailor
|
|
147
149
|
# Alert configuration parameters.
|
148
150
|
#
|
149
151
|
# @!attribute [rw] alert_code
|
150
|
-
# The code for the alert. For example,
|
152
|
+
# The code for the alert. For example, `NOT_PROCESSED`.
|
151
153
|
# @return [String]
|
152
154
|
#
|
153
155
|
# @!attribute [rw] alert_message
|
@@ -183,20 +185,20 @@ module Aws::MediaTailor
|
|
183
185
|
# meets the criteria defined by the dynamic variables. This gives you
|
184
186
|
# granular control over which ad break to place the prefetched ads into.
|
185
187
|
#
|
186
|
-
# As an example, let's say that you set DynamicVariable to
|
187
|
-
# scte.
|
188
|
-
# has an ADS URL of
|
189
|
-
# https://my.ads.server.com/path?&
|
188
|
+
# As an example, let's say that you set `DynamicVariable` to
|
189
|
+
# `scte.event_id` and `Operator` to `EQUALS`, and your playback
|
190
|
+
# configuration has an ADS URL of
|
191
|
+
# `https://my.ads.server.com/path?&podId=[scte.avail_num]&event=[scte.event_id]&duration=[session.avail_duration_secs]`.
|
190
192
|
# And the prefetch request to the ADS contains these values
|
191
|
-
# https://my.ads.server.com/path?&
|
193
|
+
# `https://my.ads.server.com/path?&podId=3&event=my-awesome-event&duration=30`.
|
192
194
|
# MediaTailor will only insert the prefetched ads into the ad break if
|
193
|
-
# has a SCTE marker with an event id of my-awesome-event
|
194
|
-
# match the event id that MediaTailor uses to query the ADS.
|
195
|
+
# has a SCTE marker with an event id of `my-awesome-event`, since it
|
196
|
+
# must match the event id that MediaTailor uses to query the ADS.
|
195
197
|
#
|
196
|
-
# You can specify up to five AvailMatchingCriteria
|
197
|
-
# multiple AvailMatchingCriteria
|
198
|
-
# using a logical AND
|
199
|
-
# multiple prefetch schedules.
|
198
|
+
# You can specify up to five `AvailMatchingCriteria`. If you specify
|
199
|
+
# multiple `AvailMatchingCriteria`, MediaTailor combines them to match
|
200
|
+
# using a logical `AND`. You can model logical `OR` combinations by
|
201
|
+
# creating multiple prefetch schedules.
|
200
202
|
#
|
201
203
|
# @note When making an API call, you may pass AvailMatchingCriteria
|
202
204
|
# data as a hash:
|
@@ -221,7 +223,7 @@ module Aws::MediaTailor
|
|
221
223
|
# @return [String]
|
222
224
|
#
|
223
225
|
# @!attribute [rw] operator
|
224
|
-
# For the DynamicVariable specified in AvailMatchingCriteria
|
226
|
+
# For the `DynamicVariable` specified in `AvailMatchingCriteria`, the
|
225
227
|
# Operator that is used for the comparison.
|
226
228
|
# @return [String]
|
227
229
|
#
|
@@ -252,7 +254,7 @@ module Aws::MediaTailor
|
|
252
254
|
# @!attribute [rw] mode
|
253
255
|
# Sets the ad suppression mode. By default, ad suppression is off and
|
254
256
|
# all ad breaks are filled with ads or slate. When Mode is set to
|
255
|
-
#
|
257
|
+
# `BEHIND_LIVE_EDGE`, ad suppression is active and MediaTailor won't
|
256
258
|
# fill ad breaks on or behind the ad suppression Value time in the
|
257
259
|
# manifest lookback window.
|
258
260
|
# @return [String]
|
@@ -281,8 +283,6 @@ module Aws::MediaTailor
|
|
281
283
|
# A request contains unexpected data.
|
282
284
|
#
|
283
285
|
# @!attribute [rw] message
|
284
|
-
# Constructs a new BadRequestException with the specified error
|
285
|
-
# message.
|
286
286
|
# @return [String]
|
287
287
|
#
|
288
288
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/BadRequestException AWS API Documentation
|
@@ -342,8 +342,8 @@ module Aws::MediaTailor
|
|
342
342
|
# By default, AWS Elemental MediaTailor uses Amazon CloudFront with
|
343
343
|
# default cache settings as its CDN for ad segments. To set up an
|
344
344
|
# alternate CDN, create a rule in your CDN for the origin
|
345
|
-
# ads.mediatailor
|
346
|
-
# rule's name in this AdSegmentUrlPrefix
|
345
|
+
# ads.mediatailor.*<region>*.amazonaws.com. Then specify the
|
346
|
+
# rule's name in this `AdSegmentUrlPrefix`. When AWS Elemental
|
347
347
|
# MediaTailor serves a manifest, it reports your CDN as the source for
|
348
348
|
# ad segments.
|
349
349
|
# @return [String]
|
@@ -353,7 +353,7 @@ module Aws::MediaTailor
|
|
353
353
|
# content requests don’t always have to go to the origin server.
|
354
354
|
# First, create a rule in your CDN for the content segment origin
|
355
355
|
# server. Then specify the rule's name in this
|
356
|
-
# ContentSegmentUrlPrefix
|
356
|
+
# `ContentSegmentUrlPrefix`. When AWS Elemental MediaTailor serves a
|
357
357
|
# manifest, it reports your CDN as the source for content segments.
|
358
358
|
# @return [String]
|
359
359
|
#
|
@@ -366,7 +366,13 @@ module Aws::MediaTailor
|
|
366
366
|
include Aws::Structure
|
367
367
|
end
|
368
368
|
|
369
|
-
# The configuration parameters for a channel.
|
369
|
+
# The configuration parameters for a channel. For information about
|
370
|
+
# MediaTailor channels, see [Working with channels][1] in the
|
371
|
+
# *MediaTailor User Guide*.
|
372
|
+
#
|
373
|
+
#
|
374
|
+
#
|
375
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html
|
370
376
|
#
|
371
377
|
# @!attribute [rw] arn
|
372
378
|
# The ARN of the channel.
|
@@ -386,9 +392,9 @@ module Aws::MediaTailor
|
|
386
392
|
#
|
387
393
|
# @!attribute [rw] filler_slate
|
388
394
|
# The slate used to fill gaps between programs in the schedule. You
|
389
|
-
# must configure filler slate if your channel uses the LINEAR
|
390
|
-
# PlaybackMode
|
391
|
-
# using the LOOP PlaybackMode
|
395
|
+
# must configure filler slate if your channel uses the `LINEAR`
|
396
|
+
# `PlaybackMode`. MediaTailor doesn't support filler slate for
|
397
|
+
# channels using the `LOOP` `PlaybackMode`.
|
392
398
|
# @return [Types::SlateSource]
|
393
399
|
#
|
394
400
|
# @!attribute [rw] last_modified_time
|
@@ -402,17 +408,29 @@ module Aws::MediaTailor
|
|
402
408
|
# @!attribute [rw] playback_mode
|
403
409
|
# The type of playback mode for this channel.
|
404
410
|
#
|
405
|
-
# LINEAR - Programs play back-to-back only once.
|
411
|
+
# `LINEAR` - Programs play back-to-back only once.
|
406
412
|
#
|
407
|
-
# LOOP - Programs play back-to-back in an endless loop. When the
|
408
|
-
# program in the schedule plays, playback loops back to the first
|
413
|
+
# `LOOP` - Programs play back-to-back in an endless loop. When the
|
414
|
+
# last program in the schedule plays, playback loops back to the first
|
409
415
|
# program in the schedule.
|
410
416
|
# @return [String]
|
411
417
|
#
|
412
418
|
# @!attribute [rw] tags
|
413
|
-
# The tags to assign to the channel.
|
419
|
+
# The tags to assign to the channel. Tags are key-value pairs that you
|
420
|
+
# can associate with Amazon resources to help with organization,
|
421
|
+
# access control, and cost tracking. For more information, see
|
422
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
423
|
+
#
|
424
|
+
#
|
425
|
+
#
|
426
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
414
427
|
# @return [Hash<String,String>]
|
415
428
|
#
|
429
|
+
# @!attribute [rw] tier
|
430
|
+
# The tier for this channel. STANDARD tier channels can contain live
|
431
|
+
# programs.
|
432
|
+
# @return [String]
|
433
|
+
#
|
416
434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/Channel AWS API Documentation
|
417
435
|
#
|
418
436
|
class Channel < Struct.new(
|
@@ -424,13 +442,14 @@ module Aws::MediaTailor
|
|
424
442
|
:last_modified_time,
|
425
443
|
:outputs,
|
426
444
|
:playback_mode,
|
427
|
-
:tags
|
445
|
+
:tags,
|
446
|
+
:tier)
|
428
447
|
SENSITIVE = []
|
429
448
|
include Aws::Structure
|
430
449
|
end
|
431
450
|
|
432
|
-
# Configures Amazon CloudWatch log settings for
|
433
|
-
#
|
451
|
+
# Configures Amazon CloudWatch log settings for a playback
|
452
|
+
# configuration.
|
434
453
|
#
|
435
454
|
# @note When making an API call, you may pass ConfigureLogsForPlaybackConfigurationRequest
|
436
455
|
# data as a hash:
|
@@ -443,13 +462,13 @@ module Aws::MediaTailor
|
|
443
462
|
# @!attribute [rw] percent_enabled
|
444
463
|
# The percentage of session logs that MediaTailor sends to your
|
445
464
|
# Cloudwatch Logs account. For example, if your playback configuration
|
446
|
-
# has 1000 sessions and percentEnabled is set to 60
|
447
|
-
# logs for 600 of the sessions to CloudWatch Logs. MediaTailor
|
448
|
-
# at random which of the playback configuration sessions to
|
449
|
-
# for. If you want to view logs for a specific session, you
|
450
|
-
# the [debug log mode][1].
|
465
|
+
# has 1000 sessions and percentEnabled is set to `60`, MediaTailor
|
466
|
+
# sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor
|
467
|
+
# decides at random which of the playback configuration sessions to
|
468
|
+
# send logs for. If you want to view logs for a specific session, you
|
469
|
+
# can use the [debug log mode][1].
|
451
470
|
#
|
452
|
-
# Valid values: 0 - 100
|
471
|
+
# Valid values: `0` - `100`
|
453
472
|
#
|
454
473
|
#
|
455
474
|
#
|
@@ -469,8 +488,6 @@ module Aws::MediaTailor
|
|
469
488
|
include Aws::Structure
|
470
489
|
end
|
471
490
|
|
472
|
-
# Amazon CloudWatch log settings for a playback configuration.
|
473
|
-
#
|
474
491
|
# @!attribute [rw] percent_enabled
|
475
492
|
# The percentage of session logs that MediaTailor sends to your
|
476
493
|
# Cloudwatch Logs account.
|
@@ -489,8 +506,6 @@ module Aws::MediaTailor
|
|
489
506
|
include Aws::Structure
|
490
507
|
end
|
491
508
|
|
492
|
-
# The configuration for this channel.
|
493
|
-
#
|
494
509
|
# @note When making an API call, you may pass CreateChannelRequest
|
495
510
|
# data as a hash:
|
496
511
|
#
|
@@ -519,16 +534,18 @@ module Aws::MediaTailor
|
|
519
534
|
# tags: {
|
520
535
|
# "__string" => "__string",
|
521
536
|
# },
|
537
|
+
# tier: "BASIC", # accepts BASIC, STANDARD
|
522
538
|
# }
|
523
539
|
#
|
524
540
|
# @!attribute [rw] channel_name
|
541
|
+
# The name of the channel.
|
525
542
|
# @return [String]
|
526
543
|
#
|
527
544
|
# @!attribute [rw] filler_slate
|
528
545
|
# The slate used to fill gaps between programs in the schedule. You
|
529
|
-
# must configure filler slate if your channel uses the LINEAR
|
530
|
-
# PlaybackMode
|
531
|
-
# using the LOOP PlaybackMode
|
546
|
+
# must configure filler slate if your channel uses the `LINEAR`
|
547
|
+
# `PlaybackMode`. MediaTailor doesn't support filler slate for
|
548
|
+
# channels using the `LOOP` `PlaybackMode`.
|
532
549
|
# @return [Types::SlateSource]
|
533
550
|
#
|
534
551
|
# @!attribute [rw] outputs
|
@@ -538,18 +555,29 @@ module Aws::MediaTailor
|
|
538
555
|
# @!attribute [rw] playback_mode
|
539
556
|
# The type of playback mode to use for this channel.
|
540
557
|
#
|
541
|
-
# LINEAR - The programs in the schedule play once back-to-back in
|
542
|
-
# schedule.
|
558
|
+
# `LINEAR` - The programs in the schedule play once back-to-back in
|
559
|
+
# the schedule.
|
543
560
|
#
|
544
|
-
# LOOP - The programs in the schedule play back-to-back in an
|
545
|
-
# loop. When the last program in the schedule stops playing,
|
546
|
-
# loops back to the first program in the schedule.
|
561
|
+
# `LOOP` - The programs in the schedule play back-to-back in an
|
562
|
+
# endless loop. When the last program in the schedule stops playing,
|
563
|
+
# playback loops back to the first program in the schedule.
|
547
564
|
# @return [String]
|
548
565
|
#
|
549
566
|
# @!attribute [rw] tags
|
550
|
-
# The tags to assign to the channel.
|
567
|
+
# The tags to assign to the channel. Tags are key-value pairs that you
|
568
|
+
# can associate with Amazon resources to help with organization,
|
569
|
+
# access control, and cost tracking. For more information, see
|
570
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
571
|
+
#
|
572
|
+
#
|
573
|
+
#
|
574
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
551
575
|
# @return [Hash<String,String>]
|
552
576
|
#
|
577
|
+
# @!attribute [rw] tier
|
578
|
+
# The tier of the channel.
|
579
|
+
# @return [String]
|
580
|
+
#
|
553
581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannelRequest AWS API Documentation
|
554
582
|
#
|
555
583
|
class CreateChannelRequest < Struct.new(
|
@@ -557,39 +585,60 @@ module Aws::MediaTailor
|
|
557
585
|
:filler_slate,
|
558
586
|
:outputs,
|
559
587
|
:playback_mode,
|
560
|
-
:tags
|
588
|
+
:tags,
|
589
|
+
:tier)
|
561
590
|
SENSITIVE = []
|
562
591
|
include Aws::Structure
|
563
592
|
end
|
564
593
|
|
565
594
|
# @!attribute [rw] arn
|
595
|
+
# The Amazon Resource Name (ARN) to assign to the channel.
|
566
596
|
# @return [String]
|
567
597
|
#
|
568
598
|
# @!attribute [rw] channel_name
|
599
|
+
# The name to assign to the channel.
|
569
600
|
# @return [String]
|
570
601
|
#
|
571
602
|
# @!attribute [rw] channel_state
|
603
|
+
# Indicates whether the channel is in a running state or not.
|
572
604
|
# @return [String]
|
573
605
|
#
|
574
606
|
# @!attribute [rw] creation_time
|
607
|
+
# The timestamp of when the channel was created.
|
575
608
|
# @return [Time]
|
576
609
|
#
|
577
610
|
# @!attribute [rw] filler_slate
|
578
|
-
#
|
611
|
+
# Contains information about the slate used to fill gaps between
|
612
|
+
# programs in the schedule.
|
579
613
|
# @return [Types::SlateSource]
|
580
614
|
#
|
581
615
|
# @!attribute [rw] last_modified_time
|
616
|
+
# The timestamp of when the channel was last modified.
|
582
617
|
# @return [Time]
|
583
618
|
#
|
584
619
|
# @!attribute [rw] outputs
|
620
|
+
# The output properties to assign to the channel.
|
585
621
|
# @return [Array<Types::ResponseOutputItem>]
|
586
622
|
#
|
587
623
|
# @!attribute [rw] playback_mode
|
624
|
+
# The playback mode to assign to the channel.
|
588
625
|
# @return [String]
|
589
626
|
#
|
590
627
|
# @!attribute [rw] tags
|
628
|
+
# The tags to assign to the channel. Tags are key-value pairs that you
|
629
|
+
# can associate with Amazon resources to help with organization,
|
630
|
+
# access control, and cost tracking. For more information, see
|
631
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
632
|
+
#
|
633
|
+
#
|
634
|
+
#
|
635
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
591
636
|
# @return [Hash<String,String>]
|
592
637
|
#
|
638
|
+
# @!attribute [rw] tier
|
639
|
+
# The tier of the channel.
|
640
|
+
# @return [String]
|
641
|
+
#
|
593
642
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannelResponse AWS API Documentation
|
594
643
|
#
|
595
644
|
class CreateChannelResponse < Struct.new(
|
@@ -601,14 +650,115 @@ module Aws::MediaTailor
|
|
601
650
|
:last_modified_time,
|
602
651
|
:outputs,
|
603
652
|
:playback_mode,
|
653
|
+
:tags,
|
654
|
+
:tier)
|
655
|
+
SENSITIVE = []
|
656
|
+
include Aws::Structure
|
657
|
+
end
|
658
|
+
|
659
|
+
# @note When making an API call, you may pass CreateLiveSourceRequest
|
660
|
+
# data as a hash:
|
661
|
+
#
|
662
|
+
# {
|
663
|
+
# http_package_configurations: [ # required
|
664
|
+
# {
|
665
|
+
# path: "__string", # required
|
666
|
+
# source_group: "__string", # required
|
667
|
+
# type: "DASH", # required, accepts DASH, HLS
|
668
|
+
# },
|
669
|
+
# ],
|
670
|
+
# live_source_name: "__string", # required
|
671
|
+
# source_location_name: "__string", # required
|
672
|
+
# tags: {
|
673
|
+
# "__string" => "__string",
|
674
|
+
# },
|
675
|
+
# }
|
676
|
+
#
|
677
|
+
# @!attribute [rw] http_package_configurations
|
678
|
+
# A list of HTTP package configuration parameters for this live
|
679
|
+
# source.
|
680
|
+
# @return [Array<Types::HttpPackageConfiguration>]
|
681
|
+
#
|
682
|
+
# @!attribute [rw] live_source_name
|
683
|
+
# The name of the live source.
|
684
|
+
# @return [String]
|
685
|
+
#
|
686
|
+
# @!attribute [rw] source_location_name
|
687
|
+
# The name of the source location.
|
688
|
+
# @return [String]
|
689
|
+
#
|
690
|
+
# @!attribute [rw] tags
|
691
|
+
# The tags to assign to the live source. Tags are key-value pairs that
|
692
|
+
# you can associate with Amazon resources to help with organization,
|
693
|
+
# access control, and cost tracking. For more information, see
|
694
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
695
|
+
#
|
696
|
+
#
|
697
|
+
#
|
698
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
699
|
+
# @return [Hash<String,String>]
|
700
|
+
#
|
701
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateLiveSourceRequest AWS API Documentation
|
702
|
+
#
|
703
|
+
class CreateLiveSourceRequest < Struct.new(
|
704
|
+
:http_package_configurations,
|
705
|
+
:live_source_name,
|
706
|
+
:source_location_name,
|
604
707
|
:tags)
|
605
708
|
SENSITIVE = []
|
606
709
|
include Aws::Structure
|
607
710
|
end
|
608
711
|
|
609
|
-
#
|
610
|
-
#
|
712
|
+
# @!attribute [rw] arn
|
713
|
+
# The ARN to assign to the live source.
|
714
|
+
# @return [String]
|
715
|
+
#
|
716
|
+
# @!attribute [rw] creation_time
|
717
|
+
# The time the live source was created.
|
718
|
+
# @return [Time]
|
719
|
+
#
|
720
|
+
# @!attribute [rw] http_package_configurations
|
721
|
+
# A list of HTTP package configuration parameters for this live
|
722
|
+
# source.
|
723
|
+
# @return [Array<Types::HttpPackageConfiguration>]
|
724
|
+
#
|
725
|
+
# @!attribute [rw] last_modified_time
|
726
|
+
# The time the live source was last modified.
|
727
|
+
# @return [Time]
|
728
|
+
#
|
729
|
+
# @!attribute [rw] live_source_name
|
730
|
+
# The name to assign to the live source.
|
731
|
+
# @return [String]
|
732
|
+
#
|
733
|
+
# @!attribute [rw] source_location_name
|
734
|
+
# The name to assign to the source location of the live source.
|
735
|
+
# @return [String]
|
736
|
+
#
|
737
|
+
# @!attribute [rw] tags
|
738
|
+
# The tags to assign to the live source. Tags are key-value pairs that
|
739
|
+
# you can associate with Amazon resources to help with organization,
|
740
|
+
# access control, and cost tracking. For more information, see
|
741
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
742
|
+
#
|
743
|
+
#
|
611
744
|
#
|
745
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
746
|
+
# @return [Hash<String,String>]
|
747
|
+
#
|
748
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateLiveSourceResponse AWS API Documentation
|
749
|
+
#
|
750
|
+
class CreateLiveSourceResponse < Struct.new(
|
751
|
+
:arn,
|
752
|
+
:creation_time,
|
753
|
+
:http_package_configurations,
|
754
|
+
:last_modified_time,
|
755
|
+
:live_source_name,
|
756
|
+
:source_location_name,
|
757
|
+
:tags)
|
758
|
+
SENSITIVE = []
|
759
|
+
include Aws::Structure
|
760
|
+
end
|
761
|
+
|
612
762
|
# @note When making an API call, you may pass CreatePrefetchScheduleRequest
|
613
763
|
# data as a hash:
|
614
764
|
#
|
@@ -644,9 +794,11 @@ module Aws::MediaTailor
|
|
644
794
|
# @return [Types::PrefetchConsumption]
|
645
795
|
#
|
646
796
|
# @!attribute [rw] name
|
797
|
+
# The name to assign to the schedule request.
|
647
798
|
# @return [String]
|
648
799
|
#
|
649
800
|
# @!attribute [rw] playback_configuration_name
|
801
|
+
# The name to assign to the playback configuration.
|
650
802
|
# @return [String]
|
651
803
|
#
|
652
804
|
# @!attribute [rw] retrieval
|
@@ -658,10 +810,10 @@ module Aws::MediaTailor
|
|
658
810
|
# @!attribute [rw] stream_id
|
659
811
|
# An optional stream identifier that MediaTailor uses to prefetch ads
|
660
812
|
# for multiple streams that use the same playback configuration. If
|
661
|
-
# StreamId is specified, MediaTailor returns all of the prefetch
|
662
|
-
# schedules with an exact match on StreamId
|
813
|
+
# `StreamId` is specified, MediaTailor returns all of the prefetch
|
814
|
+
# schedules with an exact match on `StreamId`. If not specified,
|
663
815
|
# MediaTailor returns all of the prefetch schedules for the playback
|
664
|
-
# configuration, regardless of StreamId
|
816
|
+
# configuration, regardless of `StreamId`.
|
665
817
|
# @return [String]
|
666
818
|
#
|
667
819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreatePrefetchScheduleRequest AWS API Documentation
|
@@ -677,26 +829,38 @@ module Aws::MediaTailor
|
|
677
829
|
end
|
678
830
|
|
679
831
|
# @!attribute [rw] arn
|
832
|
+
# The ARN to assign to the prefetch schedule.
|
680
833
|
# @return [String]
|
681
834
|
#
|
682
835
|
# @!attribute [rw] consumption
|
683
|
-
#
|
684
|
-
#
|
836
|
+
# The configuration settings for MediaTailor's *consumption* of the
|
837
|
+
# prefetched ads from the ad decision server. Each consumption
|
838
|
+
# configuration contains an end time and an optional start time that
|
839
|
+
# define the *consumption window*. Prefetch schedules automatically
|
840
|
+
# expire no earlier than seven days after the end time.
|
685
841
|
# @return [Types::PrefetchConsumption]
|
686
842
|
#
|
687
843
|
# @!attribute [rw] name
|
844
|
+
# The name to assign to the prefetch schedule.
|
688
845
|
# @return [String]
|
689
846
|
#
|
690
847
|
# @!attribute [rw] playback_configuration_name
|
848
|
+
# The name to assign to the playback configuration.
|
691
849
|
# @return [String]
|
692
850
|
#
|
693
851
|
# @!attribute [rw] retrieval
|
694
|
-
#
|
695
|
-
#
|
696
|
-
#
|
852
|
+
# The configuration settings for retrieval of prefetched ads from the
|
853
|
+
# ad decision server. Only one set of prefetched ads will be retrieved
|
854
|
+
# and subsequently consumed for each ad break.
|
697
855
|
# @return [Types::PrefetchRetrieval]
|
698
856
|
#
|
699
857
|
# @!attribute [rw] stream_id
|
858
|
+
# An optional stream identifier that MediaTailor uses to prefetch ads
|
859
|
+
# for multiple streams that use the same playback configuration. If
|
860
|
+
# `StreamId` is specified, MediaTailor returns all of the prefetch
|
861
|
+
# schedules with an exact match on `StreamId`. If not specified,
|
862
|
+
# MediaTailor returns all of the prefetch schedules for the playback
|
863
|
+
# configuration, regardless of `StreamId`.
|
700
864
|
# @return [String]
|
701
865
|
#
|
702
866
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreatePrefetchScheduleResponse AWS API Documentation
|
@@ -712,8 +876,6 @@ module Aws::MediaTailor
|
|
712
876
|
include Aws::Structure
|
713
877
|
end
|
714
878
|
|
715
|
-
# Program configuration parameters.
|
716
|
-
#
|
717
879
|
# @note When making an API call, you may pass CreateProgramRequest
|
718
880
|
# data as a hash:
|
719
881
|
#
|
@@ -735,9 +897,11 @@ module Aws::MediaTailor
|
|
735
897
|
# },
|
736
898
|
# ],
|
737
899
|
# channel_name: "__string", # required
|
900
|
+
# live_source_name: "__string",
|
738
901
|
# program_name: "__string", # required
|
739
902
|
# schedule_configuration: { # required
|
740
903
|
# transition: { # required
|
904
|
+
# duration_millis: 1,
|
741
905
|
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
742
906
|
# relative_program: "__string",
|
743
907
|
# scheduled_start_time_millis: 1,
|
@@ -745,7 +909,7 @@ module Aws::MediaTailor
|
|
745
909
|
# },
|
746
910
|
# },
|
747
911
|
# source_location_name: "__string", # required
|
748
|
-
# vod_source_name: "__string",
|
912
|
+
# vod_source_name: "__string",
|
749
913
|
# }
|
750
914
|
#
|
751
915
|
# @!attribute [rw] ad_breaks
|
@@ -753,9 +917,15 @@ module Aws::MediaTailor
|
|
753
917
|
# @return [Array<Types::AdBreak>]
|
754
918
|
#
|
755
919
|
# @!attribute [rw] channel_name
|
920
|
+
# The name of the channel for this Program.
|
921
|
+
# @return [String]
|
922
|
+
#
|
923
|
+
# @!attribute [rw] live_source_name
|
924
|
+
# The name of the LiveSource for this Program.
|
756
925
|
# @return [String]
|
757
926
|
#
|
758
927
|
# @!attribute [rw] program_name
|
928
|
+
# The name of the Program.
|
759
929
|
# @return [String]
|
760
930
|
#
|
761
931
|
# @!attribute [rw] schedule_configuration
|
@@ -775,6 +945,7 @@ module Aws::MediaTailor
|
|
775
945
|
class CreateProgramRequest < Struct.new(
|
776
946
|
:ad_breaks,
|
777
947
|
:channel_name,
|
948
|
+
:live_source_name,
|
778
949
|
:program_name,
|
779
950
|
:schedule_configuration,
|
780
951
|
:source_location_name,
|
@@ -784,27 +955,39 @@ module Aws::MediaTailor
|
|
784
955
|
end
|
785
956
|
|
786
957
|
# @!attribute [rw] ad_breaks
|
958
|
+
# The ad break configuration settings.
|
787
959
|
# @return [Array<Types::AdBreak>]
|
788
960
|
#
|
789
961
|
# @!attribute [rw] arn
|
962
|
+
# The ARN to assign to the program.
|
790
963
|
# @return [String]
|
791
964
|
#
|
792
965
|
# @!attribute [rw] channel_name
|
966
|
+
# The name to assign to the channel for this program.
|
793
967
|
# @return [String]
|
794
968
|
#
|
795
969
|
# @!attribute [rw] creation_time
|
970
|
+
# The time the program was created.
|
796
971
|
# @return [Time]
|
797
972
|
#
|
973
|
+
# @!attribute [rw] live_source_name
|
974
|
+
# The name of the LiveSource for this Program.
|
975
|
+
# @return [String]
|
976
|
+
#
|
798
977
|
# @!attribute [rw] program_name
|
978
|
+
# The name to assign to this program.
|
799
979
|
# @return [String]
|
800
980
|
#
|
801
981
|
# @!attribute [rw] scheduled_start_time
|
982
|
+
# The scheduled start time for this Program.
|
802
983
|
# @return [Time]
|
803
984
|
#
|
804
985
|
# @!attribute [rw] source_location_name
|
986
|
+
# The name to assign to the source location for this program.
|
805
987
|
# @return [String]
|
806
988
|
#
|
807
989
|
# @!attribute [rw] vod_source_name
|
990
|
+
# The name that's used to refer to a VOD source.
|
808
991
|
# @return [String]
|
809
992
|
#
|
810
993
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateProgramResponse AWS API Documentation
|
@@ -814,6 +997,7 @@ module Aws::MediaTailor
|
|
814
997
|
:arn,
|
815
998
|
:channel_name,
|
816
999
|
:creation_time,
|
1000
|
+
:live_source_name,
|
817
1001
|
:program_name,
|
818
1002
|
:scheduled_start_time,
|
819
1003
|
:source_location_name,
|
@@ -822,8 +1006,6 @@ module Aws::MediaTailor
|
|
822
1006
|
include Aws::Structure
|
823
1007
|
end
|
824
1008
|
|
825
|
-
# Source location configuration parameters.
|
826
|
-
#
|
827
1009
|
# @note When making an API call, you may pass CreateSourceLocationRequest
|
828
1010
|
# data as a hash:
|
829
1011
|
#
|
@@ -868,15 +1050,23 @@ module Aws::MediaTailor
|
|
868
1050
|
# @return [Types::HttpConfiguration]
|
869
1051
|
#
|
870
1052
|
# @!attribute [rw] segment_delivery_configurations
|
871
|
-
#
|
872
|
-
#
|
1053
|
+
# A list of the segment delivery configurations associated with this
|
1054
|
+
# resource.
|
873
1055
|
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
874
1056
|
#
|
875
1057
|
# @!attribute [rw] source_location_name
|
1058
|
+
# The name associated with the source location.
|
876
1059
|
# @return [String]
|
877
1060
|
#
|
878
1061
|
# @!attribute [rw] tags
|
879
|
-
# The tags to assign to the source location.
|
1062
|
+
# The tags to assign to the source location. Tags are key-value pairs
|
1063
|
+
# that you can associate with Amazon resources to help with
|
1064
|
+
# organization, access control, and cost tracking. For more
|
1065
|
+
# information, see [Tagging AWS Elemental MediaTailor Resources][1].
|
1066
|
+
#
|
1067
|
+
#
|
1068
|
+
#
|
1069
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
880
1070
|
# @return [Hash<String,String>]
|
881
1071
|
#
|
882
1072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateSourceLocationRequest AWS API Documentation
|
@@ -893,39 +1083,53 @@ module Aws::MediaTailor
|
|
893
1083
|
end
|
894
1084
|
|
895
1085
|
# @!attribute [rw] access_configuration
|
896
|
-
# Access configuration parameters.
|
1086
|
+
# Access configuration parameters. Configures the type of
|
1087
|
+
# authentication used to access content from your source location.
|
897
1088
|
# @return [Types::AccessConfiguration]
|
898
1089
|
#
|
899
1090
|
# @!attribute [rw] arn
|
1091
|
+
# The ARN to assign to the source location.
|
900
1092
|
# @return [String]
|
901
1093
|
#
|
902
1094
|
# @!attribute [rw] creation_time
|
1095
|
+
# The time the source location was created.
|
903
1096
|
# @return [Time]
|
904
1097
|
#
|
905
1098
|
# @!attribute [rw] default_segment_delivery_configuration
|
906
|
-
# The optional configuration for
|
907
|
-
# this if you want the segment delivery server to be different from
|
908
|
-
# the source location server. For example, you can configure your
|
909
|
-
# source location server to be an origination server, such as
|
910
|
-
# MediaPackage, and the segment delivery server to be a content
|
911
|
-
# delivery network (CDN), such as CloudFront. If you don't specify a
|
912
|
-
# segment delivery server, then the source location server is used.
|
1099
|
+
# The optional configuration for the server that serves segments.
|
913
1100
|
# @return [Types::DefaultSegmentDeliveryConfiguration]
|
914
1101
|
#
|
915
1102
|
# @!attribute [rw] http_configuration
|
916
|
-
# The HTTP
|
1103
|
+
# The source's HTTP package configurations.
|
917
1104
|
# @return [Types::HttpConfiguration]
|
918
1105
|
#
|
919
1106
|
# @!attribute [rw] last_modified_time
|
1107
|
+
# The time the source location was last modified.
|
920
1108
|
# @return [Time]
|
921
1109
|
#
|
922
1110
|
# @!attribute [rw] segment_delivery_configurations
|
1111
|
+
# The segment delivery configurations for the source location. For
|
1112
|
+
# information about MediaTailor configurations, see [Working with
|
1113
|
+
# configurations in AWS Elemental MediaTailor][1].
|
1114
|
+
#
|
1115
|
+
#
|
1116
|
+
#
|
1117
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/configurations.html
|
923
1118
|
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
924
1119
|
#
|
925
1120
|
# @!attribute [rw] source_location_name
|
1121
|
+
# The name to assign to the source location.
|
926
1122
|
# @return [String]
|
927
1123
|
#
|
928
1124
|
# @!attribute [rw] tags
|
1125
|
+
# The tags to assign to the source location. Tags are key-value pairs
|
1126
|
+
# that you can associate with Amazon resources to help with
|
1127
|
+
# organization, access control, and cost tracking. For more
|
1128
|
+
# information, see [Tagging AWS Elemental MediaTailor Resources][1].
|
1129
|
+
#
|
1130
|
+
#
|
1131
|
+
#
|
1132
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
929
1133
|
# @return [Hash<String,String>]
|
930
1134
|
#
|
931
1135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateSourceLocationResponse AWS API Documentation
|
@@ -944,8 +1148,6 @@ module Aws::MediaTailor
|
|
944
1148
|
include Aws::Structure
|
945
1149
|
end
|
946
1150
|
|
947
|
-
# The VOD source configuration parameters.
|
948
|
-
#
|
949
1151
|
# @note When making an API call, you may pass CreateVodSourceRequest
|
950
1152
|
# data as a hash:
|
951
1153
|
#
|
@@ -965,18 +1167,26 @@ module Aws::MediaTailor
|
|
965
1167
|
# }
|
966
1168
|
#
|
967
1169
|
# @!attribute [rw] http_package_configurations
|
968
|
-
#
|
969
|
-
# source.
|
1170
|
+
# A list of HTTP package configuration parameters for this VOD source.
|
970
1171
|
# @return [Array<Types::HttpPackageConfiguration>]
|
971
1172
|
#
|
972
1173
|
# @!attribute [rw] source_location_name
|
1174
|
+
# The name of the source location for this VOD source.
|
973
1175
|
# @return [String]
|
974
1176
|
#
|
975
1177
|
# @!attribute [rw] tags
|
976
|
-
# The tags to assign to the VOD source.
|
1178
|
+
# The tags to assign to the VOD source. Tags are key-value pairs that
|
1179
|
+
# you can associate with Amazon resources to help with organization,
|
1180
|
+
# access control, and cost tracking. For more information, see
|
1181
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
1182
|
+
#
|
1183
|
+
#
|
1184
|
+
#
|
1185
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
977
1186
|
# @return [Hash<String,String>]
|
978
1187
|
#
|
979
1188
|
# @!attribute [rw] vod_source_name
|
1189
|
+
# The name associated with the VOD source.>
|
980
1190
|
# @return [String]
|
981
1191
|
#
|
982
1192
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateVodSourceRequest AWS API Documentation
|
@@ -991,25 +1201,38 @@ module Aws::MediaTailor
|
|
991
1201
|
end
|
992
1202
|
|
993
1203
|
# @!attribute [rw] arn
|
1204
|
+
# The ARN to assign to this VOD source.
|
994
1205
|
# @return [String]
|
995
1206
|
#
|
996
1207
|
# @!attribute [rw] creation_time
|
1208
|
+
# The time the VOD source was created.
|
997
1209
|
# @return [Time]
|
998
1210
|
#
|
999
1211
|
# @!attribute [rw] http_package_configurations
|
1000
|
-
#
|
1212
|
+
# A list of HTTP package configuration parameters for this VOD source.
|
1001
1213
|
# @return [Array<Types::HttpPackageConfiguration>]
|
1002
1214
|
#
|
1003
1215
|
# @!attribute [rw] last_modified_time
|
1216
|
+
# The time the VOD source was last modified.
|
1004
1217
|
# @return [Time]
|
1005
1218
|
#
|
1006
1219
|
# @!attribute [rw] source_location_name
|
1220
|
+
# The name to assign to the source location for this VOD source.
|
1007
1221
|
# @return [String]
|
1008
1222
|
#
|
1009
1223
|
# @!attribute [rw] tags
|
1224
|
+
# The tags to assign to the VOD source. Tags are key-value pairs that
|
1225
|
+
# you can associate with Amazon resources to help with organization,
|
1226
|
+
# access control, and cost tracking. For more information, see
|
1227
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
1228
|
+
#
|
1229
|
+
#
|
1230
|
+
#
|
1231
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
1010
1232
|
# @return [Hash<String,String>]
|
1011
1233
|
#
|
1012
1234
|
# @!attribute [rw] vod_source_name
|
1235
|
+
# The name to assign to the VOD source.
|
1013
1236
|
# @return [String]
|
1014
1237
|
#
|
1015
1238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateVodSourceResponse AWS API Documentation
|
@@ -1041,18 +1264,18 @@ module Aws::MediaTailor
|
|
1041
1264
|
# don't support sticky redirects. Disable this if you have CDN
|
1042
1265
|
# routing rules set up for accessing MediaTailor manifests, and you
|
1043
1266
|
# are either using client-side reporting or your players support
|
1044
|
-
# sticky HTTP redirects. Valid values are DISABLED and
|
1045
|
-
# The
|
1046
|
-
# default value.
|
1267
|
+
# sticky HTTP redirects. Valid values are `DISABLED` and
|
1268
|
+
# `EMT_DEFAULT`. The `EMT_DEFAULT` setting enables the inclusion of
|
1269
|
+
# the tag and is the default value.
|
1047
1270
|
# @return [String]
|
1048
1271
|
#
|
1049
1272
|
# @!attribute [rw] origin_manifest_type
|
1050
1273
|
# The setting that controls whether MediaTailor handles manifests from
|
1051
1274
|
# the origin server as multi-period manifests or single-period
|
1052
1275
|
# manifests. If your origin server produces single-period manifests,
|
1053
|
-
# set this to
|
1276
|
+
# set this to `SINGLE_PERIOD`. The default setting is `MULTI_PERIOD`.
|
1054
1277
|
# For multi-period manifests, omit this setting or set it to
|
1055
|
-
#
|
1278
|
+
# `MULTI_PERIOD`.
|
1056
1279
|
# @return [String]
|
1057
1280
|
#
|
1058
1281
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DashConfiguration AWS API Documentation
|
@@ -1082,18 +1305,18 @@ module Aws::MediaTailor
|
|
1082
1305
|
# don't support sticky redirects. Disable this if you have CDN
|
1083
1306
|
# routing rules set up for accessing MediaTailor manifests, and you
|
1084
1307
|
# are either using client-side reporting or your players support
|
1085
|
-
# sticky HTTP redirects. Valid values are DISABLED and
|
1086
|
-
# The
|
1087
|
-
# default value.
|
1308
|
+
# sticky HTTP redirects. Valid values are `DISABLED` and
|
1309
|
+
# `EMT_DEFAULT`. The `EMT_DEFAULT` setting enables the inclusion of
|
1310
|
+
# the tag and is the default value.
|
1088
1311
|
# @return [String]
|
1089
1312
|
#
|
1090
1313
|
# @!attribute [rw] origin_manifest_type
|
1091
1314
|
# The setting that controls whether MediaTailor handles manifests from
|
1092
1315
|
# the origin server as multi-period manifests or single-period
|
1093
1316
|
# manifests. If your origin server produces single-period manifests,
|
1094
|
-
# set this to
|
1317
|
+
# set this to `SINGLE_PERIOD`. The default setting is `MULTI_PERIOD`.
|
1095
1318
|
# For multi-period manifests, omit this setting or set it to
|
1096
|
-
#
|
1319
|
+
# `MULTI_PERIOD`.
|
1097
1320
|
# @return [String]
|
1098
1321
|
#
|
1099
1322
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DashConfigurationForPut AWS API Documentation
|
@@ -1118,26 +1341,26 @@ module Aws::MediaTailor
|
|
1118
1341
|
# }
|
1119
1342
|
#
|
1120
1343
|
# @!attribute [rw] manifest_window_seconds
|
1121
|
-
# The total duration (in seconds) of each manifest. Minimum value:
|
1122
|
-
# seconds. Maximum value: 3600 seconds.
|
1344
|
+
# The total duration (in seconds) of each manifest. Minimum value:
|
1345
|
+
# `30` seconds. Maximum value: `3600` seconds.
|
1123
1346
|
# @return [Integer]
|
1124
1347
|
#
|
1125
1348
|
# @!attribute [rw] min_buffer_time_seconds
|
1126
1349
|
# Minimum amount of content (measured in seconds) that a player must
|
1127
|
-
# keep available in the buffer. Minimum value: 2 seconds. Maximum
|
1128
|
-
# value: 60 seconds.
|
1350
|
+
# keep available in the buffer. Minimum value: `2` seconds. Maximum
|
1351
|
+
# value: `60` seconds.
|
1129
1352
|
# @return [Integer]
|
1130
1353
|
#
|
1131
1354
|
# @!attribute [rw] min_update_period_seconds
|
1132
1355
|
# Minimum amount of time (in seconds) that the player should wait
|
1133
|
-
# before requesting updates to the manifest. Minimum value: 2
|
1134
|
-
# Maximum value: 60 seconds.
|
1356
|
+
# before requesting updates to the manifest. Minimum value: `2`
|
1357
|
+
# seconds. Maximum value: `60` seconds.
|
1135
1358
|
# @return [Integer]
|
1136
1359
|
#
|
1137
1360
|
# @!attribute [rw] suggested_presentation_delay_seconds
|
1138
1361
|
# Amount of time (in seconds) that the player should be from the live
|
1139
|
-
# point at the end of the manifest. Minimum value: 2 seconds.
|
1140
|
-
# value: 60 seconds.
|
1362
|
+
# point at the end of the manifest. Minimum value: `2` seconds.
|
1363
|
+
# Maximum value: `60` seconds.
|
1141
1364
|
# @return [Integer]
|
1142
1365
|
#
|
1143
1366
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DashPlaylistSettings AWS API Documentation
|
@@ -1179,8 +1402,6 @@ module Aws::MediaTailor
|
|
1179
1402
|
include Aws::Structure
|
1180
1403
|
end
|
1181
1404
|
|
1182
|
-
# This response includes only the "type" : "object" property.
|
1183
|
-
#
|
1184
1405
|
# @note When making an API call, you may pass DeleteChannelPolicyRequest
|
1185
1406
|
# data as a hash:
|
1186
1407
|
#
|
@@ -1189,6 +1410,7 @@ module Aws::MediaTailor
|
|
1189
1410
|
# }
|
1190
1411
|
#
|
1191
1412
|
# @!attribute [rw] channel_name
|
1413
|
+
# The name of the channel associated with this channel policy.
|
1192
1414
|
# @return [String]
|
1193
1415
|
#
|
1194
1416
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteChannelPolicyRequest AWS API Documentation
|
@@ -1199,8 +1421,6 @@ module Aws::MediaTailor
|
|
1199
1421
|
include Aws::Structure
|
1200
1422
|
end
|
1201
1423
|
|
1202
|
-
# This response includes only the "type" : "object" property.
|
1203
|
-
#
|
1204
1424
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteChannelPolicyResponse AWS API Documentation
|
1205
1425
|
#
|
1206
1426
|
class DeleteChannelPolicyResponse < Aws::EmptyStructure; end
|
@@ -1213,6 +1433,7 @@ module Aws::MediaTailor
|
|
1213
1433
|
# }
|
1214
1434
|
#
|
1215
1435
|
# @!attribute [rw] channel_name
|
1436
|
+
# The name of the channel.
|
1216
1437
|
# @return [String]
|
1217
1438
|
#
|
1218
1439
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteChannelRequest AWS API Documentation
|
@@ -1223,12 +1444,39 @@ module Aws::MediaTailor
|
|
1223
1444
|
include Aws::Structure
|
1224
1445
|
end
|
1225
1446
|
|
1226
|
-
# This response includes only the "type" : "object" property.
|
1227
|
-
#
|
1228
1447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteChannelResponse AWS API Documentation
|
1229
1448
|
#
|
1230
1449
|
class DeleteChannelResponse < Aws::EmptyStructure; end
|
1231
1450
|
|
1451
|
+
# @note When making an API call, you may pass DeleteLiveSourceRequest
|
1452
|
+
# data as a hash:
|
1453
|
+
#
|
1454
|
+
# {
|
1455
|
+
# live_source_name: "__string", # required
|
1456
|
+
# source_location_name: "__string", # required
|
1457
|
+
# }
|
1458
|
+
#
|
1459
|
+
# @!attribute [rw] live_source_name
|
1460
|
+
# The name of the live source.
|
1461
|
+
# @return [String]
|
1462
|
+
#
|
1463
|
+
# @!attribute [rw] source_location_name
|
1464
|
+
# The name of the source location associated with this Live Source.
|
1465
|
+
# @return [String]
|
1466
|
+
#
|
1467
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteLiveSourceRequest AWS API Documentation
|
1468
|
+
#
|
1469
|
+
class DeleteLiveSourceRequest < Struct.new(
|
1470
|
+
:live_source_name,
|
1471
|
+
:source_location_name)
|
1472
|
+
SENSITIVE = []
|
1473
|
+
include Aws::Structure
|
1474
|
+
end
|
1475
|
+
|
1476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteLiveSourceResponse AWS API Documentation
|
1477
|
+
#
|
1478
|
+
class DeleteLiveSourceResponse < Aws::EmptyStructure; end
|
1479
|
+
|
1232
1480
|
# @note When making an API call, you may pass DeletePlaybackConfigurationRequest
|
1233
1481
|
# data as a hash:
|
1234
1482
|
#
|
@@ -1237,6 +1485,7 @@ module Aws::MediaTailor
|
|
1237
1485
|
# }
|
1238
1486
|
#
|
1239
1487
|
# @!attribute [rw] name
|
1488
|
+
# The name of the playback configuration.
|
1240
1489
|
# @return [String]
|
1241
1490
|
#
|
1242
1491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeletePlaybackConfigurationRequest AWS API Documentation
|
@@ -1260,9 +1509,12 @@ module Aws::MediaTailor
|
|
1260
1509
|
# }
|
1261
1510
|
#
|
1262
1511
|
# @!attribute [rw] name
|
1512
|
+
# The name of the prefetch schedule. If the action is successful, the
|
1513
|
+
# service sends back an HTTP 204 response with an empty HTTP body.
|
1263
1514
|
# @return [String]
|
1264
1515
|
#
|
1265
1516
|
# @!attribute [rw] playback_configuration_name
|
1517
|
+
# The name of the playback configuration for this prefetch schedule.
|
1266
1518
|
# @return [String]
|
1267
1519
|
#
|
1268
1520
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeletePrefetchScheduleRequest AWS API Documentation
|
@@ -1274,9 +1526,6 @@ module Aws::MediaTailor
|
|
1274
1526
|
include Aws::Structure
|
1275
1527
|
end
|
1276
1528
|
|
1277
|
-
# If the action is successful, the service sends back an HTTP 204
|
1278
|
-
# response with an empty HTTP body.
|
1279
|
-
#
|
1280
1529
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeletePrefetchScheduleResponse AWS API Documentation
|
1281
1530
|
#
|
1282
1531
|
class DeletePrefetchScheduleResponse < Aws::EmptyStructure; end
|
@@ -1290,9 +1539,11 @@ module Aws::MediaTailor
|
|
1290
1539
|
# }
|
1291
1540
|
#
|
1292
1541
|
# @!attribute [rw] channel_name
|
1542
|
+
# The name of the channel.
|
1293
1543
|
# @return [String]
|
1294
1544
|
#
|
1295
1545
|
# @!attribute [rw] program_name
|
1546
|
+
# The name of the program.
|
1296
1547
|
# @return [String]
|
1297
1548
|
#
|
1298
1549
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteProgramRequest AWS API Documentation
|
@@ -1304,8 +1555,6 @@ module Aws::MediaTailor
|
|
1304
1555
|
include Aws::Structure
|
1305
1556
|
end
|
1306
1557
|
|
1307
|
-
# This response includes only the "type" : "object" property.
|
1308
|
-
#
|
1309
1558
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteProgramResponse AWS API Documentation
|
1310
1559
|
#
|
1311
1560
|
class DeleteProgramResponse < Aws::EmptyStructure; end
|
@@ -1318,6 +1567,7 @@ module Aws::MediaTailor
|
|
1318
1567
|
# }
|
1319
1568
|
#
|
1320
1569
|
# @!attribute [rw] source_location_name
|
1570
|
+
# The name of the source location.
|
1321
1571
|
# @return [String]
|
1322
1572
|
#
|
1323
1573
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteSourceLocationRequest AWS API Documentation
|
@@ -1328,8 +1578,6 @@ module Aws::MediaTailor
|
|
1328
1578
|
include Aws::Structure
|
1329
1579
|
end
|
1330
1580
|
|
1331
|
-
# This response includes only the "type" : "object" property.
|
1332
|
-
#
|
1333
1581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteSourceLocationResponse AWS API Documentation
|
1334
1582
|
#
|
1335
1583
|
class DeleteSourceLocationResponse < Aws::EmptyStructure; end
|
@@ -1343,9 +1591,11 @@ module Aws::MediaTailor
|
|
1343
1591
|
# }
|
1344
1592
|
#
|
1345
1593
|
# @!attribute [rw] source_location_name
|
1594
|
+
# The name of the source location associated with this VOD Source.
|
1346
1595
|
# @return [String]
|
1347
1596
|
#
|
1348
1597
|
# @!attribute [rw] vod_source_name
|
1598
|
+
# The name of the VOD source.
|
1349
1599
|
# @return [String]
|
1350
1600
|
#
|
1351
1601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteVodSourceRequest AWS API Documentation
|
@@ -1357,8 +1607,6 @@ module Aws::MediaTailor
|
|
1357
1607
|
include Aws::Structure
|
1358
1608
|
end
|
1359
1609
|
|
1360
|
-
# This response includes only the "type" : "object" property.
|
1361
|
-
#
|
1362
1610
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeleteVodSourceResponse AWS API Documentation
|
1363
1611
|
#
|
1364
1612
|
class DeleteVodSourceResponse < Aws::EmptyStructure; end
|
@@ -1371,6 +1619,7 @@ module Aws::MediaTailor
|
|
1371
1619
|
# }
|
1372
1620
|
#
|
1373
1621
|
# @!attribute [rw] channel_name
|
1622
|
+
# The name of the channel.
|
1374
1623
|
# @return [String]
|
1375
1624
|
#
|
1376
1625
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeChannelRequest AWS API Documentation
|
@@ -1381,8 +1630,6 @@ module Aws::MediaTailor
|
|
1381
1630
|
include Aws::Structure
|
1382
1631
|
end
|
1383
1632
|
|
1384
|
-
# Returns a channel's properties.
|
1385
|
-
#
|
1386
1633
|
# @!attribute [rw] arn
|
1387
1634
|
# The ARN of the channel.
|
1388
1635
|
# @return [String]
|
@@ -1417,9 +1664,20 @@ module Aws::MediaTailor
|
|
1417
1664
|
# @return [String]
|
1418
1665
|
#
|
1419
1666
|
# @!attribute [rw] tags
|
1420
|
-
# The tags assigned to the channel.
|
1667
|
+
# The tags assigned to the channel. Tags are key-value pairs that you
|
1668
|
+
# can associate with Amazon resources to help with organization,
|
1669
|
+
# access control, and cost tracking. For more information, see
|
1670
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
1671
|
+
#
|
1672
|
+
#
|
1673
|
+
#
|
1674
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
1421
1675
|
# @return [Hash<String,String>]
|
1422
1676
|
#
|
1677
|
+
# @!attribute [rw] tier
|
1678
|
+
# The channel's tier.
|
1679
|
+
# @return [String]
|
1680
|
+
#
|
1423
1681
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeChannelResponse AWS API Documentation
|
1424
1682
|
#
|
1425
1683
|
class DescribeChannelResponse < Struct.new(
|
@@ -1431,6 +1689,81 @@ module Aws::MediaTailor
|
|
1431
1689
|
:last_modified_time,
|
1432
1690
|
:outputs,
|
1433
1691
|
:playback_mode,
|
1692
|
+
:tags,
|
1693
|
+
:tier)
|
1694
|
+
SENSITIVE = []
|
1695
|
+
include Aws::Structure
|
1696
|
+
end
|
1697
|
+
|
1698
|
+
# @note When making an API call, you may pass DescribeLiveSourceRequest
|
1699
|
+
# data as a hash:
|
1700
|
+
#
|
1701
|
+
# {
|
1702
|
+
# live_source_name: "__string", # required
|
1703
|
+
# source_location_name: "__string", # required
|
1704
|
+
# }
|
1705
|
+
#
|
1706
|
+
# @!attribute [rw] live_source_name
|
1707
|
+
# The name of the live source.
|
1708
|
+
# @return [String]
|
1709
|
+
#
|
1710
|
+
# @!attribute [rw] source_location_name
|
1711
|
+
# The name of the source location associated with this Live Source.
|
1712
|
+
# @return [String]
|
1713
|
+
#
|
1714
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeLiveSourceRequest AWS API Documentation
|
1715
|
+
#
|
1716
|
+
class DescribeLiveSourceRequest < Struct.new(
|
1717
|
+
:live_source_name,
|
1718
|
+
:source_location_name)
|
1719
|
+
SENSITIVE = []
|
1720
|
+
include Aws::Structure
|
1721
|
+
end
|
1722
|
+
|
1723
|
+
# @!attribute [rw] arn
|
1724
|
+
# The ARN of the live source.
|
1725
|
+
# @return [String]
|
1726
|
+
#
|
1727
|
+
# @!attribute [rw] creation_time
|
1728
|
+
# The timestamp that indicates when the live source was created.
|
1729
|
+
# @return [Time]
|
1730
|
+
#
|
1731
|
+
# @!attribute [rw] http_package_configurations
|
1732
|
+
# The HTTP package configurations.
|
1733
|
+
# @return [Array<Types::HttpPackageConfiguration>]
|
1734
|
+
#
|
1735
|
+
# @!attribute [rw] last_modified_time
|
1736
|
+
# The timestamp that indicates when the live source was modified.
|
1737
|
+
# @return [Time]
|
1738
|
+
#
|
1739
|
+
# @!attribute [rw] live_source_name
|
1740
|
+
# The name of the live source.
|
1741
|
+
# @return [String]
|
1742
|
+
#
|
1743
|
+
# @!attribute [rw] source_location_name
|
1744
|
+
# The name of the source location associated with the live source.
|
1745
|
+
# @return [String]
|
1746
|
+
#
|
1747
|
+
# @!attribute [rw] tags
|
1748
|
+
# The tags assigned to the live source. Tags are key-value pairs that
|
1749
|
+
# you can associate with Amazon resources to help with organization,
|
1750
|
+
# access control, and cost tracking. For more information, see
|
1751
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
1752
|
+
#
|
1753
|
+
#
|
1754
|
+
#
|
1755
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
1756
|
+
# @return [Hash<String,String>]
|
1757
|
+
#
|
1758
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeLiveSourceResponse AWS API Documentation
|
1759
|
+
#
|
1760
|
+
class DescribeLiveSourceResponse < Struct.new(
|
1761
|
+
:arn,
|
1762
|
+
:creation_time,
|
1763
|
+
:http_package_configurations,
|
1764
|
+
:last_modified_time,
|
1765
|
+
:live_source_name,
|
1766
|
+
:source_location_name,
|
1434
1767
|
:tags)
|
1435
1768
|
SENSITIVE = []
|
1436
1769
|
include Aws::Structure
|
@@ -1445,9 +1778,11 @@ module Aws::MediaTailor
|
|
1445
1778
|
# }
|
1446
1779
|
#
|
1447
1780
|
# @!attribute [rw] channel_name
|
1781
|
+
# The name of the channel associated with this Program.
|
1448
1782
|
# @return [String]
|
1449
1783
|
#
|
1450
1784
|
# @!attribute [rw] program_name
|
1785
|
+
# The name of the program.
|
1451
1786
|
# @return [String]
|
1452
1787
|
#
|
1453
1788
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeProgramRequest AWS API Documentation
|
@@ -1459,8 +1794,6 @@ module Aws::MediaTailor
|
|
1459
1794
|
include Aws::Structure
|
1460
1795
|
end
|
1461
1796
|
|
1462
|
-
# This program's configuration parameters.
|
1463
|
-
#
|
1464
1797
|
# @!attribute [rw] ad_breaks
|
1465
1798
|
# The ad break configuration settings.
|
1466
1799
|
# @return [Array<Types::AdBreak>]
|
@@ -1477,6 +1810,10 @@ module Aws::MediaTailor
|
|
1477
1810
|
# The timestamp of when the program was created.
|
1478
1811
|
# @return [Time]
|
1479
1812
|
#
|
1813
|
+
# @!attribute [rw] live_source_name
|
1814
|
+
# The name of the LiveSource for this Program.
|
1815
|
+
# @return [String]
|
1816
|
+
#
|
1480
1817
|
# @!attribute [rw] program_name
|
1481
1818
|
# The name of the program.
|
1482
1819
|
# @return [String]
|
@@ -1503,6 +1840,7 @@ module Aws::MediaTailor
|
|
1503
1840
|
:arn,
|
1504
1841
|
:channel_name,
|
1505
1842
|
:creation_time,
|
1843
|
+
:live_source_name,
|
1506
1844
|
:program_name,
|
1507
1845
|
:scheduled_start_time,
|
1508
1846
|
:source_location_name,
|
@@ -1519,6 +1857,7 @@ module Aws::MediaTailor
|
|
1519
1857
|
# }
|
1520
1858
|
#
|
1521
1859
|
# @!attribute [rw] source_location_name
|
1860
|
+
# The name of the source location.
|
1522
1861
|
# @return [String]
|
1523
1862
|
#
|
1524
1863
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeSourceLocationRequest AWS API Documentation
|
@@ -1529,8 +1868,6 @@ module Aws::MediaTailor
|
|
1529
1868
|
include Aws::Structure
|
1530
1869
|
end
|
1531
1870
|
|
1532
|
-
# This response includes only the "type" : "object" property.
|
1533
|
-
#
|
1534
1871
|
# @!attribute [rw] access_configuration
|
1535
1872
|
# The access configuration for the source location.
|
1536
1873
|
# @return [Types::AccessConfiguration]
|
@@ -1557,8 +1894,8 @@ module Aws::MediaTailor
|
|
1557
1894
|
# @return [Time]
|
1558
1895
|
#
|
1559
1896
|
# @!attribute [rw] segment_delivery_configurations
|
1560
|
-
#
|
1561
|
-
#
|
1897
|
+
# A list of the segment delivery configurations associated with this
|
1898
|
+
# resource.
|
1562
1899
|
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
1563
1900
|
#
|
1564
1901
|
# @!attribute [rw] source_location_name
|
@@ -1566,7 +1903,14 @@ module Aws::MediaTailor
|
|
1566
1903
|
# @return [String]
|
1567
1904
|
#
|
1568
1905
|
# @!attribute [rw] tags
|
1569
|
-
# The tags assigned to the source location.
|
1906
|
+
# The tags assigned to the source location. Tags are key-value pairs
|
1907
|
+
# that you can associate with Amazon resources to help with
|
1908
|
+
# organization, access control, and cost tracking. For more
|
1909
|
+
# information, see [Tagging AWS Elemental MediaTailor Resources][1].
|
1910
|
+
#
|
1911
|
+
#
|
1912
|
+
#
|
1913
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
1570
1914
|
# @return [Hash<String,String>]
|
1571
1915
|
#
|
1572
1916
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeSourceLocationResponse AWS API Documentation
|
@@ -1594,9 +1938,11 @@ module Aws::MediaTailor
|
|
1594
1938
|
# }
|
1595
1939
|
#
|
1596
1940
|
# @!attribute [rw] source_location_name
|
1941
|
+
# The name of the source location associated with this VOD Source.
|
1597
1942
|
# @return [String]
|
1598
1943
|
#
|
1599
1944
|
# @!attribute [rw] vod_source_name
|
1945
|
+
# The name of the VOD Source.
|
1600
1946
|
# @return [String]
|
1601
1947
|
#
|
1602
1948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeVodSourceRequest AWS API Documentation
|
@@ -1608,8 +1954,6 @@ module Aws::MediaTailor
|
|
1608
1954
|
include Aws::Structure
|
1609
1955
|
end
|
1610
1956
|
|
1611
|
-
# This response includes only the "type" : "object" property.
|
1612
|
-
#
|
1613
1957
|
# @!attribute [rw] arn
|
1614
1958
|
# The ARN of the VOD source.
|
1615
1959
|
# @return [String]
|
@@ -1623,7 +1967,7 @@ module Aws::MediaTailor
|
|
1623
1967
|
# @return [Array<Types::HttpPackageConfiguration>]
|
1624
1968
|
#
|
1625
1969
|
# @!attribute [rw] last_modified_time
|
1626
|
-
# The
|
1970
|
+
# The last modified time of the VOD source.
|
1627
1971
|
# @return [Time]
|
1628
1972
|
#
|
1629
1973
|
# @!attribute [rw] source_location_name
|
@@ -1631,7 +1975,14 @@ module Aws::MediaTailor
|
|
1631
1975
|
# @return [String]
|
1632
1976
|
#
|
1633
1977
|
# @!attribute [rw] tags
|
1634
|
-
# The tags assigned to the VOD source.
|
1978
|
+
# The tags assigned to the VOD source. Tags are key-value pairs that
|
1979
|
+
# you can associate with Amazon resources to help with organization,
|
1980
|
+
# access control, and cost tracking. For more information, see
|
1981
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
1982
|
+
#
|
1983
|
+
#
|
1984
|
+
#
|
1985
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
1635
1986
|
# @return [Hash<String,String>]
|
1636
1987
|
#
|
1637
1988
|
# @!attribute [rw] vod_source_name
|
@@ -1660,6 +2011,7 @@ module Aws::MediaTailor
|
|
1660
2011
|
# }
|
1661
2012
|
#
|
1662
2013
|
# @!attribute [rw] channel_name
|
2014
|
+
# The name of the channel associated with this Channel Policy.
|
1663
2015
|
# @return [String]
|
1664
2016
|
#
|
1665
2017
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetChannelPolicyRequest AWS API Documentation
|
@@ -1670,10 +2022,9 @@ module Aws::MediaTailor
|
|
1670
2022
|
include Aws::Structure
|
1671
2023
|
end
|
1672
2024
|
|
1673
|
-
# Returns the channel's IAM policy.
|
1674
|
-
#
|
1675
2025
|
# @!attribute [rw] policy
|
1676
|
-
# The IAM policy for the channel.
|
2026
|
+
# The IAM policy for the channel. IAM policies are used to control
|
2027
|
+
# access to your channel.
|
1677
2028
|
# @return [String]
|
1678
2029
|
#
|
1679
2030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetChannelPolicyResponse AWS API Documentation
|
@@ -1695,15 +2046,33 @@ module Aws::MediaTailor
|
|
1695
2046
|
# }
|
1696
2047
|
#
|
1697
2048
|
# @!attribute [rw] channel_name
|
2049
|
+
# The name of the channel associated with this Channel Schedule.
|
1698
2050
|
# @return [String]
|
1699
2051
|
#
|
1700
2052
|
# @!attribute [rw] duration_minutes
|
2053
|
+
# The duration in minutes of the channel schedule.
|
1701
2054
|
# @return [String]
|
1702
2055
|
#
|
1703
2056
|
# @!attribute [rw] max_results
|
2057
|
+
# The maximum number of channel schedules that you want MediaTailor to
|
2058
|
+
# return in response to the current request. If there are more than
|
2059
|
+
# `MaxResults` channel schedules, use the value of `NextToken` in the
|
2060
|
+
# response to get the next page of results.
|
1704
2061
|
# @return [Integer]
|
1705
2062
|
#
|
1706
2063
|
# @!attribute [rw] next_token
|
2064
|
+
# (Optional) If the playback configuration has more than `MaxResults`
|
2065
|
+
# channel schedules, use `NextToken` to get the second and subsequent
|
2066
|
+
# pages of results.
|
2067
|
+
#
|
2068
|
+
# For the first `GetChannelScheduleRequest` request, omit this value.
|
2069
|
+
#
|
2070
|
+
# For the second and subsequent requests, get the value of `NextToken`
|
2071
|
+
# from the previous response and specify that value for `NextToken` in
|
2072
|
+
# the request.
|
2073
|
+
#
|
2074
|
+
# If the previous response didn't include a `NextToken` element,
|
2075
|
+
# there are no more channel schedules to get.
|
1707
2076
|
# @return [String]
|
1708
2077
|
#
|
1709
2078
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetChannelScheduleRequest AWS API Documentation
|
@@ -1717,15 +2086,14 @@ module Aws::MediaTailor
|
|
1717
2086
|
include Aws::Structure
|
1718
2087
|
end
|
1719
2088
|
|
1720
|
-
# Returns the schedule entries for the channel.
|
1721
|
-
#
|
1722
2089
|
# @!attribute [rw] items
|
1723
|
-
#
|
2090
|
+
# A list of schedule entries for the channel.
|
1724
2091
|
# @return [Array<Types::ScheduleEntry>]
|
1725
2092
|
#
|
1726
2093
|
# @!attribute [rw] next_token
|
1727
|
-
# Pagination token
|
1728
|
-
# the next page of
|
2094
|
+
# Pagination token returned by the list request when results exceed
|
2095
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2096
|
+
# results.
|
1729
2097
|
# @return [String]
|
1730
2098
|
#
|
1731
2099
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetChannelScheduleResponse AWS API Documentation
|
@@ -1745,6 +2113,7 @@ module Aws::MediaTailor
|
|
1745
2113
|
# }
|
1746
2114
|
#
|
1747
2115
|
# @!attribute [rw] name
|
2116
|
+
# The identifier for the playback configuration.
|
1748
2117
|
# @return [String]
|
1749
2118
|
#
|
1750
2119
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetPlaybackConfigurationRequest AWS API Documentation
|
@@ -1755,8 +2124,6 @@ module Aws::MediaTailor
|
|
1755
2124
|
include Aws::Structure
|
1756
2125
|
end
|
1757
2126
|
|
1758
|
-
# Returns the playback configuration for the specified name.
|
1759
|
-
#
|
1760
2127
|
# @!attribute [rw] ad_decision_server_url
|
1761
2128
|
# The URL for the ad decision server (ADS). This includes the
|
1762
2129
|
# specification of static parameters and placeholders for dynamic
|
@@ -1868,7 +2235,14 @@ module Aws::MediaTailor
|
|
1868
2235
|
# @return [String]
|
1869
2236
|
#
|
1870
2237
|
# @!attribute [rw] tags
|
1871
|
-
# The tags assigned to the playback configuration.
|
2238
|
+
# The tags assigned to the playback configuration. Tags are key-value
|
2239
|
+
# pairs that you can associate with Amazon resources to help with
|
2240
|
+
# organization, access control, and cost tracking. For more
|
2241
|
+
# information, see [Tagging AWS Elemental MediaTailor Resources][1].
|
2242
|
+
#
|
2243
|
+
#
|
2244
|
+
#
|
2245
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
1872
2246
|
# @return [Hash<String,String>]
|
1873
2247
|
#
|
1874
2248
|
# @!attribute [rw] transcode_profile_name
|
@@ -1918,9 +2292,16 @@ module Aws::MediaTailor
|
|
1918
2292
|
# }
|
1919
2293
|
#
|
1920
2294
|
# @!attribute [rw] name
|
2295
|
+
# The name of the prefetch schedule. The name must be unique among all
|
2296
|
+
# prefetch schedules that are associated with the specified playback
|
2297
|
+
# configuration.
|
1921
2298
|
# @return [String]
|
1922
2299
|
#
|
1923
2300
|
# @!attribute [rw] playback_configuration_name
|
2301
|
+
# Returns information about the prefetch schedule for a specific
|
2302
|
+
# playback configuration. If you call `GetPrefetchSchedule` on an
|
2303
|
+
# expired prefetch schedule, MediaTailor returns an HTTP 404 status
|
2304
|
+
# code.
|
1924
2305
|
# @return [String]
|
1925
2306
|
#
|
1926
2307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetPrefetchScheduleRequest AWS API Documentation
|
@@ -1933,26 +2314,37 @@ module Aws::MediaTailor
|
|
1933
2314
|
end
|
1934
2315
|
|
1935
2316
|
# @!attribute [rw] arn
|
2317
|
+
# The Amazon Resource Name (ARN) of the prefetch schedule.
|
1936
2318
|
# @return [String]
|
1937
2319
|
#
|
1938
2320
|
# @!attribute [rw] consumption
|
1939
|
-
#
|
1940
|
-
#
|
2321
|
+
# Consumption settings determine how, and when, MediaTailor places the
|
2322
|
+
# prefetched ads into ad breaks. Ad consumption occurs within a span
|
2323
|
+
# of time that you define, called a *consumption window*. You can
|
2324
|
+
# designate which ad breaks that MediaTailor fills with prefetch ads
|
2325
|
+
# by setting avail matching criteria.
|
1941
2326
|
# @return [Types::PrefetchConsumption]
|
1942
2327
|
#
|
1943
2328
|
# @!attribute [rw] name
|
2329
|
+
# The name of the prefetch schedule. The name must be unique among all
|
2330
|
+
# prefetch schedules that are associated with the specified playback
|
2331
|
+
# configuration.
|
1944
2332
|
# @return [String]
|
1945
2333
|
#
|
1946
2334
|
# @!attribute [rw] playback_configuration_name
|
2335
|
+
# The name of the playback configuration to create the prefetch
|
2336
|
+
# schedule for.
|
1947
2337
|
# @return [String]
|
1948
2338
|
#
|
1949
2339
|
# @!attribute [rw] retrieval
|
1950
|
-
# A complex type that contains settings
|
1951
|
-
#
|
1952
|
-
# includes in the request to the ad decision server.
|
2340
|
+
# A complex type that contains settings for prefetch retrieval from
|
2341
|
+
# the ad decision server (ADS).
|
1953
2342
|
# @return [Types::PrefetchRetrieval]
|
1954
2343
|
#
|
1955
2344
|
# @!attribute [rw] stream_id
|
2345
|
+
# An optional stream identifier that you can specify in order to
|
2346
|
+
# prefetch for multiple streams that use the same playback
|
2347
|
+
# configuration.
|
1956
2348
|
# @return [String]
|
1957
2349
|
#
|
1958
2350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetPrefetchScheduleResponse AWS API Documentation
|
@@ -1993,8 +2385,8 @@ module Aws::MediaTailor
|
|
1993
2385
|
# }
|
1994
2386
|
#
|
1995
2387
|
# @!attribute [rw] manifest_window_seconds
|
1996
|
-
# The total duration (in seconds) of each manifest. Minimum value:
|
1997
|
-
# seconds. Maximum value: 3600 seconds.
|
2388
|
+
# The total duration (in seconds) of each manifest. Minimum value:
|
2389
|
+
# `30` seconds. Maximum value: `3600` seconds.
|
1998
2390
|
# @return [Integer]
|
1999
2391
|
#
|
2000
2392
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/HlsPlaylistSettings AWS API Documentation
|
@@ -2041,17 +2433,18 @@ module Aws::MediaTailor
|
|
2041
2433
|
#
|
2042
2434
|
# @!attribute [rw] path
|
2043
2435
|
# The relative path to the URL for this VOD source. This is combined
|
2044
|
-
# with SourceLocation::HttpConfiguration::BaseUrl to form a valid
|
2436
|
+
# with `SourceLocation::HttpConfiguration::BaseUrl` to form a valid
|
2437
|
+
# URL.
|
2045
2438
|
# @return [String]
|
2046
2439
|
#
|
2047
2440
|
# @!attribute [rw] source_group
|
2048
2441
|
# The name of the source group. This has to match one of the
|
2049
|
-
# Channel::Outputs::SourceGroup
|
2442
|
+
# `Channel::Outputs::SourceGroup`.
|
2050
2443
|
# @return [String]
|
2051
2444
|
#
|
2052
2445
|
# @!attribute [rw] type
|
2053
2446
|
# The streaming protocol for this package configuration. Supported
|
2054
|
-
# values are HLS and DASH
|
2447
|
+
# values are `HLS` and `DASH`.
|
2055
2448
|
# @return [String]
|
2056
2449
|
#
|
2057
2450
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/HttpPackageConfiguration AWS API Documentation
|
@@ -2074,12 +2467,20 @@ module Aws::MediaTailor
|
|
2074
2467
|
# }
|
2075
2468
|
#
|
2076
2469
|
# @!attribute [rw] max_results
|
2470
|
+
# The maximum number of alerts that you want MediaTailor to return in
|
2471
|
+
# response to the current request. If there are more than `MaxResults`
|
2472
|
+
# alerts, use the value of `NextToken` in the response to get the next
|
2473
|
+
# page of results.
|
2077
2474
|
# @return [Integer]
|
2078
2475
|
#
|
2079
2476
|
# @!attribute [rw] next_token
|
2477
|
+
# Pagination token returned by the list request when results exceed
|
2478
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2479
|
+
# results.
|
2080
2480
|
# @return [String]
|
2081
2481
|
#
|
2082
2482
|
# @!attribute [rw] resource_arn
|
2483
|
+
# The Amazon Resource Name (ARN) of the resource.
|
2083
2484
|
# @return [String]
|
2084
2485
|
#
|
2085
2486
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListAlertsRequest AWS API Documentation
|
@@ -2092,15 +2493,14 @@ module Aws::MediaTailor
|
|
2092
2493
|
include Aws::Structure
|
2093
2494
|
end
|
2094
2495
|
|
2095
|
-
# Lists the alerts for a given resource.
|
2096
|
-
#
|
2097
2496
|
# @!attribute [rw] items
|
2098
|
-
#
|
2497
|
+
# A list of alerts that are associated with this resource.
|
2099
2498
|
# @return [Array<Types::Alert>]
|
2100
2499
|
#
|
2101
2500
|
# @!attribute [rw] next_token
|
2102
|
-
# Pagination token
|
2103
|
-
# next page of
|
2501
|
+
# Pagination token returned by the list request when results exceed
|
2502
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2503
|
+
# results.
|
2104
2504
|
# @return [String]
|
2105
2505
|
#
|
2106
2506
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListAlertsResponse AWS API Documentation
|
@@ -2121,25 +2521,86 @@ module Aws::MediaTailor
|
|
2121
2521
|
# }
|
2122
2522
|
#
|
2123
2523
|
# @!attribute [rw] max_results
|
2524
|
+
# The maximum number of channels that you want MediaTailor to return
|
2525
|
+
# in response to the current request. If there are more than
|
2526
|
+
# `MaxResults` channels, use the value of `NextToken` in the response
|
2527
|
+
# to get the next page of results.
|
2124
2528
|
# @return [Integer]
|
2125
2529
|
#
|
2126
2530
|
# @!attribute [rw] next_token
|
2531
|
+
# Pagination token returned by the list request when results exceed
|
2532
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2533
|
+
# results.
|
2127
2534
|
# @return [String]
|
2128
2535
|
#
|
2129
2536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListChannelsRequest AWS API Documentation
|
2130
2537
|
#
|
2131
2538
|
class ListChannelsRequest < Struct.new(
|
2132
2539
|
:max_results,
|
2133
|
-
:next_token)
|
2540
|
+
:next_token)
|
2541
|
+
SENSITIVE = []
|
2542
|
+
include Aws::Structure
|
2543
|
+
end
|
2544
|
+
|
2545
|
+
# @!attribute [rw] items
|
2546
|
+
# A list of channels that are associated with this account.
|
2547
|
+
# @return [Array<Types::Channel>]
|
2548
|
+
#
|
2549
|
+
# @!attribute [rw] next_token
|
2550
|
+
# Pagination token returned by the list request when results exceed
|
2551
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2552
|
+
# results.
|
2553
|
+
# @return [String]
|
2554
|
+
#
|
2555
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListChannelsResponse AWS API Documentation
|
2556
|
+
#
|
2557
|
+
class ListChannelsResponse < Struct.new(
|
2558
|
+
:items,
|
2559
|
+
:next_token)
|
2560
|
+
SENSITIVE = []
|
2561
|
+
include Aws::Structure
|
2562
|
+
end
|
2563
|
+
|
2564
|
+
# @note When making an API call, you may pass ListLiveSourcesRequest
|
2565
|
+
# data as a hash:
|
2566
|
+
#
|
2567
|
+
# {
|
2568
|
+
# max_results: 1,
|
2569
|
+
# next_token: "__string",
|
2570
|
+
# source_location_name: "__string", # required
|
2571
|
+
# }
|
2572
|
+
#
|
2573
|
+
# @!attribute [rw] max_results
|
2574
|
+
# The maximum number of live sources that you want MediaTailor to
|
2575
|
+
# return in response to the current request. If there are more than
|
2576
|
+
# `MaxResults` live sources, use the value of `NextToken` in the
|
2577
|
+
# response to get the next page of results.
|
2578
|
+
# @return [Integer]
|
2579
|
+
#
|
2580
|
+
# @!attribute [rw] next_token
|
2581
|
+
# Pagination token returned by the list request when results exceed
|
2582
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2583
|
+
# results.
|
2584
|
+
# @return [String]
|
2585
|
+
#
|
2586
|
+
# @!attribute [rw] source_location_name
|
2587
|
+
# The name of the source location associated with this Live Sources
|
2588
|
+
# list.
|
2589
|
+
# @return [String]
|
2590
|
+
#
|
2591
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListLiveSourcesRequest AWS API Documentation
|
2592
|
+
#
|
2593
|
+
class ListLiveSourcesRequest < Struct.new(
|
2594
|
+
:max_results,
|
2595
|
+
:next_token,
|
2596
|
+
:source_location_name)
|
2134
2597
|
SENSITIVE = []
|
2135
2598
|
include Aws::Structure
|
2136
2599
|
end
|
2137
2600
|
|
2138
|
-
# Returns a list of channels.
|
2139
|
-
#
|
2140
2601
|
# @!attribute [rw] items
|
2141
|
-
#
|
2142
|
-
# @return [Array<Types::
|
2602
|
+
# Lists the live sources.
|
2603
|
+
# @return [Array<Types::LiveSource>]
|
2143
2604
|
#
|
2144
2605
|
# @!attribute [rw] next_token
|
2145
2606
|
# Pagination token returned by the list request when results exceed
|
@@ -2147,9 +2608,9 @@ module Aws::MediaTailor
|
|
2147
2608
|
# results.
|
2148
2609
|
# @return [String]
|
2149
2610
|
#
|
2150
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/
|
2611
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListLiveSourcesResponse AWS API Documentation
|
2151
2612
|
#
|
2152
|
-
class
|
2613
|
+
class ListLiveSourcesResponse < Struct.new(
|
2153
2614
|
:items,
|
2154
2615
|
:next_token)
|
2155
2616
|
SENSITIVE = []
|
@@ -2165,9 +2626,16 @@ module Aws::MediaTailor
|
|
2165
2626
|
# }
|
2166
2627
|
#
|
2167
2628
|
# @!attribute [rw] max_results
|
2629
|
+
# The maximum number of playback configurations that you want
|
2630
|
+
# MediaTailor to return in response to the current request. If there
|
2631
|
+
# are more than `MaxResults` playback configurations, use the value of
|
2632
|
+
# `NextToken` in the response to get the next page of results.
|
2168
2633
|
# @return [Integer]
|
2169
2634
|
#
|
2170
2635
|
# @!attribute [rw] next_token
|
2636
|
+
# Pagination token returned by the list request when results exceed
|
2637
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2638
|
+
# results.
|
2171
2639
|
# @return [String]
|
2172
2640
|
#
|
2173
2641
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListPlaybackConfigurationsRequest AWS API Documentation
|
@@ -2179,8 +2647,6 @@ module Aws::MediaTailor
|
|
2179
2647
|
include Aws::Structure
|
2180
2648
|
end
|
2181
2649
|
|
2182
|
-
# Returns a list of playback configurations.
|
2183
|
-
#
|
2184
2650
|
# @!attribute [rw] items
|
2185
2651
|
# Array of playback configurations. This might be all the available
|
2186
2652
|
# configurations or a subset, depending on the settings that you
|
@@ -2202,9 +2668,6 @@ module Aws::MediaTailor
|
|
2202
2668
|
include Aws::Structure
|
2203
2669
|
end
|
2204
2670
|
|
2205
|
-
# Retrieves the prefetch schedule(s) for a specific playback
|
2206
|
-
# configuration.
|
2207
|
-
#
|
2208
2671
|
# @note When making an API call, you may pass ListPrefetchSchedulesRequest
|
2209
2672
|
# data as a hash:
|
2210
2673
|
#
|
@@ -2217,27 +2680,30 @@ module Aws::MediaTailor
|
|
2217
2680
|
#
|
2218
2681
|
# @!attribute [rw] max_results
|
2219
2682
|
# The maximum number of prefetch schedules that you want MediaTailor
|
2220
|
-
# to return in response to the current request. If
|
2221
|
-
#
|
2222
|
-
#
|
2683
|
+
# to return in response to the current request. If there are more than
|
2684
|
+
# `MaxResults` prefetch schedules, use the value of `NextToken` in the
|
2685
|
+
# response to get the next page of results.
|
2223
2686
|
# @return [Integer]
|
2224
2687
|
#
|
2225
2688
|
# @!attribute [rw] next_token
|
2226
|
-
# (Optional) If the playback configuration has more than MaxResults
|
2227
|
-
# prefetch schedules, use NextToken to get the second and subsequent
|
2689
|
+
# (Optional) If the playback configuration has more than `MaxResults`
|
2690
|
+
# prefetch schedules, use `NextToken` to get the second and subsequent
|
2228
2691
|
# pages of results.
|
2229
2692
|
#
|
2230
|
-
# For the first ListPrefetchSchedulesRequest request, omit this
|
2693
|
+
# For the first `ListPrefetchSchedulesRequest` request, omit this
|
2694
|
+
# value.
|
2231
2695
|
#
|
2232
|
-
# For the second and subsequent requests, get the value of NextToken
|
2233
|
-
# from the previous response and specify that value for NextToken in
|
2696
|
+
# For the second and subsequent requests, get the value of `NextToken`
|
2697
|
+
# from the previous response and specify that value for `NextToken` in
|
2234
2698
|
# the request.
|
2235
2699
|
#
|
2236
|
-
# If the previous response didn't include a NextToken element,
|
2237
|
-
# are no more prefetch schedules to get.
|
2700
|
+
# If the previous response didn't include a `NextToken` element,
|
2701
|
+
# there are no more prefetch schedules to get.
|
2238
2702
|
# @return [String]
|
2239
2703
|
#
|
2240
2704
|
# @!attribute [rw] playback_configuration_name
|
2705
|
+
# Retrieves the prefetch schedule(s) for a specific playback
|
2706
|
+
# configuration.
|
2241
2707
|
# @return [String]
|
2242
2708
|
#
|
2243
2709
|
# @!attribute [rw] stream_id
|
@@ -2256,16 +2722,15 @@ module Aws::MediaTailor
|
|
2256
2722
|
include Aws::Structure
|
2257
2723
|
end
|
2258
2724
|
|
2259
|
-
# The list of prefetch schedules.
|
2260
|
-
#
|
2261
2725
|
# @!attribute [rw] items
|
2262
|
-
# Lists the prefetch schedules. An empty Items list doesn't mean
|
2726
|
+
# Lists the prefetch schedules. An empty `Items` list doesn't mean
|
2263
2727
|
# there aren't more items to fetch, just that that page was empty.
|
2264
2728
|
# @return [Array<Types::PrefetchSchedule>]
|
2265
2729
|
#
|
2266
2730
|
# @!attribute [rw] next_token
|
2267
|
-
#
|
2268
|
-
#
|
2731
|
+
# Pagination token returned by the list request when results exceed
|
2732
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2733
|
+
# results.
|
2269
2734
|
# @return [String]
|
2270
2735
|
#
|
2271
2736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListPrefetchSchedulesResponse AWS API Documentation
|
@@ -2286,9 +2751,16 @@ module Aws::MediaTailor
|
|
2286
2751
|
# }
|
2287
2752
|
#
|
2288
2753
|
# @!attribute [rw] max_results
|
2754
|
+
# The maximum number of source locations that you want MediaTailor to
|
2755
|
+
# return in response to the current request. If there are more than
|
2756
|
+
# `MaxResults` source locations, use the value of `NextToken` in the
|
2757
|
+
# response to get the next page of results.
|
2289
2758
|
# @return [Integer]
|
2290
2759
|
#
|
2291
2760
|
# @!attribute [rw] next_token
|
2761
|
+
# Pagination token returned by the list request when results exceed
|
2762
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2763
|
+
# results.
|
2292
2764
|
# @return [String]
|
2293
2765
|
#
|
2294
2766
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListSourceLocationsRequest AWS API Documentation
|
@@ -2300,15 +2772,14 @@ module Aws::MediaTailor
|
|
2300
2772
|
include Aws::Structure
|
2301
2773
|
end
|
2302
2774
|
|
2303
|
-
# Lists the source locations.
|
2304
|
-
#
|
2305
2775
|
# @!attribute [rw] items
|
2306
|
-
#
|
2776
|
+
# A list of source locations.
|
2307
2777
|
# @return [Array<Types::SourceLocation>]
|
2308
2778
|
#
|
2309
2779
|
# @!attribute [rw] next_token
|
2310
|
-
# Pagination token
|
2311
|
-
# next page of
|
2780
|
+
# Pagination token returned by the list request when results exceed
|
2781
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2782
|
+
# results.
|
2312
2783
|
# @return [String]
|
2313
2784
|
#
|
2314
2785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListSourceLocationsResponse AWS API Documentation
|
@@ -2328,6 +2799,7 @@ module Aws::MediaTailor
|
|
2328
2799
|
# }
|
2329
2800
|
#
|
2330
2801
|
# @!attribute [rw] resource_arn
|
2802
|
+
# The Amazon Resource Name (ARN) associated with this resource.
|
2331
2803
|
# @return [String]
|
2332
2804
|
#
|
2333
2805
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListTagsForResourceRequest AWS API Documentation
|
@@ -2339,6 +2811,14 @@ module Aws::MediaTailor
|
|
2339
2811
|
end
|
2340
2812
|
|
2341
2813
|
# @!attribute [rw] tags
|
2814
|
+
# The tags associated with this resource. Tags are key-value pairs
|
2815
|
+
# that you can associate with Amazon resources to help with
|
2816
|
+
# organization, access control, and cost tracking. For more
|
2817
|
+
# information, see [Tagging AWS Elemental MediaTailor Resources][1].
|
2818
|
+
#
|
2819
|
+
#
|
2820
|
+
#
|
2821
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
2342
2822
|
# @return [Hash<String,String>]
|
2343
2823
|
#
|
2344
2824
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListTagsForResourceResponse AWS API Documentation
|
@@ -2359,12 +2839,21 @@ module Aws::MediaTailor
|
|
2359
2839
|
# }
|
2360
2840
|
#
|
2361
2841
|
# @!attribute [rw] max_results
|
2842
|
+
# The maximum number of VOD sources that you want MediaTailor to
|
2843
|
+
# return in response to the current request. If there are more than
|
2844
|
+
# `MaxResults` VOD sources, use the value of `NextToken` in the
|
2845
|
+
# response to get the next page of results.
|
2362
2846
|
# @return [Integer]
|
2363
2847
|
#
|
2364
2848
|
# @!attribute [rw] next_token
|
2849
|
+
# Pagination token returned by the list request when results exceed
|
2850
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2851
|
+
# results.
|
2365
2852
|
# @return [String]
|
2366
2853
|
#
|
2367
2854
|
# @!attribute [rw] source_location_name
|
2855
|
+
# The name of the source location associated with this VOD Source
|
2856
|
+
# list.
|
2368
2857
|
# @return [String]
|
2369
2858
|
#
|
2370
2859
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListVodSourcesRequest AWS API Documentation
|
@@ -2377,15 +2866,14 @@ module Aws::MediaTailor
|
|
2377
2866
|
include Aws::Structure
|
2378
2867
|
end
|
2379
2868
|
|
2380
|
-
# An array of VOD sources.
|
2381
|
-
#
|
2382
2869
|
# @!attribute [rw] items
|
2383
2870
|
# Lists the VOD sources.
|
2384
2871
|
# @return [Array<Types::VodSource>]
|
2385
2872
|
#
|
2386
2873
|
# @!attribute [rw] next_token
|
2387
|
-
# Pagination token
|
2388
|
-
# next page of
|
2874
|
+
# Pagination token returned by the list request when results exceed
|
2875
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2876
|
+
# results.
|
2389
2877
|
# @return [String]
|
2390
2878
|
#
|
2391
2879
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListVodSourcesResponse AWS API Documentation
|
@@ -2432,18 +2920,69 @@ module Aws::MediaTailor
|
|
2432
2920
|
include Aws::Structure
|
2433
2921
|
end
|
2434
2922
|
|
2923
|
+
# Live source configuration parameters.
|
2924
|
+
#
|
2925
|
+
# @!attribute [rw] arn
|
2926
|
+
# The ARN for the live source.
|
2927
|
+
# @return [String]
|
2928
|
+
#
|
2929
|
+
# @!attribute [rw] creation_time
|
2930
|
+
# The timestamp that indicates when the live source was created.
|
2931
|
+
# @return [Time]
|
2932
|
+
#
|
2933
|
+
# @!attribute [rw] http_package_configurations
|
2934
|
+
# The HTTP package configurations for the live source.
|
2935
|
+
# @return [Array<Types::HttpPackageConfiguration>]
|
2936
|
+
#
|
2937
|
+
# @!attribute [rw] last_modified_time
|
2938
|
+
# The timestamp that indicates when the live source was last modified.
|
2939
|
+
# @return [Time]
|
2940
|
+
#
|
2941
|
+
# @!attribute [rw] live_source_name
|
2942
|
+
# The name that's used to refer to a live source.
|
2943
|
+
# @return [String]
|
2944
|
+
#
|
2945
|
+
# @!attribute [rw] source_location_name
|
2946
|
+
# The name of the source location.
|
2947
|
+
# @return [String]
|
2948
|
+
#
|
2949
|
+
# @!attribute [rw] tags
|
2950
|
+
# The tags assigned to the live source. Tags are key-value pairs that
|
2951
|
+
# you can associate with Amazon resources to help with organization,
|
2952
|
+
# access control, and cost tracking. For more information, see
|
2953
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
2954
|
+
#
|
2955
|
+
#
|
2956
|
+
#
|
2957
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
2958
|
+
# @return [Hash<String,String>]
|
2959
|
+
#
|
2960
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/LiveSource AWS API Documentation
|
2961
|
+
#
|
2962
|
+
class LiveSource < Struct.new(
|
2963
|
+
:arn,
|
2964
|
+
:creation_time,
|
2965
|
+
:http_package_configurations,
|
2966
|
+
:last_modified_time,
|
2967
|
+
:live_source_name,
|
2968
|
+
:source_location_name,
|
2969
|
+
:tags)
|
2970
|
+
SENSITIVE = []
|
2971
|
+
include Aws::Structure
|
2972
|
+
end
|
2973
|
+
|
2435
2974
|
# Returns Amazon CloudWatch log settings for a playback configuration.
|
2436
2975
|
#
|
2437
2976
|
# @!attribute [rw] percent_enabled
|
2438
2977
|
# The percentage of session logs that MediaTailor sends to your
|
2439
2978
|
# Cloudwatch Logs account. For example, if your playback configuration
|
2440
|
-
# has 1000 sessions and percentEnabled is set to 60
|
2441
|
-
# logs for 600 of the sessions to CloudWatch Logs. MediaTailor
|
2442
|
-
# at random which of the playback configuration sessions to
|
2443
|
-
# for. If you want to view logs for a specific session, you
|
2444
|
-
# the [debug log mode][1].
|
2979
|
+
# has 1000 sessions and `percentEnabled` is set to `60`, MediaTailor
|
2980
|
+
# sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor
|
2981
|
+
# decides at random which of the playback configuration sessions to
|
2982
|
+
# send logs for. If you want to view logs for a specific session, you
|
2983
|
+
# can use the [debug log mode][1].
|
2445
2984
|
#
|
2446
|
-
# Valid values: 0 - 100
|
2985
|
+
# Valid values: `0` - `100`
|
2447
2986
|
#
|
2448
2987
|
#
|
2449
2988
|
#
|
@@ -2472,13 +3011,14 @@ module Aws::MediaTailor
|
|
2472
3011
|
# }
|
2473
3012
|
#
|
2474
3013
|
# @!attribute [rw] ad_marker_passthrough
|
2475
|
-
# For HLS, when set to true
|
2476
|
-
# EXT-X-CUE-OUT
|
2477
|
-
# origin manifest to the MediaTailor personalized
|
3014
|
+
# For HLS, when set to `true`, MediaTailor passes through
|
3015
|
+
# `EXT-X-CUE-IN`, `EXT-X-CUE-OUT`, and `EXT-X-SPLICEPOINT-SCTE35` ad
|
3016
|
+
# markers from the origin manifest to the MediaTailor personalized
|
3017
|
+
# manifest.
|
2478
3018
|
#
|
2479
3019
|
# No logic is applied to these ad markers. For example, if
|
2480
|
-
# EXT-X-CUE-OUT has a value of 60
|
2481
|
-
# break, MediaTailor will not set the value to 0
|
3020
|
+
# `EXT-X-CUE-OUT` has a value of `60`, but no ads are filled for that
|
3021
|
+
# ad break, MediaTailor will not set the value to `0`.
|
2482
3022
|
# @return [Types::AdMarkerPassthrough]
|
2483
3023
|
#
|
2484
3024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ManifestProcessingRules AWS API Documentation
|
@@ -2489,7 +3029,7 @@ module Aws::MediaTailor
|
|
2489
3029
|
include Aws::Structure
|
2490
3030
|
end
|
2491
3031
|
|
2492
|
-
#
|
3032
|
+
# A playback configuration. For information about MediaTailor
|
2493
3033
|
# configurations, see [Working with configurations in AWS Elemental
|
2494
3034
|
# MediaTailor][1].
|
2495
3035
|
#
|
@@ -2608,7 +3148,14 @@ module Aws::MediaTailor
|
|
2608
3148
|
# @return [String]
|
2609
3149
|
#
|
2610
3150
|
# @!attribute [rw] tags
|
2611
|
-
# The tags to assign to the playback configuration.
|
3151
|
+
# The tags to assign to the playback configuration. Tags are key-value
|
3152
|
+
# pairs that you can associate with Amazon resources to help with
|
3153
|
+
# organization, access control, and cost tracking. For more
|
3154
|
+
# information, see [Tagging AWS Elemental MediaTailor Resources][1].
|
3155
|
+
#
|
3156
|
+
#
|
3157
|
+
#
|
3158
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
2612
3159
|
# @return [Hash<String,String>]
|
2613
3160
|
#
|
2614
3161
|
# @!attribute [rw] transcode_profile_name
|
@@ -2669,7 +3216,7 @@ module Aws::MediaTailor
|
|
2669
3216
|
# @!attribute [rw] avail_matching_criteria
|
2670
3217
|
# If you only want MediaTailor to insert prefetched ads into avails
|
2671
3218
|
# (ad breaks) that match specific dynamic variables, such as
|
2672
|
-
# scte.
|
3219
|
+
# `scte.event_id`, set the avail matching criteria.
|
2673
3220
|
# @return [Array<Types::AvailMatchingCriteria>]
|
2674
3221
|
#
|
2675
3222
|
# @!attribute [rw] end_time
|
@@ -2677,12 +3224,12 @@ module Aws::MediaTailor
|
|
2677
3224
|
# use in an ad break. MediaTailor automatically deletes prefetch
|
2678
3225
|
# schedules no less than seven days after the end time. If you'd like
|
2679
3226
|
# to manually delete the prefetch schedule, you can call
|
2680
|
-
# DeletePrefetchSchedule
|
3227
|
+
# `DeletePrefetchSchedule`.
|
2681
3228
|
# @return [Time]
|
2682
3229
|
#
|
2683
3230
|
# @!attribute [rw] start_time
|
2684
3231
|
# The time when prefetched ads are considered for use in an ad break.
|
2685
|
-
# If you don't specify StartTime
|
3232
|
+
# If you don't specify `StartTime`, the prefetched ads are available
|
2686
3233
|
# after MediaTailor retrives them from the ad decision server.
|
2687
3234
|
# @return [Time]
|
2688
3235
|
#
|
@@ -2715,9 +3262,9 @@ module Aws::MediaTailor
|
|
2715
3262
|
# The dynamic variables to use for substitution during prefetch
|
2716
3263
|
# requests to the ad decision server (ADS).
|
2717
3264
|
#
|
2718
|
-
# You
|
3265
|
+
# You initially configure [dynamic variables][1] for the ADS URL when
|
2719
3266
|
# you set up your playback configuration. When you specify
|
2720
|
-
# DynamicVariables for prefetch retrieval, MediaTailor includes the
|
3267
|
+
# `DynamicVariables` for prefetch retrieval, MediaTailor includes the
|
2721
3268
|
# dynamic variables in the request to the ADS.
|
2722
3269
|
#
|
2723
3270
|
#
|
@@ -2748,7 +3295,14 @@ module Aws::MediaTailor
|
|
2748
3295
|
include Aws::Structure
|
2749
3296
|
end
|
2750
3297
|
|
2751
|
-
# A
|
3298
|
+
# A prefetch schedule allows you to tell MediaTailor to fetch and
|
3299
|
+
# prepare certain ads before an ad break happens. For more information
|
3300
|
+
# about ad prefetching, see [Using ad prefetching][1] in the
|
3301
|
+
# *MediaTailor User Guide*.
|
3302
|
+
#
|
3303
|
+
#
|
3304
|
+
#
|
3305
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/prefetching-ads.html
|
2752
3306
|
#
|
2753
3307
|
# @!attribute [rw] arn
|
2754
3308
|
# The Amazon Resource Name (ARN) of the prefetch schedule.
|
@@ -2797,8 +3351,6 @@ module Aws::MediaTailor
|
|
2797
3351
|
include Aws::Structure
|
2798
3352
|
end
|
2799
3353
|
|
2800
|
-
# Adds an IAM policy for the channel.
|
2801
|
-
#
|
2802
3354
|
# @note When making an API call, you may pass PutChannelPolicyRequest
|
2803
3355
|
# data as a hash:
|
2804
3356
|
#
|
@@ -2808,6 +3360,7 @@ module Aws::MediaTailor
|
|
2808
3360
|
# }
|
2809
3361
|
#
|
2810
3362
|
# @!attribute [rw] channel_name
|
3363
|
+
# The channel name associated with this Channel Policy.
|
2811
3364
|
# @return [String]
|
2812
3365
|
#
|
2813
3366
|
# @!attribute [rw] policy
|
@@ -2823,14 +3376,10 @@ module Aws::MediaTailor
|
|
2823
3376
|
include Aws::Structure
|
2824
3377
|
end
|
2825
3378
|
|
2826
|
-
# This response includes only the "type" : "object" property.
|
2827
|
-
#
|
2828
3379
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PutChannelPolicyResponse AWS API Documentation
|
2829
3380
|
#
|
2830
3381
|
class PutChannelPolicyResponse < Aws::EmptyStructure; end
|
2831
3382
|
|
2832
|
-
# The configuration for creating a playback configuration.
|
2833
|
-
#
|
2834
3383
|
# @note When making an API call, you may pass PutPlaybackConfigurationRequest
|
2835
3384
|
# data as a hash:
|
2836
3385
|
#
|
@@ -2866,7 +3415,7 @@ module Aws::MediaTailor
|
|
2866
3415
|
# enabled: false,
|
2867
3416
|
# },
|
2868
3417
|
# },
|
2869
|
-
# name: "__string",
|
3418
|
+
# name: "__string", # required
|
2870
3419
|
# personalization_threshold_seconds: 1,
|
2871
3420
|
# slate_ad_url: "__string",
|
2872
3421
|
# tags: {
|
@@ -2965,7 +3514,14 @@ module Aws::MediaTailor
|
|
2965
3514
|
# @return [String]
|
2966
3515
|
#
|
2967
3516
|
# @!attribute [rw] tags
|
2968
|
-
# The tags to assign to the playback configuration.
|
3517
|
+
# The tags to assign to the playback configuration. Tags are key-value
|
3518
|
+
# pairs that you can associate with Amazon resources to help with
|
3519
|
+
# organization, access control, and cost tracking. For more
|
3520
|
+
# information, see [Tagging AWS Elemental MediaTailor Resources][1].
|
3521
|
+
#
|
3522
|
+
#
|
3523
|
+
#
|
3524
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
2969
3525
|
# @return [Hash<String,String>]
|
2970
3526
|
#
|
2971
3527
|
# @!attribute [rw] transcode_profile_name
|
@@ -3002,6 +3558,12 @@ module Aws::MediaTailor
|
|
3002
3558
|
end
|
3003
3559
|
|
3004
3560
|
# @!attribute [rw] ad_decision_server_url
|
3561
|
+
# The URL for the ad decision server (ADS). This includes the
|
3562
|
+
# specification of static parameters and placeholders for dynamic
|
3563
|
+
# parameters. AWS Elemental MediaTailor substitutes player-specific
|
3564
|
+
# and session-specific parameters as needed when calling the ADS.
|
3565
|
+
# Alternately, for testing you can provide a static VAST URL. The
|
3566
|
+
# maximum length is 25,000 characters.
|
3005
3567
|
# @return [String]
|
3006
3568
|
#
|
3007
3569
|
# @!attribute [rw] avail_suppression
|
@@ -3030,7 +3592,13 @@ module Aws::MediaTailor
|
|
3030
3592
|
# @return [Types::CdnConfiguration]
|
3031
3593
|
#
|
3032
3594
|
# @!attribute [rw] configuration_aliases
|
3033
|
-
# The
|
3595
|
+
# The player parameters and aliases used as dynamic variables during
|
3596
|
+
# session initialization. For more information, see [Domain
|
3597
|
+
# Variables][1].
|
3598
|
+
#
|
3599
|
+
#
|
3600
|
+
#
|
3601
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domain.html
|
3034
3602
|
# @return [Hash<String,Hash<String,String>>]
|
3035
3603
|
#
|
3036
3604
|
# @!attribute [rw] dash_configuration
|
@@ -3046,7 +3614,7 @@ module Aws::MediaTailor
|
|
3046
3614
|
# @return [Types::LivePreRollConfiguration]
|
3047
3615
|
#
|
3048
3616
|
# @!attribute [rw] log_configuration
|
3049
|
-
#
|
3617
|
+
# The Amazon CloudWatch log settings for a playback configuration.
|
3050
3618
|
# @return [Types::LogConfiguration]
|
3051
3619
|
#
|
3052
3620
|
# @!attribute [rw] manifest_processing_rules
|
@@ -3056,30 +3624,71 @@ module Aws::MediaTailor
|
|
3056
3624
|
# @return [Types::ManifestProcessingRules]
|
3057
3625
|
#
|
3058
3626
|
# @!attribute [rw] name
|
3627
|
+
# The identifier for the playback configuration.
|
3059
3628
|
# @return [String]
|
3060
3629
|
#
|
3061
3630
|
# @!attribute [rw] personalization_threshold_seconds
|
3631
|
+
# Defines the maximum duration of underfilled ad time (in seconds)
|
3632
|
+
# allowed in an ad break. If the duration of underfilled ad time
|
3633
|
+
# exceeds the personalization threshold, then the personalization of
|
3634
|
+
# the ad break is abandoned and the underlying content is shown. This
|
3635
|
+
# feature applies to *ad replacement* in live and VOD streams, rather
|
3636
|
+
# than ad insertion, because it relies on an underlying content
|
3637
|
+
# stream. For more information about ad break behavior, including ad
|
3638
|
+
# replacement and insertion, see [Ad Behavior in AWS Elemental
|
3639
|
+
# MediaTailor][1].
|
3640
|
+
#
|
3641
|
+
#
|
3642
|
+
#
|
3643
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html
|
3062
3644
|
# @return [Integer]
|
3063
3645
|
#
|
3064
3646
|
# @!attribute [rw] playback_configuration_arn
|
3647
|
+
# The Amazon Resource Name (ARN) associated with the playback
|
3648
|
+
# configuration.
|
3065
3649
|
# @return [String]
|
3066
3650
|
#
|
3067
3651
|
# @!attribute [rw] playback_endpoint_prefix
|
3652
|
+
# The playback endpoint prefix associated with the playback
|
3653
|
+
# configuration.
|
3068
3654
|
# @return [String]
|
3069
3655
|
#
|
3070
3656
|
# @!attribute [rw] session_initialization_endpoint_prefix
|
3657
|
+
# The session initialization endpoint prefix associated with the
|
3658
|
+
# playback configuration.
|
3071
3659
|
# @return [String]
|
3072
3660
|
#
|
3073
3661
|
# @!attribute [rw] slate_ad_url
|
3662
|
+
# The URL for a high-quality video asset to transcode and use to fill
|
3663
|
+
# in time that's not used by ads. AWS Elemental MediaTailor shows the
|
3664
|
+
# slate to fill in gaps in media content. Configuring the slate is
|
3665
|
+
# optional for non-VPAID configurations. For VPAID, the slate is
|
3666
|
+
# required because MediaTailor provides it in the slots that are
|
3667
|
+
# designated for dynamic ad content. The slate must be a high-quality
|
3668
|
+
# asset that contains both audio and video.
|
3074
3669
|
# @return [String]
|
3075
3670
|
#
|
3076
3671
|
# @!attribute [rw] tags
|
3672
|
+
# The tags to assign to the playback configuration. Tags are key-value
|
3673
|
+
# pairs that you can associate with Amazon resources to help with
|
3674
|
+
# organization, access control, and cost tracking. For more
|
3675
|
+
# information, see [Tagging AWS Elemental MediaTailor Resources][1].
|
3676
|
+
#
|
3677
|
+
#
|
3678
|
+
#
|
3679
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
3077
3680
|
# @return [Hash<String,String>]
|
3078
3681
|
#
|
3079
3682
|
# @!attribute [rw] transcode_profile_name
|
3683
|
+
# The name that is used to associate this playback configuration with
|
3684
|
+
# a custom transcode profile. This overrides the dynamic transcoding
|
3685
|
+
# defaults of MediaTailor. Use this only if you have already set up
|
3686
|
+
# custom profiles with the help of AWS Support.
|
3080
3687
|
# @return [String]
|
3081
3688
|
#
|
3082
3689
|
# @!attribute [rw] video_content_source_url
|
3690
|
+
# The URL prefix for the parent manifest for the stream, minus the
|
3691
|
+
# asset ID. The maximum length is 512 characters.
|
3083
3692
|
# @return [String]
|
3084
3693
|
#
|
3085
3694
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PutPlaybackConfigurationResponse AWS API Documentation
|
@@ -3137,12 +3746,12 @@ module Aws::MediaTailor
|
|
3137
3746
|
#
|
3138
3747
|
# @!attribute [rw] manifest_name
|
3139
3748
|
# The name of the manifest for the channel. The name appears in the
|
3140
|
-
# PlaybackUrl
|
3749
|
+
# `PlaybackUrl`.
|
3141
3750
|
# @return [String]
|
3142
3751
|
#
|
3143
3752
|
# @!attribute [rw] source_group
|
3144
|
-
# A string used to match which HttpPackageConfiguration is used for
|
3145
|
-
# each VodSource
|
3753
|
+
# A string used to match which `HttpPackageConfiguration` is used for
|
3754
|
+
# each `VodSource`.
|
3146
3755
|
# @return [String]
|
3147
3756
|
#
|
3148
3757
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/RequestOutputItem AWS API Documentation
|
@@ -3156,7 +3765,7 @@ module Aws::MediaTailor
|
|
3156
3765
|
include Aws::Structure
|
3157
3766
|
end
|
3158
3767
|
|
3159
|
-
#
|
3768
|
+
# The output item response.
|
3160
3769
|
#
|
3161
3770
|
# @!attribute [rw] dash_playlist_settings
|
3162
3771
|
# DASH manifest configuration settings.
|
@@ -3230,6 +3839,7 @@ module Aws::MediaTailor
|
|
3230
3839
|
#
|
3231
3840
|
# {
|
3232
3841
|
# transition: { # required
|
3842
|
+
# duration_millis: 1,
|
3233
3843
|
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
3234
3844
|
# relative_program: "__string",
|
3235
3845
|
# scheduled_start_time_millis: 1,
|
@@ -3267,6 +3877,10 @@ module Aws::MediaTailor
|
|
3267
3877
|
# The name of the channel that uses this schedule.
|
3268
3878
|
# @return [String]
|
3269
3879
|
#
|
3880
|
+
# @!attribute [rw] live_source_name
|
3881
|
+
# The name of the live source used for the program.
|
3882
|
+
# @return [String]
|
3883
|
+
#
|
3270
3884
|
# @!attribute [rw] program_name
|
3271
3885
|
# The name of the program.
|
3272
3886
|
# @return [String]
|
@@ -3277,8 +3891,6 @@ module Aws::MediaTailor
|
|
3277
3891
|
#
|
3278
3892
|
# @!attribute [rw] schedule_entry_type
|
3279
3893
|
# The type of schedule entry.
|
3280
|
-
#
|
3281
|
-
# Valid values: PROGRAM or FILLER\_SLATE.
|
3282
3894
|
# @return [String]
|
3283
3895
|
#
|
3284
3896
|
# @!attribute [rw] source_location_name
|
@@ -3296,6 +3908,7 @@ module Aws::MediaTailor
|
|
3296
3908
|
:approximate_start_time,
|
3297
3909
|
:arn,
|
3298
3910
|
:channel_name,
|
3911
|
+
:live_source_name,
|
3299
3912
|
:program_name,
|
3300
3913
|
:schedule_ad_breaks,
|
3301
3914
|
:schedule_entry_type,
|
@@ -3352,6 +3965,8 @@ module Aws::MediaTailor
|
|
3352
3965
|
include Aws::Structure
|
3353
3966
|
end
|
3354
3967
|
|
3968
|
+
# The segment delivery configuration settings.
|
3969
|
+
#
|
3355
3970
|
# @note When making an API call, you may pass SegmentDeliveryConfiguration
|
3356
3971
|
# data as a hash:
|
3357
3972
|
#
|
@@ -3365,8 +3980,8 @@ module Aws::MediaTailor
|
|
3365
3980
|
# you're using to serve segments. This is typically a content
|
3366
3981
|
# delivery network (CDN). The URL can be absolute or relative. To use
|
3367
3982
|
# an absolute URL include the protocol, such as
|
3368
|
-
# https://example.com/some/path
|
3369
|
-
# relative path, such as
|
3983
|
+
# `https://example.com/some/path`. To use a relative URL specify the
|
3984
|
+
# relative path, such as `/some/path*`.
|
3370
3985
|
# @return [String]
|
3371
3986
|
#
|
3372
3987
|
# @!attribute [rw] name
|
@@ -3412,7 +4027,13 @@ module Aws::MediaTailor
|
|
3412
4027
|
include Aws::Structure
|
3413
4028
|
end
|
3414
4029
|
|
3415
|
-
#
|
4030
|
+
# A source location is a container for sources. For more information
|
4031
|
+
# about source locations, see [Working with source locations][1] in the
|
4032
|
+
# *MediaTailor User Guide*.
|
4033
|
+
#
|
4034
|
+
#
|
4035
|
+
#
|
4036
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-source-locations.html
|
3416
4037
|
#
|
3417
4038
|
# @!attribute [rw] access_configuration
|
3418
4039
|
# The access configuration for the source location.
|
@@ -3440,8 +4061,7 @@ module Aws::MediaTailor
|
|
3440
4061
|
# @return [Time]
|
3441
4062
|
#
|
3442
4063
|
# @!attribute [rw] segment_delivery_configurations
|
3443
|
-
#
|
3444
|
-
# location.
|
4064
|
+
# The segment delivery configurations for the source location.
|
3445
4065
|
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
3446
4066
|
#
|
3447
4067
|
# @!attribute [rw] source_location_name
|
@@ -3449,7 +4069,14 @@ module Aws::MediaTailor
|
|
3449
4069
|
# @return [String]
|
3450
4070
|
#
|
3451
4071
|
# @!attribute [rw] tags
|
3452
|
-
# The tags assigned to the source location.
|
4072
|
+
# The tags assigned to the source location. Tags are key-value pairs
|
4073
|
+
# that you can associate with Amazon resources to help with
|
4074
|
+
# organization, access control, and cost tracking. For more
|
4075
|
+
# information, see [Tagging AWS Elemental MediaTailor Resources][1].
|
4076
|
+
#
|
4077
|
+
#
|
4078
|
+
#
|
4079
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
3453
4080
|
# @return [Hash<String,String>]
|
3454
4081
|
#
|
3455
4082
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/SourceLocation AWS API Documentation
|
@@ -3481,27 +4108,27 @@ module Aws::MediaTailor
|
|
3481
4108
|
# }
|
3482
4109
|
#
|
3483
4110
|
# @!attribute [rw] avail_num
|
3484
|
-
# This is written to
|
3485
|
-
# 9.7.3.1 of the SCTE-35 specification. The default value is 0
|
3486
|
-
# must be between 0 and 256
|
4111
|
+
# This is written to `splice_insert.avail_num`, as defined in section
|
4112
|
+
# 9.7.3.1 of the SCTE-35 specification. The default value is `0`.
|
4113
|
+
# Values must be between `0` and `256`, inclusive.
|
3487
4114
|
# @return [Integer]
|
3488
4115
|
#
|
3489
4116
|
# @!attribute [rw] avails_expected
|
3490
|
-
# This is written to
|
4117
|
+
# This is written to `splice_insert.avails_expected`, as defined in
|
3491
4118
|
# section 9.7.3.1 of the SCTE-35 specification. The default value is
|
3492
|
-
# 0
|
4119
|
+
# `0`. Values must be between `0` and `256`, inclusive.
|
3493
4120
|
# @return [Integer]
|
3494
4121
|
#
|
3495
4122
|
# @!attribute [rw] splice_event_id
|
3496
|
-
# This is written to
|
4123
|
+
# This is written to `splice_insert.splice_event_id`, as defined in
|
3497
4124
|
# section 9.7.3.1 of the SCTE-35 specification. The default value is
|
3498
|
-
# 1
|
4125
|
+
# `1`.
|
3499
4126
|
# @return [Integer]
|
3500
4127
|
#
|
3501
4128
|
# @!attribute [rw] unique_program_id
|
3502
|
-
# This is written to
|
4129
|
+
# This is written to `splice_insert.unique_program_id`, as defined in
|
3503
4130
|
# section 9.7.3.1 of the SCTE-35 specification. The default value is
|
3504
|
-
# 0
|
4131
|
+
# `0`. Values must be between `0` and `256`, inclusive.
|
3505
4132
|
# @return [Integer]
|
3506
4133
|
#
|
3507
4134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/SpliceInsertMessage AWS API Documentation
|
@@ -3523,6 +4150,7 @@ module Aws::MediaTailor
|
|
3523
4150
|
# }
|
3524
4151
|
#
|
3525
4152
|
# @!attribute [rw] channel_name
|
4153
|
+
# The name of the channel.
|
3526
4154
|
# @return [String]
|
3527
4155
|
#
|
3528
4156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/StartChannelRequest AWS API Documentation
|
@@ -3545,6 +4173,7 @@ module Aws::MediaTailor
|
|
3545
4173
|
# }
|
3546
4174
|
#
|
3547
4175
|
# @!attribute [rw] channel_name
|
4176
|
+
# The name of the channel.
|
3548
4177
|
# @return [String]
|
3549
4178
|
#
|
3550
4179
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/StopChannelRequest AWS API Documentation
|
@@ -3570,9 +4199,18 @@ module Aws::MediaTailor
|
|
3570
4199
|
# }
|
3571
4200
|
#
|
3572
4201
|
# @!attribute [rw] resource_arn
|
4202
|
+
# The Amazon Resource Name (ARN) associated with the resource.
|
3573
4203
|
# @return [String]
|
3574
4204
|
#
|
3575
4205
|
# @!attribute [rw] tags
|
4206
|
+
# The tags to assign to the resource. Tags are key-value pairs that
|
4207
|
+
# you can associate with Amazon resources to help with organization,
|
4208
|
+
# access control, and cost tracking. For more information, see
|
4209
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
4210
|
+
#
|
4211
|
+
#
|
4212
|
+
#
|
4213
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
3576
4214
|
# @return [Hash<String,String>]
|
3577
4215
|
#
|
3578
4216
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/TagResourceRequest AWS API Documentation
|
@@ -3590,20 +4228,25 @@ module Aws::MediaTailor
|
|
3590
4228
|
# data as a hash:
|
3591
4229
|
#
|
3592
4230
|
# {
|
4231
|
+
# duration_millis: 1,
|
3593
4232
|
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
3594
4233
|
# relative_program: "__string",
|
3595
4234
|
# scheduled_start_time_millis: 1,
|
3596
4235
|
# type: "__string", # required
|
3597
4236
|
# }
|
3598
4237
|
#
|
4238
|
+
# @!attribute [rw] duration_millis
|
4239
|
+
# The duration of the live program in seconds.
|
4240
|
+
# @return [Integer]
|
4241
|
+
#
|
3599
4242
|
# @!attribute [rw] relative_position
|
3600
4243
|
# The position where this program will be inserted relative to the
|
3601
|
-
# RelativePosition
|
4244
|
+
# `RelativePosition`.
|
3602
4245
|
# @return [String]
|
3603
4246
|
#
|
3604
4247
|
# @!attribute [rw] relative_program
|
3605
4248
|
# The name of the program that this program will be inserted next to,
|
3606
|
-
# as defined by RelativePosition
|
4249
|
+
# as defined by `RelativePosition`.
|
3607
4250
|
# @return [String]
|
3608
4251
|
#
|
3609
4252
|
# @!attribute [rw] scheduled_start_time_millis
|
@@ -3613,27 +4256,29 @@ module Aws::MediaTailor
|
|
3613
4256
|
#
|
3614
4257
|
# @!attribute [rw] type
|
3615
4258
|
# Defines when the program plays in the schedule. You can set the
|
3616
|
-
# value to ABSOLUTE or RELATIVE
|
4259
|
+
# value to `ABSOLUTE` or `RELATIVE`.
|
3617
4260
|
#
|
3618
|
-
# ABSOLUTE - The program plays at a specific wall clock time. This
|
3619
|
-
# setting can only be used for channels using the LINEAR
|
4261
|
+
# `ABSOLUTE` - The program plays at a specific wall clock time. This
|
4262
|
+
# setting can only be used for channels using the `LINEAR`
|
4263
|
+
# `PlaybackMode`.
|
3620
4264
|
#
|
3621
|
-
# Note the following considerations when using ABSOLUTE transitions:
|
4265
|
+
# Note the following considerations when using `ABSOLUTE` transitions:
|
3622
4266
|
#
|
3623
4267
|
# If the preceding program in the schedule has a duration that extends
|
3624
4268
|
# past the wall clock time, MediaTailor truncates the preceding
|
3625
4269
|
# program on a common segment boundary.
|
3626
4270
|
#
|
3627
|
-
# If there are gaps in playback, MediaTailor plays the FillerSlate
|
3628
|
-
# configured for your linear channel.
|
4271
|
+
# If there are gaps in playback, MediaTailor plays the `FillerSlate`
|
4272
|
+
# you configured for your linear channel.
|
3629
4273
|
#
|
3630
|
-
# RELATIVE - The program is inserted into the schedule either before
|
3631
|
-
# or after a program that you specify via RelativePosition
|
4274
|
+
# `RELATIVE` - The program is inserted into the schedule either before
|
4275
|
+
# or after a program that you specify via `RelativePosition`.
|
3632
4276
|
# @return [String]
|
3633
4277
|
#
|
3634
4278
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/Transition AWS API Documentation
|
3635
4279
|
#
|
3636
4280
|
class Transition < Struct.new(
|
4281
|
+
:duration_millis,
|
3637
4282
|
:relative_position,
|
3638
4283
|
:relative_program,
|
3639
4284
|
:scheduled_start_time_millis,
|
@@ -3651,9 +4296,11 @@ module Aws::MediaTailor
|
|
3651
4296
|
# }
|
3652
4297
|
#
|
3653
4298
|
# @!attribute [rw] resource_arn
|
4299
|
+
# The Amazon Resource Name (ARN) of the resource to untag.
|
3654
4300
|
# @return [String]
|
3655
4301
|
#
|
3656
4302
|
# @!attribute [rw] tag_keys
|
4303
|
+
# The tag keys associated with the resource.
|
3657
4304
|
# @return [Array<String>]
|
3658
4305
|
#
|
3659
4306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UntagResourceRequest AWS API Documentation
|
@@ -3665,8 +4312,6 @@ module Aws::MediaTailor
|
|
3665
4312
|
include Aws::Structure
|
3666
4313
|
end
|
3667
4314
|
|
3668
|
-
# Updates a channel's Outputs.
|
3669
|
-
#
|
3670
4315
|
# @note When making an API call, you may pass UpdateChannelRequest
|
3671
4316
|
# data as a hash:
|
3672
4317
|
#
|
@@ -3694,13 +4339,14 @@ module Aws::MediaTailor
|
|
3694
4339
|
# }
|
3695
4340
|
#
|
3696
4341
|
# @!attribute [rw] channel_name
|
4342
|
+
# The name of the channel.
|
3697
4343
|
# @return [String]
|
3698
4344
|
#
|
3699
4345
|
# @!attribute [rw] filler_slate
|
3700
4346
|
# The slate used to fill gaps between programs in the schedule. You
|
3701
|
-
# must configure filler slate if your channel uses the LINEAR
|
3702
|
-
# PlaybackMode
|
3703
|
-
# using the LOOP PlaybackMode
|
4347
|
+
# must configure filler slate if your channel uses the `LINEAR`
|
4348
|
+
# `PlaybackMode`. MediaTailor doesn't support filler slate for
|
4349
|
+
# channels using the `LOOP` `PlaybackMode`.
|
3704
4350
|
# @return [Types::SlateSource]
|
3705
4351
|
#
|
3706
4352
|
# @!attribute [rw] outputs
|
@@ -3718,33 +4364,61 @@ module Aws::MediaTailor
|
|
3718
4364
|
end
|
3719
4365
|
|
3720
4366
|
# @!attribute [rw] arn
|
4367
|
+
# The Amazon Resource Name (ARN) associated with the channel.
|
3721
4368
|
# @return [String]
|
3722
4369
|
#
|
3723
4370
|
# @!attribute [rw] channel_name
|
4371
|
+
# The name of the channel.
|
3724
4372
|
# @return [String]
|
3725
4373
|
#
|
3726
4374
|
# @!attribute [rw] channel_state
|
4375
|
+
# Returns the state whether the channel is running or not.
|
3727
4376
|
# @return [String]
|
3728
4377
|
#
|
3729
4378
|
# @!attribute [rw] creation_time
|
4379
|
+
# The timestamp of when the channel was created.
|
3730
4380
|
# @return [Time]
|
3731
4381
|
#
|
3732
4382
|
# @!attribute [rw] filler_slate
|
3733
|
-
#
|
4383
|
+
# The slate used to fill gaps between programs in the schedule. You
|
4384
|
+
# must configure filler slate if your channel uses the `LINEAR`
|
4385
|
+
# `PlaybackMode`. MediaTailor doesn't support filler slate for
|
4386
|
+
# channels using the `LOOP` `PlaybackMode`.
|
3734
4387
|
# @return [Types::SlateSource]
|
3735
4388
|
#
|
3736
4389
|
# @!attribute [rw] last_modified_time
|
4390
|
+
# The timestamp that indicates when the channel was last modified.
|
3737
4391
|
# @return [Time]
|
3738
4392
|
#
|
3739
4393
|
# @!attribute [rw] outputs
|
4394
|
+
# The channel's output properties.
|
3740
4395
|
# @return [Array<Types::ResponseOutputItem>]
|
3741
4396
|
#
|
3742
4397
|
# @!attribute [rw] playback_mode
|
4398
|
+
# The type of playback mode for this channel.
|
4399
|
+
#
|
4400
|
+
# `LINEAR` - Programs play back-to-back only once.
|
4401
|
+
#
|
4402
|
+
# `LOOP` - Programs play back-to-back in an endless loop. When the
|
4403
|
+
# last program in the schedule plays, playback loops back to the first
|
4404
|
+
# program in the schedule.
|
3743
4405
|
# @return [String]
|
3744
4406
|
#
|
3745
4407
|
# @!attribute [rw] tags
|
4408
|
+
# The tags to assign to the channel. Tags are key-value pairs that you
|
4409
|
+
# can associate with Amazon resources to help with organization,
|
4410
|
+
# access control, and cost tracking. For more information, see
|
4411
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
4412
|
+
#
|
4413
|
+
#
|
4414
|
+
#
|
4415
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
3746
4416
|
# @return [Hash<String,String>]
|
3747
4417
|
#
|
4418
|
+
# @!attribute [rw] tier
|
4419
|
+
# The tier associated with this Channel.
|
4420
|
+
# @return [String]
|
4421
|
+
#
|
3748
4422
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannelResponse AWS API Documentation
|
3749
4423
|
#
|
3750
4424
|
class UpdateChannelResponse < Struct.new(
|
@@ -3756,13 +4430,100 @@ module Aws::MediaTailor
|
|
3756
4430
|
:last_modified_time,
|
3757
4431
|
:outputs,
|
3758
4432
|
:playback_mode,
|
3759
|
-
:tags
|
4433
|
+
:tags,
|
4434
|
+
:tier)
|
4435
|
+
SENSITIVE = []
|
4436
|
+
include Aws::Structure
|
4437
|
+
end
|
4438
|
+
|
4439
|
+
# @note When making an API call, you may pass UpdateLiveSourceRequest
|
4440
|
+
# data as a hash:
|
4441
|
+
#
|
4442
|
+
# {
|
4443
|
+
# http_package_configurations: [ # required
|
4444
|
+
# {
|
4445
|
+
# path: "__string", # required
|
4446
|
+
# source_group: "__string", # required
|
4447
|
+
# type: "DASH", # required, accepts DASH, HLS
|
4448
|
+
# },
|
4449
|
+
# ],
|
4450
|
+
# live_source_name: "__string", # required
|
4451
|
+
# source_location_name: "__string", # required
|
4452
|
+
# }
|
4453
|
+
#
|
4454
|
+
# @!attribute [rw] http_package_configurations
|
4455
|
+
# A list of HTTP package configurations for the live source on this
|
4456
|
+
# account.
|
4457
|
+
# @return [Array<Types::HttpPackageConfiguration>]
|
4458
|
+
#
|
4459
|
+
# @!attribute [rw] live_source_name
|
4460
|
+
# The name of the live source.
|
4461
|
+
# @return [String]
|
4462
|
+
#
|
4463
|
+
# @!attribute [rw] source_location_name
|
4464
|
+
# The name of the source location associated with this Live Source.
|
4465
|
+
# @return [String]
|
4466
|
+
#
|
4467
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateLiveSourceRequest AWS API Documentation
|
4468
|
+
#
|
4469
|
+
class UpdateLiveSourceRequest < Struct.new(
|
4470
|
+
:http_package_configurations,
|
4471
|
+
:live_source_name,
|
4472
|
+
:source_location_name)
|
3760
4473
|
SENSITIVE = []
|
3761
4474
|
include Aws::Structure
|
3762
4475
|
end
|
3763
4476
|
|
3764
|
-
#
|
4477
|
+
# @!attribute [rw] arn
|
4478
|
+
# The Amazon Resource Name (ARN) associated with this live source.
|
4479
|
+
# @return [String]
|
4480
|
+
#
|
4481
|
+
# @!attribute [rw] creation_time
|
4482
|
+
# The timestamp that indicates when the live source was created.
|
4483
|
+
# @return [Time]
|
4484
|
+
#
|
4485
|
+
# @!attribute [rw] http_package_configurations
|
4486
|
+
# A list of HTTP package configurations for the live source on this
|
4487
|
+
# account.
|
4488
|
+
# @return [Array<Types::HttpPackageConfiguration>]
|
4489
|
+
#
|
4490
|
+
# @!attribute [rw] last_modified_time
|
4491
|
+
# The timestamp that indicates when the live source was last modified.
|
4492
|
+
# @return [Time]
|
4493
|
+
#
|
4494
|
+
# @!attribute [rw] live_source_name
|
4495
|
+
# The name of the live source.
|
4496
|
+
# @return [String]
|
4497
|
+
#
|
4498
|
+
# @!attribute [rw] source_location_name
|
4499
|
+
# The name of the source location associated with the live source.
|
4500
|
+
# @return [String]
|
4501
|
+
#
|
4502
|
+
# @!attribute [rw] tags
|
4503
|
+
# The tags to assign to the live source. Tags are key-value pairs that
|
4504
|
+
# you can associate with Amazon resources to help with organization,
|
4505
|
+
# access control, and cost tracking. For more information, see
|
4506
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
4507
|
+
#
|
4508
|
+
#
|
3765
4509
|
#
|
4510
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
4511
|
+
# @return [Hash<String,String>]
|
4512
|
+
#
|
4513
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateLiveSourceResponse AWS API Documentation
|
4514
|
+
#
|
4515
|
+
class UpdateLiveSourceResponse < Struct.new(
|
4516
|
+
:arn,
|
4517
|
+
:creation_time,
|
4518
|
+
:http_package_configurations,
|
4519
|
+
:last_modified_time,
|
4520
|
+
:live_source_name,
|
4521
|
+
:source_location_name,
|
4522
|
+
:tags)
|
4523
|
+
SENSITIVE = []
|
4524
|
+
include Aws::Structure
|
4525
|
+
end
|
4526
|
+
|
3766
4527
|
# @note When making an API call, you may pass UpdateSourceLocationRequest
|
3767
4528
|
# data as a hash:
|
3768
4529
|
#
|
@@ -3804,11 +4565,12 @@ module Aws::MediaTailor
|
|
3804
4565
|
# @return [Types::HttpConfiguration]
|
3805
4566
|
#
|
3806
4567
|
# @!attribute [rw] segment_delivery_configurations
|
3807
|
-
#
|
3808
|
-
#
|
4568
|
+
# A list of the segment delivery configurations associated with this
|
4569
|
+
# resource.
|
3809
4570
|
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
3810
4571
|
#
|
3811
4572
|
# @!attribute [rw] source_location_name
|
4573
|
+
# The name of the source location.
|
3812
4574
|
# @return [String]
|
3813
4575
|
#
|
3814
4576
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateSourceLocationRequest AWS API Documentation
|
@@ -3824,23 +4586,20 @@ module Aws::MediaTailor
|
|
3824
4586
|
end
|
3825
4587
|
|
3826
4588
|
# @!attribute [rw] access_configuration
|
3827
|
-
# Access configuration parameters.
|
4589
|
+
# Access configuration parameters. Configures the type of
|
4590
|
+
# authentication used to access content from your source location.
|
3828
4591
|
# @return [Types::AccessConfiguration]
|
3829
4592
|
#
|
3830
4593
|
# @!attribute [rw] arn
|
4594
|
+
# The Amazon Resource Name (ARN) associated with the source location.
|
3831
4595
|
# @return [String]
|
3832
4596
|
#
|
3833
4597
|
# @!attribute [rw] creation_time
|
4598
|
+
# The timestamp that indicates when the source location was created.
|
3834
4599
|
# @return [Time]
|
3835
4600
|
#
|
3836
4601
|
# @!attribute [rw] default_segment_delivery_configuration
|
3837
|
-
# The optional configuration for
|
3838
|
-
# this if you want the segment delivery server to be different from
|
3839
|
-
# the source location server. For example, you can configure your
|
3840
|
-
# source location server to be an origination server, such as
|
3841
|
-
# MediaPackage, and the segment delivery server to be a content
|
3842
|
-
# delivery network (CDN), such as CloudFront. If you don't specify a
|
3843
|
-
# segment delivery server, then the source location server is used.
|
4602
|
+
# The optional configuration for the host server that serves segments.
|
3844
4603
|
# @return [Types::DefaultSegmentDeliveryConfiguration]
|
3845
4604
|
#
|
3846
4605
|
# @!attribute [rw] http_configuration
|
@@ -3848,15 +4607,33 @@ module Aws::MediaTailor
|
|
3848
4607
|
# @return [Types::HttpConfiguration]
|
3849
4608
|
#
|
3850
4609
|
# @!attribute [rw] last_modified_time
|
4610
|
+
# The timestamp that indicates when the source location was last
|
4611
|
+
# modified.
|
3851
4612
|
# @return [Time]
|
3852
4613
|
#
|
3853
4614
|
# @!attribute [rw] segment_delivery_configurations
|
4615
|
+
# The segment delivery configurations for the source location. For
|
4616
|
+
# information about MediaTailor configurations, see [Working with
|
4617
|
+
# configurations in AWS Elemental MediaTailor][1].
|
4618
|
+
#
|
4619
|
+
#
|
4620
|
+
#
|
4621
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/configurations.html
|
3854
4622
|
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
3855
4623
|
#
|
3856
4624
|
# @!attribute [rw] source_location_name
|
4625
|
+
# The name of the source location.
|
3857
4626
|
# @return [String]
|
3858
4627
|
#
|
3859
4628
|
# @!attribute [rw] tags
|
4629
|
+
# The tags to assign to the source location. Tags are key-value pairs
|
4630
|
+
# that you can associate with Amazon resources to help with
|
4631
|
+
# organization, access control, and cost tracking. For more
|
4632
|
+
# information, see [Tagging AWS Elemental MediaTailor Resources][1].
|
4633
|
+
#
|
4634
|
+
#
|
4635
|
+
#
|
4636
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
3860
4637
|
# @return [Hash<String,String>]
|
3861
4638
|
#
|
3862
4639
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateSourceLocationResponse AWS API Documentation
|
@@ -3875,8 +4652,6 @@ module Aws::MediaTailor
|
|
3875
4652
|
include Aws::Structure
|
3876
4653
|
end
|
3877
4654
|
|
3878
|
-
# Updates a VOD source's configuration.
|
3879
|
-
#
|
3880
4655
|
# @note When making an API call, you may pass UpdateVodSourceRequest
|
3881
4656
|
# data as a hash:
|
3882
4657
|
#
|
@@ -3893,14 +4668,16 @@ module Aws::MediaTailor
|
|
3893
4668
|
# }
|
3894
4669
|
#
|
3895
4670
|
# @!attribute [rw] http_package_configurations
|
3896
|
-
#
|
4671
|
+
# A list of HTTP package configurations for the VOD source on this
|
3897
4672
|
# account.
|
3898
4673
|
# @return [Array<Types::HttpPackageConfiguration>]
|
3899
4674
|
#
|
3900
4675
|
# @!attribute [rw] source_location_name
|
4676
|
+
# The name of the source location associated with this VOD Source.
|
3901
4677
|
# @return [String]
|
3902
4678
|
#
|
3903
4679
|
# @!attribute [rw] vod_source_name
|
4680
|
+
# The name of the VOD source.
|
3904
4681
|
# @return [String]
|
3905
4682
|
#
|
3906
4683
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateVodSourceRequest AWS API Documentation
|
@@ -3914,25 +4691,39 @@ module Aws::MediaTailor
|
|
3914
4691
|
end
|
3915
4692
|
|
3916
4693
|
# @!attribute [rw] arn
|
4694
|
+
# The Amazon Resource Name (ARN) associated with the VOD source.
|
3917
4695
|
# @return [String]
|
3918
4696
|
#
|
3919
4697
|
# @!attribute [rw] creation_time
|
4698
|
+
# The timestamp that indicates when the VOD source was created.
|
3920
4699
|
# @return [Time]
|
3921
4700
|
#
|
3922
4701
|
# @!attribute [rw] http_package_configurations
|
3923
|
-
#
|
4702
|
+
# A list of HTTP package configurations for the VOD source on this
|
4703
|
+
# account.
|
3924
4704
|
# @return [Array<Types::HttpPackageConfiguration>]
|
3925
4705
|
#
|
3926
4706
|
# @!attribute [rw] last_modified_time
|
4707
|
+
# The timestamp that indicates when the VOD source was last modified.
|
3927
4708
|
# @return [Time]
|
3928
4709
|
#
|
3929
4710
|
# @!attribute [rw] source_location_name
|
4711
|
+
# The name of the source location associated with the VOD source.
|
3930
4712
|
# @return [String]
|
3931
4713
|
#
|
3932
4714
|
# @!attribute [rw] tags
|
4715
|
+
# The tags to assign to the VOD source. Tags are key-value pairs that
|
4716
|
+
# you can associate with Amazon resources to help with organization,
|
4717
|
+
# access control, and cost tracking. For more information, see
|
4718
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
4719
|
+
#
|
4720
|
+
#
|
4721
|
+
#
|
4722
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
3933
4723
|
# @return [Hash<String,String>]
|
3934
4724
|
#
|
3935
4725
|
# @!attribute [rw] vod_source_name
|
4726
|
+
# The name of the VOD source.
|
3936
4727
|
# @return [String]
|
3937
4728
|
#
|
3938
4729
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateVodSourceResponse AWS API Documentation
|
@@ -3973,7 +4764,14 @@ module Aws::MediaTailor
|
|
3973
4764
|
# @return [String]
|
3974
4765
|
#
|
3975
4766
|
# @!attribute [rw] tags
|
3976
|
-
# The tags assigned to the VOD source.
|
4767
|
+
# The tags assigned to the VOD source. Tags are key-value pairs that
|
4768
|
+
# you can associate with Amazon resources to help with organization,
|
4769
|
+
# access control, and cost tracking. For more information, see
|
4770
|
+
# [Tagging AWS Elemental MediaTailor Resources][1].
|
4771
|
+
#
|
4772
|
+
#
|
4773
|
+
#
|
4774
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html
|
3977
4775
|
# @return [Hash<String,String>]
|
3978
4776
|
#
|
3979
4777
|
# @!attribute [rw] vod_source_name
|