aws-sdk-medialive 1.61.0 → 1.66.0

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.66.0
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-medialive/customizations'
49
49
  # @!group service
50
50
  module Aws::MediaLive
51
51
 
52
- GEM_VERSION = '1.61.0'
52
+ GEM_VERSION = '1.66.0'
53
53
 
54
54
  end
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -785,6 +785,11 @@ module Aws::MediaLive
785
785
  #
786
786
  # @option params [Hash<String,String>] :tags
787
787
  #
788
+ # @option params [Types::VpcOutputSettings] :vpc
789
+ # The properties for a private VPC Output When this property is
790
+ # specified, the output egress addresses will be created in a user
791
+ # specified VPC
792
+ #
788
793
  # @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
789
794
  #
790
795
  # * {Types::CreateChannelResponse#channel #channel} => Types::Channel
@@ -1296,6 +1301,8 @@ module Aws::MediaLive
1296
1301
  # nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
1297
1302
  # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
1298
1303
  # },
1304
+ # frame_capture_hls_settings: {
1305
+ # },
1299
1306
  # standard_hls_settings: {
1300
1307
  # audio_rendition_sets: "__string",
1301
1308
  # m3u_8_settings: { # required
@@ -1428,7 +1435,7 @@ module Aws::MediaLive
1428
1435
  # {
1429
1436
  # codec_settings: {
1430
1437
  # frame_capture_settings: {
1431
- # capture_interval: 1, # required
1438
+ # capture_interval: 1,
1432
1439
  # capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
1433
1440
  # },
1434
1441
  # h264_settings: {
@@ -1689,6 +1696,11 @@ module Aws::MediaLive
1689
1696
  # tags: {
1690
1697
  # "__string" => "__string",
1691
1698
  # },
1699
+ # vpc: {
1700
+ # public_address_allocation_ids: ["__string"],
1701
+ # security_group_ids: ["__string"],
1702
+ # subnet_ids: ["__string"], # required
1703
+ # },
1692
1704
  # })
1693
1705
  #
1694
1706
  # @example Response structure
@@ -2273,6 +2285,12 @@ module Aws::MediaLive
2273
2285
  # resp.channel.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
2274
2286
  # resp.channel.tags #=> Hash
2275
2287
  # resp.channel.tags["__string"] #=> String
2288
+ # resp.channel.vpc.public_address_allocation_ids #=> Array
2289
+ # resp.channel.vpc.public_address_allocation_ids[0] #=> String
2290
+ # resp.channel.vpc.security_group_ids #=> Array
2291
+ # resp.channel.vpc.security_group_ids[0] #=> String
2292
+ # resp.channel.vpc.subnet_ids #=> Array
2293
+ # resp.channel.vpc.subnet_ids[0] #=> String
2276
2294
  #
2277
2295
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel AWS API Documentation
2278
2296
  #
@@ -2372,6 +2390,8 @@ module Aws::MediaLive
2372
2390
  # resp.input.input_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
2373
2391
  # resp.input.input_devices #=> Array
2374
2392
  # resp.input.input_devices[0].id #=> String
2393
+ # resp.input.input_partner_ids #=> Array
2394
+ # resp.input.input_partner_ids[0] #=> String
2375
2395
  # resp.input.input_source_type #=> String, one of "STATIC", "DYNAMIC"
2376
2396
  # resp.input.media_connect_flows #=> Array
2377
2397
  # resp.input.media_connect_flows[0].flow_arn #=> String
@@ -2588,6 +2608,72 @@ module Aws::MediaLive
2588
2608
  req.send_request(options)
2589
2609
  end
2590
2610
 
