aws-sdk-mediaconnect 1.64.0 → 1.66.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e2623a41d4ad6206d1dcf982e97e0c2eafccc10daa6db7d7b61dbcea398e2cc
4
- data.tar.gz: 3c2015ad4c7436223e3d2a9874940e7435a594c683475ff044b5e5a7b4f62fa7
3
+ metadata.gz: 8ca071d272d28a8deb78f1cfa6c1e67d05985eb6288d9771a9e5dd22605f2c62
4
+ data.tar.gz: a5324ccf2dfb70cf616d3e63a38d8720333115424cbbc1915eada093f7a73294
5
5
  SHA512:
6
- metadata.gz: fee8bf347ded6a13738aba65214005f58e90d559276885391aade30c2236577d4b0915a02988b2c582c9154696e3e18df396e0ecbc011cd5d927bc80303fabfa
7
- data.tar.gz: caab18c9d5033d83c3e48ee417c7e1d8ee561b2dd3a9267cf5fae0394002a9678cf57bae2cf790131b20a1f648de79f355970d22166c3d91a42c720da97e2168
6
+ metadata.gz: f284a057bb2d367c592258779a6c34affe34e104fadfa06831f38bafdbb6a6b67976aeaafcce723677367f6da1fb53de01c468c877dad0c882a75784c31f0f15
7
+ data.tar.gz: f709b1a3ace701ac773d06f9668849e60563a51a833a58330711466f44f3eb69f5a5ed1b29a85cd1b14bb627606b413a5e95301e11803985cbc761268ee97626
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2024-09-03)
5
+ ------------------
6
+
7
+ * Feature - AWS Elemental MediaConnect introduces thumbnails for Flow source monitoring. Thumbnails provide still image previews of the live content feeding your MediaConnect Flow allowing you to easily verify that your source is operating as expected.
8
+
9
+ 1.65.0 (2024-07-10)
10
+ ------------------
11
+
12
+ * Feature - AWS Elemental MediaConnect introduces the ability to disable outputs. Disabling an output allows you to keep the output attached to the flow, but stop streaming to the output destination. A disabled output does not incur data transfer costs.
13
+
4
14
  1.64.0 (2024-07-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.66.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::MediaConnect
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::RestJson)
88
90
  add_plugin(Aws::MediaConnect::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::MediaConnect
330
332
  # ** Please note ** When response stubbing is enabled, no HTTP
331
333
  # requests are made, and retries are disabled.
332
334
  #
335
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
336
+ # Allows you to provide a telemetry provider, which is used to
337
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
338
+ # will not record or emit any telemetry data. The SDK supports the
339
+ # following telemetry providers:
340
+ #
341
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
342
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
343
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
344
+ #
333
345
  # @option options [Aws::TokenProvider] :token_provider
334
346
  # A Bearer Token Provider. This can be an instance of any one of the
335
347
  # following classes:
@@ -672,6 +684,7 @@ module Aws::MediaConnect
672
684
  # vpc_interface_attachment: {
673
685
  # vpc_interface_name: "__string",
674
686
  # },
687
+ # output_status: "ENABLED", # accepts ENABLED, DISABLED
675
688
  # },
676
689
  # ],
677
690
  # })
@@ -726,6 +739,7 @@ module Aws::MediaConnect
726
739
  # resp.outputs[0].bridge_arn #=> String
727
740
  # resp.outputs[0].bridge_ports #=> Array
728
741
  # resp.outputs[0].bridge_ports[0] #=> Integer
742
+ # resp.outputs[0].output_status #=> String, one of "ENABLED", "DISABLED"
729
743
  #
730
744
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddFlowOutputs AWS API Documentation
731
745
  #
@@ -1079,6 +1093,9 @@ module Aws::MediaConnect
1079
1093
  # @option params [Types::AddMaintenance] :maintenance
1080
1094
  # Create maintenance setting for a flow
1081
1095
  #
1096
+ # @option params [Types::MonitoringConfig] :source_monitoring_config
1097
+ # The settings for source monitoring.
1098
+ #
1082
1099
  # @return [Types::CreateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1083
1100
  #
1084
1101
  # * {Types::CreateFlowResponse#flow #flow} => Types::Flow
@@ -1177,6 +1194,7 @@ module Aws::MediaConnect
1177
1194
  # vpc_interface_attachment: {
1178
1195
  # vpc_interface_name: "__string",
1179
1196
  # },
1197
+ # output_status: "ENABLED", # accepts ENABLED, DISABLED
1180
1198
  # },
1181
1199
  # ],
1182
1200
  # source: {
@@ -1300,6 +1318,9 @@ module Aws::MediaConnect
1300
1318
  # maintenance_day: "Monday", # required, accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
1301
1319
  # maintenance_start_hour: "__string", # required
1302
1320
  # },
1321
+ # source_monitoring_config: {
1322
+ # thumbnail_state: "ENABLED", # accepts ENABLED, DISABLED
1323
+ # },
1303
1324
  # })
1304
1325
  #
1305
1326
  # @example Response structure
@@ -1389,6 +1410,7 @@ module Aws::MediaConnect
1389
1410
  # resp.flow.outputs[0].bridge_arn #=> String
1390
1411
  # resp.flow.outputs[0].bridge_ports #=> Array
1391
1412
  # resp.flow.outputs[0].bridge_ports[0] #=> Integer
1413
+ # resp.flow.outputs[0].output_status #=> String, one of "ENABLED", "DISABLED"
1392
1414
  # resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
1393
1415
  # resp.flow.source.decryption.algorithm #=> String, one of "aes128", "aes192", "aes256"
1394
1416
  # resp.flow.source.decryption.constant_initialization_vector #=> String
@@ -1494,6 +1516,7 @@ module Aws::MediaConnect
1494
1516
  # resp.flow.maintenance.maintenance_deadline #=> String
1495
1517
  # resp.flow.maintenance.maintenance_scheduled_date #=> String
1496
1518
  # resp.flow.maintenance.maintenance_start_hour #=> String
1519
+ # resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
1497
1520
  #
1498
1521
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlow AWS API Documentation
1499
1522
  #
@@ -1848,6 +1871,7 @@ module Aws::MediaConnect
1848
1871
  # resp.flow.outputs[0].bridge_arn #=> String
1849
1872
  # resp.flow.outputs[0].bridge_ports #=> Array
1850
1873
  # resp.flow.outputs[0].bridge_ports[0] #=> Integer
1874
+ # resp.flow.outputs[0].output_status #=> String, one of "ENABLED", "DISABLED"
1851
1875
  # resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
1852
1876
  # resp.flow.source.decryption.algorithm #=> String, one of "aes128", "aes192", "aes256"
1853
1877
  # resp.flow.source.decryption.constant_initialization_vector #=> String
@@ -1953,6 +1977,7 @@ module Aws::MediaConnect
1953
1977
  # resp.flow.maintenance.maintenance_deadline #=> String
1954
1978
  # resp.flow.maintenance.maintenance_scheduled_date #=> String
1955
1979
  # resp.flow.maintenance.maintenance_start_hour #=> String
1980
+ # resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
1956
1981
  # resp.messages.errors #=> Array
1957
1982
  # resp.messages.errors[0] #=> String
1958
1983
  #
@@ -2023,6 +2048,40 @@ module Aws::MediaConnect
2023
2048
  req.send_request(options)
2024
2049
  end
2025
2050
 
2051
+ # Displays the thumbnail details of a flow's source stream.
2052
+ #
2053
+ # @option params [required, String] :flow_arn
2054
+ #
2055
+ # @return [Types::DescribeFlowSourceThumbnailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2056
+ #
2057
+ # * {Types::DescribeFlowSourceThumbnailResponse#thumbnail_details #thumbnail_details} => Types::ThumbnailDetails
2058
+ #
2059
+ # @example Request syntax with placeholder values
2060
+ #
2061
+ # resp = client.describe_flow_source_thumbnail({
2062
+ # flow_arn: "__string", # required
2063
+ # })
2064
+ #
2065
+ # @example Response structure
2066
+ #
2067
+ # resp.thumbnail_details.flow_arn #=> String
2068
+ # resp.thumbnail_details.thumbnail #=> String
2069
+ # resp.thumbnail_details.thumbnail_messages #=> Array
2070
+ # resp.thumbnail_details.thumbnail_messages[0].code #=> String
2071
+ # resp.thumbnail_details.thumbnail_messages[0].message #=> String
2072
+ # resp.thumbnail_details.thumbnail_messages[0].resource_name #=> String
2073
+ # resp.thumbnail_details.timecode #=> String
2074
+ # resp.thumbnail_details.timestamp #=> Time
2075
+ #
2076
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowSourceThumbnail AWS API Documentation
2077
+ #
2078
+ # @overload describe_flow_source_thumbnail(params = {})
2079
+ # @param [Hash] params ({})
2080
+ def describe_flow_source_thumbnail(params = {}, options = {})
2081
+ req = build_request(:describe_flow_source_thumbnail, params)
2082
+ req.send_request(options)
2083
+ end
2084
+
2026
2085
  # Displays the details of a gateway. The response includes the gateway
2027
2086
  # ARN, name, and CIDR blocks, as well as details about the networks.
2028
2087
  #
@@ -3222,6 +3281,9 @@ module Aws::MediaConnect
3222
3281
  # @option params [Types::UpdateMaintenance] :maintenance
3223
3282
  # Update maintenance setting for a flow
3224
3283
  #
3284
+ # @option params [Types::MonitoringConfig] :source_monitoring_config
3285
+ # The settings for source monitoring.
3286
+ #
3225
3287
  # @return [Types::UpdateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3226
3288
  #
3227
3289
  # * {Types::UpdateFlowResponse#flow #flow} => Types::Flow
@@ -3243,6 +3305,9 @@ module Aws::MediaConnect
3243
3305
  # maintenance_scheduled_date: "__string",
3244
3306
  # maintenance_start_hour: "__string",
3245
3307
  # },
3308
+ # source_monitoring_config: {
3309
+ # thumbnail_state: "ENABLED", # accepts ENABLED, DISABLED
3310
+ # },
3246
3311
  # })
3247
3312
  #
3248
3313
  # @example Response structure
@@ -3332,6 +3397,7 @@ module Aws::MediaConnect
3332
3397
  # resp.flow.outputs[0].bridge_arn #=> String
3333
3398
  # resp.flow.outputs[0].bridge_ports #=> Array
3334
3399
  # resp.flow.outputs[0].bridge_ports[0] #=> Integer
3400
+ # resp.flow.outputs[0].output_status #=> String, one of "ENABLED", "DISABLED"
3335
3401
  # resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
3336
3402
  # resp.flow.source.decryption.algorithm #=> String, one of "aes128", "aes192", "aes256"
3337
3403
  # resp.flow.source.decryption.constant_initialization_vector #=> String
@@ -3437,6 +3503,7 @@ module Aws::MediaConnect
3437
3503
  # resp.flow.maintenance.maintenance_deadline #=> String
3438
3504
  # resp.flow.maintenance.maintenance_scheduled_date #=> String
3439
3505
  # resp.flow.maintenance.maintenance_start_hour #=> String
3506
+ # resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
3440
3507
  #
3441
3508
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlow AWS API Documentation
3442
3509
  #
@@ -3676,6 +3743,11 @@ module Aws::MediaConnect
3676
3743
  # @option params [Types::VpcInterfaceAttachment] :vpc_interface_attachment
3677
3744
  # The name of the VPC interface attachment to use for this output.
3678
3745
  #
3746
+ # @option params [String] :output_status
3747
+ # An indication of whether the output should transmit data or not. If
3748
+ # you don't specify the outputStatus field in your request,
3749
+ # MediaConnect leaves the value unchanged.
3750
+ #
3679
3751
  # @return [Types::UpdateFlowOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3680
3752
  #
3681
3753
  # * {Types::UpdateFlowOutputResponse#flow_arn #flow_arn} => String
@@ -3731,6 +3803,7 @@ module Aws::MediaConnect
3731
3803
  # vpc_interface_attachment: {
3732
3804
  # vpc_interface_name: "__string",
3733
3805
  # },
3806
+ # output_status: "ENABLED", # accepts ENABLED, DISABLED
3734
3807
  # })
3735
3808
  #
3736
3809
  # @example Response structure
@@ -3782,6 +3855,7 @@ module Aws::MediaConnect
3782
3855
  # resp.output.bridge_arn #=> String
3783
3856
  # resp.output.bridge_ports #=> Array
3784
3857
  # resp.output.bridge_ports[0] #=> Integer
3858
+ # resp.output.output_status #=> String, one of "ENABLED", "DISABLED"
3785
3859
  #
3786
3860
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowOutput AWS API Documentation
3787
3861
  #
@@ -4026,14 +4100,19 @@ module Aws::MediaConnect
4026
4100
  # @api private
4027
4101
  def build_request(operation_name, params = {})
4028
4102
  handlers = @handlers.for(operation_name)
4103
+ tracer = config.telemetry_provider.tracer_provider.tracer(
4104
+ Aws::Telemetry.module_to_tracer_name('Aws::MediaConnect')
4105
+ )
4029
4106
  context = Seahorse::Client::RequestContext.new(
4030
4107
  operation_name: operation_name,
4031
4108
  operation: config.api.operation(operation_name),
4032
4109
  client: self,
4033
4110
  params: params,
4034
- config: config)
4111
+ config: config,
4112
+ tracer: tracer
4113
+ )
4035
4114
  context[:gem_name] = 'aws-sdk-mediaconnect'
