aws-sdk-mediaconnect 1.65.0 → 1.67.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: 5f1d7828fab395c0d1aa79d0d97e52d6a9b53a0934e305fb4eef31be72e8e39e
4
- data.tar.gz: ba3451c7b7c9876ee284e337040fa14f68d7d9d6249b98b91a9345879a5ef43b
3
+ metadata.gz: e5d0611e18cc8b3421f017605b504bfd286c9bbb728f1a8930fba67078c58407
4
+ data.tar.gz: f13f2a5e09f649fac7163d00d719f9aba773b1d7aed3767f9d8bcb89aad0a504
5
5
  SHA512:
6
- metadata.gz: d4299b99539bd85fa03671b213e066c5339e3fa6c0d046082fabec0a641631ab2fbf5b91d1c04ee7c710740c3e5a2fd70d4cb60cc62b9b121b058f5ba8aa5318
7
- data.tar.gz: f931ecfe9c81d82c2524dab65394c2d2a32ee9ee8653da4a8aa2020d98e69649663056ac664d1289af6d8fbedd7821a17c7a5a484f4ee2b6369c73829a01983e
6
+ metadata.gz: 554d59b24003c1902eddb55e7310fd40311bb23f20468ab0080d9d18b45c7f976f26b339f28a069d86c8b75fdc5baee0c9254374067d1dbaa60a7282d847603e
7
+ data.tar.gz: 02b3aae101ebc5e55eadfc404cbe19a0381bdefbd678972e798b513b31196a3b35e40825d1066a7329371cf9e7dfcd39e05d3ef6ffd5a979aeedc67c63bd1118
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2024-09-10)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.66.0 (2024-09-03)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.65.0 (2024-07-10)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.67.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:
@@ -413,6 +425,12 @@ module Aws::MediaConnect
413
425
  # @option options [String] :ssl_ca_store
414
426
  # Sets the X509::Store to verify peer certificate.
415
427
  #
428
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
429
+ # Sets a client certificate when creating http connections.
430
+ #
431
+ # @option options [OpenSSL::PKey] :ssl_key
432
+ # Sets a client key when creating http connections.
433
+ #
416
434
  # @option options [Float] :ssl_timeout
417
435
  # Sets the SSL timeout in seconds
418
436
  #
@@ -1081,6 +1099,9 @@ module Aws::MediaConnect
1081
1099
  # @option params [Types::AddMaintenance] :maintenance
1082
1100
  # Create maintenance setting for a flow
1083
1101
  #
1102
+ # @option params [Types::MonitoringConfig] :source_monitoring_config
1103
+ # The settings for source monitoring.
1104
+ #
1084
1105
  # @return [Types::CreateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1085
1106
  #
1086
1107
  # * {Types::CreateFlowResponse#flow #flow} => Types::Flow
@@ -1303,6 +1324,9 @@ module Aws::MediaConnect
1303
1324
  # maintenance_day: "Monday", # required, accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
1304
1325
  # maintenance_start_hour: "__string", # required
1305
1326
  # },
1327
+ # source_monitoring_config: {
1328
+ # thumbnail_state: "ENABLED", # accepts ENABLED, DISABLED
1329
+ # },
1306
1330
  # })
1307
1331
  #
1308
1332
  # @example Response structure
@@ -1498,6 +1522,7 @@ module Aws::MediaConnect
1498
1522
  # resp.flow.maintenance.maintenance_deadline #=> String
1499
1523
  # resp.flow.maintenance.maintenance_scheduled_date #=> String
1500
1524
  # resp.flow.maintenance.maintenance_start_hour #=> String
1525
+ # resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
1501
1526
  #
1502
1527
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlow AWS API Documentation
1503
1528
  #
@@ -1958,6 +1983,7 @@ module Aws::MediaConnect
1958
1983
  # resp.flow.maintenance.maintenance_deadline #=> String
1959
1984
  # resp.flow.maintenance.maintenance_scheduled_date #=> String
1960
1985
  # resp.flow.maintenance.maintenance_start_hour #=> String
1986
+ # resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
1961
1987
  # resp.messages.errors #=> Array
1962
1988
  # resp.messages.errors[0] #=> String
1963
1989
  #
@@ -2028,6 +2054,40 @@ module Aws::MediaConnect
2028
2054
  req.send_request(options)
2029
2055
  end
2030
2056
 
