aws-sdk-medialive 1.66.0 → 1.67.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -218,6 +218,29 @@ module Aws::MediaLive
218
218
  include Aws::Structure
219
219
  end
220
220
 
221
+ # Archive Cdn Settings
222
+ #
223
+ # @note When making an API call, you may pass ArchiveCdnSettings
224
+ # data as a hash:
225
+ #
226
+ # {
227
+ # archive_s3_settings: {
228
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
229
+ # },
230
+ # }
231
+ #
232
+ # @!attribute [rw] archive_s3_settings
233
+ # Archive S3 Settings
234
+ # @return [Types::ArchiveS3Settings]
235
+ #
236
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ArchiveCdnSettings AWS API Documentation
237
+ #
238
+ class ArchiveCdnSettings < Struct.new(
239
+ :archive_s3_settings)
240
+ SENSITIVE = []
241
+ include Aws::Structure
242
+ end
243
+
221
244
  # Archive Container Settings
222
245
  #
223
246
  # @note When making an API call, you may pass ArchiveContainerSettings
@@ -311,12 +334,21 @@ module Aws::MediaLive
311
334
  # data as a hash:
312
335
  #
313
336
  # {
337
+ # archive_cdn_settings: {
338
+ # archive_s3_settings: {
339
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
340
+ # },
341
+ # },
314
342
  # destination: { # required
315
343
  # destination_ref_id: "__string",
316
344
  # },
317
345
  # rollover_interval: 1,
318
346
  # }
319
347
  #
348
+ # @!attribute [rw] archive_cdn_settings
349
+ # Parameters that control interactions with the CDN.
350
+ # @return [Types::ArchiveCdnSettings]
351
+ #
320
352
  # @!attribute [rw] destination
321
353
  # A directory and base filename where archive files should be written.
322
354
  # @return [Types::OutputLocationRef]
@@ -329,6 +361,7 @@ module Aws::MediaLive
329
361
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ArchiveGroupSettings AWS API Documentation
330
362
  #
331
363
  class ArchiveGroupSettings < Struct.new(
364
+ :archive_cdn_settings,
332
365
  :destination,
333
366
  :rollover_interval)
334
367
  SENSITIVE = []
@@ -433,6 +466,28 @@ module Aws::MediaLive
433
466
  include Aws::Structure
434
467
  end
435
468
 
469
+ # Archive S3 Settings
470
+ #
471
+ # @note When making an API call, you may pass ArchiveS3Settings
472
+ # data as a hash:
473
+ #
474
+ # {
475
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
476
+ # }
477
+ #
478
+ # @!attribute [rw] canned_acl
479
+ # Specify the canned ACL to apply to each S3 request. Defaults to
480
+ # none.
481
+ # @return [String]
482
+ #
483
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ArchiveS3Settings AWS API Documentation
484
+ #
485
+ class ArchiveS3Settings < Struct.new(
486
+ :canned_acl)
487
+ SENSITIVE = []
488
+ include Aws::Structure
489
+ end
490
+
436
491
  # Arib Destination Settings
437
492
  #
438
493
  # @api private
@@ -2229,6 +2284,7 @@ module Aws::MediaLive
2229
2284
  # },
2230
2285
  # ebu_tt_d_destination_settings: {
2231
2286
  # fill_line_gap: "DISABLED", # accepts DISABLED, ENABLED
2287
+ # copyright_holder: "__stringMax1000",
2232
2288
  # font_family: "__string",
2233
2289
  # style_control: "EXCLUDE", # accepts EXCLUDE, INCLUDE
2234
2290
  # },
@@ -2350,6 +2406,7 @@ module Aws::MediaLive
2350
2406
  # },
2351
2407
  # ebu_tt_d_destination_settings: {
2352
2408
  # fill_line_gap: "DISABLED", # accepts DISABLED, ENABLED
2409
+ # copyright_holder: "__stringMax1000",
2353
2410
  # font_family: "__string",
2354
2411
  # style_control: "EXCLUDE", # accepts EXCLUDE, INCLUDE
2355
2412
  # },
@@ -2483,6 +2540,75 @@ module Aws::MediaLive
2483
2540
  include Aws::Structure
2484
2541
  end
2485
2542
 
