{
  "name": "PutObject",
  "plane": "data",
  "terraformEligible": false,
  "protocol": {
    "kind": "rest",
    "method": "PUT",
    "path": "/{bucket}/{key}",
    "query": [],
    "headers": [
      "content-type",
      "x-amz-server-side-encryption",
      "x-amz-server-side-encryption-aws-kms-key-id",
      "x-amz-tagging"
    ],
    "body": true
  },
  "requestBody": "binary",
  "responseBody": "explicitlyEmpty",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "properties": {
      "bucket": {
        "type": "string"
      },
      "contentType": {
        "type": [
          "string",
          "null"
        ]
      },
      "key": {
        "type": "string"
      },
      "serverSideEncryption": {
        "type": [
          "string",
          "null"
        ]
      },
      "serverSideEncryptionKeyId": {
        "type": [
          "string",
          "null"
        ]
      },
      "tagging": {
        "type": [
          "string",
          "null"
        ]
      }
    },
    "required": [
      "bucket",
      "key"
    ],
    "title": "PutObjectRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
      "etag": {
        "type": "string"
      }
    },
    "required": [
      "etag"
    ],
    "title": "ObjectWriteResult",
    "type": "object"
  }
}
