Amazon Storage Gateway · Schema
DetachVolumeInput
AttachVolumeInput
BackupFile StorageGatewayHybrid CloudStorage
Properties
| Name | Type | Description |
|---|---|---|
| VolumeARN | object | |
| ForceDetach | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-storage-gateway/refs/heads/main/json-schema/amazon-storage-gateway-detach-volume-input-schema.json",
"title": "DetachVolumeInput",
"description": "AttachVolumeInput",
"type": "object",
"properties": {
"VolumeARN": {
"allOf": [
{
"$ref": "#/components/schemas/VolumeARN"
},
{
"description": "The Amazon Resource Name (ARN) of the volume to detach from the gateway."
}
]
},
"ForceDetach": {
"allOf": [
{
"$ref": "#/components/schemas/Boolean"
},
{
"description": "<p>Set to <code>true</code> to forcibly remove the iSCSI connection of the target volume and detach the volume. The default is <code>false</code>. If this value is set to <code>false</code>, you must manually disconnect the iSCSI connection from the target volume.</p> <p>Valid Values: <code>true</code> | <code>false</code> </p>"
}
]
}
},
"required": [
"VolumeARN"
]
}