2057
+ # Displays the thumbnail details of a flow's source stream.
2058
+ #
2059
+ # @option params [required, String] :flow_arn
2060
+ #
2061
+ # @return [Types::DescribeFlowSourceThumbnailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2062
+ #
2063
+ # * {Types::DescribeFlowSourceThumbnailResponse#thumbnail_details #thumbnail_details} => Types::ThumbnailDetails
2064
+ #
2065
+ # @example Request syntax with placeholder values
2066
+ #
2067
+ # resp = client.describe_flow_source_thumbnail({
2068
+ # flow_arn: "__string", # required
2069
+ # })
2070
+ #
2071
+ # @example Response structure
2072
+ #
2073
+ # resp.thumbnail_details.flow_arn #=> String
2074
+ # resp.thumbnail_details.thumbnail #=> String
2075
+ # resp.thumbnail_details.thumbnail_messages #=> Array
2076
+ # resp.thumbnail_details.thumbnail_messages[0].code #=> String
2077
+ # resp.thumbnail_details.thumbnail_messages[0].message #=> String
2078
+ # resp.thumbnail_details.thumbnail_messages[0].resource_name #=> String
2079
+ # resp.thumbnail_details.timecode #=> String
2080
+ # resp.thumbnail_details.timestamp #=> Time
2081
+ #
2082
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowSourceThumbnail AWS API Documentation
2083
+ #
2084
+ # @overload describe_flow_source_thumbnail(params = {})
2085
+ # @param [Hash] params ({})
2086
+ def describe_flow_source_thumbnail(params = {}, options = {})
2087
+ req = build_request(:describe_flow_source_thumbnail, params)
2088
+ req.send_request(options)
2089
+ end
2090
+
2031
2091
  # Displays the details of a gateway. The response includes the gateway
2032
2092
  # ARN, name, and CIDR blocks, as well as details about the networks.
2033
2093
  #
@@ -3227,6 +3287,9 @@ module Aws::MediaConnect
3227
3287
  # @option params [Types::UpdateMaintenance] :maintenance
3228
3288
  # Update maintenance setting for a flow
3229
3289
  #
3290
+ # @option params [Types::MonitoringConfig] :source_monitoring_config
3291
+ # The settings for source monitoring.
3292
+ #
3230
3293
  # @return [Types::UpdateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3231
3294
  #
3232
3295
  # * {Types::UpdateFlowResponse#flow #flow} => Types::Flow
@@ -3248,6 +3311,9 @@ module Aws::MediaConnect
3248
3311
  # maintenance_scheduled_date: "__string",
3249
3312
  # maintenance_start_hour: "__string",
3250
3313
  # },
3314
+ # source_monitoring_config: {
3315
+ # thumbnail_state: "ENABLED", # accepts ENABLED, DISABLED
3316
+ # },
3251
3317
  # })
3252
3318
  #
3253
3319
  # @example Response structure
@@ -3443,6 +3509,7 @@ module Aws::MediaConnect
3443
3509
  # resp.flow.maintenance.maintenance_deadline #=> String
3444
3510
  # resp.flow.maintenance.maintenance_scheduled_date #=> String
3445
3511
  # resp.flow.maintenance.maintenance_start_hour #=> String
3512
+ # resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
3446
3513
  #
3447
3514
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlow AWS API Documentation
3448
3515
  #
@@ -4039,14 +4106,19 @@ module Aws::MediaConnect
4039
4106
  # @api private
4040
4107
  def build_request(operation_name, params = {})
4041
4108
  handlers = @handlers.for(operation_name)
4109
+ tracer = config.telemetry_provider.tracer_provider.tracer(
4110
+ Aws::Telemetry.module_to_tracer_name('Aws::MediaConnect')
4111
+ )
4042
4112
  context = Seahorse::Client::RequestContext.new(
4043
4113
  operation_name: operation_name,
4044
4114
  operation: config.api.operation(operation_name),
4045
4115
  client: self,
4046
4116
  params: params,
4047
- config: config)
4117
+ config: config,
4118
+ tracer: tracer
4119
+ )
4048
4120
  context[:gem_name] = 'aws-sdk-mediaconnect'
4049
- context[:gem_version] = '1.65.0'
4121
+ context[:gem_version] = '1.67.0'
4050
4122
  Seahorse::Client::Request.new(handlers, context)
4051
4123
  end
4052
4124
 
@@ -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,6 +153,7 @@ 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')
@@ -195,6 +198,8 @@ module Aws::MediaConnect
195
198
  StopFlowResponse = Shapes::StructureShape.new(name: 'StopFlowResponse')
196
199
  TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
197
200
  Tcs = Shapes::StringShape.new(name: 'Tcs')
