aws-sdk-medialive 1.1.0 → 1.2.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.
@@ -337,6 +337,10 @@ module Aws::MediaLive
337
337
  UdpOutputSettings = Shapes::StructureShape.new(name: 'UdpOutputSettings')
338
338
  UdpTimedMetadataId3Frame = Shapes::StringShape.new(name: 'UdpTimedMetadataId3Frame')
339
339
  UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
340
+ UpdateChannel = Shapes::StructureShape.new(name: 'UpdateChannel')
341
+ UpdateChannelRequest = Shapes::StructureShape.new(name: 'UpdateChannelRequest')
342
+ UpdateChannelResponse = Shapes::StructureShape.new(name: 'UpdateChannelResponse')
343
+ UpdateChannelResultModel = Shapes::StructureShape.new(name: 'UpdateChannelResultModel')
340
344
  ValidationError = Shapes::StructureShape.new(name: 'ValidationError')
341
345
  VideoCodecSettings = Shapes::StructureShape.new(name: 'VideoCodecSettings')
342
346
  VideoDescription = Shapes::StructureShape.new(name: 'VideoDescription')
@@ -555,7 +559,7 @@ module Aws::MediaLive
555
559
  CreateChannel.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
556
560
  CreateChannel.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
557
561
  CreateChannel.add_member(:request_id, Shapes::ShapeRef.new(shape: __string, location_name: "requestId", metadata: {"idempotencyToken"=>true}))
558
- CreateChannel.add_member(:reserved, Shapes::ShapeRef.new(shape: __string, location_name: "reserved"))
562
+ CreateChannel.add_member(:reserved, Shapes::ShapeRef.new(shape: __string, deprecated: true, location_name: "reserved"))
559
563
  CreateChannel.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
560
564
  CreateChannel.struct_class = Types::CreateChannel
561
565
 
@@ -565,7 +569,7 @@ module Aws::MediaLive
565
569
  CreateChannelRequest.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
566
570
  CreateChannelRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
567
571
  CreateChannelRequest.add_member(:request_id, Shapes::ShapeRef.new(shape: __string, location_name: "requestId", metadata: {"idempotencyToken"=>true}))
568
- CreateChannelRequest.add_member(:reserved, Shapes::ShapeRef.new(shape: __string, location_name: "reserved"))
572
+ CreateChannelRequest.add_member(:reserved, Shapes::ShapeRef.new(shape: __string, deprecated: true, location_name: "reserved"))
569
573
  CreateChannelRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
570
574
  CreateChannelRequest.struct_class = Types::CreateChannelRequest
571
575
 
@@ -1302,6 +1306,27 @@ module Aws::MediaLive
1302
1306
  UdpOutputSettings.add_member(:fec_output_settings, Shapes::ShapeRef.new(shape: FecOutputSettings, location_name: "fecOutputSettings"))
1303
1307
  UdpOutputSettings.struct_class = Types::UdpOutputSettings
1304
1308
 
1309
+ UpdateChannel.add_member(:destinations, Shapes::ShapeRef.new(shape: ListOfOutputDestination, location_name: "destinations"))
1310
+ UpdateChannel.add_member(:encoder_settings, Shapes::ShapeRef.new(shape: EncoderSettings, location_name: "encoderSettings"))
1311
+ UpdateChannel.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
1312
+ UpdateChannel.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
1313
+ UpdateChannel.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
1314
+ UpdateChannel.struct_class = Types::UpdateChannel
1315
+
1316
+ UpdateChannelRequest.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "channelId"))
1317
+ UpdateChannelRequest.add_member(:destinations, Shapes::ShapeRef.new(shape: ListOfOutputDestination, location_name: "destinations"))
1318
+ UpdateChannelRequest.add_member(:encoder_settings, Shapes::ShapeRef.new(shape: EncoderSettings, location_name: "encoderSettings"))
1319
+ UpdateChannelRequest.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
1320
+ UpdateChannelRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
1321
+ UpdateChannelRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
1322
+ UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
1323
+
1324
+ UpdateChannelResponse.add_member(:channel, Shapes::ShapeRef.new(shape: Channel, location_name: "channel"))
1325
+ UpdateChannelResponse.struct_class = Types::UpdateChannelResponse
1326
+
1327
+ UpdateChannelResultModel.add_member(:channel, Shapes::ShapeRef.new(shape: Channel, location_name: "channel"))
1328
+ UpdateChannelResultModel.struct_class = Types::UpdateChannelResultModel
1329
+
1305
1330
  ValidationError.add_member(:element_path, Shapes::ShapeRef.new(shape: __string, location_name: "elementPath"))
1306
1331
  ValidationError.add_member(:error_message, Shapes::ShapeRef.new(shape: __string, location_name: "errorMessage"))
1307
1332
  ValidationError.struct_class = Types::ValidationError
@@ -1577,6 +1602,21 @@ module Aws::MediaLive
1577
1602
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
1578
1603
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1579
1604
  end)