2611
+ # Create a partner input
2612
+ #
2613
+ # @option params [required, String] :input_id
2614
+ #
2615
+ # @option params [String] :request_id
2616
+ # **A suitable default value is auto-generated.** You should normally
2617
+ # not need to pass this option.**
2618
+ #
2619
+ # @option params [Hash<String,String>] :tags
2620
+ #
2621
+ # @return [Types::CreatePartnerInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2622
+ #
2623
+ # * {Types::CreatePartnerInputResponse#input #input} => Types::Input
2624
+ #
2625
+ # @example Request syntax with placeholder values
2626
+ #
2627
+ # resp = client.create_partner_input({
2628
+ # input_id: "__string", # required
2629
+ # request_id: "__string",
2630
+ # tags: {
2631
+ # "__string" => "__string",
2632
+ # },
2633
+ # })
2634
+ #
2635
+ # @example Response structure
2636
+ #
2637
+ # resp.input.arn #=> String
2638
+ # resp.input.attached_channels #=> Array
2639
+ # resp.input.attached_channels[0] #=> String
2640
+ # resp.input.destinations #=> Array
2641
+ # resp.input.destinations[0].ip #=> String
2642
+ # resp.input.destinations[0].port #=> String
2643
+ # resp.input.destinations[0].url #=> String
2644
+ # resp.input.destinations[0].vpc.availability_zone #=> String
2645
+ # resp.input.destinations[0].vpc.network_interface_id #=> String
2646
+ # resp.input.id #=> String
2647
+ # resp.input.input_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
2648
+ # resp.input.input_devices #=> Array
2649
+ # resp.input.input_devices[0].id #=> String
2650
+ # resp.input.input_partner_ids #=> Array
2651
+ # resp.input.input_partner_ids[0] #=> String
2652
+ # resp.input.input_source_type #=> String, one of "STATIC", "DYNAMIC"
2653
+ # resp.input.media_connect_flows #=> Array
2654
+ # resp.input.media_connect_flows[0].flow_arn #=> String
2655
+ # resp.input.name #=> String
2656
+ # resp.input.role_arn #=> String
2657
+ # resp.input.security_groups #=> Array
2658
+ # resp.input.security_groups[0] #=> String
2659
+ # resp.input.sources #=> Array
2660
+ # resp.input.sources[0].password_param #=> String
2661
+ # resp.input.sources[0].url #=> String
2662
+ # resp.input.sources[0].username #=> String
2663
+ # resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
2664
+ # resp.input.tags #=> Hash
2665
+ # resp.input.tags["__string"] #=> String
2666
+ # resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
2667
+ #
2668
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreatePartnerInput AWS API Documentation
2669
+ #
2670
+ # @overload create_partner_input(params = {})
2671
+ # @param [Hash] params ({})
2672
+ def create_partner_input(params = {}, options = {})
2673
+ req = build_request(:create_partner_input, params)
2674
+ req.send_request(options)
2675
+ end
2676
+
2591
2677
  # Create tags for a resource
2592
2678
  #
2593
2679
  # @option params [required, String] :resource_arn
@@ -2636,6 +2722,7 @@ module Aws::MediaLive
2636
2722
  # * {Types::DeleteChannelResponse#role_arn #role_arn} => String
2637
2723
  # * {Types::DeleteChannelResponse#state #state} => String
2638
2724
  # * {Types::DeleteChannelResponse#tags #tags} => Hash&lt;String,String&gt;
2725
+ # * {Types::DeleteChannelResponse#vpc #vpc} => Types::VpcOutputSettings
2639
2726
  #
2640
2727
  # @example Request syntax with placeholder values
2641
2728
  #
@@ -3225,6 +3312,12 @@ module Aws::MediaLive
3225
3312
  # resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
3226
3313
  # resp.tags #=> Hash
3227
3314
  # resp.tags["__string"] #=> String
3315
+ # resp.vpc.public_address_allocation_ids #=> Array
3316
+ # resp.vpc.public_address_allocation_ids[0] #=> String
3317
+ # resp.vpc.security_group_ids #=> Array
3318
+ # resp.vpc.security_group_ids[0] #=> String
3319
+ # resp.vpc.subnet_ids #=> Array
3320
+ # resp.vpc.subnet_ids[0] #=> String
3228
3321
  #
3229
3322
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteChannel AWS API Documentation
3230
3323
  #
@@ -3527,6 +3620,7 @@ module Aws::MediaLive
3527
3620
  # * {Types::DescribeChannelResponse#role_arn #role_arn} => String
3528
3621
  # * {Types::DescribeChannelResponse#state #state} => String
3529
3622
  # * {Types::DescribeChannelResponse#tags #tags} => Hash&lt;String,String&gt;
3623
+ # * {Types::DescribeChannelResponse#vpc #vpc} => Types::VpcOutputSettings
3530
3624
  #
3531
3625
  # @example Request syntax with placeholder values
3532
3626
  #
@@ -4116,6 +4210,12 @@ module Aws::MediaLive
4116
4210
  # resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
4117
4211
  # resp.tags #=> Hash
4118
4212
  # resp.tags["__string"] #=> String