4036
- context[:gem_version] = '1.64.0'
4115
+ context[:gem_version] = '1.66.0'
4037
4116
  Seahorse::Client::Request.new(handlers, context)
4038
4117
  end
4039
4118
 
@@ -73,6 +73,8 @@ module Aws::MediaConnect
73
73
  DescribeFlowResponse = Shapes::StructureShape.new(name: 'DescribeFlowResponse')
74
74
  DescribeFlowSourceMetadataRequest = Shapes::StructureShape.new(name: 'DescribeFlowSourceMetadataRequest')
75
75
  DescribeFlowSourceMetadataResponse = Shapes::StructureShape.new(name: 'DescribeFlowSourceMetadataResponse')
76
+ DescribeFlowSourceThumbnailRequest = Shapes::StructureShape.new(name: 'DescribeFlowSourceThumbnailRequest')
77
+ DescribeFlowSourceThumbnailResponse = Shapes::StructureShape.new(name: 'DescribeFlowSourceThumbnailResponse')
76
78
  DescribeGatewayInstanceRequest = Shapes::StructureShape.new(name: 'DescribeGatewayInstanceRequest')
77
79
  DescribeGatewayInstanceResponse = Shapes::StructureShape.new(name: 'DescribeGatewayInstanceResponse')
78
80
  DescribeGatewayRequest = Shapes::StructureShape.new(name: 'DescribeGatewayRequest')
