Skip to main content

input_device_transfers

Creates, updates, deletes, gets or lists an input_device_transfers resource.

Overview

Nameinput_device_transfers
TypeResource
Idaws.medialive.input_device_transfers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringPlaceholder documentation for __string
messagestringPlaceholder documentation for __string
target_customer_idstringPlaceholder documentation for __string
transfer_typestringThe type (direction) of the input device transfer. (OUTGOING, INCOMING)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_input_device_transfersselecttransferType, regionmaxResults, nextTokenList input devices that are currently being transferred. List input devices that you are transferring from your AWS account or input devices that another AWS account is transferring to you.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
transferTypestring
maxResultsinteger
nextTokenstring

SELECT examples

List input devices that are currently being transferred. List input devices that you are transferring from your AWS account or input devices that another AWS account is transferring to you.

SELECT
id,
message,
target_customer_id,
transfer_type
FROM aws.medialive.input_device_transfers
WHERE transferType = '{{ transferType }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;