Update Vtl Device Type
storagegateway_update_vtl_device_type | R Documentation |
Updates the type of medium changer in a tape gateway¶
Description¶
Updates the type of medium changer in a tape gateway. When you activate a tape gateway, you select a medium changer type for the tape gateway. This operation enables you to select a different type of medium changer after a tape gateway is activated. This operation is only supported in the tape gateway type.
Usage¶
storagegateway_update_vtl_device_type(VTLDeviceARN, DeviceType)
Arguments¶
VTLDeviceARN |
[required] The Amazon Resource Name (ARN) of the medium changer you want to select. |
DeviceType |
[required] The type of medium changer you want to select. Valid Values: |
Value¶
A list with the following syntax:
list(
VTLDeviceARN = "string"
)
Request syntax¶
svc$update_vtl_device_type(
VTLDeviceARN = "string",
DeviceType = "string"
)
Examples¶
## Not run:
# Updates the type of medium changer in a gateway-VTL after a gateway-VTL
# is activated.
svc$update_vtl_device_type(
DeviceType = "Medium Changer",
VTLDeviceARN = "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw..."
)
## End(Not run)