@@ -151,10 +153,12 @@ module Aws::MediaConnect
151
153
  MediaStreamType = Shapes::StringShape.new(name: 'MediaStreamType')
152
154
  MessageDetail = Shapes::StructureShape.new(name: 'MessageDetail')
153
155
  Messages = Shapes::StructureShape.new(name: 'Messages')
156
+ MonitoringConfig = Shapes::StructureShape.new(name: 'MonitoringConfig')
154
157
  NetworkInterfaceType = Shapes::StringShape.new(name: 'NetworkInterfaceType')
155
158
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
156
159
  Offering = Shapes::StructureShape.new(name: 'Offering')
157
160
  Output = Shapes::StructureShape.new(name: 'Output')
161
+ OutputStatus = Shapes::StringShape.new(name: 'OutputStatus')
158
162
  PriceUnits = Shapes::StringShape.new(name: 'PriceUnits')
159
163
  Protocol = Shapes::StringShape.new(name: 'Protocol')
160
164
  PurchaseOfferingRequest = Shapes::StructureShape.new(name: 'PurchaseOfferingRequest')
@@ -194,6 +198,8 @@ module Aws::MediaConnect
194
198
  StopFlowResponse = Shapes::StructureShape.new(name: 'StopFlowResponse')
195
199
  TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
196
200
  Tcs = Shapes::StringShape.new(name: 'Tcs')
201
+ ThumbnailDetails = Shapes::StructureShape.new(name: 'ThumbnailDetails')
202
+ ThumbnailState = Shapes::StringShape.new(name: 'ThumbnailState')
197
203
  TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
198
204
  Transport = Shapes::StructureShape.new(name: 'Transport')
199
205
  TransportMediaInfo = Shapes::StructureShape.new(name: 'TransportMediaInfo')
@@ -389,6 +395,7 @@ module Aws::MediaConnect
389
395
  AddOutputRequest.add_member(:smoothing_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "smoothingLatency"))
390
396
  AddOutputRequest.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
391
397
  AddOutputRequest.add_member(:vpc_interface_attachment, Shapes::ShapeRef.new(shape: VpcInterfaceAttachment, location_name: "vpcInterfaceAttachment"))
398
+ AddOutputRequest.add_member(:output_status, Shapes::ShapeRef.new(shape: OutputStatus, location_name: "outputStatus"))
392
399
  AddOutputRequest.struct_class = Types::AddOutputRequest
393
400
 
394
401
  BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "message"))
@@ -471,6 +478,7 @@ module Aws::MediaConnect
471
478
  CreateFlowRequest.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfSetSourceRequest, location_name: "sources"))
472
479
  CreateFlowRequest.add_member(:vpc_interfaces, Shapes::ShapeRef.new(shape: __listOfVpcInterfaceRequest, location_name: "vpcInterfaces"))
