input_device_transfers
Creates, updates, deletes, gets or lists an input_device_transfers resource.
Overview
| Name | input_device_transfers |
| Type | Resource |
| Id | aws.medialive.input_device_transfers |
Fields
The following fields are returned by SELECT queries:
- list_input_device_transfers
| Name | Datatype | Description |
|---|---|---|
id | string | Placeholder documentation for __string |
message | string | Placeholder documentation for __string |
target_customer_id | string | Placeholder documentation for __string |
transfer_type | string | The type (direction) of the input device transfer. (OUTGOING, INCOMING) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_input_device_transfers | select | transferType, region | maxResults, nextToken | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
transferType | string | |
maxResults | integer | |
nextToken | string |
SELECT examples
- list_input_device_transfers
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 }}'
;