201
+ ThumbnailDetails = Shapes::StructureShape.new(name: 'ThumbnailDetails')
202
+ ThumbnailState = Shapes::StringShape.new(name: 'ThumbnailState')
198
203
  TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
199
204
  Transport = Shapes::StructureShape.new(name: 'Transport')
200
205
  TransportMediaInfo = Shapes::StructureShape.new(name: 'TransportMediaInfo')
@@ -473,6 +478,7 @@ module Aws::MediaConnect
473
478
  CreateFlowRequest.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfSetSourceRequest, location_name: "sources"))
474
479
  CreateFlowRequest.add_member(:vpc_interfaces, Shapes::ShapeRef.new(shape: __listOfVpcInterfaceRequest, location_name: "vpcInterfaces"))
475
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"))
476
482
  CreateFlowRequest.struct_class = Types::CreateFlowRequest
477
483
 
478
484
  CreateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
@@ -538,6 +544,12 @@ module Aws::MediaConnect
538
544
  DescribeFlowSourceMetadataResponse.add_member(:transport_media_info, Shapes::ShapeRef.new(shape: TransportMediaInfo, location_name: "transportMediaInfo"))
539
545
  DescribeFlowSourceMetadataResponse.struct_class = Types::DescribeFlowSourceMetadataResponse
540
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
+
541
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:.+$"}))
542
554
  DescribeGatewayInstanceRequest.struct_class = Types::DescribeGatewayInstanceRequest
543
555
 
@@ -625,6 +637,7 @@ module Aws::MediaConnect
625
637
  Flow.add_member(:status, Shapes::ShapeRef.new(shape: Status, required: true, location_name: "status"))
626
638
  Flow.add_member(:vpc_interfaces, Shapes::ShapeRef.new(shape: __listOfVpcInterface, location_name: "vpcInterfaces"))
627
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"))
628
641
  Flow.struct_class = Types::Flow
629
642
 
630
643
  Fmtp.add_member(:channel_order, Shapes::ShapeRef.new(shape: __string, location_name: "channelOrder"))
@@ -870,6 +883,9 @@ module Aws::MediaConnect
870
883
  Messages.add_member(:errors, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "errors"))
871
884
  Messages.struct_class = Types::Messages
872
885
 
886
+ MonitoringConfig.add_member(:thumbnail_state, Shapes::ShapeRef.new(shape: ThumbnailState, location_name: "thumbnailState"))
887
+ MonitoringConfig.struct_class = Types::MonitoringConfig
888
+
873
889
  NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "message"))
874
890
  NotFoundException.struct_class = Types::NotFoundException
875
891
 
@@ -1054,6 +1070,13 @@ module Aws::MediaConnect
1054
1070
  TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, required: true, location_name: "tags"))
1055
1071
  TagResourceRequest.struct_class = Types::TagResourceRequest
1056
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
+
1057
1080
  TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "message"))
1058
1081
  TooManyRequestsException.struct_class = Types::TooManyRequestsException
1059
1082
 
@@ -1221,6 +1244,7 @@ module Aws::MediaConnect
1221
1244
  UpdateFlowRequest.add_member(:flow_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "flowArn", metadata: {"pattern"=>"^arn:.+:mediaconnect.+:flow:.+$"}))
1222
1245
  UpdateFlowRequest.add_member(:source_failover_config, Shapes::ShapeRef.new(shape: UpdateFailoverConfig, location_name: "sourceFailoverConfig"))
1223
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"))
1224
1248
  UpdateFlowRequest.struct_class = Types::UpdateFlowRequest
1225
1249
 
1226
1250
  UpdateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
@@ -1616,6 +1640,20 @@ module Aws::MediaConnect
1616
1640
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
1617
1641
  end)