473
480
  CreateFlowRequest.add_member(:maintenance, Shapes::ShapeRef.new(shape: AddMaintenance, location_name: "maintenance"))
481
+ CreateFlowRequest.add_member(:source_monitoring_config, Shapes::ShapeRef.new(shape: MonitoringConfig, location_name: "sourceMonitoringConfig"))
474
482
  CreateFlowRequest.struct_class = Types::CreateFlowRequest
475
483
 
476
484
  CreateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
@@ -536,6 +544,12 @@ module Aws::MediaConnect
536
544
  DescribeFlowSourceMetadataResponse.add_member(:transport_media_info, Shapes::ShapeRef.new(shape: TransportMediaInfo, location_name: "transportMediaInfo"))
537
545
  DescribeFlowSourceMetadataResponse.struct_class = Types::DescribeFlowSourceMetadataResponse
538
546
 
547
+ DescribeFlowSourceThumbnailRequest.add_member(:flow_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "flowArn"))
548
+ DescribeFlowSourceThumbnailRequest.struct_class = Types::DescribeFlowSourceThumbnailRequest
549
+
550
+ DescribeFlowSourceThumbnailResponse.add_member(:thumbnail_details, Shapes::ShapeRef.new(shape: ThumbnailDetails, location_name: "thumbnailDetails"))
551
+ DescribeFlowSourceThumbnailResponse.struct_class = Types::DescribeFlowSourceThumbnailResponse
552
+
539
553
  DescribeGatewayInstanceRequest.add_member(:gateway_instance_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "gatewayInstanceArn", metadata: {"pattern"=>"^arn:.+:mediaconnect.+:gateway:.+:instance:.+$"}))
540
554
  DescribeGatewayInstanceRequest.struct_class = Types::DescribeGatewayInstanceRequest
541
555
 
@@ -623,6 +637,7 @@ module Aws::MediaConnect
623
637
  Flow.add_member(:status, Shapes::ShapeRef.new(shape: Status, required: true, location_name: "status"))
624
638
  Flow.add_member(:vpc_interfaces, Shapes::ShapeRef.new(shape: __listOfVpcInterface, location_name: "vpcInterfaces"))
625
639
  Flow.add_member(:maintenance, Shapes::ShapeRef.new(shape: Maintenance, location_name: "maintenance"))
640
+ Flow.add_member(:source_monitoring_config, Shapes::ShapeRef.new(shape: MonitoringConfig, location_name: "sourceMonitoringConfig"))
626
641
  Flow.struct_class = Types::Flow
627
642
 
628
643
  Fmtp.add_member(:channel_order, Shapes::ShapeRef.new(shape: __string, location_name: "channelOrder"))
@@ -868,6 +883,9 @@ module Aws::MediaConnect
868
883
  Messages.add_member(:errors, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "errors"))
869
884
  Messages.struct_class = Types::Messages
870
885
 
886
+ MonitoringConfig.add_member(:thumbnail_state, Shapes::ShapeRef.new(shape: ThumbnailState, location_name: "thumbnailState"))
887
+ MonitoringConfig.struct_class = Types::MonitoringConfig
888
+
871
889
  NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "message"))
872
890
  NotFoundException.struct_class = Types::NotFoundException
873
891
 
@@ -896,6 +914,7 @@ module Aws::MediaConnect
896
914
  Output.add_member(:vpc_interface_attachment, Shapes::ShapeRef.new(shape: VpcInterfaceAttachment, location_name: "vpcInterfaceAttachment"))
897
915
  Output.add_member(:bridge_arn, Shapes::ShapeRef.new(shape: __string, location_name: "bridgeArn"))
898
916
  Output.add_member(:bridge_ports, Shapes::ShapeRef.new(shape: __listOf__integer, location_name: "bridgePorts"))
917
+ Output.add_member(:output_status, Shapes::ShapeRef.new(shape: OutputStatus, location_name: "outputStatus"))
899
918
  Output.struct_class = Types::Output
900
919
 
901
920
  PurchaseOfferingRequest.add_member(:offering_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "offeringArn"))
@@ -1051,6 +1070,13 @@ module Aws::MediaConnect
1051
1070
  TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, required: true, location_name: "tags"))
1052
1071
  TagResourceRequest.struct_class = Types::TagResourceRequest
1053
1072
 
1073
+ ThumbnailDetails.add_member(:flow_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "flowArn"))
1074
+ ThumbnailDetails.add_member(:thumbnail, Shapes::ShapeRef.new(shape: __string, location_name: "thumbnail"))
1075
+ ThumbnailDetails.add_member(:thumbnail_messages, Shapes::ShapeRef.new(shape: __listOfMessageDetail, required: true, location_name: "thumbnailMessages"))
1076
+ ThumbnailDetails.add_member(:timecode, Shapes::ShapeRef.new(shape: __string, location_name: "timecode"))
1077
+ ThumbnailDetails.add_member(:timestamp, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "timestamp"))
1078
+ ThumbnailDetails.struct_class = Types::ThumbnailDetails
1079
+
1054
1080
  TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "message"))
1055
1081
  TooManyRequestsException.struct_class = Types::TooManyRequestsException
1056
1082
 
@@ -1208,6 +1234,7 @@ module Aws::MediaConnect
1208
1234
  UpdateFlowOutputRequest.add_member(:smoothing_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "smoothingLatency"))
1209
1235
  UpdateFlowOutputRequest.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
1210
1236
  UpdateFlowOutputRequest.add_member(:vpc_interface_attachment, Shapes::ShapeRef.new(shape: VpcInterfaceAttachment, location_name: "vpcInterfaceAttachment"))
1237
+ UpdateFlowOutputRequest.add_member(:output_status, Shapes::ShapeRef.new(shape: OutputStatus, location_name: "outputStatus"))
1211
1238
  UpdateFlowOutputRequest.struct_class = Types::UpdateFlowOutputRequest
1212
1239
 
