MethodSnapshot

Represents a summary of a Method resource, given a particular date and time.

APIs.ioEngineeringPlatform

Properties

Name Type Description
authorizationType object
apiKeyRequired object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-methodsnapshot-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MethodSnapshot",
  "title": "MethodSnapshot",
  "type": "object",
  "properties": {
    "authorizationType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The method's authorization type. Valid values are <code>NONE</code> for open access, <code>AWS_IAM</code> for using AWS IAM permissions, <code>CUSTOM</code> for using a custom authorizer, or <code>COGNITO_USER_POOLS</code> for using a Cognito user pool."
        }
      ]
    },
    "apiKeyRequired": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Specifies whether the method requires a valid ApiKey."
        }
      ]
    }
  },
  "description": "Represents a summary of a Method resource, given a particular date and time."
}