2543
+ # Caption Rectangle
2544
+ #
2545
+ # @note When making an API call, you may pass CaptionRectangle
2546
+ # data as a hash:
2547
+ #
2548
+ # {
2549
+ # height: 1.0, # required
2550
+ # left_offset: 1.0, # required
2551
+ # top_offset: 1.0, # required
2552
+ # width: 1.0, # required
2553
+ # }
2554
+ #
2555
+ # @!attribute [rw] height
2556
+ # See the description in leftOffset. For height, specify the entire
2557
+ # height of the rectangle as a percentage of the underlying frame
2558
+ # height. For example, \\"80\\" means the rectangle height is 80% of
2559
+ # the underlying frame height. The topOffset and rectangleHeight must
2560
+ # add up to 100% or less. This field corresponds to tts:extent - Y in
2561
+ # the TTML standard.
2562
+ # @return [Float]
2563
+ #
2564
+ # @!attribute [rw] left_offset
2565
+ # Applies only if you plan to convert these source captions to
2566
+ # EBU-TT-D or TTML in an output. (Make sure to leave the default if
2567
+ # you don't have either of these formats in the output.) You can
2568
+ # define a display rectangle for the captions that is smaller than the
2569
+ # underlying video frame. You define the rectangle by specifying the
2570
+ # position of the left edge, top edge, bottom edge, and right edge of
2571
+ # the rectangle, all within the underlying video frame. The units for
2572
+ # the measurements are percentages. If you specify a value for one of
2573
+ # these fields, you must specify a value for all of them. For
2574
+ # leftOffset, specify the position of the left edge of the rectangle,
2575
+ # as a percentage of the underlying frame width, and relative to the
2576
+ # left edge of the frame. For example, \\"10\\" means the
2577
+ # measurement is 10% of the underlying frame width. The rectangle left
2578
+ # edge starts at that position from the left edge of the frame. This
2579
+ # field corresponds to tts:origin - X in the TTML standard.
2580
+ # @return [Float]
2581
+ #
2582
+ # @!attribute [rw] top_offset
2583
+ # See the description in leftOffset. For topOffset, specify the
2584
+ # position of the top edge of the rectangle, as a percentage of the
2585
+ # underlying frame height, and relative to the top edge of the frame.
2586
+ # For example, \\"10\\" means the measurement is 10% of the
2587
+ # underlying frame height. The rectangle top edge starts at that
2588
+ # position from the top edge of the frame. This field corresponds to
2589
+ # tts:origin - Y in the TTML standard.
2590
+ # @return [Float]
2591
+ #
2592
+ # @!attribute [rw] width
2593
+ # See the description in leftOffset. For width, specify the entire
2594
+ # width of the rectangle as a percentage of the underlying frame
2595
+ # width. For example, \\"80\\" means the rectangle width is 80% of
2596
+ # the underlying frame width. The leftOffset and rectangleWidth must
2597
+ # add up to 100% or less. This field corresponds to tts:extent - X in
2598
+ # the TTML standard.
2599
+ # @return [Float]
2600
+ #
2601
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionRectangle AWS API Documentation
2602
+ #
2603
+ class CaptionRectangle < Struct.new(
2604
+ :height,
2605
+ :left_offset,
2606
+ :top_offset,
2607
+ :width)
2608
+ SENSITIVE = []
2609
+ include Aws::Structure
2610
+ end
2611
+
2486
2612
  # Output groups for this Live Event. Output groups contain information
2487
2613
  # about where streams should be distributed.
2488
2614
  #
@@ -2515,6 +2641,12 @@ module Aws::MediaLive
2515
2641
  # pid: 1,
2516
2642
  # },
2517
2643
  # teletext_source_settings: {
2644
+ # output_rectangle: {
2645
+ # height: 1.0, # required
2646
+ # left_offset: 1.0, # required
2647
+ # top_offset: 1.0, # required
2648
+ # width: 1.0, # required
2649
+ # },
2518
2650
  # page_number: "__string",
2519
2651
  # },
2520
2652
  # },
@@ -2573,6 +2705,12 @@ module Aws::MediaLive
2573
2705
  # pid: 1,
2574
2706
  # },
2575
2707
  # teletext_source_settings: {