1605
+
1606
+ api.add_operation(:update_channel, Seahorse::Model::Operation.new.tap do |o|
1607
+ o.name = "UpdateChannel"
1608
+ o.http_method = "PUT"
1609
+ o.http_request_uri = "/prod/channels/{channelId}"
1610
+ o.input = Shapes::ShapeRef.new(shape: UpdateChannelRequest)
1611
+ o.output = Shapes::ShapeRef.new(shape: UpdateChannelResponse)
1612
+ o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
1613
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1614
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
1615
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1616
+ o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
1617
+ o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
1618
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1619
+ end)
1580
1620
  end
1581
1621
 
1582
1622
  end
@@ -1403,8 +1403,9 @@ module Aws::MediaLive
1403
1403
  # }
1404
1404
  #
1405
1405
  # @!attribute [rw] caption_channel
1406
- # Channel to insert closed captions. Each channel mapping must have a
1407
- # unique channel number (maximum of 4)
1406
+ # The closed caption channel being described by this
1407
+ # CaptionLanguageMapping. Each channel mapping must have a unique
1408
+ # channel number (maximum of 4)
1408
1409
  # @return [Integer]
1409
1410
  #
1410
1411
  # @!attribute [rw] language_code
@@ -1710,7 +1711,7 @@ module Aws::MediaLive
1710
1711
  # @return [String]
1711
1712
  #
1712
1713
  # @!attribute [rw] reserved
1713
- # Reserved for future use.
1714
+ # Deprecated field that's only usable by whitelisted customers.
1714
1715
  # @return [String]
1715
1716
  #
1716
1717
  # @!attribute [rw] role_arn
@@ -8422,6 +8423,694 @@ module Aws::MediaLive
8422
8423
  include Aws::Structure
8423
8424
  end
8424
8425
 
