{
  "typeName" : "AWS::ApiGateway::ClientCertificate",
  "description" : "Resource Type definition for AWS::ApiGateway::ClientCertificate",
  "sourceUrl" : "https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-apigateway",
  "additionalProperties" : false,
  "properties" : {
    "ClientCertificateId" : {
      "description" : "The Primary Identifier of the Client Certficate, generated by a Create API Call",
      "type" : "string"
    },
    "Description" : {
      "description" : "A description of the client certificate.",
      "type" : "string"
    },
    "Tags" : {
      "description" : "An array of arbitrary tags (key-value pairs) to associate with the client certificate.",
      "type" : "array",
      "uniqueItems" : false,
      "items" : {
        "$ref" : "#/definitions/Tag"
      }
    }
  },
  "definitions" : {
    "Tag" : {
      "type" : "object",
      "additionalProperties" : false,
      "properties" : {
        "Key" : {
          "type" : "string"
        },
        "Value" : {
          "type" : "string"
        }
      },
      "required" : [ "Value", "Key" ]
    }
  },
  "primaryIdentifier" : [ "/properties/ClientCertificateId" ],
  "readOnlyProperties" : [ "/properties/ClientCertificateId" ],
  "handlers" : {
    "create" : {
      "permissions" : [ "apigateway:POST", "apigateway:GET" ]
    },
    "read" : {
      "permissions" : [ "apigateway:GET" ]
    },
    "update" : {
      "permissions" : [ "apigateway:GET", "apigateway:PATCH", "apigateway:PUT" ]
    },
    "delete" : {
      "permissions" : [ "apigateway:DELETE" ]
    },
    "list" : {
      "permissions" : [ "apigateway:GET" ]
    }
  }
}