2708
+ # output_rectangle: {
2709
+ # height: 1.0, # required
2710
+ # left_offset: 1.0, # required
2711
+ # top_offset: 1.0, # required
2712
+ # width: 1.0, # required
2713
+ # },
2576
2714
  # page_number: "__string",
2577
2715
  # },
2578
2716
  # }
@@ -3148,6 +3286,7 @@ module Aws::MediaLive
3148
3286
  # },
3149
3287
  # ebu_tt_d_destination_settings: {
3150
3288
  # fill_line_gap: "DISABLED", # accepts DISABLED, ENABLED
3289
+ # copyright_holder: "__stringMax1000",
3151
3290
  # font_family: "__string",
3152
3291
  # style_control: "EXCLUDE", # accepts EXCLUDE, INCLUDE
3153
3292
  # },
@@ -3206,6 +3345,11 @@ module Aws::MediaLive
3206
3345
  # name: "__stringMax32",
3207
3346
  # output_group_settings: { # required
3208
3347
  # archive_group_settings: {
3348
+ # archive_cdn_settings: {
3349
+ # archive_s3_settings: {
3350
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
3351
+ # },
3352
+ # },
3209
3353
  # destination: { # required
3210
3354
  # destination_ref_id: "__string",
3211
3355
  # },
@@ -3215,6 +3359,11 @@ module Aws::MediaLive
3215
3359
  # destination: { # required
3216
3360
  # destination_ref_id: "__string",
3217
3361
  # },
3362
+ # frame_capture_cdn_settings: {
3363
+ # frame_capture_s3_settings: {
3364
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
3365
+ # },
3366
+ # },
3218
3367
  # },
3219
3368
  # hls_group_settings: {
3220
3369
  # ad_markers: ["ADOBE"], # accepts ADOBE, ELEMENTAL, ELEMENTAL_SCTE35
@@ -3262,6 +3411,9 @@ module Aws::MediaLive
3262
3411
  # num_retries: 1,
3263
3412
  # restart_delay: 1,
3264
3413
  # },
3414
+ # hls_s3_settings: {
3415
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
3416
+ # },
3265
3417
  # hls_webdav_settings: {
3266
3418
  # connection_retry_interval: 1,
3267
3419
  # filecache_duration: 1,
@@ -3794,6 +3946,12 @@ module Aws::MediaLive
3794
3946
  # pid: 1,
3795
3947
  # },
3796
3948
  # teletext_source_settings: {
3949
+ # output_rectangle: {
3950
+ # height: 1.0, # required
3951
+ # left_offset: 1.0, # required
3952
+ # top_offset: 1.0, # required
3953
+ # width: 1.0, # required
3954
+ # },
3797
3955
  # page_number: "__string",
3798
3956
  # },
3799
3957
  # },
@@ -6083,6 +6241,7 @@ module Aws::MediaLive
6083
6241
  #
6084
6242
  # {
6085
6243
  # fill_line_gap: "DISABLED", # accepts DISABLED, ENABLED
6244
+ # copyright_holder: "__stringMax1000",
6086
6245
  # font_family: "__string",
6087
6246
  # style_control: "EXCLUDE", # accepts EXCLUDE, INCLUDE
6088
6247
  # }
@@ -6094,6 +6253,13 @@ module Aws::MediaLive
6094
6253
  # unfilled.
6095
6254
  # @return [String]
6096
6255
  #
6256
+ # @!attribute [rw] copyright_holder
6257
+ # Applies only if you plan to convert these source captions to
6258
+ # EBU-TT-D or TTML in an output. Complete this field if you want to
6259
+ # include the name of the copyright holder in the copyright metadata
6260
+ # tag in the TTML
6261
+ # @return [String]
6262
+ #
6097
6263
  # @!attribute [rw] font_family
6098
6264
  # Specifies the font family to include in the font data attached to
6099
6265
  # the EBU-TT captions. Valid only if styleControl is set to include.
@@ -6126,6 +6292,7 @@ module Aws::MediaLive
6126
6292
  #
6127
6293
  class EbuTtDDestinationSettings < Struct.new(
6128
6294
  :fill_line_gap,
6295
+ :copyright_holder,
6129
6296
  :font_family,
6130
6297
  :style_control)
6131
6298
  SENSITIVE = []
@@ -6380,6 +6547,7 @@ module Aws::MediaLive
6380
6547
  # },