1618
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
+
1619
1657
  api.add_operation(:describe_gateway, Seahorse::Model::Operation.new.tap do |o|
1620
1658
  o.name = "DescribeGateway"
1621
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
@@ -609,9 +609,9 @@ module Aws::MediaConnect
609
609
  include Aws::Structure
610
610
  end
611
611
 
612
- # A Bridge is the connection between your datacenter's Instances and
612
+ # A Bridge is the connection between your data center's Instances and
613
613
  # the AWS cloud. A bridge can be used to send video from the AWS cloud
614
- # 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.
615
615
  #
616
616
  # @!attribute [rw] bridge_arn
617
617
  # The Amazon Resource Number (ARN) of the bridge.
@@ -919,9 +919,9 @@ module Aws::MediaConnect
919
919
  # The result of a successful CreateBridge request.
920
920
  #
921
921
  # @!attribute [rw] bridge
922
- # A Bridge is the connection between your datacenter's Instances and
922
+ # A Bridge is the connection between your data center's Instances and
923
923
  # the AWS cloud. A bridge can be used to send video from the AWS cloud
924
- # 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.
925
925
  # @return [Types::Bridge]
926
926
  #
927
927
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateBridgeResponse AWS API Documentation
@@ -992,6 +992,10 @@ module Aws::MediaConnect
992
992
  # Create maintenance setting for a flow
993
993
  # @return [Types::AddMaintenance]
994
994
  #
995
+ # @!attribute [rw] source_monitoring_config
996
+ # The settings for source monitoring.
997
+ # @return [Types::MonitoringConfig]
998
+ #
995
999
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlowRequest AWS API Documentation
996
1000
  #
997
1001
  class CreateFlowRequest < Struct.new(
@@ -1004,7 +1008,8 @@ module Aws::MediaConnect
1004
1008
  :source_failover_config,
1005
1009
  :sources,
1006
1010
  :vpc_interfaces,
1007
- :maintenance)
1011
+ :maintenance,
1012
+ :source_monitoring_config)
1008
1013
  SENSITIVE = []
1009
1014
  include Aws::Structure
1010
1015
  end
@@ -1207,9 +1212,9 @@ module Aws::MediaConnect
1207
1212
  # The result of a successful DescribeBridge request.
1208
1213
  #
1209
1214
  # @!attribute [rw] bridge
1210
- # A Bridge is the connection between your datacenter's Instances and
1215
+ # A Bridge is the connection between your data center's Instances and
1211
1216
  # the AWS cloud. A bridge can be used to send video from the AWS cloud
1212
- # 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.
1213
1218
  # @return [Types::Bridge]
1214
1219
  #
1215
1220
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeBridgeResponse AWS API Documentation
@@ -1294,6 +1299,32 @@ module Aws::MediaConnect
1294
1299
  include Aws::Structure
1295
1300
  end
1296
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
+
1297
1328
  # @!attribute [rw] gateway_instance_arn
1298
1329
  # @return [String]
1299
1330
  #
@@ -1753,6 +1784,10 @@ module Aws::MediaConnect
1753
1784
  # The maintenance setting of a flow
1754
1785
  # @return [Types::Maintenance]
1755
1786
  #
1787
+ # @!attribute [rw] source_monitoring_config
1788
+ # The settings for source monitoring.
1789
+ # @return [Types::MonitoringConfig]
1790
+ #
1756
1791
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Flow AWS API Documentation
1757
1792
  #
1758
1793
  class Flow < Struct.new(
@@ -1769,7 +1804,8 @@ module Aws::MediaConnect
1769
1804
  :sources,
1770
1805
  :status,
1771
1806
  :vpc_interfaces,
1772
- :maintenance)
1807
+ :maintenance,
1808
+ :source_monitoring_config)
1773
1809
  SENSITIVE = []
1774
1810
  include Aws::Structure
1775
1811
  end
@@ -3045,6 +3081,20 @@ module Aws::MediaConnect
3045
3081
  include Aws::Structure
3046
3082
  end
3047
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
+
3048
3098
  # Exception raised by AWS Elemental MediaConnect. See the error message
3049
3099
  # and documentation for the operation for more information on the cause
3050
3100
  # of this exception.
@@ -4003,6 +4053,42 @@ module Aws::MediaConnect
4003
4053
  include Aws::Structure
4004
4054
  end
4005
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
+
4006
4092
  # Exception raised by AWS Elemental MediaConnect. See the error message
4007
4093
  # and documentation for the operation for more information on the cause
4008
4094
  # of this exception.
@@ -4376,9 +4462,9 @@ module Aws::MediaConnect
4376
4462
  # The bridge has been successfully updated.
4377
4463
  #
4378
4464
  # @!attribute [rw] bridge
4379
- # A Bridge is the connection between your datacenter's Instances and
4465
+ # A Bridge is the connection between your data center's Instances and
4380
4466
  # the AWS cloud. A bridge can be used to send video from the AWS cloud
4381
- # 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.
4382
4468
  # @return [Types::Bridge]
4383
4469
  #
4384
4470
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeResponse AWS API Documentation
@@ -4868,12 +4954,17 @@ module Aws::MediaConnect
4868
4954
  # Update maintenance setting for a flow
4869
4955
  # @return [Types::UpdateMaintenance]
4870
4956
  #