8426
+ # @!attribute [rw] destinations
8427
+ # A list of output destinations for this channel.
8428
+ # @return [Array<Types::OutputDestination>]
8429
+ #
8430
+ # @!attribute [rw] encoder_settings
8431
+ # The encoder settings for this channel.
8432
+ # @return [Types::EncoderSettings]
8433
+ #
8434
+ # @!attribute [rw] input_specification
8435
+ # Specification of input for this channel (max. bitrate, resolution,
8436
+ # codec, etc.)
8437
+ # @return [Types::InputSpecification]
8438
+ #
8439
+ # @!attribute [rw] name
8440
+ # The name of the channel.
8441
+ # @return [String]
8442
+ #
8443
+ # @!attribute [rw] role_arn
8444
+ # An optional Amazon Resource Name (ARN) of the role to assume when
8445
+ # running the Channel. If you do not specify this on an update call
8446
+ # but the role was previously set that role will be removed.
8447
+ # @return [String]
8448
+ #
8449
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
8450
+ #
8451
+ class UpdateChannel < Struct.new(
8452
+ :destinations,
8453
+ :encoder_settings,
8454
+ :input_specification,
8455
+ :name,
8456
+ :role_arn)
8457
+ include Aws::Structure
8458
+ end
8459
+
8460
+ # @note When making an API call, you may pass UpdateChannelRequest
8461
+ # data as a hash:
8462
+ #
8463
+ # {
8464
+ # channel_id: "__string", # required
8465
+ # destinations: [
8466
+ # {
8467
+ # id: "__string",
8468
+ # settings: [
8469
+ # {
8470
+ # password_param: "__string",
8471
+ # url: "__string",
8472
+ # username: "__string",
8473
+ # },
8474
+ # ],
8475
+ # },
8476
+ # ],
8477
+ # encoder_settings: {
8478
+ # audio_descriptions: [
8479
+ # {
8480
+ # audio_normalization_settings: {
8481
+ # algorithm: "ITU_1770_1", # accepts ITU_1770_1, ITU_1770_2
8482
+ # algorithm_control: "CORRECT_AUDIO", # accepts CORRECT_AUDIO
8483
+ # target_lkfs: 1.0,
8484
+ # },
8485
+ # audio_selector_name: "__string",
8486
+ # audio_type: "CLEAN_EFFECTS", # accepts CLEAN_EFFECTS, HEARING_IMPAIRED, UNDEFINED, VISUAL_IMPAIRED_COMMENTARY
8487
+ # audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
8488
+ # codec_settings: {
8489
+ # aac_settings: {
8490
+ # bitrate: 1.0,
8491
+ # coding_mode: "AD_RECEIVER_MIX", # accepts AD_RECEIVER_MIX, CODING_MODE_1_0, CODING_MODE_1_1, CODING_MODE_2_0, CODING_MODE_5_1
8492
+ # input_type: "BROADCASTER_MIXED_AD", # accepts BROADCASTER_MIXED_AD, NORMAL
8493
+ # profile: "HEV1", # accepts HEV1, HEV2, LC
8494
+ # rate_control_mode: "CBR", # accepts CBR, VBR
8495
+ # raw_format: "LATM_LOAS", # accepts LATM_LOAS, NONE
8496
+ # sample_rate: 1.0,
8497
+ # spec: "MPEG2", # accepts MPEG2, MPEG4
8498
+ # vbr_quality: "HIGH", # accepts HIGH, LOW, MEDIUM_HIGH, MEDIUM_LOW
8499
+ # },
8500
+ # ac_3_settings: {
8501
+ # bitrate: 1.0,
8502
+ # bitstream_mode: "COMMENTARY", # accepts COMMENTARY, COMPLETE_MAIN, DIALOGUE, EMERGENCY, HEARING_IMPAIRED, MUSIC_AND_EFFECTS, VISUALLY_IMPAIRED, VOICE_OVER
8503
+ # coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_1_1, CODING_MODE_2_0, CODING_MODE_3_2_LFE
8504
+ # dialnorm: 1,
8505
+ # drc_profile: "FILM_STANDARD", # accepts FILM_STANDARD, NONE
8506
+ # lfe_filter: "DISABLED", # accepts DISABLED, ENABLED
8507
+ # metadata_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
8508
+ # },
8509
+ # eac_3_settings: {
8510
+ # attenuation_control: "ATTENUATE_3_DB", # accepts ATTENUATE_3_DB, NONE
8511
+ # bitrate: 1.0,
8512
+ # bitstream_mode: "COMMENTARY", # accepts COMMENTARY, COMPLETE_MAIN, EMERGENCY, HEARING_IMPAIRED, VISUALLY_IMPAIRED
8513
+ # coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_3_2
8514
+ # dc_filter: "DISABLED", # accepts DISABLED, ENABLED
8515
+ # dialnorm: 1,
8516
+ # drc_line: "FILM_LIGHT", # accepts FILM_LIGHT, FILM_STANDARD, MUSIC_LIGHT, MUSIC_STANDARD, NONE, SPEECH
8517
+ # drc_rf: "FILM_LIGHT", # accepts FILM_LIGHT, FILM_STANDARD, MUSIC_LIGHT, MUSIC_STANDARD, NONE, SPEECH
8518
+ # lfe_control: "LFE", # accepts LFE, NO_LFE
8519
+ # lfe_filter: "DISABLED", # accepts DISABLED, ENABLED
8520
+ # lo_ro_center_mix_level: 1.0,
8521
+ # lo_ro_surround_mix_level: 1.0,
8522
+ # lt_rt_center_mix_level: 1.0,
8523
+ # lt_rt_surround_mix_level: 1.0,
8524
+ # metadata_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
8525
+ # passthrough_control: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, WHEN_POSSIBLE
8526
+ # phase_control: "NO_SHIFT", # accepts NO_SHIFT, SHIFT_90_DEGREES
8527
+ # stereo_downmix: "DPL2", # accepts DPL2, LO_RO, LT_RT, NOT_INDICATED
8528
+ # surround_ex_mode: "DISABLED", # accepts DISABLED, ENABLED, NOT_INDICATED
8529
+ # surround_mode: "DISABLED", # accepts DISABLED, ENABLED, NOT_INDICATED
8530
+ # },
8531
+ # mp_2_settings: {
8532
+ # bitrate: 1.0,
8533
+ # coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0
8534
+ # sample_rate: 1.0,
8535
+ # },
8536
+ # pass_through_settings: {
8537
+ # },
8538
+ # },
8539
+ # language_code: "__string",
8540
+ # language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
8541
+ # name: "__string",
8542
+ # remix_settings: {
8543
+ # channel_mappings: [
8544
+ # {
8545
+ # input_channel_levels: [
8546
+ # {
8547
+ # gain: 1,
8548
+ # input_channel: 1,
8549
+ # },
8550
+ # ],
8551
+ # output_channel: 1,
8552
+ # },
8553
+ # ],
8554
+ # channels_in: 1,
8555
+ # channels_out: 1,
8556
+ # },
8557
+ # stream_name: "__string",
8558
+ # },
8559
+ # ],
8560
+ # avail_blanking: {
8561
+ # avail_blanking_image: {
8562
+ # password_param: "__string",
8563
+ # uri: "__string",
8564
+ # username: "__string",
8565
+ # },
8566
+ # state: "DISABLED", # accepts DISABLED, ENABLED
8567
+ # },
8568
+ # avail_configuration: {
8569
+ # avail_settings: {
8570
+ # scte_35_splice_insert: {
8571
+ # ad_avail_offset: 1,
8572
+ # no_regional_blackout_flag: "FOLLOW", # accepts FOLLOW, IGNORE
8573
+ # web_delivery_allowed_flag: "FOLLOW", # accepts FOLLOW, IGNORE
8574
+ # },
8575
+ # scte_35_time_signal_apos: {
8576
+ # ad_avail_offset: 1,
8577
+ # no_regional_blackout_flag: "FOLLOW", # accepts FOLLOW, IGNORE
8578
+ # web_delivery_allowed_flag: "FOLLOW", # accepts FOLLOW, IGNORE
8579
+ # },
8580
+ # },
8581
+ # },
8582
+ # blackout_slate: {
8583
+ # blackout_slate_image: {
8584
+ # password_param: "__string",
8585
+ # uri: "__string",
8586
+ # username: "__string",
8587
+ # },
8588
+ # network_end_blackout: "DISABLED", # accepts DISABLED, ENABLED
8589
+ # network_end_blackout_image: {
8590
+ # password_param: "__string",
8591
+ # uri: "__string",
8592
+ # username: "__string",
8593
+ # },
8594
+ # network_id: "__string",
8595
+ # state: "DISABLED", # accepts DISABLED, ENABLED
8596
+ # },
8597
+ # caption_descriptions: [
8598
+ # {
8599
+ # caption_selector_name: "__string",
8600
+ # destination_settings: {
8601
+ # arib_destination_settings: {
8602
+ # },
8603
+ # burn_in_destination_settings: {
8604
+ # alignment: "CENTERED", # accepts CENTERED, LEFT, SMART
8605
+ # background_color: "BLACK", # accepts BLACK, NONE, WHITE
8606
+ # background_opacity: 1,
8607
+ # font: {
8608
+ # password_param: "__string",
8609
+ # uri: "__string",
8610
+ # username: "__string",
8611
+ # },
8612
+ # font_color: "BLACK", # accepts BLACK, BLUE, GREEN, RED, WHITE, YELLOW
8613
+ # font_opacity: 1,
8614
+ # font_resolution: 1,
8615
+ # font_size: "__string",
8616
+ # outline_color: "BLACK", # accepts BLACK, BLUE, GREEN, RED, WHITE, YELLOW
8617
+ # outline_size: 1,
8618
+ # shadow_color: "BLACK", # accepts BLACK, NONE, WHITE
8619
+ # shadow_opacity: 1,
8620
+ # shadow_x_offset: 1,
8621
+ # shadow_y_offset: 1,
8622
+ # teletext_grid_control: "FIXED", # accepts FIXED, SCALED
8623
+ # x_position: 1,
8624
+ # y_position: 1,
8625
+ # },
8626
+ # dvb_sub_destination_settings: {
8627
+ # alignment: "CENTERED", # accepts CENTERED, LEFT, SMART
8628
+ # background_color: "BLACK", # accepts BLACK, NONE, WHITE
8629
+ # background_opacity: 1,
8630
+ # font: {
8631
+ # password_param: "__string",
8632
+ # uri: "__string",
8633
+ # username: "__string",
8634
+ # },
8635
+ # font_color: "BLACK", # accepts BLACK, BLUE, GREEN, RED, WHITE, YELLOW
8636
+ # font_opacity: 1,
8637
+ # font_resolution: 1,
8638
+ # font_size: "__string",
8639
+ # outline_color: "BLACK", # accepts BLACK, BLUE, GREEN, RED, WHITE, YELLOW
8640
+ # outline_size: 1,
8641
+ # shadow_color: "BLACK", # accepts BLACK, NONE, WHITE
8642
+ # shadow_opacity: 1,
8643
+ # shadow_x_offset: 1,
8644
+ # shadow_y_offset: 1,
8645
+ # teletext_grid_control: "FIXED", # accepts FIXED, SCALED
8646
+ # x_position: 1,
8647
+ # y_position: 1,
8648
+ # },
8649
+ # embedded_destination_settings: {
8650
+ # },
8651
+ # embedded_plus_scte_20_destination_settings: {
8652
+ # },
8653
+ # scte_20_plus_embedded_destination_settings: {
8654
+ # },
8655
+ # scte_27_destination_settings: {
8656
+ # },
8657
+ # smpte_tt_destination_settings: {
8658
+ # },
8659
+ # teletext_destination_settings: {
8660
+ # },
8661
+ # ttml_destination_settings: {
8662
+ # style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
8663
+ # },
8664
+ # webvtt_destination_settings: {
8665
+ # },
8666
+ # },
8667
+ # language_code: "__string",
8668
+ # language_description: "__string",
8669
+ # name: "__string",
8670
+ # },
8671
+ # ],
8672
+ # global_configuration: {
8673
+ # initial_audio_gain: 1,
8674
+ # input_end_action: "NONE", # accepts NONE, SWITCH_AND_LOOP_INPUTS
8675
+ # input_loss_behavior: {
8676
+ # black_frame_msec: 1,
8677
+ # input_loss_image_color: "__string",
8678
+ # input_loss_image_slate: {
8679
+ # password_param: "__string",
8680
+ # uri: "__string",
8681
+ # username: "__string",
8682
+ # },
8683
+ # input_loss_image_type: "COLOR", # accepts COLOR, SLATE
8684
+ # repeat_frame_msec: 1,
8685
+ # },
8686
+ # output_timing_source: "INPUT_CLOCK", # accepts INPUT_CLOCK, SYSTEM_CLOCK
8687
+ # support_low_framerate_inputs: "DISABLED", # accepts DISABLED, ENABLED
8688
+ # },
8689
+ # output_groups: [
8690
+ # {
8691
+ # name: "__string",
8692
+ # output_group_settings: {
8693
+ # archive_group_settings: {
8694
+ # destination: {
8695
+ # destination_ref_id: "__string",
8696
+ # },
8697
+ # rollover_interval: 1,
8698
+ # },
8699
+ # hls_group_settings: {
8700
+ # ad_markers: ["ADOBE"], # accepts ADOBE, ELEMENTAL, ELEMENTAL_SCTE35
8701
+ # base_url_content: "__string",
8702
+ # base_url_manifest: "__string",
8703
+ # caption_language_mappings: [
8704
+ # {
8705
+ # caption_channel: 1,
8706
+ # language_code: "__string",
8707
+ # language_description: "__string",
8708
+ # },
8709
+ # ],
8710
+ # caption_language_setting: "INSERT", # accepts INSERT, NONE, OMIT
8711
+ # client_cache: "DISABLED", # accepts DISABLED, ENABLED
8712
+ # codec_specification: "RFC_4281", # accepts RFC_4281, RFC_6381
8713
+ # constant_iv: "__string",
8714
+ # destination: {
8715
+ # destination_ref_id: "__string",
8716
+ # },
8717
+ # directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
8718
+ # encryption_type: "AES128", # accepts AES128, SAMPLE_AES
8719
+ # hls_cdn_settings: {
8720
+ # hls_akamai_settings: {
8721
+ # connection_retry_interval: 1,
8722
+ # filecache_duration: 1,
8723
+ # http_transfer_mode: "CHUNKED", # accepts CHUNKED, NON_CHUNKED
8724
+ # num_retries: 1,
8725
+ # restart_delay: 1,
8726
+ # salt: "__string",
8727
+ # token: "__string",
8728
+ # },
8729
+ # hls_basic_put_settings: {
8730
+ # connection_retry_interval: 1,
8731
+ # filecache_duration: 1,
8732
+ # num_retries: 1,
8733
+ # restart_delay: 1,
8734
+ # },
8735
+ # hls_media_store_settings: {
8736
+ # connection_retry_interval: 1,
8737
+ # filecache_duration: 1,
8738
+ # media_store_storage_class: "TEMPORAL", # accepts TEMPORAL
8739
+ # num_retries: 1,
8740
+ # restart_delay: 1,
8741
+ # },
8742
+ # hls_webdav_settings: {
8743
+ # connection_retry_interval: 1,
8744
+ # filecache_duration: 1,
8745
+ # http_transfer_mode: "CHUNKED", # accepts CHUNKED, NON_CHUNKED
8746
+ # num_retries: 1,
8747
+ # restart_delay: 1,
8748
+ # },
8749
+ # },
8750
+ # index_n_segments: 1,
8751
+ # input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
8752
+ # iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
8753
+ # iv_source: "EXPLICIT", # accepts EXPLICIT, FOLLOWS_SEGMENT_NUMBER
8754
+ # keep_segments: 1,
8755
+ # key_format: "__string",
8756
+ # key_format_versions: "__string",
8757
+ # key_provider_settings: {
8758
+ # static_key_settings: {
8759
+ # key_provider_server: {
8760
+ # password_param: "__string",
8761
+ # uri: "__string",
8762
+ # username: "__string",
8763
+ # },
8764
+ # static_key_value: "__string",
8765
+ # },
8766
+ # },
8767
+ # manifest_compression: "GZIP", # accepts GZIP, NONE
8768
+ # manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
8769
+ # min_segment_length: 1,
8770
+ # mode: "LIVE", # accepts LIVE, VOD
8771
+ # output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY
8772
+ # program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
8773
+ # program_date_time_period: 1,
8774
+ # segment_length: 1,
8775
+ # segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
8776
+ # segments_per_subdirectory: 1,
8777
+ # stream_inf_resolution: "EXCLUDE", # accepts EXCLUDE, INCLUDE
8778
+ # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
8779
+ # timed_metadata_id_3_period: 1,
8780
+ # timestamp_delta_milliseconds: 1,
8781
+ # ts_file_mode: "SEGMENTED_FILES", # accepts SEGMENTED_FILES, SINGLE_FILE
8782
+ # },
8783
+ # ms_smooth_group_settings: {
8784
+ # acquisition_point_id: "__string",
8785
+ # audio_only_timecode_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED_CLOCK
8786
+ # certificate_mode: "SELF_SIGNED", # accepts SELF_SIGNED, VERIFY_AUTHENTICITY
8787
+ # connection_retry_interval: 1,
8788
+ # destination: {
8789
+ # destination_ref_id: "__string",
8790
+ # },
8791
+ # event_id: "__string",
8792
+ # event_id_mode: "NO_EVENT_ID", # accepts NO_EVENT_ID, USE_CONFIGURED, USE_TIMESTAMP
8793
+ # event_stop_behavior: "NONE", # accepts NONE, SEND_EOS
8794
+ # filecache_duration: 1,
8795
+ # fragment_length: 1,
8796
+ # input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
8797
+ # num_retries: 1,
8798
+ # restart_delay: 1,
8799
+ # segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
8800
+ # send_delay_ms: 1,
8801
+ # sparse_track_type: "NONE", # accepts NONE, SCTE_35
8802
+ # stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
8803
+ # timestamp_offset: "__string",
8804
+ # timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
8805
+ # },
8806
+ # udp_group_settings: {
8807
+ # input_loss_action: "DROP_PROGRAM", # accepts DROP_PROGRAM, DROP_TS, EMIT_PROGRAM
8808
+ # timed_metadata_id_3_frame: "NONE", # accepts NONE, PRIV, TDRL
8809
+ # timed_metadata_id_3_period: 1,
8810
+ # },
8811
+ # },
8812
+ # outputs: [
8813
+ # {
8814
+ # audio_description_names: ["__string"],
8815
+ # caption_description_names: ["__string"],
8816
+ # output_name: "__string",
8817
+ # output_settings: {
8818
+ # archive_output_settings: {
8819
+ # container_settings: {
8820
+ # m2ts_settings: {
8821
+ # absent_input_audio_behavior: "DROP", # accepts DROP, ENCODE_SILENCE
8822
+ # arib: "DISABLED", # accepts DISABLED, ENABLED
8823
+ # arib_captions_pid: "__string",
8824
+ # arib_captions_pid_control: "AUTO", # accepts AUTO, USE_CONFIGURED
8825
+ # audio_buffer_model: "ATSC", # accepts ATSC, DVB
8826
+ # audio_frames_per_pes: 1,
8827
+ # audio_pids: "__string",
8828
+ # audio_stream_type: "ATSC", # accepts ATSC, DVB
8829
+ # bitrate: 1,
8830
+ # buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
8831
+ # cc_descriptor: "DISABLED", # accepts DISABLED, ENABLED
8832
+ # dvb_nit_settings: {
8833
+ # network_id: 1,
8834
+ # network_name: "__string",
8835
+ # rep_interval: 1,
8836
+ # },
8837
+ # dvb_sdt_settings: {
8838
+ # output_sdt: "SDT_FOLLOW", # accepts SDT_FOLLOW, SDT_FOLLOW_IF_PRESENT, SDT_MANUAL, SDT_NONE
8839
+ # rep_interval: 1,
8840
+ # service_name: "__string",
8841
+ # service_provider_name: "__string",
8842
+ # },
8843
+ # dvb_sub_pids: "__string",
8844
+ # dvb_tdt_settings: {
8845
+ # rep_interval: 1,
8846
+ # },
8847
+ # dvb_teletext_pid: "__string",
8848
+ # ebif: "NONE", # accepts NONE, PASSTHROUGH
8849
+ # ebp_audio_interval: "VIDEO_AND_FIXED_INTERVALS", # accepts VIDEO_AND_FIXED_INTERVALS, VIDEO_INTERVAL
8850
+ # ebp_lookahead_ms: 1,
8851
+ # ebp_placement: "VIDEO_AND_AUDIO_PIDS", # accepts VIDEO_AND_AUDIO_PIDS, VIDEO_PID
8852
+ # ecm_pid: "__string",
8853
+ # es_rate_in_pes: "EXCLUDE", # accepts EXCLUDE, INCLUDE
8854
+ # etv_platform_pid: "__string",
8855
+ # etv_signal_pid: "__string",
8856
+ # fragment_time: 1.0,
8857
+ # klv: "NONE", # accepts NONE, PASSTHROUGH
8858
+ # klv_data_pids: "__string",
8859
+ # null_packet_bitrate: 1.0,
8860
+ # pat_interval: 1,
8861
+ # pcr_control: "CONFIGURED_PCR_PERIOD", # accepts CONFIGURED_PCR_PERIOD, PCR_EVERY_PES_PACKET
8862
+ # pcr_period: 1,
8863
+ # pcr_pid: "__string",
8864
+ # pmt_interval: 1,
8865
+ # pmt_pid: "__string",
8866
+ # program_num: 1,
8867
+ # rate_mode: "CBR", # accepts CBR, VBR
8868
+ # scte_27_pids: "__string",
8869
+ # scte_35_control: "NONE", # accepts NONE, PASSTHROUGH
8870
+ # scte_35_pid: "__string",
8871
+ # segmentation_markers: "EBP", # accepts EBP, EBP_LEGACY, NONE, PSI_SEGSTART, RAI_ADAPT, RAI_SEGSTART
8872
+ # segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
8873
+ # segmentation_time: 1.0,
8874
+ # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
8875
+ # timed_metadata_pid: "__string",
8876
+ # transport_stream_id: 1,
8877
+ # video_pid: "__string",
8878
+ # },
8879
+ # },
8880
+ # extension: "__string",
8881
+ # name_modifier: "__string",
8882
+ # },
8883
+ # hls_output_settings: {
8884
+ # hls_settings: {
8885
+ # audio_only_hls_settings: {
8886
+ # audio_group_id: "__string",
8887
+ # audio_only_image: {
8888
+ # password_param: "__string",
8889
+ # uri: "__string",
8890
+ # username: "__string",
8891
+ # },
8892
+ # audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT", # accepts ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_NOT_AUTO_SELECT, AUDIO_ONLY_VARIANT_STREAM
8893
+ # },
8894
+ # standard_hls_settings: {
8895
+ # audio_rendition_sets: "__string",
8896
+ # m3u_8_settings: {
8897
+ # audio_frames_per_pes: 1,
8898
+ # audio_pids: "__string",
8899
+ # ecm_pid: "__string",
8900
+ # pat_interval: 1,
8901
+ # pcr_control: "CONFIGURED_PCR_PERIOD", # accepts CONFIGURED_PCR_PERIOD, PCR_EVERY_PES_PACKET
8902
+ # pcr_period: 1,
8903
+ # pcr_pid: "__string",
8904
+ # pmt_interval: 1,
8905
+ # pmt_pid: "__string",
8906
+ # program_num: 1,
8907
+ # scte_35_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
8908
+ # scte_35_pid: "__string",
8909
+ # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
8910
+ # transport_stream_id: 1,
8911
+ # video_pid: "__string",
8912
+ # },
8913
+ # },
8914
+ # },
8915
+ # name_modifier: "__string",
8916
+ # segment_modifier: "__string",
8917
+ # },
8918
+ # ms_smooth_output_settings: {
8919
+ # name_modifier: "__string",
8920
+ # },
8921
+ # udp_output_settings: {
8922
+ # buffer_msec: 1,
8923
+ # container_settings: {
8924
+ # m2ts_settings: {
8925
+ # absent_input_audio_behavior: "DROP", # accepts DROP, ENCODE_SILENCE
8926
+ # arib: "DISABLED", # accepts DISABLED, ENABLED
8927
+ # arib_captions_pid: "__string",
8928
+ # arib_captions_pid_control: "AUTO", # accepts AUTO, USE_CONFIGURED
8929
+ # audio_buffer_model: "ATSC", # accepts ATSC, DVB
8930
+ # audio_frames_per_pes: 1,
8931
+ # audio_pids: "__string",
8932
+ # audio_stream_type: "ATSC", # accepts ATSC, DVB
8933
+ # bitrate: 1,
8934
+ # buffer_model: "MULTIPLEX", # accepts MULTIPLEX, NONE
8935
+ # cc_descriptor: "DISABLED", # accepts DISABLED, ENABLED
8936
+ # dvb_nit_settings: {
8937
+ # network_id: 1,
8938
+ # network_name: "__string",
8939
+ # rep_interval: 1,
8940
+ # },
8941
+ # dvb_sdt_settings: {
8942
+ # output_sdt: "SDT_FOLLOW", # accepts SDT_FOLLOW, SDT_FOLLOW_IF_PRESENT, SDT_MANUAL, SDT_NONE
8943
+ # rep_interval: 1,
8944
+ # service_name: "__string",
8945
+ # service_provider_name: "__string",
8946
+ # },
8947
+ # dvb_sub_pids: "__string",
8948
+ # dvb_tdt_settings: {
8949
+ # rep_interval: 1,
8950
+ # },
8951
+ # dvb_teletext_pid: "__string",
8952
+ # ebif: "NONE", # accepts NONE, PASSTHROUGH
8953
+ # ebp_audio_interval: "VIDEO_AND_FIXED_INTERVALS", # accepts VIDEO_AND_FIXED_INTERVALS, VIDEO_INTERVAL
8954
+ # ebp_lookahead_ms: 1,
8955
+ # ebp_placement: "VIDEO_AND_AUDIO_PIDS", # accepts VIDEO_AND_AUDIO_PIDS, VIDEO_PID
8956
+ # ecm_pid: "__string",
8957
+ # es_rate_in_pes: "EXCLUDE", # accepts EXCLUDE, INCLUDE
8958
+ # etv_platform_pid: "__string",
8959
+ # etv_signal_pid: "__string",
8960
+ # fragment_time: 1.0,
8961
+ # klv: "NONE", # accepts NONE, PASSTHROUGH
8962
+ # klv_data_pids: "__string",
8963
+ # null_packet_bitrate: 1.0,
8964
+ # pat_interval: 1,
8965
+ # pcr_control: "CONFIGURED_PCR_PERIOD", # accepts CONFIGURED_PCR_PERIOD, PCR_EVERY_PES_PACKET
8966
+ # pcr_period: 1,
8967
+ # pcr_pid: "__string",
8968
+ # pmt_interval: 1,
8969
+ # pmt_pid: "__string",
8970
+ # program_num: 1,
8971
+ # rate_mode: "CBR", # accepts CBR, VBR
8972
+ # scte_27_pids: "__string",
8973
+ # scte_35_control: "NONE", # accepts NONE, PASSTHROUGH
8974
+ # scte_35_pid: "__string",
8975
+ # segmentation_markers: "EBP", # accepts EBP, EBP_LEGACY, NONE, PSI_SEGSTART, RAI_ADAPT, RAI_SEGSTART
8976
+ # segmentation_style: "MAINTAIN_CADENCE", # accepts MAINTAIN_CADENCE, RESET_CADENCE
8977
+ # segmentation_time: 1.0,
8978
+ # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
8979
+ # timed_metadata_pid: "__string",
8980
+ # transport_stream_id: 1,
8981
+ # video_pid: "__string",
8982
+ # },
8983
+ # },
8984
+ # destination: {
8985
+ # destination_ref_id: "__string",
8986
+ # },
8987
+ # fec_output_settings: {
8988
+ # column_depth: 1,
8989
+ # include_fec: "COLUMN", # accepts COLUMN, COLUMN_AND_ROW
8990
+ # row_length: 1,
8991
+ # },
8992
+ # },
8993
+ # },
8994
+ # video_description_name: "__string",
8995
+ # },
8996
+ # ],
8997
+ # },
8998
+ # ],
8999
+ # timecode_config: {
9000
+ # source: "EMBEDDED", # accepts EMBEDDED, SYSTEMCLOCK, ZEROBASED
9001
+ # sync_threshold: 1,
9002
+ # },
9003
+ # video_descriptions: [
9004
+ # {
9005
+ # codec_settings: {
9006
+ # h264_settings: {
9007
+ # adaptive_quantization: "HIGH", # accepts HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
9008
+ # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
9009
+ # bitrate: 1,
9010
+ # buf_fill_pct: 1,
9011
+ # buf_size: 1,
9012
+ # color_metadata: "IGNORE", # accepts IGNORE, INSERT
9013
+ # entropy_encoding: "CABAC", # accepts CABAC, CAVLC
9014
+ # fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
9015
+ # flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
9016
+ # framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
9017
+ # framerate_denominator: 1,
9018
+ # framerate_numerator: 1,
9019
+ # gop_b_reference: "DISABLED", # accepts DISABLED, ENABLED
9020
+ # gop_closed_cadence: 1,
9021
+ # gop_num_b_frames: 1,
9022
+ # gop_size: 1.0,
9023
+ # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
9024
+ # level: "H264_LEVEL_1", # accepts H264_LEVEL_1, H264_LEVEL_1_1, H264_LEVEL_1_2, H264_LEVEL_1_3, H264_LEVEL_2, H264_LEVEL_2_1, H264_LEVEL_2_2, H264_LEVEL_3, H264_LEVEL_3_1, H264_LEVEL_3_2, H264_LEVEL_4, H264_LEVEL_4_1, H264_LEVEL_4_2, H264_LEVEL_5, H264_LEVEL_5_1, H264_LEVEL_5_2, H264_LEVEL_AUTO
9025
+ # look_ahead_rate_control: "HIGH", # accepts HIGH, LOW, MEDIUM
9026
+ # max_bitrate: 1,
9027
+ # min_i_interval: 1,
9028
+ # num_ref_frames: 1,
9029
+ # par_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
9030
+ # par_denominator: 1,
9031
+ # par_numerator: 1,
9032
+ # profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
9033
+ # rate_control_mode: "CBR", # accepts CBR, VBR
9034
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
9035
+ # scene_change_detect: "DISABLED", # accepts DISABLED, ENABLED
9036
+ # slices: 1,
9037
+ # softness: 1,
9038
+ # spatial_aq: "DISABLED", # accepts DISABLED, ENABLED
9039
+ # syntax: "DEFAULT", # accepts DEFAULT, RP2027
9040
+ # temporal_aq: "DISABLED", # accepts DISABLED, ENABLED
9041
+ # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
9042
+ # },
9043
+ # },
9044
+ # height: 1,
9045
+ # name: "__string",
9046
+ # respond_to_afd: "NONE", # accepts NONE, PASSTHROUGH, RESPOND
9047
+ # scaling_behavior: "DEFAULT", # accepts DEFAULT, STRETCH_TO_OUTPUT
9048
+ # sharpness: 1,
9049
+ # width: 1,
9050
+ # },
9051
+ # ],
9052
+ # },
9053
+ # input_specification: {
9054
+ # codec: "MPEG2", # accepts MPEG2, AVC, HEVC
9055
+ # maximum_bitrate: "MAX_10_MBPS", # accepts MAX_10_MBPS, MAX_20_MBPS, MAX_50_MBPS
9056
+ # resolution: "SD", # accepts SD, HD, UHD
9057
+ # },
9058
+ # name: "__string",
9059
+ # role_arn: "__string",
9060
+ # }
9061
+ #
9062
+ # @!attribute [rw] channel_id
9063
+ # @return [String]
9064
+ #
9065
+ # @!attribute [rw] destinations
9066
+ # @return [Array<Types::OutputDestination>]
9067
+ #
9068
+ # @!attribute [rw] encoder_settings
9069
+ # @return [Types::EncoderSettings]
9070
+ #
9071
+ # @!attribute [rw] input_specification
9072
+ # @return [Types::InputSpecification]
9073
+ #
9074
+ # @!attribute [rw] name
9075
+ # @return [String]
9076
+ #
9077
+ # @!attribute [rw] role_arn
9078
+ # @return [String]
9079
+ #
9080
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelRequest AWS API Documentation
9081
+ #
9082
+ class UpdateChannelRequest < Struct.new(
9083
+ :channel_id,
9084
+ :destinations,
9085
+ :encoder_settings,
9086
+ :input_specification,
9087
+ :name,
9088
+ :role_arn)
9089
+ include Aws::Structure
9090
+ end
9091
+
9092
+ # @!attribute [rw] channel
9093
+ # @return [Types::Channel]
9094
+ #
9095
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelResponse AWS API Documentation
9096
+ #
9097
+ class UpdateChannelResponse < Struct.new(
9098
+ :channel)
9099
+ include Aws::Structure
9100
+ end
9101
+
9102
+ # The updated channel's description.
9103
+ #
9104
+ # @!attribute [rw] channel
9105
+ # @return [Types::Channel]
9106
+ #
9107
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelResultModel AWS API Documentation
9108
+ #
9109
+ class UpdateChannelResultModel < Struct.new(
9110
+ :channel)
9111
+ include Aws::Structure
9112
+ end
9113
+
8425
9114
  # @!attribute [rw] element_path
8426
9115
  # @return [String]
8427
9116
  #