4213
+ # resp.vpc.public_address_allocation_ids #=> Array
4214
+ # resp.vpc.public_address_allocation_ids[0] #=> String
4215
+ # resp.vpc.security_group_ids #=> Array
4216
+ # resp.vpc.security_group_ids[0] #=> String
4217
+ # resp.vpc.subnet_ids #=> Array
4218
+ # resp.vpc.subnet_ids[0] #=> String
4119
4219
  #
4120
4220
  #
4121
4221
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4146,6 +4246,7 @@ module Aws::MediaLive
4146
4246
  # * {Types::DescribeInputResponse#id #id} => String
4147
4247
  # * {Types::DescribeInputResponse#input_class #input_class} => String
4148
4248
  # * {Types::DescribeInputResponse#input_devices #input_devices} => Array&lt;Types::InputDeviceSettings&gt;
4249
+ # * {Types::DescribeInputResponse#input_partner_ids #input_partner_ids} => Array&lt;String&gt;
4149
4250
  # * {Types::DescribeInputResponse#input_source_type #input_source_type} => String
4150
4251
  # * {Types::DescribeInputResponse#media_connect_flows #media_connect_flows} => Array&lt;Types::MediaConnectFlow&gt;
4151
4252
  # * {Types::DescribeInputResponse#name #name} => String
@@ -4177,6 +4278,8 @@ module Aws::MediaLive
4177
4278
  # resp.input_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
4178
4279
  # resp.input_devices #=> Array
4179
4280
  # resp.input_devices[0].id #=> String
4281
+ # resp.input_partner_ids #=> Array
4282
+ # resp.input_partner_ids[0] #=> String
4180
4283
  # resp.input_source_type #=> String, one of "STATIC", "DYNAMIC"
4181
4284
  # resp.media_connect_flows #=> Array
4182
4285
  # resp.media_connect_flows[0].flow_arn #=> String
@@ -4788,6 +4891,12 @@ module Aws::MediaLive
4788
4891
  # resp.channels[0].state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
4789
4892
  # resp.channels[0].tags #=> Hash
4790
4893
  # resp.channels[0].tags["__string"] #=> String
4894
+ # resp.channels[0].vpc.public_address_allocation_ids #=> Array
4895
+ # resp.channels[0].vpc.public_address_allocation_ids[0] #=> String
4896
+ # resp.channels[0].vpc.security_group_ids #=> Array
4897
+ # resp.channels[0].vpc.security_group_ids[0] #=> String
4898
+ # resp.channels[0].vpc.subnet_ids #=> Array
4899
+ # resp.channels[0].vpc.subnet_ids[0] #=> String
4791
4900
  # resp.next_token #=> String
4792
4901
  #
4793
4902
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListChannels AWS API Documentation
@@ -4986,6 +5095,8 @@ module Aws::MediaLive
4986
5095
  # resp.inputs[0].input_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
4987
5096
  # resp.inputs[0].input_devices #=> Array
4988
5097
  # resp.inputs[0].input_devices[0].id #=> String
5098
+ # resp.inputs[0].input_partner_ids #=> Array
5099
+ # resp.inputs[0].input_partner_ids[0] #=> String
4989
5100
  # resp.inputs[0].input_source_type #=> String, one of "STATIC", "DYNAMIC"
4990
5101
  # resp.inputs[0].media_connect_flows #=> Array
4991
5102
  # resp.inputs[0].media_connect_flows[0].flow_arn #=> String
@@ -5404,6 +5515,7 @@ module Aws::MediaLive
5404
5515
  # * {Types::StartChannelResponse#role_arn #role_arn} => String
5405
5516
  # * {Types::StartChannelResponse#state #state} => String
5406
5517
  # * {Types::StartChannelResponse#tags #tags} => Hash&lt;String,String&gt;
5518
+ # * {Types::StartChannelResponse#vpc #vpc} => Types::VpcOutputSettings
5407
5519
  #
5408
5520
  # @example Request syntax with placeholder values
5409
5521
  #
@@ -5993,6 +6105,12 @@ module Aws::MediaLive
5993
6105
  # resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
5994
6106
  # resp.tags #=> Hash
5995
6107
  # resp.tags["__string"] #=> String
6108
+ # resp.vpc.public_address_allocation_ids #=> Array
6109
+ # resp.vpc.public_address_allocation_ids[0] #=> String
6110
+ # resp.vpc.security_group_ids #=> Array
6111
+ # resp.vpc.security_group_ids[0] #=> String
6112
+ # resp.vpc.subnet_ids #=> Array
6113
+ # resp.vpc.subnet_ids[0] #=> String
5996
6114
  #