6381
6548
  # ebu_tt_d_destination_settings: {
6382
6549
  # fill_line_gap: "DISABLED", # accepts DISABLED, ENABLED
6550
+ # copyright_holder: "__stringMax1000",
6383
6551
  # font_family: "__string",
6384
6552
  # style_control: "EXCLUDE", # accepts EXCLUDE, INCLUDE
6385
6553
  # },
@@ -6438,6 +6606,11 @@ module Aws::MediaLive
6438
6606
  # name: "__stringMax32",
6439
6607
  # output_group_settings: { # required
6440
6608
  # archive_group_settings: {
6609
+ # archive_cdn_settings: {
6610
+ # archive_s3_settings: {
6611
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
6612
+ # },
6613
+ # },
6441
6614
  # destination: { # required
6442
6615
  # destination_ref_id: "__string",
6443
6616
  # },
@@ -6447,6 +6620,11 @@ module Aws::MediaLive
6447
6620
  # destination: { # required
6448
6621
  # destination_ref_id: "__string",
6449
6622
  # },
6623
+ # frame_capture_cdn_settings: {
6624
+ # frame_capture_s3_settings: {
6625
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
6626
+ # },
6627
+ # },
6450
6628
  # },
6451
6629
  # hls_group_settings: {
6452
6630
  # ad_markers: ["ADOBE"], # accepts ADOBE, ELEMENTAL, ELEMENTAL_SCTE35
@@ -6494,6 +6672,9 @@ module Aws::MediaLive
6494
6672
  # num_retries: 1,
6495
6673
  # restart_delay: 1,
6496
6674
  # },
6675
+ # hls_s3_settings: {
6676
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
6677
+ # },
6497
6678
  # hls_webdav_settings: {
6498
6679
  # connection_retry_interval: 1,
6499
6680
  # filecache_duration: 1,
@@ -7257,6 +7438,29 @@ module Aws::MediaLive
7257
7438
  include Aws::Structure
7258
7439
  end
7259
7440
 
7441
+ # Frame Capture Cdn Settings
7442
+ #
7443
+ # @note When making an API call, you may pass FrameCaptureCdnSettings
7444
+ # data as a hash:
7445
+ #
7446
+ # {
7447
+ # frame_capture_s3_settings: {
7448
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
7449
+ # },
7450
+ # }
7451
+ #
7452
+ # @!attribute [rw] frame_capture_s3_settings
7453
+ # Frame Capture S3 Settings
7454
+ # @return [Types::FrameCaptureS3Settings]
7455
+ #
7456
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FrameCaptureCdnSettings AWS API Documentation
7457
+ #
7458
+ class FrameCaptureCdnSettings < Struct.new(
7459
+ :frame_capture_s3_settings)
7460
+ SENSITIVE = []
7461
+ include Aws::Structure
7462
+ end
7463
+
7260
7464
  # Frame Capture Group Settings
7261
7465
  #
7262
7466
  # @note When making an API call, you may pass FrameCaptureGroupSettings
@@ -7266,6 +7470,11 @@ module Aws::MediaLive
7266
7470
  # destination: { # required
7267
7471
  # destination_ref_id: "__string",
7268
7472
  # },
7473
+ # frame_capture_cdn_settings: {
7474
+ # frame_capture_s3_settings: {
7475
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
7476
+ # },
7477
+ # },
7269
7478
  # }
7270
7479
  #
7271
7480
  # @!attribute [rw] destination
@@ -7280,10 +7489,15 @@ module Aws::MediaLive
7280
7489
  # curling-low.00001.jpg
7281
7490
  # @return [Types::OutputLocationRef]
7282
7491
  #
7492
+ # @!attribute [rw] frame_capture_cdn_settings
7493
+ # Parameters that control interactions with the CDN.
7494
+ # @return [Types::FrameCaptureCdnSettings]
7495
+ #
7283
7496
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FrameCaptureGroupSettings AWS API Documentation
7284
7497
  #
7285
7498
  class FrameCaptureGroupSettings < Struct.new(
7286
- :destination)
7499
+ :destination,
7500
+ :frame_capture_cdn_settings)
7287
7501
  SENSITIVE = []
7288
7502
  include Aws::Structure
7289
7503
  end
@@ -7318,6 +7532,28 @@ module Aws::MediaLive
7318
7532
  include Aws::Structure