1213
1240
  UpdateFlowOutputResponse.add_member(:flow_arn, Shapes::ShapeRef.new(shape: __string, location_name: "flowArn"))
@@ -1217,6 +1244,7 @@ module Aws::MediaConnect
1217
1244
  UpdateFlowRequest.add_member(:flow_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "flowArn", metadata: {"pattern"=>"^arn:.+:mediaconnect.+:flow:.+$"}))
1218
1245
  UpdateFlowRequest.add_member(:source_failover_config, Shapes::ShapeRef.new(shape: UpdateFailoverConfig, location_name: "sourceFailoverConfig"))
1219
1246
  UpdateFlowRequest.add_member(:maintenance, Shapes::ShapeRef.new(shape: UpdateMaintenance, location_name: "maintenance"))
1247
+ UpdateFlowRequest.add_member(:source_monitoring_config, Shapes::ShapeRef.new(shape: MonitoringConfig, location_name: "sourceMonitoringConfig"))
1220
1248
  UpdateFlowRequest.struct_class = Types::UpdateFlowRequest
1221
1249
 
1222
1250
  UpdateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
@@ -1368,6 +1396,7 @@ module Aws::MediaConnect
1368
1396
 
1369
1397
  api.metadata = {
1370
1398
  "apiVersion" => "2018-11-14",
1399
+ "auth" => ["aws.auth#sigv4"],
1371
1400
  "endpointPrefix" => "mediaconnect",
1372
1401
  "jsonVersion" => "1.1",
1373
1402
  "protocol" => "rest-json",
@@ -1611,6 +1640,20 @@ module Aws::MediaConnect
1611
1640
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
1612
1641
  end)
1613
1642
 
1643
+ api.add_operation(:describe_flow_source_thumbnail, Seahorse::Model::Operation.new.tap do |o|
1644
+ o.name = "DescribeFlowSourceThumbnail"
1645
+ o.http_method = "GET"
1646
+ o.http_request_uri = "/v1/flows/{flowArn}/source-thumbnail"
1647
+ o.input = Shapes::ShapeRef.new(shape: DescribeFlowSourceThumbnailRequest)
1648
+ o.output = Shapes::ShapeRef.new(shape: DescribeFlowSourceThumbnailResponse)
1649
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1650
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
1651
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1652
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1653
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1654
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
1655
+ end)
1656
+
1614
1657
  api.add_operation(:describe_gateway, Seahorse::Model::Operation.new.tap do |o|
1615
1658
  o.name = "DescribeGateway"
1616
1659
  o.http_method = "GET"
@@ -236,6 +236,20 @@ module Aws::MediaConnect
236
236
  end
237
237
  end
238
238
 
239
+ class DescribeFlowSourceThumbnail
240
+ def self.build(context)
241
+ unless context.config.regional_endpoint
242
+ endpoint = context.config.endpoint.to_s
243
+ end
244
+ Aws::MediaConnect::EndpointParameters.new(
245
+ region: context.config.region,
246
+ use_dual_stack: context.config.use_dualstack_endpoint,
247
+ use_fips: context.config.use_fips_endpoint,
248
+ endpoint: endpoint,
249
+ )
250
+ end
251
+ end
252
+
239
253
  class DescribeGateway
240
254
  def self.build(context)
241
255
  unless context.config.regional_endpoint
@@ -90,6 +90,8 @@ module Aws::MediaConnect
90
90
  Aws::MediaConnect::Endpoints::DescribeFlow.build(context)
91
91
  when :describe_flow_source_metadata
92
92
  Aws::MediaConnect::Endpoints::DescribeFlowSourceMetadata.build(context)
93
+ when :describe_flow_source_thumbnail
94
+ Aws::MediaConnect::Endpoints::DescribeFlowSourceThumbnail.build(context)
93
95
  when :describe_gateway
94
96
  Aws::MediaConnect::Endpoints::DescribeGateway.build(context)
95
97
  when :describe_gateway_instance
@@ -565,6 +565,12 @@ module Aws::MediaConnect
565
565
  # The name of the VPC interface attachment to use for this output.
566
566
  # @return [Types::VpcInterfaceAttachment]
567
567
  #
568
+ # @!attribute [rw] output_status
569
+ # An indication of whether the new output should be enabled or
570
+ # disabled as soon as it is created. If you don't specify the
571
+ # outputStatus field in your request, MediaConnect sets it to ENABLED.
572
+ # @return [String]
573
+ #
568
574
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddOutputRequest AWS API Documentation
569
575
  #
570
576
  class AddOutputRequest < Struct.new(
@@ -582,7 +588,8 @@ module Aws::MediaConnect
582
588
  :sender_control_port,
583
589
  :smoothing_latency,
584
590
  :stream_id,
585
- :vpc_interface_attachment)
591
+ :vpc_interface_attachment,
592
+ :output_status)
586
593
  SENSITIVE = []
587
594
  include Aws::Structure
588
595
  end
@@ -602,9 +609,9 @@ module Aws::MediaConnect
602
609
  include Aws::Structure
603
610
  end
604
611
 
605
- # A Bridge is the connection between your datacenter's Instances and
612
+ # A Bridge is the connection between your data center's Instances and
606
613
  # the AWS cloud. A bridge can be used to send video from the AWS cloud
607
- # to your datacenter or from your datacenter to the AWS cloud.
614
+ # to your data center or from your data center to the AWS cloud.
608
615
  #
609
616
  # @!attribute [rw] bridge_arn
610
617
  # The Amazon Resource Number (ARN) of the bridge.
@@ -912,9 +919,9 @@ module Aws::MediaConnect
912
919
  # The result of a successful CreateBridge request.
913
920
  #
914
921
  # @!attribute [rw] bridge
915
- # A Bridge is the connection between your datacenter's Instances and
922
+ # A Bridge is the connection between your data center's Instances and
916
923
  # the AWS cloud. A bridge can be used to send video from the AWS cloud
917
- # to your datacenter or from your datacenter to the AWS cloud.
924
+ # to your data center or from your data center to the AWS cloud.
918
925
  # @return [Types::Bridge]