5997
6115
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartChannel AWS API Documentation
5998
6116
  #
@@ -6077,6 +6195,7 @@ module Aws::MediaLive
6077
6195
  # * {Types::StopChannelResponse#role_arn #role_arn} => String
6078
6196
  # * {Types::StopChannelResponse#state #state} => String
6079
6197
  # * {Types::StopChannelResponse#tags #tags} => Hash&lt;String,String&gt;
6198
+ # * {Types::StopChannelResponse#vpc #vpc} => Types::VpcOutputSettings
6080
6199
  #
6081
6200
  # @example Request syntax with placeholder values
6082
6201
  #
@@ -6666,6 +6785,12 @@ module Aws::MediaLive
6666
6785
  # resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
6667
6786
  # resp.tags #=> Hash
6668
6787
  # resp.tags["__string"] #=> String
6788
+ # resp.vpc.public_address_allocation_ids #=> Array
6789
+ # resp.vpc.public_address_allocation_ids[0] #=> String
6790
+ # resp.vpc.security_group_ids #=> Array
6791
+ # resp.vpc.security_group_ids[0] #=> String
6792
+ # resp.vpc.subnet_ids #=> Array
6793
+ # resp.vpc.subnet_ids[0] #=> String
6669
6794
  #
6670
6795
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StopChannel AWS API Documentation
6671
6796
  #
@@ -6735,6 +6860,8 @@ module Aws::MediaLive
6735
6860
  #
6736
6861
  # @option params [String] :target_customer_id
6737
6862
  #
6863
+ # @option params [String] :target_region
6864
+ #
6738
6865
  # @option params [String] :transfer_message
6739
6866
  #
6740
6867
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -6744,6 +6871,7 @@ module Aws::MediaLive
6744
6871
  # resp = client.transfer_input_device({
6745
6872
  # input_device_id: "__string", # required
6746
6873
  # target_customer_id: "__string",
6874
+ # target_region: "__string",
6747
6875
  # transfer_message: "__string",
6748
6876
  # })
6749
6877
  #
@@ -7289,6 +7417,8 @@ module Aws::MediaLive
7289
7417
  # nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
7290
7418
  # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
7291
7419
  # },
7420
+ # frame_capture_hls_settings: {
7421
+ # },
7292
7422
  # standard_hls_settings: {
7293
7423
  # audio_rendition_sets: "__string",
7294
7424
  # m3u_8_settings: { # required
@@ -7421,7 +7551,7 @@ module Aws::MediaLive
7421
7551
  # {
7422
7552
  # codec_settings: {
7423
7553
  # frame_capture_settings: {
7424
- # capture_interval: 1, # required
7554
+ # capture_interval: 1,
7425
7555
  # capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
7426
7556
  # },
7427
7557
  # h264_settings: {
@@ -8261,6 +8391,12 @@ module Aws::MediaLive
8261
8391
  # resp.channel.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
8262
8392
  # resp.channel.tags #=> Hash
8263
8393
  # resp.channel.tags["__string"] #=> String
8394
+ # resp.channel.vpc.public_address_allocation_ids #=> Array
8395
+ # resp.channel.vpc.public_address_allocation_ids[0] #=> String
8396
+ # resp.channel.vpc.security_group_ids #=> Array
8397
+ # resp.channel.vpc.security_group_ids[0] #=> String
8398
+ # resp.channel.vpc.subnet_ids #=> Array
8399
+ # resp.channel.vpc.subnet_ids[0] #=> String
8264
8400
  #
8265
8401
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
8266
8402
  #
@@ -8896,6 +9032,12 @@ module Aws::MediaLive
8896
9032
  # resp.channel.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
8897
9033
  # resp.channel.tags #=> Hash
8898
9034
  # resp.channel.tags["__string"] #=> String
9035
+ # resp.channel.vpc.public_address_allocation_ids #=> Array
9036
+ # resp.channel.vpc.public_address_allocation_ids[0] #=> String
9037
+ # resp.channel.vpc.security_group_ids #=> Array
9038
+ # resp.channel.vpc.security_group_ids[0] #=> String
9039
+ # resp.channel.vpc.subnet_ids #=> Array
9040
+ # resp.channel.vpc.subnet_ids[0] #=> String
8899
9041
  #
