aws-sdk-medialive 1.56.0 → 1.57.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-medialive.rb +2 -2
- data/lib/aws-sdk-medialive/client.rb +136 -1
- data/lib/aws-sdk-medialive/client_api.rb +155 -0
- data/lib/aws-sdk-medialive/types.rb +227 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eaa67d16c20496901d76b1e11d9f864490a246544931725c447dfa9770d5aa72
|
|
4
|
+
data.tar.gz: d77ecba06406731ab5689c64a86eb993b1725311d3b757c8ffaf2cc4a0d9b541
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 457a3adf6779718bf665489aade41b7cd80ffd472e0bb884e066ddcdd72f09de3223b614c014da10078046b05fe2cf87651a3375323b541098c68f14a5ef823a
|
|
7
|
+
data.tar.gz: 0b6779d0d2b3c5d4c91c5c68660a61a1e95e07d50b2350350e8aa6134f34ae42db42e38b02b679944ce0e180dfd15a3a2bc9c3fc34aa3934ef885e2291420f0f
|
data/lib/aws-sdk-medialive.rb
CHANGED
|
@@ -29,7 +29,7 @@ require_relative 'aws-sdk-medialive/customizations'
|
|
|
29
29
|
# structure.
|
|
30
30
|
#
|
|
31
31
|
# media_live = Aws::MediaLive::Client.new
|
|
32
|
-
# resp = media_live.
|
|
32
|
+
# resp = media_live.accept_input_device_transfer(params)
|
|
33
33
|
#
|
|
34
34
|
# See {Client} for more information.
|
|
35
35
|
#
|
|
@@ -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.
|
|
52
|
+
GEM_VERSION = '1.57.0'
|
|
53
53
|
|
|
54
54
|
end
|
|
@@ -327,6 +327,28 @@ module Aws::MediaLive
|
|
|
327
327
|
|
|
328
328
|
# @!group API Operations
|
|
329
329
|
|
|
330
|
+
# Accept an incoming input device transfer. The ownership of the device
|
|
331
|
+
# will transfer to your AWS account.
|
|
332
|
+
#
|
|
333
|
+
# @option params [required, String] :input_device_id
|
|
334
|
+
#
|
|
335
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
336
|
+
#
|
|
337
|
+
# @example Request syntax with placeholder values
|
|
338
|
+
#
|
|
339
|
+
# resp = client.accept_input_device_transfer({
|
|
340
|
+
# input_device_id: "__string", # required
|
|
341
|
+
# })
|
|
342
|
+
#
|
|
343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransfer AWS API Documentation
|
|
344
|
+
#
|
|
345
|
+
# @overload accept_input_device_transfer(params = {})
|
|
346
|
+
# @param [Hash] params ({})
|
|
347
|
+
def accept_input_device_transfer(params = {}, options = {})
|
|
348
|
+
req = build_request(:accept_input_device_transfer, params)
|
|
349
|
+
req.send_request(options)
|
|
350
|
+
end
|
|
351
|
+
|
|
330
352
|
# Starts delete of resources.
|
|
331
353
|
#
|
|
332
354
|
# @option params [Array<String>] :channel_ids
|
|
@@ -710,6 +732,27 @@ module Aws::MediaLive
|
|
|
710
732
|
req.send_request(options)
|
|
711
733
|
end
|
|
712
734
|
|
|
735
|
+
# Cancel an input device transfer that you have requested.
|
|
736
|
+
#
|
|
737
|
+
# @option params [required, String] :input_device_id
|
|
738
|
+
#
|
|
739
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
740
|
+
#
|
|
741
|
+
# @example Request syntax with placeholder values
|
|
742
|
+
#
|
|
743
|
+
# resp = client.cancel_input_device_transfer({
|
|
744
|
+
# input_device_id: "__string", # required
|
|
745
|
+
# })
|
|
746
|
+
#
|
|
747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransfer AWS API Documentation
|
|
748
|
+
#
|
|
749
|
+
# @overload cancel_input_device_transfer(params = {})
|
|
750
|
+
# @param [Hash] params ({})
|
|
751
|
+
def cancel_input_device_transfer(params = {}, options = {})
|
|
752
|
+
req = build_request(:cancel_input_device_transfer, params)
|
|
753
|
+
req.send_request(options)
|
|
754
|
+
end
|
|
755
|
+
|
|
713
756
|
# Creates a new channel
|
|
714
757
|
#
|
|
715
758
|
# @option params [Types::CdiInputSpecification] :cdi_input_specification
|
|
@@ -4684,6 +4727,49 @@ module Aws::MediaLive
|
|
|
4684
4727
|
req.send_request(options)
|
|
4685
4728
|
end
|
|
4686
4729
|
|
|
4730
|
+
# List input devices that are currently being transferred. List input
|
|
4731
|
+
# devices that you are transferring from your AWS account or input
|
|
4732
|
+
# devices that another AWS account is transferring to you.
|
|
4733
|
+
#
|
|
4734
|
+
# @option params [Integer] :max_results
|
|
4735
|
+
#
|
|
4736
|
+
# @option params [String] :next_token
|
|
4737
|
+
#
|
|
4738
|
+
# @option params [required, String] :transfer_type
|
|
4739
|
+
#
|
|
4740
|
+
# @return [Types::ListInputDeviceTransfersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4741
|
+
#
|
|
4742
|
+
# * {Types::ListInputDeviceTransfersResponse#input_device_transfers #input_device_transfers} => Array<Types::TransferringInputDeviceSummary>
|
|
4743
|
+
# * {Types::ListInputDeviceTransfersResponse#next_token #next_token} => String
|
|
4744
|
+
#
|
|
4745
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
4746
|
+
#
|
|
4747
|
+
# @example Request syntax with placeholder values
|
|
4748
|
+
#
|
|
4749
|
+
# resp = client.list_input_device_transfers({
|
|
4750
|
+
# max_results: 1,
|
|
4751
|
+
# next_token: "__string",
|
|
4752
|
+
# transfer_type: "__string", # required
|
|
4753
|
+
# })
|
|
4754
|
+
#
|
|
4755
|
+
# @example Response structure
|
|
4756
|
+
#
|
|
4757
|
+
# resp.input_device_transfers #=> Array
|
|
4758
|
+
# resp.input_device_transfers[0].id #=> String
|
|
4759
|
+
# resp.input_device_transfers[0].message #=> String
|
|
4760
|
+
# resp.input_device_transfers[0].target_customer_id #=> String
|
|
4761
|
+
# resp.input_device_transfers[0].transfer_type #=> String, one of "OUTGOING", "INCOMING"
|
|
4762
|
+
# resp.next_token #=> String
|
|
4763
|
+
#
|
|
4764
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfers AWS API Documentation
|
|
4765
|
+
#
|
|
4766
|
+
# @overload list_input_device_transfers(params = {})
|
|
4767
|
+
# @param [Hash] params ({})
|
|
4768
|
+
def list_input_device_transfers(params = {}, options = {})
|
|
4769
|
+
req = build_request(:list_input_device_transfers, params)
|
|
4770
|
+
req.send_request(options)
|
|
4771
|
+
end
|
|
4772
|
+
|
|
4687
4773
|
# List input devices
|
|
4688
4774
|
#
|
|
4689
4775
|
# @option params [Integer] :max_results
|
|
@@ -5194,6 +5280,27 @@ module Aws::MediaLive
|
|
|
5194
5280
|
req.send_request(options)
|
|
5195
5281
|
end
|
|
5196
5282
|
|
|
5283
|
+
# Reject the transfer of the specified input device to your AWS account.
|
|
5284
|
+
#
|
|
5285
|
+
# @option params [required, String] :input_device_id
|
|
5286
|
+
#
|
|
5287
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
5288
|
+
#
|
|
5289
|
+
# @example Request syntax with placeholder values
|
|
5290
|
+
#
|
|
5291
|
+
# resp = client.reject_input_device_transfer({
|
|
5292
|
+
# input_device_id: "__string", # required
|
|
5293
|
+
# })
|
|
5294
|
+
#
|
|
5295
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransfer AWS API Documentation
|
|
5296
|
+
#
|
|
5297
|
+
# @overload reject_input_device_transfer(params = {})
|
|
5298
|
+
# @param [Hash] params ({})
|
|
5299
|
+
def reject_input_device_transfer(params = {}, options = {})
|
|
5300
|
+
req = build_request(:reject_input_device_transfer, params)
|
|
5301
|
+
req.send_request(options)
|
|
5302
|
+
end
|
|
5303
|
+
|
|
5197
5304
|
# Starts an existing channel
|
|
5198
5305
|
#
|
|
5199
5306
|
# @option params [required, String] :channel_id
|
|
@@ -6518,6 +6625,34 @@ module Aws::MediaLive
|
|
|
6518
6625
|
req.send_request(options)
|
|
6519
6626
|
end
|
|
6520
6627
|
|
|
6628
|
+
# Start an input device transfer to another AWS account. After you make
|
|
6629
|
+
# the request, the other account must accept or reject the transfer.
|
|
6630
|
+
#
|
|
6631
|
+
# @option params [required, String] :input_device_id
|
|
6632
|
+
#
|
|
6633
|
+
# @option params [String] :target_customer_id
|
|
6634
|
+
#
|
|
6635
|
+
# @option params [String] :transfer_message
|
|
6636
|
+
#
|
|
6637
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
6638
|
+
#
|
|
6639
|
+
# @example Request syntax with placeholder values
|
|
6640
|
+
#
|
|
6641
|
+
# resp = client.transfer_input_device({
|
|
6642
|
+
# input_device_id: "__string", # required
|
|
6643
|
+
# target_customer_id: "__string",
|
|
6644
|
+
# transfer_message: "__string",
|
|
6645
|
+
# })
|
|
6646
|
+
#
|
|
6647
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDevice AWS API Documentation
|
|
6648
|
+
#
|
|
6649
|
+
# @overload transfer_input_device(params = {})
|
|
6650
|
+
# @param [Hash] params ({})
|
|
6651
|
+
def transfer_input_device(params = {}, options = {})
|
|
6652
|
+
req = build_request(:transfer_input_device, params)
|
|
6653
|
+
req.send_request(options)
|
|
6654
|
+
end
|
|
6655
|
+
|
|
6521
6656
|
# Updates a channel.
|
|
6522
6657
|
#
|
|
6523
6658
|
# @option params [Types::CdiInputSpecification] :cdi_input_specification
|
|
@@ -9032,7 +9167,7 @@ module Aws::MediaLive
|
|
|
9032
9167
|
params: params,
|
|
9033
9168
|
config: config)
|
|
9034
9169
|
context[:gem_name] = 'aws-sdk-medialive'
|
|
9035
|
-
context[:gem_version] = '1.
|
|
9170
|
+
context[:gem_version] = '1.57.0'
|
|
9036
9171
|
Seahorse::Client::Request.new(handlers, context)
|
|
9037
9172
|
end
|
|
9038
9173
|
|
|
@@ -28,6 +28,8 @@ module Aws::MediaLive
|
|
|
28
28
|
Ac3MetadataControl = Shapes::StringShape.new(name: 'Ac3MetadataControl')
|
|
29
29
|
Ac3Settings = Shapes::StructureShape.new(name: 'Ac3Settings')
|
|
30
30
|
AcceptHeader = Shapes::StringShape.new(name: 'AcceptHeader')
|
|
31
|
+
AcceptInputDeviceTransferRequest = Shapes::StructureShape.new(name: 'AcceptInputDeviceTransferRequest')
|
|
32
|
+
AcceptInputDeviceTransferResponse = Shapes::StructureShape.new(name: 'AcceptInputDeviceTransferResponse')
|
|
31
33
|
AccessDenied = Shapes::StructureShape.new(name: 'AccessDenied')
|
|
32
34
|
AfdSignaling = Shapes::StringShape.new(name: 'AfdSignaling')
|
|
33
35
|
AncillarySourceSettings = Shapes::StructureShape.new(name: 'AncillarySourceSettings')
|
|
@@ -94,6 +96,8 @@ module Aws::MediaLive
|
|
|
94
96
|
BurnInOutlineColor = Shapes::StringShape.new(name: 'BurnInOutlineColor')
|
|
95
97
|
BurnInShadowColor = Shapes::StringShape.new(name: 'BurnInShadowColor')
|
|
96
98
|
BurnInTeletextGridControl = Shapes::StringShape.new(name: 'BurnInTeletextGridControl')
|
|
99
|
+
CancelInputDeviceTransferRequest = Shapes::StructureShape.new(name: 'CancelInputDeviceTransferRequest')
|
|
100
|
+
CancelInputDeviceTransferResponse = Shapes::StructureShape.new(name: 'CancelInputDeviceTransferResponse')
|
|
97
101
|
CaptionDescription = Shapes::StructureShape.new(name: 'CaptionDescription')
|
|
98
102
|
CaptionDestinationSettings = Shapes::StructureShape.new(name: 'CaptionDestinationSettings')
|
|
99
103
|
CaptionLanguageMapping = Shapes::StructureShape.new(name: 'CaptionLanguageMapping')
|
|
@@ -328,6 +332,7 @@ module Aws::MediaLive
|
|
|
328
332
|
InputDeviceState = Shapes::StringShape.new(name: 'InputDeviceState')
|
|
329
333
|
InputDeviceSummary = Shapes::StructureShape.new(name: 'InputDeviceSummary')
|
|
330
334
|
InputDeviceThumbnail = Shapes::BlobShape.new(name: 'InputDeviceThumbnail', streaming: true)
|
|
335
|
+
InputDeviceTransferType = Shapes::StringShape.new(name: 'InputDeviceTransferType')
|
|
331
336
|
InputDeviceType = Shapes::StringShape.new(name: 'InputDeviceType')
|
|
332
337
|
InputFilter = Shapes::StringShape.new(name: 'InputFilter')
|
|
333
338
|
InputLocation = Shapes::StructureShape.new(name: 'InputLocation')
|
|
@@ -366,6 +371,9 @@ module Aws::MediaLive
|
|
|
366
371
|
ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
|
|
367
372
|
ListChannelsResponse = Shapes::StructureShape.new(name: 'ListChannelsResponse')
|
|
368
373
|
ListChannelsResultModel = Shapes::StructureShape.new(name: 'ListChannelsResultModel')
|
|
374
|
+
ListInputDeviceTransfersRequest = Shapes::StructureShape.new(name: 'ListInputDeviceTransfersRequest')
|
|
375
|
+
ListInputDeviceTransfersResponse = Shapes::StructureShape.new(name: 'ListInputDeviceTransfersResponse')
|
|
376
|
+
ListInputDeviceTransfersResultModel = Shapes::StructureShape.new(name: 'ListInputDeviceTransfersResultModel')
|
|
369
377
|
ListInputDevicesRequest = Shapes::StructureShape.new(name: 'ListInputDevicesRequest')
|
|
370
378
|
ListInputDevicesResponse = Shapes::StructureShape.new(name: 'ListInputDevicesResponse')
|
|
371
379
|
ListInputDevicesResultModel = Shapes::StructureShape.new(name: 'ListInputDevicesResultModel')
|
|
@@ -483,6 +491,8 @@ module Aws::MediaLive
|
|
|
483
491
|
RawSettings = Shapes::StructureShape.new(name: 'RawSettings')
|
|
484
492
|
Rec601Settings = Shapes::StructureShape.new(name: 'Rec601Settings')
|
|
485
493
|
Rec709Settings = Shapes::StructureShape.new(name: 'Rec709Settings')
|
|
494
|
+
RejectInputDeviceTransferRequest = Shapes::StructureShape.new(name: 'RejectInputDeviceTransferRequest')
|
|
495
|
+
RejectInputDeviceTransferResponse = Shapes::StructureShape.new(name: 'RejectInputDeviceTransferResponse')
|
|
486
496
|
RemixSettings = Shapes::StructureShape.new(name: 'RemixSettings')
|
|
487
497
|
Reservation = Shapes::StructureShape.new(name: 'Reservation')
|
|
488
498
|
ReservationCodec = Shapes::StringShape.new(name: 'ReservationCodec')
|
|
@@ -561,9 +571,14 @@ module Aws::MediaLive
|
|
|
561
571
|
TemporalFilterPostFilterSharpening = Shapes::StringShape.new(name: 'TemporalFilterPostFilterSharpening')
|
|
562
572
|
TemporalFilterSettings = Shapes::StructureShape.new(name: 'TemporalFilterSettings')
|
|
563
573
|
TemporalFilterStrength = Shapes::StringShape.new(name: 'TemporalFilterStrength')
|
|
574
|
+
ThumbnailData = Shapes::StructureShape.new(name: 'ThumbnailData')
|
|
564
575
|
TimecodeConfig = Shapes::StructureShape.new(name: 'TimecodeConfig')
|
|
565
576
|
TimecodeConfigSource = Shapes::StringShape.new(name: 'TimecodeConfigSource')
|
|
566
577
|
TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
|
|
578
|
+
TransferInputDevice = Shapes::StructureShape.new(name: 'TransferInputDevice')
|
|
579
|
+
TransferInputDeviceRequest = Shapes::StructureShape.new(name: 'TransferInputDeviceRequest')
|
|
580
|
+
TransferInputDeviceResponse = Shapes::StructureShape.new(name: 'TransferInputDeviceResponse')
|
|
581
|
+
TransferringInputDeviceSummary = Shapes::StructureShape.new(name: 'TransferringInputDeviceSummary')
|
|
567
582
|
TtmlDestinationSettings = Shapes::StructureShape.new(name: 'TtmlDestinationSettings')
|
|
568
583
|
TtmlDestinationStyleControl = Shapes::StringShape.new(name: 'TtmlDestinationStyleControl')
|
|
569
584
|
UdpContainerSettings = Shapes::StructureShape.new(name: 'UdpContainerSettings')
|
|
@@ -711,6 +726,7 @@ module Aws::MediaLive
|
|
|
711
726
|
__listOfReservation = Shapes::ListShape.new(name: '__listOfReservation')
|
|
712
727
|
__listOfScheduleAction = Shapes::ListShape.new(name: '__listOfScheduleAction')
|
|
713
728
|
__listOfScte35Descriptor = Shapes::ListShape.new(name: '__listOfScte35Descriptor')
|
|
729
|
+
__listOfTransferringInputDeviceSummary = Shapes::ListShape.new(name: '__listOfTransferringInputDeviceSummary')
|
|
714
730
|
__listOfValidationError = Shapes::ListShape.new(name: '__listOfValidationError')
|
|
715
731
|
__listOfVideoDescription = Shapes::ListShape.new(name: '__listOfVideoDescription')
|
|
716
732
|
__listOf__integer = Shapes::ListShape.new(name: '__listOf__integer')
|
|
@@ -754,6 +770,11 @@ module Aws::MediaLive
|
|
|
754
770
|
Ac3Settings.add_member(:metadata_control, Shapes::ShapeRef.new(shape: Ac3MetadataControl, location_name: "metadataControl"))
|
|
755
771
|
Ac3Settings.struct_class = Types::Ac3Settings
|
|
756
772
|
|
|
773
|
+
AcceptInputDeviceTransferRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
|
|
774
|
+
AcceptInputDeviceTransferRequest.struct_class = Types::AcceptInputDeviceTransferRequest
|
|
775
|
+
|
|
776
|
+
AcceptInputDeviceTransferResponse.struct_class = Types::AcceptInputDeviceTransferResponse
|
|
777
|
+
|
|
757
778
|
AccessDenied.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
|
758
779
|
AccessDenied.struct_class = Types::AccessDenied
|
|
759
780
|
|
|
@@ -969,6 +990,11 @@ module Aws::MediaLive
|
|
|
969
990
|
BurnInDestinationSettings.add_member(:y_position, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "yPosition"))
|
|
970
991
|
BurnInDestinationSettings.struct_class = Types::BurnInDestinationSettings
|
|
971
992
|
|
|
993
|
+
CancelInputDeviceTransferRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
|
|
994
|
+
CancelInputDeviceTransferRequest.struct_class = Types::CancelInputDeviceTransferRequest
|
|
995
|
+
|
|
996
|
+
CancelInputDeviceTransferResponse.struct_class = Types::CancelInputDeviceTransferResponse
|
|
997
|
+
|
|
972
998
|
CaptionDescription.add_member(:caption_selector_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "captionSelectorName"))
|
|
973
999
|
CaptionDescription.add_member(:destination_settings, Shapes::ShapeRef.new(shape: CaptionDestinationSettings, location_name: "destinationSettings"))
|
|
974
1000
|
CaptionDescription.add_member(:language_code, Shapes::ShapeRef.new(shape: __string, location_name: "languageCode"))
|
|
@@ -1946,6 +1972,19 @@ module Aws::MediaLive
|
|
|
1946
1972
|
ListChannelsResultModel.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
|
1947
1973
|
ListChannelsResultModel.struct_class = Types::ListChannelsResultModel
|
|
1948
1974
|
|
|
1975
|
+
ListInputDeviceTransfersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1976
|
+
ListInputDeviceTransfersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
|
|
1977
|
+
ListInputDeviceTransfersRequest.add_member(:transfer_type, Shapes::ShapeRef.new(shape: __string, required: true, location: "querystring", location_name: "transferType"))
|
|
1978
|
+
ListInputDeviceTransfersRequest.struct_class = Types::ListInputDeviceTransfersRequest
|
|
1979
|
+
|
|
1980
|
+
ListInputDeviceTransfersResponse.add_member(:input_device_transfers, Shapes::ShapeRef.new(shape: __listOfTransferringInputDeviceSummary, location_name: "inputDeviceTransfers"))
|
|
1981
|
+
ListInputDeviceTransfersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
|
1982
|
+
ListInputDeviceTransfersResponse.struct_class = Types::ListInputDeviceTransfersResponse
|
|
1983
|
+
|
|
1984
|
+
ListInputDeviceTransfersResultModel.add_member(:input_device_transfers, Shapes::ShapeRef.new(shape: __listOfTransferringInputDeviceSummary, location_name: "inputDeviceTransfers"))
|
|
1985
|
+
ListInputDeviceTransfersResultModel.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
|
1986
|
+
ListInputDeviceTransfersResultModel.struct_class = Types::ListInputDeviceTransfersResultModel
|
|
1987
|
+
|
|
1949
1988
|
ListInputDevicesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1950
1989
|
ListInputDevicesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
|
|
1951
1990
|
ListInputDevicesRequest.struct_class = Types::ListInputDevicesRequest
|
|
@@ -2399,6 +2438,11 @@ module Aws::MediaLive
|
|
|
2399
2438
|
|
|
2400
2439
|
Rec709Settings.struct_class = Types::Rec709Settings
|
|
2401
2440
|
|
|
2441
|
+
RejectInputDeviceTransferRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
|
|
2442
|
+
RejectInputDeviceTransferRequest.struct_class = Types::RejectInputDeviceTransferRequest
|
|
2443
|
+
|
|
2444
|
+
RejectInputDeviceTransferResponse.struct_class = Types::RejectInputDeviceTransferResponse
|
|
2445
|
+
|
|
2402
2446
|
RemixSettings.add_member(:channel_mappings, Shapes::ShapeRef.new(shape: __listOfAudioChannelMapping, required: true, location_name: "channelMappings"))
|
|
2403
2447
|
RemixSettings.add_member(:channels_in, Shapes::ShapeRef.new(shape: __integerMin1Max16, location_name: "channelsIn"))
|
|
2404
2448
|
RemixSettings.add_member(:channels_out, Shapes::ShapeRef.new(shape: __integerMin1Max8, location_name: "channelsOut"))
|
|
@@ -2660,6 +2704,9 @@ module Aws::MediaLive
|
|
|
2660
2704
|
TemporalFilterSettings.add_member(:strength, Shapes::ShapeRef.new(shape: TemporalFilterStrength, location_name: "strength"))
|
|
2661
2705
|
TemporalFilterSettings.struct_class = Types::TemporalFilterSettings
|
|
2662
2706
|
|
|
2707
|
+
ThumbnailData.add_member(:body, Shapes::ShapeRef.new(shape: __string, location_name: "body"))
|
|
2708
|
+
ThumbnailData.struct_class = Types::ThumbnailData
|
|
2709
|
+
|
|
2663
2710
|
TimecodeConfig.add_member(:source, Shapes::ShapeRef.new(shape: TimecodeConfigSource, required: true, location_name: "source"))
|
|
2664
2711
|
TimecodeConfig.add_member(:sync_threshold, Shapes::ShapeRef.new(shape: __integerMin1Max1000000, location_name: "syncThreshold"))
|
|
2665
2712
|
TimecodeConfig.struct_class = Types::TimecodeConfig
|
|
@@ -2667,6 +2714,23 @@ module Aws::MediaLive
|
|
|
2667
2714
|
TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
|
2668
2715
|
TooManyRequestsException.struct_class = Types::TooManyRequestsException
|
|
2669
2716
|
|
|
2717
|
+
TransferInputDevice.add_member(:target_customer_id, Shapes::ShapeRef.new(shape: __string, location_name: "targetCustomerId"))
|
|
2718
|
+
TransferInputDevice.add_member(:transfer_message, Shapes::ShapeRef.new(shape: __string, location_name: "transferMessage"))
|
|
2719
|
+
TransferInputDevice.struct_class = Types::TransferInputDevice
|
|
2720
|
+
|
|
2721
|
+
TransferInputDeviceRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
|
|
2722
|
+
TransferInputDeviceRequest.add_member(:target_customer_id, Shapes::ShapeRef.new(shape: __string, location_name: "targetCustomerId"))
|
|
2723
|
+
TransferInputDeviceRequest.add_member(:transfer_message, Shapes::ShapeRef.new(shape: __string, location_name: "transferMessage"))
|
|
2724
|
+
TransferInputDeviceRequest.struct_class = Types::TransferInputDeviceRequest
|
|
2725
|
+
|
|
2726
|
+
TransferInputDeviceResponse.struct_class = Types::TransferInputDeviceResponse
|
|
2727
|
+
|
|
2728
|
+
TransferringInputDeviceSummary.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
|
2729
|
+
TransferringInputDeviceSummary.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
|
2730
|
+
TransferringInputDeviceSummary.add_member(:target_customer_id, Shapes::ShapeRef.new(shape: __string, location_name: "targetCustomerId"))
|
|
2731
|
+
TransferringInputDeviceSummary.add_member(:transfer_type, Shapes::ShapeRef.new(shape: InputDeviceTransferType, location_name: "transferType"))
|
|
2732
|
+
TransferringInputDeviceSummary.struct_class = Types::TransferringInputDeviceSummary
|
|
2733
|
+
|
|
2670
2734
|
TtmlDestinationSettings.add_member(:style_control, Shapes::ShapeRef.new(shape: TtmlDestinationStyleControl, location_name: "styleControl"))
|
|
2671
2735
|
TtmlDestinationSettings.struct_class = Types::TtmlDestinationSettings
|
|
2672
2736
|
|
|
@@ -2951,6 +3015,8 @@ module Aws::MediaLive
|
|
|
2951
3015
|
|
|
2952
3016
|
__listOfScte35Descriptor.member = Shapes::ShapeRef.new(shape: Scte35Descriptor)
|
|
2953
3017
|
|
|
3018
|
+
__listOfTransferringInputDeviceSummary.member = Shapes::ShapeRef.new(shape: TransferringInputDeviceSummary)
|
|
3019
|
+
|
|
2954
3020
|
__listOfValidationError.member = Shapes::ShapeRef.new(shape: ValidationError)
|
|
2955
3021
|
|
|
2956
3022
|
__listOfVideoDescription.member = Shapes::ShapeRef.new(shape: VideoDescription)
|
|
@@ -2978,6 +3044,23 @@ module Aws::MediaLive
|
|
|
2978
3044
|
"uid" => "medialive-2017-10-14",
|
|
2979
3045
|
}
|
|
2980
3046
|
|
|
3047
|
+
api.add_operation(:accept_input_device_transfer, Seahorse::Model::Operation.new.tap do |o|
|
|
3048
|
+
o.name = "AcceptInputDeviceTransfer"
|
|
3049
|
+
o.http_method = "POST"
|
|
3050
|
+
o.http_request_uri = "/prod/inputDevices/{inputDeviceId}/accept"
|
|
3051
|
+
o.input = Shapes::ShapeRef.new(shape: AcceptInputDeviceTransferRequest)
|
|
3052
|
+
o.output = Shapes::ShapeRef.new(shape: AcceptInputDeviceTransferResponse)
|
|
3053
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
3054
|
+
o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
|
|
3055
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
3056
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
3057
|
+
o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
|
|
3058
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
3059
|
+
o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
|
|
3060
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
3061
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3062
|
+
end)
|
|
3063
|
+
|
|
2981
3064
|
api.add_operation(:batch_delete, Seahorse::Model::Operation.new.tap do |o|
|
|
2982
3065
|
o.name = "BatchDelete"
|
|
2983
3066
|
o.http_method = "POST"
|
|
@@ -3042,6 +3125,23 @@ module Aws::MediaLive
|
|
|
3042
3125
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
3043
3126
|
end)
|
|
3044
3127
|
|
|
3128
|
+
api.add_operation(:cancel_input_device_transfer, Seahorse::Model::Operation.new.tap do |o|
|
|
3129
|
+
o.name = "CancelInputDeviceTransfer"
|
|
3130
|
+
o.http_method = "POST"
|
|
3131
|
+
o.http_request_uri = "/prod/inputDevices/{inputDeviceId}/cancel"
|
|
3132
|
+
o.input = Shapes::ShapeRef.new(shape: CancelInputDeviceTransferRequest)
|
|
3133
|
+
o.output = Shapes::ShapeRef.new(shape: CancelInputDeviceTransferResponse)
|
|
3134
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
3135
|
+
o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
|
|
3136
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
3137
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
3138
|
+
o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
|
|
3139
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
3140
|
+
o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
|
|
3141
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
3142
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3143
|
+
end)
|
|
3144
|
+
|
|
3045
3145
|
api.add_operation(:create_channel, Seahorse::Model::Operation.new.tap do |o|
|
|
3046
3146
|
o.name = "CreateChannel"
|
|
3047
3147
|
o.http_method = "POST"
|
|
@@ -3428,6 +3528,27 @@ module Aws::MediaLive
|
|
|
3428
3528
|
)
|
|
3429
3529
|
end)
|
|
3430
3530
|
|
|
3531
|
+
api.add_operation(:list_input_device_transfers, Seahorse::Model::Operation.new.tap do |o|
|
|
3532
|
+
o.name = "ListInputDeviceTransfers"
|
|
3533
|
+
o.http_method = "GET"
|
|
3534
|
+
o.http_request_uri = "/prod/inputDeviceTransfers"
|
|
3535
|
+
o.input = Shapes::ShapeRef.new(shape: ListInputDeviceTransfersRequest)
|
|
3536
|
+
o.output = Shapes::ShapeRef.new(shape: ListInputDeviceTransfersResponse)
|
|
3537
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
3538
|
+
o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
|
|
3539
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
3540
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
3541
|
+
o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
|
|
3542
|
+
o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
|
|
3543
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
3544
|
+
o[:pager] = Aws::Pager.new(
|
|
3545
|
+
limit_key: "max_results",
|
|
3546
|
+
tokens: {
|
|
3547
|
+
"next_token" => "next_token"
|
|
3548
|
+
}
|
|
3549
|
+
)
|
|
3550
|
+
end)
|
|
3551
|
+
|
|
3431
3552
|
api.add_operation(:list_input_devices, Seahorse::Model::Operation.new.tap do |o|
|
|
3432
3553
|
o.name = "ListInputDevices"
|
|
3433
3554
|
o.http_method = "GET"
|
|
@@ -3597,6 +3718,23 @@ module Aws::MediaLive
|
|
|
3597
3718
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3598
3719
|
end)
|
|
3599
3720
|
|
|
3721
|
+
api.add_operation(:reject_input_device_transfer, Seahorse::Model::Operation.new.tap do |o|
|
|
3722
|
+
o.name = "RejectInputDeviceTransfer"
|
|
3723
|
+
o.http_method = "POST"
|
|
3724
|
+
o.http_request_uri = "/prod/inputDevices/{inputDeviceId}/reject"
|
|
3725
|
+
o.input = Shapes::ShapeRef.new(shape: RejectInputDeviceTransferRequest)
|
|
3726
|
+
o.output = Shapes::ShapeRef.new(shape: RejectInputDeviceTransferResponse)
|
|
3727
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
3728
|
+
o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
|
|
3729
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
3730
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
3731
|
+
o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
|
|
3732
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
3733
|
+
o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
|
|
3734
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
3735
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3736
|
+
end)
|
|
3737
|
+
|
|
3600
3738
|
api.add_operation(:start_channel, Seahorse::Model::Operation.new.tap do |o|
|
|
3601
3739
|
o.name = "StartChannel"
|
|
3602
3740
|
o.http_method = "POST"
|
|
@@ -3661,6 +3799,23 @@ module Aws::MediaLive
|
|
|
3661
3799
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3662
3800
|
end)
|
|
3663
3801
|
|
|
3802
|
+
api.add_operation(:transfer_input_device, Seahorse::Model::Operation.new.tap do |o|
|
|
3803
|
+
o.name = "TransferInputDevice"
|
|
3804
|
+
o.http_method = "POST"
|
|
3805
|
+
o.http_request_uri = "/prod/inputDevices/{inputDeviceId}/transfer"
|
|
3806
|
+
o.input = Shapes::ShapeRef.new(shape: TransferInputDeviceRequest)
|
|
3807
|
+
o.output = Shapes::ShapeRef.new(shape: TransferInputDeviceResponse)
|
|
3808
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
3809
|
+
o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
|
|
3810
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
3811
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
3812
|
+
o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
|
|
3813
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
3814
|
+
o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
|
|
3815
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
3816
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3817
|
+
end)
|
|
3818
|
+
|
|
3664
3819
|
api.add_operation(:update_channel, Seahorse::Model::Operation.new.tap do |o|
|
|
3665
3820
|
o.name = "UpdateChannel"
|
|
3666
3821
|
o.http_method = "PUT"
|
|
@@ -159,6 +159,28 @@ module Aws::MediaLive
|
|
|
159
159
|
include Aws::Structure
|
|
160
160
|
end
|
|
161
161
|
|
|
162
|
+
# @note When making an API call, you may pass AcceptInputDeviceTransferRequest
|
|
163
|
+
# data as a hash:
|
|
164
|
+
#
|
|
165
|
+
# {
|
|
166
|
+
# input_device_id: "__string", # required
|
|
167
|
+
# }
|
|
168
|
+
#
|
|
169
|
+
# @!attribute [rw] input_device_id
|
|
170
|
+
# @return [String]
|
|
171
|
+
#
|
|
172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransferRequest AWS API Documentation
|
|
173
|
+
#
|
|
174
|
+
class AcceptInputDeviceTransferRequest < Struct.new(
|
|
175
|
+
:input_device_id)
|
|
176
|
+
SENSITIVE = []
|
|
177
|
+
include Aws::Structure
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransferResponse AWS API Documentation
|
|
181
|
+
#
|
|
182
|
+
class AcceptInputDeviceTransferResponse < Aws::EmptyStructure; end
|
|
183
|
+
|
|
162
184
|
# @!attribute [rw] message
|
|
163
185
|
# @return [String]
|
|
164
186
|
#
|
|
@@ -2064,6 +2086,28 @@ module Aws::MediaLive
|
|
|
2064
2086
|
include Aws::Structure
|
|
2065
2087
|
end
|
|
2066
2088
|
|
|
2089
|
+
# @note When making an API call, you may pass CancelInputDeviceTransferRequest
|
|
2090
|
+
# data as a hash:
|
|
2091
|
+
#
|
|
2092
|
+
# {
|
|
2093
|
+
# input_device_id: "__string", # required
|
|
2094
|
+
# }
|
|
2095
|
+
#
|
|
2096
|
+
# @!attribute [rw] input_device_id
|
|
2097
|
+
# @return [String]
|
|
2098
|
+
#
|
|
2099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransferRequest AWS API Documentation
|
|
2100
|
+
#
|
|
2101
|
+
class CancelInputDeviceTransferRequest < Struct.new(
|
|
2102
|
+
:input_device_id)
|
|
2103
|
+
SENSITIVE = []
|
|
2104
|
+
include Aws::Structure
|
|
2105
|
+
end
|
|
2106
|
+
|
|
2107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransferResponse AWS API Documentation
|
|
2108
|
+
#
|
|
2109
|
+
class CancelInputDeviceTransferResponse < Aws::EmptyStructure; end
|
|
2110
|
+
|
|
2067
2111
|
# Caption Description
|
|
2068
2112
|
#
|
|
2069
2113
|
# @note When making an API call, you may pass CaptionDescription
|
|
@@ -10138,6 +10182,70 @@ module Aws::MediaLive
|
|
|
10138
10182
|
include Aws::Structure
|
|
10139
10183
|
end
|
|
10140
10184
|
|
|
10185
|
+
# @note When making an API call, you may pass ListInputDeviceTransfersRequest
|
|
10186
|
+
# data as a hash:
|
|
10187
|
+
#
|
|
10188
|
+
# {
|
|
10189
|
+
# max_results: 1,
|
|
10190
|
+
# next_token: "__string",
|
|
10191
|
+
# transfer_type: "__string", # required
|
|
10192
|
+
# }
|
|
10193
|
+
#
|
|
10194
|
+
# @!attribute [rw] max_results
|
|
10195
|
+
# @return [Integer]
|
|
10196
|
+
#
|
|
10197
|
+
# @!attribute [rw] next_token
|
|
10198
|
+
# @return [String]
|
|
10199
|
+
#
|
|
10200
|
+
# @!attribute [rw] transfer_type
|
|
10201
|
+
# @return [String]
|
|
10202
|
+
#
|
|
10203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersRequest AWS API Documentation
|
|
10204
|
+
#
|
|
10205
|
+
class ListInputDeviceTransfersRequest < Struct.new(
|
|
10206
|
+
:max_results,
|
|
10207
|
+
:next_token,
|
|
10208
|
+
:transfer_type)
|
|
10209
|
+
SENSITIVE = []
|
|
10210
|
+
include Aws::Structure
|
|
10211
|
+
end
|
|
10212
|
+
|
|
10213
|
+
# @!attribute [rw] input_device_transfers
|
|
10214
|
+
# @return [Array<Types::TransferringInputDeviceSummary>]
|
|
10215
|
+
#
|
|
10216
|
+
# @!attribute [rw] next_token
|
|
10217
|
+
# @return [String]
|
|
10218
|
+
#
|
|
10219
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersResponse AWS API Documentation
|
|
10220
|
+
#
|
|
10221
|
+
class ListInputDeviceTransfersResponse < Struct.new(
|
|
10222
|
+
:input_device_transfers,
|
|
10223
|
+
:next_token)
|
|
10224
|
+
SENSITIVE = []
|
|
10225
|
+
include Aws::Structure
|
|
10226
|
+
end
|
|
10227
|
+
|
|
10228
|
+
# The list of input devices in the transferred state. The recipient
|
|
10229
|
+
# hasn't yet accepted or rejected the transfer.
|
|
10230
|
+
#
|
|
10231
|
+
# @!attribute [rw] input_device_transfers
|
|
10232
|
+
# The list of devices that you are transferring or are being
|
|
10233
|
+
# transferred to you.
|
|
10234
|
+
# @return [Array<Types::TransferringInputDeviceSummary>]
|
|
10235
|
+
#
|
|
10236
|
+
# @!attribute [rw] next_token
|
|
10237
|
+
# A token to get additional list results.
|
|
10238
|
+
# @return [String]
|
|
10239
|
+
#
|
|
10240
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersResultModel AWS API Documentation
|
|
10241
|
+
#
|
|
10242
|
+
class ListInputDeviceTransfersResultModel < Struct.new(
|
|
10243
|
+
:input_device_transfers,
|
|
10244
|
+
:next_token)
|
|
10245
|
+
SENSITIVE = []
|
|
10246
|
+
include Aws::Structure
|
|
10247
|
+
end
|
|
10248
|
+
|
|
10141
10249
|
# @note When making an API call, you may pass ListInputDevicesRequest
|
|
10142
10250
|
# data as a hash:
|
|
10143
10251
|
#
|
|
@@ -13853,6 +13961,28 @@ module Aws::MediaLive
|
|
|
13853
13961
|
#
|
|
13854
13962
|
class Rec709Settings < Aws::EmptyStructure; end
|
|
13855
13963
|
|
|
13964
|
+
# @note When making an API call, you may pass RejectInputDeviceTransferRequest
|
|
13965
|
+
# data as a hash:
|
|
13966
|
+
#
|
|
13967
|
+
# {
|
|
13968
|
+
# input_device_id: "__string", # required
|
|
13969
|
+
# }
|
|
13970
|
+
#
|
|
13971
|
+
# @!attribute [rw] input_device_id
|
|
13972
|
+
# @return [String]
|
|
13973
|
+
#
|
|
13974
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransferRequest AWS API Documentation
|
|
13975
|
+
#
|
|
13976
|
+
class RejectInputDeviceTransferRequest < Struct.new(
|
|
13977
|
+
:input_device_id)
|
|
13978
|
+
SENSITIVE = []
|
|
13979
|
+
include Aws::Structure
|
|
13980
|
+
end
|
|
13981
|
+
|
|
13982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransferResponse AWS API Documentation
|
|
13983
|
+
#
|
|
13984
|
+
class RejectInputDeviceTransferResponse < Aws::EmptyStructure; end
|
|
13985
|
+
|
|
13856
13986
|
# Remix Settings
|
|
13857
13987
|
#
|
|
13858
13988
|
# @note When making an API call, you may pass RemixSettings
|
|
@@ -15710,6 +15840,22 @@ module Aws::MediaLive
|
|
|
15710
15840
|
include Aws::Structure
|
|
15711
15841
|
end
|
|
15712
15842
|
|
|
15843
|
+
# The binary data for the thumbnail that the Link device has most
|
|
15844
|
+
# recently sent to MediaLive.
|
|
15845
|
+
#
|
|
15846
|
+
# @!attribute [rw] body
|
|
15847
|
+
# The binary data for the thumbnail that the Link device has most
|
|
15848
|
+
# recently sent to MediaLive.
|
|
15849
|
+
# @return [String]
|
|
15850
|
+
#
|
|
15851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ThumbnailData AWS API Documentation
|
|
15852
|
+
#
|
|
15853
|
+
class ThumbnailData < Struct.new(
|
|
15854
|
+
:body)
|
|
15855
|
+
SENSITIVE = []
|
|
15856
|
+
include Aws::Structure
|
|
15857
|
+
end
|
|
15858
|
+
|
|
15713
15859
|
# Timecode Config
|
|
15714
15860
|
#
|
|
15715
15861
|
# @note When making an API call, you may pass TimecodeConfig
|
|
@@ -15757,6 +15903,87 @@ module Aws::MediaLive
|
|
|
15757
15903
|
include Aws::Structure
|
|
15758
15904
|
end
|
|
15759
15905
|
|
|
15906
|
+
# The transfer details of the input device.
|
|
15907
|
+
#
|
|
15908
|
+
# @!attribute [rw] target_customer_id
|
|
15909
|
+
# The AWS account ID (12 digits) for the recipient of the device
|
|
15910
|
+
# transfer.
|
|
15911
|
+
# @return [String]
|
|
15912
|
+
#
|
|
15913
|
+
# @!attribute [rw] transfer_message
|
|
15914
|
+
# An optional message for the recipient. Maximum 280 characters.
|
|
15915
|
+
# @return [String]
|
|
15916
|
+
#
|
|
15917
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDevice AWS API Documentation
|
|
15918
|
+
#
|
|
15919
|
+
class TransferInputDevice < Struct.new(
|
|
15920
|
+
:target_customer_id,
|
|
15921
|
+
:transfer_message)
|
|
15922
|
+
SENSITIVE = []
|
|
15923
|
+
include Aws::Structure
|
|
15924
|
+
end
|
|
15925
|
+
|
|
15926
|
+
# @note When making an API call, you may pass TransferInputDeviceRequest
|
|
15927
|
+
# data as a hash:
|
|
15928
|
+
#
|
|
15929
|
+
# {
|
|
15930
|
+
# input_device_id: "__string", # required
|
|
15931
|
+
# target_customer_id: "__string",
|
|
15932
|
+
# transfer_message: "__string",
|
|
15933
|
+
# }
|
|
15934
|
+
#
|
|
15935
|
+
# @!attribute [rw] input_device_id
|
|
15936
|
+
# @return [String]
|
|
15937
|
+
#
|
|
15938
|
+
# @!attribute [rw] target_customer_id
|
|
15939
|
+
# @return [String]
|
|
15940
|
+
#
|
|
15941
|
+
# @!attribute [rw] transfer_message
|
|
15942
|
+
# @return [String]
|
|
15943
|
+
#
|
|
15944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDeviceRequest AWS API Documentation
|
|
15945
|
+
#
|
|
15946
|
+
class TransferInputDeviceRequest < Struct.new(
|
|
15947
|
+
:input_device_id,
|
|
15948
|
+
:target_customer_id,
|
|
15949
|
+
:transfer_message)
|
|
15950
|
+
SENSITIVE = []
|
|
15951
|
+
include Aws::Structure
|
|
15952
|
+
end
|
|
15953
|
+
|
|
15954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDeviceResponse AWS API Documentation
|
|
15955
|
+
#
|
|
15956
|
+
class TransferInputDeviceResponse < Aws::EmptyStructure; end
|
|
15957
|
+
|
|
15958
|
+
# Details about the input device that is being transferred.
|
|
15959
|
+
#
|
|
15960
|
+
# @!attribute [rw] id
|
|
15961
|
+
# The unique ID of the input device.
|
|
15962
|
+
# @return [String]
|
|
15963
|
+
#
|
|
15964
|
+
# @!attribute [rw] message
|
|
15965
|
+
# The optional message that the sender has attached to the transfer.
|
|
15966
|
+
# @return [String]
|
|
15967
|
+
#
|
|
15968
|
+
# @!attribute [rw] target_customer_id
|
|
15969
|
+
# The AWS account ID for the recipient of the input device transfer.
|
|
15970
|
+
# @return [String]
|
|
15971
|
+
#
|
|
15972
|
+
# @!attribute [rw] transfer_type
|
|
15973
|
+
# The type (direction) of the input device transfer.
|
|
15974
|
+
# @return [String]
|
|
15975
|
+
#
|
|
15976
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferringInputDeviceSummary AWS API Documentation
|
|
15977
|
+
#
|
|
15978
|
+
class TransferringInputDeviceSummary < Struct.new(
|
|
15979
|
+
:id,
|
|
15980
|
+
:message,
|
|
15981
|
+
:target_customer_id,
|
|
15982
|
+
:transfer_type)
|
|
15983
|
+
SENSITIVE = []
|
|
15984
|
+
include Aws::Structure
|
|
15985
|
+
end
|
|
15986
|
+
|
|
15760
15987
|
# Ttml Destination Settings
|
|
15761
15988
|
#
|
|
15762
15989
|
# @note When making an API call, you may pass TtmlDestinationSettings
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-medialive
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.57.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: 2020-10-
|
|
11
|
+
date: 2020-10-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|