919
926
  #
920
927
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateBridgeResponse AWS API Documentation
@@ -985,6 +992,10 @@ module Aws::MediaConnect
985
992
  # Create maintenance setting for a flow
986
993
  # @return [Types::AddMaintenance]
987
994
  #
995
+ # @!attribute [rw] source_monitoring_config
996
+ # The settings for source monitoring.
997
+ # @return [Types::MonitoringConfig]
998
+ #
988
999
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlowRequest AWS API Documentation
989
1000
  #
990
1001
  class CreateFlowRequest < Struct.new(
@@ -997,7 +1008,8 @@ module Aws::MediaConnect
997
1008
  :source_failover_config,
998
1009
  :sources,
999
1010
  :vpc_interfaces,
1000
- :maintenance)
1011
+ :maintenance,
1012
+ :source_monitoring_config)
1001
1013
  SENSITIVE = []
1002
1014
  include Aws::Structure
1003
1015
  end
@@ -1200,9 +1212,9 @@ module Aws::MediaConnect
1200
1212
  # The result of a successful DescribeBridge request.
1201
1213
  #
1202
1214
  # @!attribute [rw] bridge
1203
- # A Bridge is the connection between your datacenter's Instances and
1215
+ # A Bridge is the connection between your data center's Instances and
1204
1216
  # the AWS cloud. A bridge can be used to send video from the AWS cloud
1205
- # to your datacenter or from your datacenter to the AWS cloud.
1217
+ # to your data center or from your data center to the AWS cloud.
1206
1218
  # @return [Types::Bridge]
1207
1219
  #
1208
1220
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeBridgeResponse AWS API Documentation
@@ -1287,6 +1299,32 @@ module Aws::MediaConnect
1287
1299
  include Aws::Structure
1288
1300
  end
1289
1301
 
1302
+ # @!attribute [rw] flow_arn
1303
+ # @return [String]
1304
+ #
1305
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowSourceThumbnailRequest AWS API Documentation
1306
+ #
1307
+ class DescribeFlowSourceThumbnailRequest < Struct.new(
1308
+ :flow_arn)
1309
+ SENSITIVE = []
1310
+ include Aws::Structure
1311
+ end
1312
+
1313
+ # The result of a successful DescribeFlowSourceThumbnail request.
1314
+ #
1315
+ # @!attribute [rw] thumbnail_details
1316
+ # The details of the thumbnail, including thumbnail base64 string,
1317
+ # timecode and the time when thumbnail was generated.
1318
+ # @return [Types::ThumbnailDetails]
1319
+ #
1320
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowSourceThumbnailResponse AWS API Documentation
1321
+ #
1322
+ class DescribeFlowSourceThumbnailResponse < Struct.new(
1323
+ :thumbnail_details)
1324
+ SENSITIVE = []
1325
+ include Aws::Structure
1326
+ end
1327
+
1290
1328
  # @!attribute [rw] gateway_instance_arn
1291
1329
  # @return [String]
1292
1330
  #
@@ -1746,6 +1784,10 @@ module Aws::MediaConnect
1746
1784
  # The maintenance setting of a flow
1747
1785
  # @return [Types::Maintenance]
1748
1786
  #
1787
+ # @!attribute [rw] source_monitoring_config
1788
+ # The settings for source monitoring.
1789
+ # @return [Types::MonitoringConfig]
1790
+ #
1749
1791
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Flow AWS API Documentation
1750
1792
  #
1751
1793
  class Flow < Struct.new(
@@ -1762,7 +1804,8 @@ module Aws::MediaConnect
1762
1804
  :sources,
1763
1805
  :status,
1764
1806
  :vpc_interfaces,
1765
- :maintenance)
1807
+ :maintenance,
1808
+ :source_monitoring_config)
1766
1809
  SENSITIVE = []
1767
1810
  include Aws::Structure
1768
1811
  end
@@ -3038,6 +3081,20 @@ module Aws::MediaConnect
3038
3081
  include Aws::Structure
3039
3082
  end
3040
3083
 
3084
+ # The settings for source monitoring.
3085
+ #
3086
+ # @!attribute [rw] thumbnail_state
3087
+ # The state of thumbnail monitoring.
3088
+ # @return [String]
3089
+ #
3090
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/MonitoringConfig AWS API Documentation
3091
+ #
3092
+ class MonitoringConfig < Struct.new(
3093
+ :thumbnail_state)
3094
+ SENSITIVE = []
3095
+ include Aws::Structure
3096
+ end
3097
+
3041
3098
  # Exception raised by AWS Elemental MediaConnect. See the error message
3042
3099
  # and documentation for the operation for more information on the cause
3043
3100
  # of this exception.
@@ -3183,6 +3240,10 @@ module Aws::MediaConnect
3183
3240
  # The bridge output ports currently in use.
3184
3241
  # @return [Array<Integer>]
3185
3242
  #
3243
+ # @!attribute [rw] output_status
3244
+ # An indication of whether the output is transmitting data or not.
3245
+ # @return [String]
3246
+ #
3186
3247
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Output AWS API Documentation
3187
3248
  #
3188
3249
  class Output < Struct.new(
@@ -3200,7 +3261,8 @@ module Aws::MediaConnect
3200
3261
  :transport,
3201
3262
  :vpc_interface_attachment,
3202
3263
  :bridge_arn,
3203
- :bridge_ports)
3264
+ :bridge_ports,
3265
+ :output_status)
3204
3266
  SENSITIVE = []
3205
3267
  include Aws::Structure
3206
3268
  end
@@ -3991,6 +4053,42 @@ module Aws::MediaConnect
3991
4053
  include Aws::Structure
3992
4054
  end
3993
4055
 