8900
9042
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelClass AWS API Documentation
8901
9043
  #
@@ -8974,6 +9116,8 @@ module Aws::MediaLive
8974
9116
  # resp.input.input_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
8975
9117
  # resp.input.input_devices #=> Array
8976
9118
  # resp.input.input_devices[0].id #=> String
9119
+ # resp.input.input_partner_ids #=> Array
9120
+ # resp.input.input_partner_ids[0] #=> String
8977
9121
  # resp.input.input_source_type #=> String, one of "STATIC", "DYNAMIC"
8978
9122
  # resp.input.media_connect_flows #=> Array
8979
9123
  # resp.input.media_connect_flows[0].flow_arn #=> String
@@ -9331,7 +9475,7 @@ module Aws::MediaLive
9331
9475
  params: params,
9332
9476
  config: config)
9333
9477
  context[:gem_name] = 'aws-sdk-medialive'
9334
- context[:gem_version] = '1.61.0'
9478
+ context[:gem_version] = '1.66.0'
9335
9479
  Seahorse::Client::Request.new(handlers, context)
9336
9480
  end
9337
9481
 
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -134,6 +134,10 @@ module Aws::MediaLive
134
134
  CreateMultiplexRequest = Shapes::StructureShape.new(name: 'CreateMultiplexRequest')
135
135
  CreateMultiplexResponse = Shapes::StructureShape.new(name: 'CreateMultiplexResponse')
136
136
  CreateMultiplexResultModel = Shapes::StructureShape.new(name: 'CreateMultiplexResultModel')
137
+ CreatePartnerInput = Shapes::StructureShape.new(name: 'CreatePartnerInput')
138
+ CreatePartnerInputRequest = Shapes::StructureShape.new(name: 'CreatePartnerInputRequest')
139
+ CreatePartnerInputResponse = Shapes::StructureShape.new(name: 'CreatePartnerInputResponse')
140
+ CreatePartnerInputResultModel = Shapes::StructureShape.new(name: 'CreatePartnerInputResultModel')
137
141
  CreateTagsRequest = Shapes::StructureShape.new(name: 'CreateTagsRequest')
138
142
  DeleteChannelRequest = Shapes::StructureShape.new(name: 'DeleteChannelRequest')
139
143
  DeleteChannelResponse = Shapes::StructureShape.new(name: 'DeleteChannelResponse')
@@ -224,6 +228,7 @@ module Aws::MediaLive
224
228
  FollowPoint = Shapes::StringShape.new(name: 'FollowPoint')
225
229
  ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
226
230
  FrameCaptureGroupSettings = Shapes::StructureShape.new(name: 'FrameCaptureGroupSettings')
231
+ FrameCaptureHlsSettings = Shapes::StructureShape.new(name: 'FrameCaptureHlsSettings')
227
232
  FrameCaptureIntervalUnit = Shapes::StringShape.new(name: 'FrameCaptureIntervalUnit')
228
233
  FrameCaptureOutputSettings = Shapes::StructureShape.new(name: 'FrameCaptureOutputSettings')
229
234
  FrameCaptureSettings = Shapes::StructureShape.new(name: 'FrameCaptureSettings')
@@ -636,6 +641,7 @@ module Aws::MediaLive
636
641
  VideoSelectorPid = Shapes::StructureShape.new(name: 'VideoSelectorPid')
637
642
  VideoSelectorProgramId = Shapes::StructureShape.new(name: 'VideoSelectorProgramId')
638
643
  VideoSelectorSettings = Shapes::StructureShape.new(name: 'VideoSelectorSettings')
644
+ VpcOutputSettings = Shapes::StructureShape.new(name: 'VpcOutputSettings')
639
645
  WavCodingMode = Shapes::StringShape.new(name: 'WavCodingMode')
640
646
  WavSettings = Shapes::StructureShape.new(name: 'WavSettings')
641
647
  WebvttDestinationSettings = Shapes::StructureShape.new(name: 'WebvttDestinationSettings')
@@ -1075,6 +1081,7 @@ module Aws::MediaLive
1075
1081
  Channel.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
1076
1082
  Channel.add_member(:state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "state"))
1077
1083
  Channel.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1084
+ Channel.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettings, location_name: "vpc"))
1078
1085
  Channel.struct_class = Types::Channel
1079
1086
 
1080
1087
  ChannelConfigurationValidationError.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