7319
7533
  end
7320
7534
 
7535
+ # Frame Capture S3 Settings
7536
+ #
7537
+ # @note When making an API call, you may pass FrameCaptureS3Settings
7538
+ # data as a hash:
7539
+ #
7540
+ # {
7541
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
7542
+ # }
7543
+ #
7544
+ # @!attribute [rw] canned_acl
7545
+ # Specify the canned ACL to apply to each S3 request. Defaults to
7546
+ # none.
7547
+ # @return [String]
7548
+ #
7549
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FrameCaptureS3Settings AWS API Documentation
7550
+ #
7551
+ class FrameCaptureS3Settings < Struct.new(
7552
+ :canned_acl)
7553
+ SENSITIVE = []
7554
+ include Aws::Structure
7555
+ end
7556
+
7321
7557
  # Frame Capture Settings
7322
7558
  #
7323
7559
  # @note When making an API call, you may pass FrameCaptureSettings
@@ -7777,7 +8013,8 @@ module Aws::MediaLive
7777
8013
  #
7778
8014
  # @!attribute [rw] softness
7779
8015
  # Softness. Selects quantizer matrix, larger values reduce
7780
- # high-frequency content in the encoded image.
8016
+ # high-frequency content in the encoded image. If not set to zero,
8017
+ # must be greater than 15.
7781
8018
  # @return [Integer]
7782
8019
  #
7783
8020
  # @!attribute [rw] spatial_aq
@@ -8343,6 +8580,9 @@ module Aws::MediaLive
8343
8580
  # num_retries: 1,
8344
8581
  # restart_delay: 1,
8345
8582
  # },
8583
+ # hls_s3_settings: {
8584
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
8585
+ # },
8346
8586
  # hls_webdav_settings: {
8347
8587
  # connection_retry_interval: 1,
8348
8588
  # filecache_duration: 1,
@@ -8364,6 +8604,10 @@ module Aws::MediaLive
8364
8604
  # Hls Media Store Settings
8365
8605
  # @return [Types::HlsMediaStoreSettings]
8366
8606
  #
8607
+ # @!attribute [rw] hls_s3_settings
8608
+ # Hls S3 Settings
8609
+ # @return [Types::HlsS3Settings]
8610
+ #
8367
8611
  # @!attribute [rw] hls_webdav_settings
8368
8612
  # Hls Webdav Settings
8369
8613
  # @return [Types::HlsWebdavSettings]
@@ -8374,6 +8618,7 @@ module Aws::MediaLive
8374
8618
  :hls_akamai_settings,
8375
8619
  :hls_basic_put_settings,
8376
8620
  :hls_media_store_settings,
8621
+ :hls_s3_settings,
8377
8622
  :hls_webdav_settings)
8378
8623
  SENSITIVE = []
8379
8624
  include Aws::Structure
@@ -8430,6 +8675,9 @@ module Aws::MediaLive
8430
8675
  # num_retries: 1,
8431
8676
  # restart_delay: 1,
8432
8677
  # },
8678
+ # hls_s3_settings: {
8679
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
8680
+ # },
8433
8681
  # hls_webdav_settings: {
8434
8682
  # connection_retry_interval: 1,
8435
8683
  # filecache_duration: 1,
@@ -9010,6 +9258,28 @@ module Aws::MediaLive
9010
9258
  include Aws::Structure
9011
9259
  end
9012
9260
 
9261
+ # Hls S3 Settings
9262
+ #
9263
+ # @note When making an API call, you may pass HlsS3Settings
9264
+ # data as a hash:
9265
+ #
9266
+ # {
9267
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
9268
+ # }
9269
+ #
9270
+ # @!attribute [rw] canned_acl
9271
+ # Specify the canned ACL to apply to each S3 request. Defaults to
9272
+ # none.
9273
+ # @return [String]
9274
+ #
9275
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsS3Settings AWS API Documentation
9276
+ #
9277
+ class HlsS3Settings < Struct.new(
9278
+ :canned_acl)
9279
+ SENSITIVE = []
9280
+ include Aws::Structure
9281
+ end
9282
+
9013
9283
  # Hls Settings
9014
9284
  #
9015
9285
  # @note When making an API call, you may pass HlsSettings
