{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--aws-ec2-verifiedaccessinstance.json",
  "title": "AWSEC2VerifiedAccessInstanceProperties",
  "description": "The AWS::EC2::VerifiedAccessInstance resource creates an AWS EC2 Verified Access Instance.. Source:- <https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-ec2-verified-access.aws-ec2-verifiedaccessinstance>",
  "x-lintel": {
    "source": "https://raw.githubusercontent.com/lalcebo/json-schema/master/serverless/resources/cloudformation-modified/aws-ec2-verifiedaccessinstance.json",
    "sourceSha256": "f99fe46d2d01229a753697cd9340d87285b8f87086fd2b7552d08761c4c4beed"
  },
  "type": "object",
  "properties": {
    "VerifiedAccessTrustProviders": {
      "description": "AWS Verified Access trust providers.",
      "type": "array",
      "uniqueItems": true,
      "insertionOrder": false,
      "items": {
        "$ref": "#/$defs/VerifiedAccessTrustProvider"
      }
    },
    "VerifiedAccessTrustProviderIds": {
      "description": "The IDs of the AWS Verified Access trust providers.",
      "type": "array",
      "uniqueItems": true,
      "insertionOrder": false,
      "items": {
        "$ref": "#/$defs/VerifiedAccessTrustProviderId"
      }
    },
    "Description": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "A description for the AWS Verified Access instance."
    },
    "LoggingConfigurations": {
      "description": "The configuration options for AWS Verified Access instances.",
      "$ref": "#/$defs/VerifiedAccessLogs"
    },
    "Tags": {
      "description": "An array of key-value pairs to apply to this resource.",
      "type": "array",
      "uniqueItems": true,
      "insertionOrder": false,
      "items": {
        "$ref": "#/$defs/Tag"
      }
    }
  },
  "typeName": "AWS::EC2::VerifiedAccessInstance",
  "tagging": {
    "taggable": true,
    "tagOnCreate": true,
    "tagUpdatable": true,
    "cloudFormationSystemTags": false,
    "tagProperty": "/properties/Tags"
  },
  "sourceUrl": "https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-ec2-verified-access.aws-ec2-verifiedaccessinstance",
  "primaryIdentifier": [
    "/properties/VerifiedAccessInstanceId"
  ],
  "additionalProperties": false,
  "$defs": {
    "VerifiedAccessTrustProvider": {
      "description": "A Verified Access Trust Provider.",
      "type": "object",
      "properties": {
        "VerifiedAccessTrustProviderId": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The ID of the trust provider."
        },
        "Description": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The description of trust provider."
        },
        "TrustProviderType": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The type of trust provider (user- or device-based)."
        },
        "UserTrustProviderType": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The type of user-based trust provider."
        },
        "DeviceTrustProviderType": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The type of device-based trust provider."
        }
      },
      "title": "AWSEC2VerifiedAccessInstanceVerifiedAccessTrustProviderDefinition",
      "additionalProperties": false
    },
    "VerifiedAccessTrustProviderId": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The ID of the AWS Verified Access trust provider.",
      "title": "AWSEC2VerifiedAccessInstanceVerifiedAccessTrustProviderIdDefinition"
    },
    "VerifiedAccessLogs": {
      "description": "The configuration options for AWS Verified Access instances.",
      "type": "object",
      "properties": {
        "CloudWatchLogs": {
          "description": "Sends Verified Access logs to CloudWatch Logs.",
          "type": "object",
          "properties": {
            "Enabled": {
              "description": "Indicates whether logging is enabled.",
              "type": "boolean"
            },
            "LogGroup": {
              "oneOf": [
                {
                  "type": "string"
                },
                {
                  "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
                }
              ],
              "description": "The ID of the CloudWatch Logs log group."
            }
          },
          "additionalProperties": false
        },
        "KinesisDataFirehose": {
          "description": "Sends Verified Access logs to Kinesis.",
          "type": "object",
          "properties": {
            "Enabled": {
              "description": "Indicates whether logging is enabled.",
              "type": "boolean"
            },
            "DeliveryStream": {
              "oneOf": [
                {
                  "type": "string"
                },
                {
                  "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
                }
              ],
              "description": "The ID of the delivery stream."
            }
          },
          "additionalProperties": false
        },
        "S3": {
          "description": "Sends Verified Access logs to Amazon S3.",
          "type": "object",
          "properties": {
            "Enabled": {
              "description": "Indicates whether logging is enabled.",
              "type": "boolean"
            },
            "BucketName": {
              "oneOf": [
                {
                  "type": "string"
                },
                {
                  "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
                }
              ],
              "description": "The bucket name."
            },
            "BucketOwner": {
              "oneOf": [
                {
                  "type": "string"
                },
                {
                  "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
                }
              ],
              "description": "The ID of the AWS account that owns the Amazon S3 bucket."
            },
            "Prefix": {
              "oneOf": [
                {
                  "type": "string"
                },
                {
                  "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
                }
              ],
              "description": "The bucket prefix."
            }
          },
          "additionalProperties": false
        }
      },
      "title": "AWSEC2VerifiedAccessInstanceVerifiedAccessLogsDefinition",
      "additionalProperties": false
    },
    "Tag": {
      "description": "A key-value pair to associate with a resource.",
      "type": "object",
      "properties": {
        "Key": {
          "oneOf": [
            {
              "type": "string",
              "minLength": 1,
              "maxLength": 128
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -."
        },
        "Value": {
          "oneOf": [
            {
              "type": "string",
              "minLength": 0,
              "maxLength": 256
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -."
        }
      },
      "required": [
        "Key",
        "Value"
      ],
      "title": "AWSEC2VerifiedAccessInstanceTagDefinition",
      "additionalProperties": false
    }
  },
  "readOnlyProperties": [
    "/properties/VerifiedAccessInstanceId",
    "/properties/CreationTime",
    "/properties/LastUpdatedTime"
  ]
}