4957
+ # @!attribute [rw] source_monitoring_config
4958
+ # The settings for source monitoring.
4959
+ # @return [Types::MonitoringConfig]
4960
+ #
4871
4961
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowRequest AWS API Documentation
4872
4962
  #
4873
4963
  class UpdateFlowRequest < Struct.new(
4874
4964
  :flow_arn,
4875
4965
  :source_failover_config,
4876
- :maintenance)
4966
+ :maintenance,
4967
+ :source_monitoring_config)
4877
4968
  SENSITIVE = []
4878
4969
  include Aws::Structure
4879
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.65.0'
56
+ GEM_VERSION = '1.67.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,
@@ -577,6 +578,9 @@ module Aws
577
578
  ?maintenance: {
578
579
  maintenance_day: ("Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday"),
579
580
  maintenance_start_hour: ::String
581
+ },
582
+ ?source_monitoring_config: {
583
+ thumbnail_state: ("ENABLED" | "DISABLED")?
580
584
  }
581
585
  ) -> _CreateFlowResponseSuccess
582
586
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFlowResponseSuccess
@@ -675,6 +679,16 @@ module Aws
675
679
  ) -> _DescribeFlowSourceMetadataResponseSuccess
676
680
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFlowSourceMetadataResponseSuccess
677
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
+
678
692
  interface _DescribeGatewayResponseSuccess
679
693
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGatewayResponse]
680
694
  def gateway: () -> Types::Gateway
@@ -1074,6 +1088,9 @@ module Aws
1074
1088
  maintenance_day: ("Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday")?,
1075
1089
  maintenance_scheduled_date: ::String?,
1076
1090
  maintenance_start_hour: ::String?
1091
+ },
1092
+ ?source_monitoring_config: {
1093
+ thumbnail_state: ("ENABLED" | "DISABLED")?
1077
1094
  }
1078
1095
  ) -> _UpdateFlowResponseSuccess
1079
1096
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFlowResponseSuccess
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
@@ -277,6 +277,7 @@ module Aws::MediaConnect
277
277
  attr_accessor sources: ::Array[Types::SetSourceRequest]
278
278
  attr_accessor vpc_interfaces: ::Array[Types::VpcInterfaceRequest]
279
279
  attr_accessor maintenance: Types::AddMaintenance
280
+ attr_accessor source_monitoring_config: Types::MonitoringConfig
280
281
  SENSITIVE: []
281
282
  end
282
283
 
@@ -379,6 +380,16 @@ module Aws::MediaConnect
379
380
  SENSITIVE: []
380
381
  end
381
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
+
382
393
  class DescribeGatewayInstanceRequest
383
394
  attr_accessor gateway_instance_arn: ::String
384
395
  SENSITIVE: []
@@ -499,6 +510,7 @@ module Aws::MediaConnect
499
510
  attr_accessor status: ("STANDBY" | "ACTIVE" | "UPDATING" | "DELETING" | "STARTING" | "STOPPING" | "ERROR")
500
511
  attr_accessor vpc_interfaces: ::Array[Types::VpcInterface]
501
512
  attr_accessor maintenance: Types::Maintenance
513
+ attr_accessor source_monitoring_config: Types::MonitoringConfig
502
514
  SENSITIVE: []
503
515
  end
504
516
 
@@ -843,6 +855,11 @@ module Aws::MediaConnect
843
855
  SENSITIVE: []
844
856
  end
845
857
 
858
+ class MonitoringConfig
859
+ attr_accessor thumbnail_state: ("ENABLED" | "DISABLED")
860
+ SENSITIVE: []
861
+ end
862
+
846
863
  class NotFoundException
847
864
  attr_accessor message: ::String
848
865
  SENSITIVE: []
@@ -1091,6 +1108,15 @@ module Aws::MediaConnect
1091
1108
  SENSITIVE: []
1092
1109
  end
1093
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
+
1094
1120
  class TooManyRequestsException
1095
1121
  attr_accessor message: ::String
1096
1122
  SENSITIVE: []
@@ -1311,6 +1337,7 @@ module Aws::MediaConnect
1311
1337
  attr_accessor flow_arn: ::String
1312
1338
  attr_accessor source_failover_config: Types::UpdateFailoverConfig
1313
1339
  attr_accessor maintenance: Types::UpdateMaintenance
1340
+ attr_accessor source_monitoring_config: Types::MonitoringConfig
1314
1341
  SENSITIVE: []
1315
1342
  end
1316
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.65.0
4
+ version: 1.67.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-10 00:00:00.000000000 Z
11
+ date: 2024-09-10 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,7 +29,7 @@ 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