@@ -1098,6 +1105,7 @@ module Aws::MediaLive
1098
1105
  ChannelSummary.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
1099
1106
  ChannelSummary.add_member(:state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "state"))
1100
1107
  ChannelSummary.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1108
+ ChannelSummary.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettings, location_name: "vpc"))
1101
1109
  ChannelSummary.struct_class = Types::ChannelSummary
1102
1110
 
1103
1111
  ColorSpacePassthroughSettings.struct_class = Types::ColorSpacePassthroughSettings
@@ -1117,6 +1125,7 @@ module Aws::MediaLive
1117
1125
  CreateChannel.add_member(:reserved, Shapes::ShapeRef.new(shape: __string, deprecated: true, location_name: "reserved"))
1118
1126
  CreateChannel.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
1119
1127
  CreateChannel.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1128
+ CreateChannel.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettings, location_name: "vpc"))
1120
1129
  CreateChannel.struct_class = Types::CreateChannel
1121
1130
 
1122
1131
  CreateChannelRequest.add_member(:cdi_input_specification, Shapes::ShapeRef.new(shape: CdiInputSpecification, location_name: "cdiInputSpecification"))
@@ -1131,6 +1140,7 @@ module Aws::MediaLive
1131
1140
  CreateChannelRequest.add_member(:reserved, Shapes::ShapeRef.new(shape: __string, deprecated: true, location_name: "reserved"))
1132
1141
  CreateChannelRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
1133
1142
  CreateChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1143
+ CreateChannelRequest.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettings, location_name: "vpc"))
1134
1144
  CreateChannelRequest.struct_class = Types::CreateChannelRequest
1135
1145
 
1136
1146
  CreateChannelResponse.add_member(:channel, Shapes::ShapeRef.new(shape: Channel, location_name: "channel"))
@@ -1218,6 +1228,21 @@ module Aws::MediaLive
1218
1228
  CreateMultiplexResultModel.add_member(:multiplex, Shapes::ShapeRef.new(shape: Multiplex, location_name: "multiplex"))
1219
1229
  CreateMultiplexResultModel.struct_class = Types::CreateMultiplexResultModel
1220
1230
 
1231
+ CreatePartnerInput.add_member(:request_id, Shapes::ShapeRef.new(shape: __string, location_name: "requestId", metadata: {"idempotencyToken"=>true}))
1232
+ CreatePartnerInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1233
+ CreatePartnerInput.struct_class = Types::CreatePartnerInput
1234
+
1235
+ CreatePartnerInputRequest.add_member(:input_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputId"))
1236
+ CreatePartnerInputRequest.add_member(:request_id, Shapes::ShapeRef.new(shape: __string, location_name: "requestId", metadata: {"idempotencyToken"=>true}))
1237
+ CreatePartnerInputRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1238
+ CreatePartnerInputRequest.struct_class = Types::CreatePartnerInputRequest
1239
+
1240
+ CreatePartnerInputResponse.add_member(:input, Shapes::ShapeRef.new(shape: Input, location_name: "input"))
1241
+ CreatePartnerInputResponse.struct_class = Types::CreatePartnerInputResponse
1242
+
1243
+ CreatePartnerInputResultModel.add_member(:input, Shapes::ShapeRef.new(shape: Input, location_name: "input"))
1244
+ CreatePartnerInputResultModel.struct_class = Types::CreatePartnerInputResultModel
1245
+
1221
1246
  CreateTagsRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "resource-arn"))
1222
1247
  CreateTagsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1223
1248
  CreateTagsRequest.struct_class = Types::CreateTagsRequest
@@ -1241,6 +1266,7 @@ module Aws::MediaLive
1241
1266
  DeleteChannelResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
1242
1267
  DeleteChannelResponse.add_member(:state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "state"))
1243
1268
  DeleteChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1269
+ DeleteChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettings, location_name: "vpc"))
1244
1270
  DeleteChannelResponse.struct_class = Types::DeleteChannelResponse
1245
1271
 
1246
1272
  DeleteInputRequest.add_member(:input_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputId"))
@@ -1330,6 +1356,7 @@ module Aws::MediaLive
1330
1356
  DescribeChannelResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
1331
1357
  DescribeChannelResponse.add_member(:state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "state"))
1332
1358
  DescribeChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1359
+ DescribeChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettings, location_name: "vpc"))
1333
1360
  DescribeChannelResponse.struct_class = Types::DescribeChannelResponse
1334
1361
 
1335
1362
  DescribeInputDeviceRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
@@ -1371,6 +1398,7 @@ module Aws::MediaLive
1371
1398
  DescribeInputResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
1372
1399
  DescribeInputResponse.add_member(:input_class, Shapes::ShapeRef.new(shape: InputClass, location_name: "inputClass"))
1373
1400
  DescribeInputResponse.add_member(:input_devices, Shapes::ShapeRef.new(shape: __listOfInputDeviceSettings, location_name: "inputDevices"))
1401
+ DescribeInputResponse.add_member(:input_partner_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "inputPartnerIds"))
1374
1402
  DescribeInputResponse.add_member(:input_source_type, Shapes::ShapeRef.new(shape: InputSourceType, location_name: "inputSourceType"))
1375
1403
  DescribeInputResponse.add_member(:media_connect_flows, Shapes::ShapeRef.new(shape: __listOfMediaConnectFlow, location_name: "mediaConnectFlows"))
1376
1404
  DescribeInputResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
@@ -1589,10 +1617,12 @@ module Aws::MediaLive
1589
1617
  FrameCaptureGroupSettings.add_member(:destination, Shapes::ShapeRef.new(shape: OutputLocationRef, required: true, location_name: "destination"))
1590
1618
  FrameCaptureGroupSettings.struct_class = Types::FrameCaptureGroupSettings
1591
1619
 
1620
+ FrameCaptureHlsSettings.struct_class = Types::FrameCaptureHlsSettings
1621
+
1592
1622
  FrameCaptureOutputSettings.add_member(:name_modifier, Shapes::ShapeRef.new(shape: __string, location_name: "nameModifier"))
1593
1623
  FrameCaptureOutputSettings.struct_class = Types::FrameCaptureOutputSettings
1594
1624
 
1595
- FrameCaptureSettings.add_member(:capture_interval, Shapes::ShapeRef.new(shape: __integerMin1Max3600000, required: true, location_name: "captureInterval"))
1625
+ FrameCaptureSettings.add_member(:capture_interval, Shapes::ShapeRef.new(shape: __integerMin1Max3600000, location_name: "captureInterval"))
1596
1626
  FrameCaptureSettings.add_member(:capture_interval_units, Shapes::ShapeRef.new(shape: FrameCaptureIntervalUnit, location_name: "captureIntervalUnits"))
1597
1627
  FrameCaptureSettings.struct_class = Types::FrameCaptureSettings
1598
1628
 
@@ -1791,6 +1821,7 @@ module Aws::MediaLive
1791
1821
 
1792
1822
  HlsSettings.add_member(:audio_only_hls_settings, Shapes::ShapeRef.new(shape: AudioOnlyHlsSettings, location_name: "audioOnlyHlsSettings"))
1793
1823
  HlsSettings.add_member(:fmp_4_hls_settings, Shapes::ShapeRef.new(shape: Fmp4HlsSettings, location_name: "fmp4HlsSettings"))
1824
+ HlsSettings.add_member(:frame_capture_hls_settings, Shapes::ShapeRef.new(shape: FrameCaptureHlsSettings, location_name: "frameCaptureHlsSettings"))
1794
1825
  HlsSettings.add_member(:standard_hls_settings, Shapes::ShapeRef.new(shape: StandardHlsSettings, location_name: "standardHlsSettings"))
1795
1826
  HlsSettings.struct_class = Types::HlsSettings
1796
1827
 
@@ -1812,6 +1843,7 @@ module Aws::MediaLive
1812
1843
  Input.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
1813
1844
  Input.add_member(:input_class, Shapes::ShapeRef.new(shape: InputClass, location_name: "inputClass"))
1814
1845
  Input.add_member(:input_devices, Shapes::ShapeRef.new(shape: __listOfInputDeviceSettings, location_name: "inputDevices"))
1846
+ Input.add_member(:input_partner_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "inputPartnerIds"))
1815
1847
  Input.add_member(:input_source_type, Shapes::ShapeRef.new(shape: InputSourceType, location_name: "inputSourceType"))
1816
1848
  Input.add_member(:media_connect_flows, Shapes::ShapeRef.new(shape: __listOfMediaConnectFlow, location_name: "mediaConnectFlows"))
1817
1849
  Input.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
