{
  "typeName" : "AWS::DataBrew::Project",
  "description" : "Resource schema for AWS::DataBrew::Project.",
  "sourceUrl" : "https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-databrew.git",
  "taggable" : true,
  "properties" : {
    "DatasetName" : {
      "description" : "Dataset name",
      "type" : "string",
      "minLength" : 1,
      "maxLength" : 255
    },
    "Name" : {
      "description" : "Project name",
      "type" : "string",
      "minLength" : 1,
      "maxLength" : 255
    },
    "RecipeName" : {
      "description" : "Recipe name",
      "type" : "string",
      "minLength" : 1,
      "maxLength" : 255
    },
    "RoleArn" : {
      "description" : "Role arn",
      "type" : "string"
    },
    "Sample" : {
      "description" : "Sample",
      "$ref" : "#/definitions/Sample"
    },
    "Tags" : {
      "type" : "array",
      "insertionOrder" : false,
      "uniqueItems" : false,
      "items" : {
        "$ref" : "#/definitions/Tag"
      }
    }
  },
  "definitions" : {
    "Sample" : {
      "type" : "object",
      "properties" : {
        "Size" : {
          "description" : "Sample size",
          "minimum" : 1,
          "type" : "integer"
        },
        "Type" : {
          "description" : "Sample type",
          "enum" : [ "FIRST_N", "LAST_N", "RANDOM" ],
          "type" : "string"
        }
      },
      "additionalProperties" : false,
      "required" : [ "Type" ]
    },
    "Tag" : {
      "description" : "A key-value pair to associate with a resource.",
      "type" : "object",
      "properties" : {
        "Key" : {
          "type" : "string",
          "minLength" : 1,
          "maxLength" : 128
        },
        "Value" : {
          "type" : "string",
          "minLength" : 0,
          "maxLength" : 256
        }
      },
      "additionalProperties" : false,
      "required" : [ "Value", "Key" ]
    }
  },
  "additionalProperties" : false,
  "required" : [ "DatasetName", "Name", "RecipeName", "RoleArn" ],
  "primaryIdentifier" : [ "/properties/Name" ],
  "createOnlyProperties" : [ "/properties/Name", "/properties/Tags" ],
  "handlers" : {
    "create" : {
      "permissions" : [ "databrew:CreateProject", "databrew:TagResource", "databrew:UntagResource", "iam:PassRole" ]
    },
    "read" : {
      "permissions" : [ "databrew:DescribeProject", "databrew:ListTagsForResource", "iam:ListRoles" ]
    },
    "update" : {
      "permissions" : [ "databrew:UpdateProject" ]
    },
    "delete" : {
      "permissions" : [ "databrew:DeleteProject" ]
    },
    "list" : {
      "permissions" : [ "databrew:ListProjects", "databrew:ListTagsForResource", "iam:ListRoles" ]
    }
  }
}