{
"$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-delete-chap-credentials-input-schema.json",
"title": "DeleteChapCredentialsInput",
"description": "<p>A JSON object containing one or more of the following fields:</p> <ul> <li> <p> <a>DeleteChapCredentialsInput$InitiatorName</a> </p> </li> <li> <p> <a>DeleteChapCredentialsInput$TargetARN</a> </p> </li> </ul>",
"type": "object",
"properties": {
"TargetARN": {
"allOf": [
{
"$ref": "#/components/schemas/TargetARN"
},
{
"description": "The Amazon Resource Name (ARN) of the iSCSI volume target. Use the <a>DescribeStorediSCSIVolumes</a> operation to return to retrieve the TargetARN for specified VolumeARN."
}
]
},
"InitiatorName": {
"allOf": [
{
"$ref": "#/components/schemas/IqnName"
},
{
"description": "The iSCSI initiator that connects to the target."
}
]
}
},
"required": [
"TargetARN",
"InitiatorName"
]
}