4056
+ # The details of the thumbnail, including thumbnail base64 string,
4057
+ # timecode and the time when thumbnail was generated.
4058
+ #
4059
+ # @!attribute [rw] flow_arn
4060
+ # The ARN of the flow that DescribeFlowSourceThumbnail was performed
4061
+ # on.
4062
+ # @return [String]
4063
+ #
4064
+ # @!attribute [rw] thumbnail
4065
+ # Thumbnail Base64 string.
4066
+ # @return [String]
4067
+ #
4068
+ # @!attribute [rw] thumbnail_messages
4069
+ # Status code and messages about the flow source thumbnail.
4070
+ # @return [Array<Types::MessageDetail>]
4071
+ #
4072
+ # @!attribute [rw] timecode
4073
+ # Timecode of thumbnail.
4074
+ # @return [String]
4075
+ #
4076
+ # @!attribute [rw] timestamp
4077
+ # The timestamp of when thumbnail was generated.
4078
+ # @return [Time]
4079
+ #
4080
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ThumbnailDetails AWS API Documentation
4081
+ #
4082
+ class ThumbnailDetails < Struct.new(
4083
+ :flow_arn,
4084
+ :thumbnail,
4085
+ :thumbnail_messages,
4086
+ :timecode,
4087
+ :timestamp)
4088
+ SENSITIVE = []
4089
+ include Aws::Structure
4090
+ end
4091
+
3994
4092
  # Exception raised by AWS Elemental MediaConnect. See the error message
3995
4093
  # and documentation for the operation for more information on the cause
3996
4094
  # of this exception.
@@ -4364,9 +4462,9 @@ module Aws::MediaConnect
4364
4462
  # The bridge has been successfully updated.
4365
4463
  #
4366
4464
  # @!attribute [rw] bridge
4367
- # A Bridge is the connection between your datacenter's Instances and
4465
+ # A Bridge is the connection between your data center's Instances and
4368
4466
  # the AWS cloud. A bridge can be used to send video from the AWS cloud
4369
- # to your datacenter or from your datacenter to the AWS cloud.
4467
+ # to your data center or from your data center to the AWS cloud.
4370
4468
  # @return [Types::Bridge]
4371
4469
  #
4372
4470
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeResponse AWS API Documentation
@@ -4792,6 +4890,12 @@ module Aws::MediaConnect
4792
4890
  # The name of the VPC interface attachment to use for this output.
4793
4891
  # @return [Types::VpcInterfaceAttachment]
4794
4892
  #
4893
+ # @!attribute [rw] output_status
4894
+ # An indication of whether the output should transmit data or not. If
4895
+ # you don't specify the outputStatus field in your request,
4896
+ # MediaConnect leaves the value unchanged.
4897
+ # @return [String]
4898
+ #
4795
4899
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowOutputRequest AWS API Documentation
4796
4900
  #
4797
4901
  class UpdateFlowOutputRequest < Struct.new(
@@ -4811,7 +4915,8 @@ module Aws::MediaConnect
4811
4915
  :sender_ip_address,
4812
4916
  :smoothing_latency,
4813
4917
  :stream_id,
4814
- :vpc_interface_attachment)
4918
+ :vpc_interface_attachment,
4919
+ :output_status)
4815
4920
  SENSITIVE = []
4816
4921
  include Aws::Structure
4817
4922
  end
@@ -4849,12 +4954,17 @@ module Aws::MediaConnect
4849
4954
  # Update maintenance setting for a flow
4850
4955
  # @return [Types::UpdateMaintenance]
4851
4956
  #
4957
+ # @!attribute [rw] source_monitoring_config
4958
+ # The settings for source monitoring.
4959
+ # @return [Types::MonitoringConfig]
4960
+ #
4852
4961
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowRequest AWS API Documentation
4853
4962
  #
4854
4963
  class UpdateFlowRequest < Struct.new(
4855
4964
  :flow_arn,
4856
4965
  :source_failover_config,
4857
- :maintenance)
4966
+ :maintenance,
4967
+ :source_monitoring_config)
4858
4968
  SENSITIVE = []
4859
4969
  include Aws::Structure
4860
4970
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-mediaconnect/customizations'
53
53
  # @!group service
54
54
  module Aws::MediaConnect
55
55
 
56
- GEM_VERSION = '1.64.0'
56
+ GEM_VERSION = '1.66.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
@@ -212,7 +213,8 @@ module Aws
212
213
  stream_id: ::String?,
213
214
  vpc_interface_attachment: {
214
215
  vpc_interface_name: ::String?
215
- }?
216
+ }?,
217
+ output_status: ("ENABLED" | "DISABLED")?
216
218
  },
217
219
  ]
218
220
  ) -> _AddFlowOutputsResponseSuccess
@@ -452,7 +454,8 @@ module Aws
452
454
  stream_id: ::String?,
453
455
  vpc_interface_attachment: {
454
456
  vpc_interface_name: ::String?
455
- }?
457
+ }?,
458
+ output_status: ("ENABLED" | "DISABLED")?
456
459
  },
457
460
  ],
458
461
  ?source: {
@@ -575,6 +578,9 @@ module Aws
575
578
  ?maintenance: {
576
579
  maintenance_day: ("Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday"),
577
580
  maintenance_start_hour: ::String
581
+ },
582
+ ?source_monitoring_config: {
583
+ thumbnail_state: ("ENABLED" | "DISABLED")?
578
584
  }
579
585
  ) -> _CreateFlowResponseSuccess
580
586
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFlowResponseSuccess
@@ -673,6 +679,16 @@ module Aws
673
679
  ) -> _DescribeFlowSourceMetadataResponseSuccess
674
680
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFlowSourceMetadataResponseSuccess
675
681
 
682
+ interface _DescribeFlowSourceThumbnailResponseSuccess
683
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFlowSourceThumbnailResponse]
684
+ def thumbnail_details: () -> Types::ThumbnailDetails
685
+ end
686
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#describe_flow_source_thumbnail-instance_method
687
+ def describe_flow_source_thumbnail: (
688
+ flow_arn: ::String
689
+ ) -> _DescribeFlowSourceThumbnailResponseSuccess
690
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFlowSourceThumbnailResponseSuccess
691
+
676
692
  interface _DescribeGatewayResponseSuccess