@@ -9336,6 +9606,12 @@ module Aws::MediaLive
9336
9606
  # pid: 1,
9337
9607
  # },
9338
9608
  # teletext_source_settings: {
9609
+ # output_rectangle: {
9610
+ # height: 1.0, # required
9611
+ # left_offset: 1.0, # required
9612
+ # top_offset: 1.0, # required
9613
+ # width: 1.0, # required
9614
+ # },
9339
9615
  # page_number: "__string",
9340
9616
  # },
9341
9617
  # },
@@ -10202,6 +10478,12 @@ module Aws::MediaLive
10202
10478
  # pid: 1,
10203
10479
  # },
10204
10480
  # teletext_source_settings: {
10481
+ # output_rectangle: {
10482
+ # height: 1.0, # required
10483
+ # left_offset: 1.0, # required
10484
+ # top_offset: 1.0, # required
10485
+ # width: 1.0, # required
10486
+ # },
10205
10487
  # page_number: "__string",
10206
10488
  # },
10207
10489
  # },
@@ -13341,6 +13623,11 @@ module Aws::MediaLive
13341
13623
  # name: "__stringMax32",
13342
13624
  # output_group_settings: { # required
13343
13625
  # archive_group_settings: {
13626
+ # archive_cdn_settings: {
13627
+ # archive_s3_settings: {
13628
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
13629
+ # },
13630
+ # },
13344
13631
  # destination: { # required
13345
13632
  # destination_ref_id: "__string",
13346
13633
  # },
@@ -13350,6 +13637,11 @@ module Aws::MediaLive
13350
13637
  # destination: { # required
13351
13638
  # destination_ref_id: "__string",
13352
13639
  # },
13640
+ # frame_capture_cdn_settings: {
13641
+ # frame_capture_s3_settings: {
13642
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
13643
+ # },
13644
+ # },
13353
13645
  # },
13354
13646
  # hls_group_settings: {
13355
13647
  # ad_markers: ["ADOBE"], # accepts ADOBE, ELEMENTAL, ELEMENTAL_SCTE35
@@ -13397,6 +13689,9 @@ module Aws::MediaLive
13397
13689
  # num_retries: 1,
13398
13690
  # restart_delay: 1,
13399
13691
  # },
13692
+ # hls_s3_settings: {
13693
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
13694
+ # },
13400
13695
  # hls_webdav_settings: {
13401
13696
  # connection_retry_interval: 1,
13402
13697
  # filecache_duration: 1,
@@ -13738,6 +14033,11 @@ module Aws::MediaLive
13738
14033
  #
13739
14034
  # {
13740
14035
  # archive_group_settings: {
14036
+ # archive_cdn_settings: {
14037
+ # archive_s3_settings: {
14038
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
14039
+ # },
14040
+ # },
13741
14041
  # destination: { # required
13742
14042
  # destination_ref_id: "__string",
13743
14043
  # },
@@ -13747,6 +14047,11 @@ module Aws::MediaLive
13747
14047
  # destination: { # required
13748
14048
  # destination_ref_id: "__string",
13749
14049
  # },
14050
+ # frame_capture_cdn_settings: {
14051
+ # frame_capture_s3_settings: {
14052
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
14053
+ # },
14054
+ # },
13750
14055
  # },
13751
14056
  # hls_group_settings: {
13752
14057
  # ad_markers: ["ADOBE"], # accepts ADOBE, ELEMENTAL, ELEMENTAL_SCTE35
@@ -13794,6 +14099,9 @@ module Aws::MediaLive
13794
14099
  # num_retries: 1,
13795
14100
  # restart_delay: 1,
13796
14101
  # },
14102
+ # hls_s3_settings: {
14103
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
14104
+ # },
13797
14105
  # hls_webdav_settings: {
13798
14106
  # connection_retry_interval: 1,
13799
14107
  # filecache_duration: 1,
@@ -16280,9 +16588,20 @@ module Aws::MediaLive
16280
16588
  # data as a hash:
16281
16589
  #
16282
16590
  # {
16591
+ # output_rectangle: {
16592
+ # height: 1.0, # required
16593
+ # left_offset: 1.0, # required
16594
+ # top_offset: 1.0, # required
16595
+ # width: 1.0, # required
16596
+ # },
16283
16597
  # page_number: "__string",
16284
16598
  # }
16285
16599
  #
16600
+ # @!attribute [rw] output_rectangle
16601
+ # Optionally defines a region where TTML style captions will be
16602
+ # displayed
16603
+ # @return [Types::CaptionRectangle]
16604
+ #
16286
16605
  # @!attribute [rw] page_number
16287
16606
  # Specifies the teletext page number within the data stream from which
16288
16607
  # to extract captions. Range of 0x100 (256) to 0x8FF (2303). Unused
@@ -16293,6 +16612,7 @@ module Aws::MediaLive
16293
16612
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TeletextSourceSettings AWS API Documentation
16294
16613
  #
16295
16614
  class TeletextSourceSettings < Struct.new(
16615
+ :output_rectangle,
16296
16616
  :page_number)
16297
16617
  SENSITIVE = []
16298
16618
  include Aws::Structure
@@ -16470,6 +16790,9 @@ module Aws::MediaLive
16470
16790
  # The AWS account ID for the recipient of the input device transfer.
16471
16791
  # @return [String]
16472
16792
  #
16793
+ # @!attribute [rw] target_region
16794
+ # @return [String]
16795
+ #
16473
16796
  # @!attribute [rw] transfer_type
16474
16797
  # The type (direction) of the input device transfer.
16475
16798
  # @return [String]
@@ -16480,6 +16803,7 @@ module Aws::MediaLive
16480
16803
  :id,
16481
16804
  :message,
16482
16805
  :target_customer_id,
16806
+ :target_region,
16483
16807
  :transfer_type)
16484
16808
  SENSITIVE = []
16485
16809
  include Aws::Structure
@@ -17092,6 +17416,7 @@ module Aws::MediaLive
17092
17416
  # },
17093
17417
  # ebu_tt_d_destination_settings: {
17094
17418
  # fill_line_gap: "DISABLED", # accepts DISABLED, ENABLED
17419
+ # copyright_holder: "__stringMax1000",
17095
17420
  # font_family: "__string",
17096
17421
  # style_control: "EXCLUDE", # accepts EXCLUDE, INCLUDE
17097
17422
  # },
@@ -17150,6 +17475,11 @@ module Aws::MediaLive
17150
17475
  # name: "__stringMax32",
17151
17476
  # output_group_settings: { # required
17152
17477
  # archive_group_settings: {
17478
+ # archive_cdn_settings: {
17479
+ # archive_s3_settings: {
17480
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
17481
+ # },
17482
+ # },
17153
17483
  # destination: { # required
17154
17484
  # destination_ref_id: "__string",
17155
17485
  # },
@@ -17159,6 +17489,11 @@ module Aws::MediaLive
17159
17489
  # destination: { # required
17160
17490
  # destination_ref_id: "__string",
17161
17491
  # },
17492
+ # frame_capture_cdn_settings: {
17493
+ # frame_capture_s3_settings: {
17494
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
17495
+ # },
17496
+ # },
17162
17497
  # },
17163
17498
  # hls_group_settings: {
17164
17499
  # ad_markers: ["ADOBE"], # accepts ADOBE, ELEMENTAL, ELEMENTAL_SCTE35
@@ -17206,6 +17541,9 @@ module Aws::MediaLive
17206
17541
  # num_retries: 1,
17207
17542
  # restart_delay: 1,
17208
17543
  # },
17544
+ # hls_s3_settings: {
17545
+ # canned_acl: "AUTHENTICATED_READ", # accepts AUTHENTICATED_READ, BUCKET_OWNER_FULL_CONTROL, BUCKET_OWNER_READ, PUBLIC_READ
17546
+ # },
17209
17547
  # hls_webdav_settings: {
17210
17548
  # connection_retry_interval: 1,
17211
17549
  # filecache_duration: 1,
@@ -17738,6 +18076,12 @@ module Aws::MediaLive
17738
18076
  # pid: 1,
17739
18077
  # },
17740
18078
  # teletext_source_settings: {
18079
+ # output_rectangle: {
18080
+ # height: 1.0, # required
18081
+ # left_offset: 1.0, # required
18082
+ # top_offset: 1.0, # required
18083
+ # width: 1.0, # required
18084
+ # },
17741
18085
  # page_number: "__string",
17742
18086
  # },
17743
18087
  # },