@@ -2659,6 +2691,7 @@ module Aws::MediaLive
2659
2691
  StartChannelResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
2660
2692
  StartChannelResponse.add_member(:state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "state"))
2661
2693
  StartChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
2694
+ StartChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettings, location_name: "vpc"))
2662
2695
  StartChannelResponse.struct_class = Types::StartChannelResponse
2663
2696
 
2664
2697
  StartMultiplexRequest.add_member(:multiplex_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "multiplexId"))
@@ -2718,6 +2751,7 @@ module Aws::MediaLive
2718
2751
  StopChannelResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
2719
2752
  StopChannelResponse.add_member(:state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "state"))
2720
2753
  StopChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
2754
+ StopChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettings, location_name: "vpc"))
2721
2755
  StopChannelResponse.struct_class = Types::StopChannelResponse
2722
2756
 
2723
2757
  StopMultiplexRequest.add_member(:multiplex_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "multiplexId"))
@@ -2765,11 +2799,13 @@ module Aws::MediaLive
2765
2799
  TooManyRequestsException.struct_class = Types::TooManyRequestsException
2766
2800
 
2767
2801
  TransferInputDevice.add_member(:target_customer_id, Shapes::ShapeRef.new(shape: __string, location_name: "targetCustomerId"))
2802
+ TransferInputDevice.add_member(:target_region, Shapes::ShapeRef.new(shape: __string, location_name: "targetRegion"))
2768
2803
  TransferInputDevice.add_member(:transfer_message, Shapes::ShapeRef.new(shape: __string, location_name: "transferMessage"))
2769
2804
  TransferInputDevice.struct_class = Types::TransferInputDevice
2770
2805
 
2771
2806
  TransferInputDeviceRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
2772
2807
  TransferInputDeviceRequest.add_member(:target_customer_id, Shapes::ShapeRef.new(shape: __string, location_name: "targetCustomerId"))
2808
+ TransferInputDeviceRequest.add_member(:target_region, Shapes::ShapeRef.new(shape: __string, location_name: "targetRegion"))
2773
2809
  TransferInputDeviceRequest.add_member(:transfer_message, Shapes::ShapeRef.new(shape: __string, location_name: "transferMessage"))
2774
2810
  TransferInputDeviceRequest.struct_class = Types::TransferInputDeviceRequest
2775
2811
 
@@ -2982,6 +3018,11 @@ module Aws::MediaLive
2982
3018
  VideoSelectorSettings.add_member(:video_selector_program_id, Shapes::ShapeRef.new(shape: VideoSelectorProgramId, location_name: "videoSelectorProgramId"))
2983
3019
  VideoSelectorSettings.struct_class = Types::VideoSelectorSettings
2984
3020
 
3021
+ VpcOutputSettings.add_member(:public_address_allocation_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "publicAddressAllocationIds"))
3022
+ VpcOutputSettings.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroupIds"))
3023
+ VpcOutputSettings.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "subnetIds"))
3024
+ VpcOutputSettings.struct_class = Types::VpcOutputSettings
3025
+
2985
3026
  WavSettings.add_member(:bit_depth, Shapes::ShapeRef.new(shape: __double, location_name: "bitDepth"))
2986
3027
  WavSettings.add_member(:coding_mode, Shapes::ShapeRef.new(shape: WavCodingMode, location_name: "codingMode"))
2987
3028
  WavSettings.add_member(:sample_rate, Shapes::ShapeRef.new(shape: __double, location_name: "sampleRate"))
@@ -3280,6 +3321,20 @@ module Aws::MediaLive
3280
3321
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3281
3322
  end)
3282
3323
 
3324
+ api.add_operation(:create_partner_input, Seahorse::Model::Operation.new.tap do |o|
3325
+ o.name = "CreatePartnerInput"
3326
+ o.http_method = "POST"
3327
+ o.http_request_uri = "/prod/inputs/{inputId}/partners"
3328
+ o.input = Shapes::ShapeRef.new(shape: CreatePartnerInputRequest)
3329
+ o.output = Shapes::ShapeRef.new(shape: CreatePartnerInputResponse)
3330
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
3331
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
3332
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
3333
+ o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
3334
+ o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
3335
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
3336
+ end)
3337
+
3283
3338
  api.add_operation(:create_tags, Seahorse::Model::Operation.new.tap do |o|
3284
3339
  o.name = "CreateTags"
3285
3340
  o.http_method = "POST"