677
693
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGatewayResponse]
678
694
  def gateway: () -> Types::Gateway
@@ -1072,6 +1088,9 @@ module Aws
1072
1088
  maintenance_day: ("Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday")?,
1073
1089
  maintenance_scheduled_date: ::String?,
1074
1090
  maintenance_start_hour: ::String?
1091
+ },
1092
+ ?source_monitoring_config: {
1093
+ thumbnail_state: ("ENABLED" | "DISABLED")?
1075
1094
  }
1076
1095
  ) -> _UpdateFlowResponseSuccess
1077
1096
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFlowResponseSuccess
@@ -1183,7 +1202,8 @@ module Aws
1183
1202
  ?stream_id: ::String,
1184
1203
  ?vpc_interface_attachment: {
1185
1204
  vpc_interface_name: ::String?
1186
- }
1205
+ },
1206
+ ?output_status: ("ENABLED" | "DISABLED")
1187
1207
  ) -> _UpdateFlowOutputResponseSuccess
1188
1208
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFlowOutputResponseSuccess
1189
1209
 
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
data/sig/types.rbs CHANGED
@@ -166,6 +166,7 @@ module Aws::MediaConnect
166
166
  attr_accessor smoothing_latency: ::Integer
167
167
  attr_accessor stream_id: ::String
168
168
  attr_accessor vpc_interface_attachment: Types::VpcInterfaceAttachment
169
+ attr_accessor output_status: ("ENABLED" | "DISABLED")
169
170
  SENSITIVE: []
170
171
  end
171
172
 
@@ -276,6 +277,7 @@ module Aws::MediaConnect
276
277
  attr_accessor sources: ::Array[Types::SetSourceRequest]
277
278
  attr_accessor vpc_interfaces: ::Array[Types::VpcInterfaceRequest]
278
279
  attr_accessor maintenance: Types::AddMaintenance
280
+ attr_accessor source_monitoring_config: Types::MonitoringConfig
279
281
  SENSITIVE: []
280
282
  end
281
283
 
@@ -378,6 +380,16 @@ module Aws::MediaConnect
378
380
  SENSITIVE: []
379
381
  end
380
382
 
383
+ class DescribeFlowSourceThumbnailRequest
384
+ attr_accessor flow_arn: ::String
385
+ SENSITIVE: []
386
+ end
387
+
388
+ class DescribeFlowSourceThumbnailResponse
389
+ attr_accessor thumbnail_details: Types::ThumbnailDetails
390
+ SENSITIVE: []
391
+ end
392
+
381
393
  class DescribeGatewayInstanceRequest
382
394
  attr_accessor gateway_instance_arn: ::String
383
395
  SENSITIVE: []
@@ -498,6 +510,7 @@ module Aws::MediaConnect
498
510
  attr_accessor status: ("STANDBY" | "ACTIVE" | "UPDATING" | "DELETING" | "STARTING" | "STOPPING" | "ERROR")
499
511
  attr_accessor vpc_interfaces: ::Array[Types::VpcInterface]
500
512
  attr_accessor maintenance: Types::Maintenance
513
+ attr_accessor source_monitoring_config: Types::MonitoringConfig
501
514
  SENSITIVE: []
502
515
  end
503
516
 
@@ -842,6 +855,11 @@ module Aws::MediaConnect
842
855
  SENSITIVE: []
843
856
  end
844
857
 
858
+ class MonitoringConfig
859
+ attr_accessor thumbnail_state: ("ENABLED" | "DISABLED")
860
+ SENSITIVE: []
861
+ end
862
+
845
863
  class NotFoundException
846
864
  attr_accessor message: ::String
847
865
  SENSITIVE: []
@@ -875,6 +893,7 @@ module Aws::MediaConnect
875
893
  attr_accessor vpc_interface_attachment: Types::VpcInterfaceAttachment
876
894
  attr_accessor bridge_arn: ::String
877
895
  attr_accessor bridge_ports: ::Array[::Integer]
896
+ attr_accessor output_status: ("ENABLED" | "DISABLED")
878
897
  SENSITIVE: []
879
898
  end
880
899
 
@@ -1089,6 +1108,15 @@ module Aws::MediaConnect
1089
1108
  SENSITIVE: []
1090
1109
  end
1091
1110
 
1111
+ class ThumbnailDetails
1112
+ attr_accessor flow_arn: ::String
1113
+ attr_accessor thumbnail: ::String
1114
+ attr_accessor thumbnail_messages: ::Array[Types::MessageDetail]
1115
+ attr_accessor timecode: ::String
1116
+ attr_accessor timestamp: ::Time
1117
+ SENSITIVE: []
1118
+ end
1119
+
1092
1120
  class TooManyRequestsException
1093
1121
  attr_accessor message: ::String
1094
1122
  SENSITIVE: []
@@ -1295,6 +1323,7 @@ module Aws::MediaConnect
1295
1323
  attr_accessor smoothing_latency: ::Integer
1296
1324
  attr_accessor stream_id: ::String
1297
1325
  attr_accessor vpc_interface_attachment: Types::VpcInterfaceAttachment
1326
+ attr_accessor output_status: ("ENABLED" | "DISABLED")
1298
1327
  SENSITIVE: []
1299
1328
  end
1300
1329
 
@@ -1308,6 +1337,7 @@ module Aws::MediaConnect
1308
1337
  attr_accessor flow_arn: ::String
1309
1338
  attr_accessor source_failover_config: Types::UpdateFailoverConfig
1310
1339
  attr_accessor maintenance: Types::UpdateMaintenance
1340
+ attr_accessor source_monitoring_config: Types::MonitoringConfig
1311
1341
  SENSITIVE: []
1312
1342
  end
1313
1343
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconnect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.64.0
4
+ version: 1.66.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for AWS MediaConnect. This gem is part of the AWS
48
48
  SDK for Ruby.
49
49
  email: